forked from traPtitech/traQ-group-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoauth.js
48 lines (40 loc) · 1.44 KB
/
oauth.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import axios from 'axios'
import { randomString, pkce } from './utils'
export const CLIENT_ID = process.env.CLIENT_ID || 'K1xV0kq2UzsmEYYlQzLMEcB56rXZujjn8NDa'
export const baseURL = process.env.VUE_APP_API_ENDPOINT || 'https://ex-traq.emoine.tech/api/v3'
axios.defaults.baseURL = baseURL
axios.defaults.withCredentials = false
export function setAuthToken (token) {
if (token) {
axios.defaults.headers.common['Authorization'] = `Bearer ${token}`
} else {
delete axios.defaults.headers.common['Authorization']
}
}
export async function redirectAuthorizationEndpoint () {
const state = randomString(10)
const codeVerifier = randomString(43)
const codeChallenge = await pkce(codeVerifier)
console.log(baseURL, CLIENT_ID)
sessionStorage.setItem(`login-code-verifier-${state}`, codeVerifier)
const authorizationEndpointUrl = new URL(`${baseURL}/oauth2/authorize`)
authorizationEndpointUrl.search = new URLSearchParams({
client_id: CLIENT_ID,
response_type: 'code',
code_challenge: codeChallenge,
code_challenge_method: 'S256',
state
})
window.location.assign(authorizationEndpointUrl)
}
export function fetchAuthToken (code, verifier) {
return axios.post(`/oauth2/token`, new URLSearchParams({
client_id: CLIENT_ID,
grant_type: 'authorization_code',
code_verifier: verifier,
code
}))
}
export function revokeAuthToken (token) {
return axios.post(`/oauth2/revoke`, new URLSearchParams({ token }))
}