Skip to content

Commit 7c46474

Browse files
committed
Adding missing file
1 parent ce2d005 commit 7c46474

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
package com.docusign.core.security;
2+
3+
import java.security.MessageDigest;
4+
import java.security.NoSuchAlgorithmException;
5+
import java.io.IOException;
6+
import java.nio.charset.StandardCharsets;
7+
import java.util.ArrayList;
8+
import java.util.Arrays;
9+
import java.util.Base64;
10+
import java.util.List;
11+
import java.util.Random;
12+
13+
import org.springframework.security.core.context.SecurityContextHolder;
14+
import org.springframework.security.oauth2.client.authentication.OAuth2AuthenticationToken;
15+
import com.docusign.core.model.ApiType;
16+
import com.docusign.core.model.Session;
17+
import com.docusign.esign.client.auth.OAuth;
18+
import com.fasterxml.jackson.databind.JsonNode;
19+
import com.fasterxml.jackson.databind.ObjectMapper;
20+
21+
public class SecurityHelpers {
22+
public static List<String> getScopeList() {
23+
List<String> scopes = new ArrayList<>();
24+
for (ApiType scope : ApiType.values()) {
25+
scopes.addAll(Arrays.asList(scope.getScopes()));
26+
}
27+
return scopes;
28+
}
29+
30+
public static String generateCodeVerifier() {
31+
byte[] randomBytes = new byte[32];
32+
new Random().nextBytes(randomBytes);
33+
return Base64.getUrlEncoder().withoutPadding().encodeToString(randomBytes);
34+
}
35+
36+
public static String generateCodeChallenge(String codeVerifier) throws NoSuchAlgorithmException {
37+
MessageDigest digest = MessageDigest.getInstance("SHA-256");
38+
byte[] hash = digest.digest(codeVerifier.getBytes(StandardCharsets.UTF_8));
39+
return Base64.getUrlEncoder().withoutPadding().encodeToString(hash);
40+
}
41+
42+
public static String parseJsonField(String jsonResponse, String field) throws IOException {
43+
ObjectMapper mapper = new ObjectMapper();
44+
JsonNode jsonNode = mapper.readTree(jsonResponse);
45+
return jsonNode.get(field).asText();
46+
}
47+
48+
public static void setSpringSecurityAuthentication(
49+
List<String> scopes,
50+
String oAuthToken,
51+
OAuth.UserInfo userInfo,
52+
String accountId,
53+
Session session,
54+
String expiresIn) {
55+
JWTOAuth2User principal = new JWTOAuth2User();
56+
principal.setAuthorities(scopes);
57+
principal.setCreated(userInfo.getCreated());
58+
principal.setName(userInfo.getName());
59+
principal.setGivenName(userInfo.getGivenName());
60+
principal.setFamilyName(userInfo.getFamilyName());
61+
principal.setSub(userInfo.getSub());
62+
principal.setEmail(userInfo.getEmail());
63+
principal.setAccounts(userInfo.getAccounts());
64+
principal.setAccessToken(new OAuth.OAuthToken().accessToken(oAuthToken));
65+
66+
session.setTokenExpirationTime(System.currentTimeMillis() + Integer.parseInt(expiresIn) * 1000L);
67+
68+
OAuth2AuthenticationToken token = new OAuth2AuthenticationToken(principal, principal.getAuthorities(),
69+
accountId);
70+
SecurityContextHolder.getContext().setAuthentication(token);
71+
}
72+
}

0 commit comments

Comments
 (0)