-
Notifications
You must be signed in to change notification settings - Fork 5
/
auth.js
183 lines (164 loc) · 4.73 KB
/
auth.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/**
* Vuex module for authentication using gbv-login-client.
*/
import { LoginClient } from "gbv-login-client"
import log from "@/utils/log.js"
import { closeWindow } from "@/utils/window-manager.js"
let client
// initial state
const state = {
available: false,
authorized: false,
user: undefined,
connected: false,
providers: [],
about: {},
tokenTimeout: null,
}
const mutations = {
/**
* Sets a state property.
*
* @param {*} payload - a payload object with the following properties:
* - prop (required): the name of the property to be set (e.g. "authorized")
* - value: the value to which to set the property (e.g. true)
*/
set(state, { prop, value = null }) {
state[prop] = value
},
}
const actions = {
init({ commit, state, rootState }, url) {
// Return a Promise that resolves either when application is connected, or when an error occured.
return new Promise(resolve => {
// Determine whether to use ssl
let ssl = url.startsWith("https")
// Remove protocol from url
url = url.replace("http://", "").replace("https://", "")
// Create login-client instance
client = new LoginClient(url, { ssl })
let registries = rootState.config.registries.filter(registry => registry.has.auth)
// Handle events
client.addEventListener(null, event => {
// Close window if one exists and matches event type
closeWindow({ eventType: event.type })
// Handle event
switch (event.type) {
case LoginClient.events.connect:
resolve()
commit({
type: "set",
prop: "connected",
value: true,
})
break
case LoginClient.events.disconnect:
resolve()
commit({
type: "set",
prop: "connected",
value: false,
})
break
case LoginClient.events.login:
commit({
type: "set",
prop: "user",
value: event.user,
})
break
case LoginClient.events.logout:
commit({
type: "set",
prop: "user",
value: null,
})
commit({
type: "set",
prop: "authorized",
value: false,
})
break
case LoginClient.events.update:
commit({
type: "set",
prop: "user",
value: event.user,
})
break
case LoginClient.events.about:
event.type = undefined
commit({
type: "set",
prop: "about",
value: event,
})
// Set auth public key for all providers that need authentication
for (let registry of registries) {
registry.setAuth({ key: event.publicKey })
}
break
case LoginClient.events.providers:
commit({
type: "set",
prop: "providers",
value: event.providers,
})
break
case LoginClient.events.token:
if (state.tokenTimeout) {
clearTimeout(state.tokenTimeout)
}
// Set auth for all providers that need authentication
for (let registry of registries) {
registry.setAuth({ bearerToken: event.token })
}
// Set authorized
commit({
type: "set",
prop: "authorized",
value: true,
})
// Create new timeout to unset authorized
commit({
type: "set",
prop: "tokenTimeout",
value: setTimeout(() => {
commit({
type: "set",
prop: "authorized",
value: false,
})
// Set token to null for all providers
for (let registry of registries) {
registry.setAuth({ bearerToken: null })
}
}, event.expiresIn * 1000),
})
break
case LoginClient.events.error:
resolve()
log.error("LoginClient error:", event.error)
break
}
})
client.connect()
commit({
type: "set",
prop: "available",
value: true,
})
// Resolve promise after half a second if nothing else happens
setTimeout(resolve, 500)
})
},
setName(context, name) {
return client.setName(name).then(() => true).catch(() => false)
},
}
export default {
namespaced: true,
state,
mutations,
actions,
}