-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.yaml
More file actions
555 lines (535 loc) · 14.6 KB
/
Copy pathauth.yaml
File metadata and controls
555 lines (535 loc) · 14.6 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
/api/session:
get:
tags: [Session]
operationId: getSession
summary: Get the current login session.
security:
- {}
- sessionCookie: []
responses:
"200":
description: Current authenticated or anonymous session.
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/SessionView
/api/auth/authorize:
get:
tags: [Authentication]
operationId: oauthAuthorize
summary: Start an OAuth-style authorization for a registered client.
security:
- {}
- sessionCookie: []
parameters:
- name: client_id
in: query
required: true
schema:
type: string
- name: redirect_uri
in: query
required: true
schema:
type: string
- name: state
in: query
required: true
schema:
type: string
pattern: ^[A-Za-z0-9_-]{32,256}$
- name: code_challenge
in: query
required: true
schema:
type: string
- name: scope
in: query
required: false
schema:
type: string
responses:
"302":
description: Redirect to Workspace login or back to the registered redirect_uri with a one-time code.
headers:
Location:
required: true
schema:
type: string
"400":
$ref: ../schemas/common.yaml#/BadRequest
/api/auth/token:
post:
tags: [Authentication]
operationId: oauthToken
summary: Exchange a one-time authorization code for a registered client identity.
security: []
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [code, client_id, client_secret, redirect_uri, code_verifier]
properties:
grant_type:
type: string
code:
type: string
client_id:
type: string
client_secret:
type: string
redirect_uri:
type: string
code_verifier:
type: string
responses:
"200":
description: The registered client identity.
content:
application/json:
schema:
type: object
properties:
access_token:
type: string
token_type:
type: string
expires_in:
type: integer
user:
$ref: ../schemas/identity.yaml#/User
"400":
$ref: ../schemas/common.yaml#/BadRequest
"401":
description: Invalid client secret or PKCE verifier.
content:
application/json:
schema:
$ref: ../schemas/common.yaml#/ErrorResponse
/api/auth/logout:
post:
tags: [Session]
operationId: logout
summary: Delete the current login session.
responses:
"204":
description: The session is absent or has been deleted.
/api/auth/password/register:
post:
tags: [Authentication]
operationId: registerWithPassword
summary: Create a User, Personal Space, Password Credential, and session.
security: []
requestBody:
required: true
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/PasswordRegistration
responses:
"201":
description: Registered and authenticated.
headers:
Set-Cookie:
schema:
type: string
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/AuthenticatedSession
"400":
$ref: ../schemas/common.yaml#/BadRequest
"409":
$ref: ../schemas/common.yaml#/Conflict
/api/auth/password/login:
post:
tags: [Authentication]
operationId: loginWithPassword
summary: Authenticate with a System Username and password.
security: []
requestBody:
required: true
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/PasswordLogin
responses:
"200":
description: Authenticated.
headers:
Set-Cookie:
schema:
type: string
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/AuthenticatedSession
"401":
description: Username or password is invalid.
content:
application/json:
schema:
$ref: ../schemas/common.yaml#/ErrorResponse
/api/auth/password:
put:
tags: [Authentication]
operationId: changePassword
summary: Change the current User's password.
requestBody:
required: true
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/PasswordChange
responses:
"204":
description: Password changed.
"400":
$ref: ../schemas/common.yaml#/BadRequest
"401":
$ref: ../schemas/common.yaml#/Unauthorized
"409":
$ref: ../schemas/common.yaml#/Conflict
/api/auth/cli/authorizations:
post:
tags: [Authentication]
operationId: startCliAuthorization
summary: Start a short-lived browser authorization for Workspace CLI.
security: []
responses:
"201":
description: CLI authorization request created.
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/CliAuthorizationStart
"503":
description: The server is temporarily at capacity for CLI authorization requests.
content:
application/json:
schema:
$ref: ../schemas/common.yaml#/ErrorResponse
/api/auth/cli/authorizations/approve:
post:
tags: [Authentication]
operationId: approveCliAuthorization
summary: Approve a CLI authorization as the current signed-in User.
requestBody:
required: true
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/CliAuthorizationApproval
responses:
"200":
description: CLI authorization approved.
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/AuthenticatedSession
"400":
$ref: ../schemas/common.yaml#/BadRequest
"401":
$ref: ../schemas/common.yaml#/Unauthorized
"409":
$ref: ../schemas/common.yaml#/Conflict
"410":
description: The CLI authorization request expired.
content:
application/json:
schema:
$ref: ../schemas/common.yaml#/ErrorResponse
/api/auth/cli/authorizations/exchange:
post:
tags: [Authentication]
operationId: exchangeCliAuthorization
summary: Poll and exchange an approved CLI authorization for a login session.
security: []
requestBody:
required: true
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/CliAuthorizationExchange
responses:
"200":
description: Authorization approved and exchanged for a new CLI login session.
headers:
Set-Cookie:
schema:
type: string
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/AuthenticatedSession
"202":
description: The User has not approved the request yet.
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/CliAuthorizationPending
"400":
$ref: ../schemas/common.yaml#/BadRequest
"410":
description: The CLI authorization request expired.
content:
application/json:
schema:
$ref: ../schemas/common.yaml#/ErrorResponse
/api/auth/github/login:
get:
tags: [Authentication]
operationId: startGitHubLogin
summary: Start the GitHub OAuth login flow.
security: []
parameters:
- name: returnTo
in: query
required: false
schema:
type: string
pattern: ^/
responses:
"302":
description: Redirect to GitHub.
headers:
Location:
required: true
schema:
type: string
format: uri
/api/auth/github/link:
get:
tags: [Authentication]
operationId: startGitHubLink
summary: Start GitHub OAuth to link the current User.
parameters:
- name: returnTo
in: query
required: false
schema:
type: string
pattern: ^/
responses:
"302":
description: Redirect to GitHub.
headers:
Location:
required: true
schema:
type: string
format: uri
"401":
$ref: ../schemas/common.yaml#/Unauthorized
/api/auth/github/callback:
get:
tags: [Authentication]
operationId: finishGitHubOAuth
summary: Validate the OAuth callback and finish login or linking.
security: []
parameters:
- name: code
in: query
required: false
schema:
type: string
- name: state
in: query
required: false
schema:
type: string
- name: error
in: query
required: false
schema:
type: string
responses:
"302":
description: Redirect to a validated local application path.
headers:
Location:
required: true
schema:
type: string
/api/auth/github:
delete:
tags: [Authentication]
operationId: unlinkGitHub
summary: Unlink the current User's GitHub identity.
responses:
"200":
description: Updated authenticated session.
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/AuthenticatedSession
"401":
$ref: ../schemas/common.yaml#/Unauthorized
"409":
description: GitHub is the last authentication method.
content:
application/json:
schema:
$ref: ../schemas/common.yaml#/ErrorResponse
/api/auth/discord/login:
get:
tags: [Authentication]
operationId: startDiscordLogin
summary: Start the Discord OAuth login flow.
security: []
parameters:
- name: returnTo
in: query
required: false
schema:
type: string
pattern: ^/
responses:
"302":
description: Redirect to Discord.
headers:
Location:
required: true
schema:
type: string
format: uri
/api/auth/discord/bot-login:
post:
tags: [Authentication]
operationId: loginWithDiscordBot
summary: Resolve or create a User from a trusted Discord Bot event and create a session.
description: |
This server-to-server endpoint trusts the Discord User ID asserted by the
configured Bot server. The caller must authenticate with the shared API key.
security:
- discordBotApiKey: []
requestBody:
required: true
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/DiscordBotLogin
responses:
"200":
description: Authenticated; a new User and Personal Space are created when necessary.
headers:
Set-Cookie:
schema:
type: string
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/AuthenticatedSession
"400":
$ref: ../schemas/common.yaml#/BadRequest
"401":
description: The Discord Bot API key is missing or invalid.
content:
application/json:
schema:
$ref: ../schemas/common.yaml#/ErrorResponse
"503":
description: Discord Bot authentication is not configured.
content:
application/json:
schema:
$ref: ../schemas/common.yaml#/ErrorResponse
/api/auth/discord/link:
get:
tags: [Authentication]
operationId: startDiscordLink
summary: Start Discord OAuth to link the current User.
parameters:
- name: returnTo
in: query
required: false
schema:
type: string
pattern: ^/
responses:
"302":
description: Redirect to Discord.
headers:
Location:
required: true
schema:
type: string
format: uri
"401":
$ref: ../schemas/common.yaml#/Unauthorized
/api/auth/discord/callback:
get:
tags: [Authentication]
operationId: finishDiscordOAuth
summary: Validate the Discord OAuth callback and finish login or linking.
security: []
parameters:
- name: code
in: query
required: false
schema:
type: string
- name: state
in: query
required: false
schema:
type: string
- name: error
in: query
required: false
schema:
type: string
responses:
"302":
description: Redirect to a validated local application path.
headers:
Location:
required: true
schema:
type: string
/api/auth/discord:
delete:
tags: [Authentication]
operationId: unlinkDiscord
summary: Unlink the current User's Discord identity.
responses:
"200":
description: Updated authenticated session.
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/AuthenticatedSession
"401":
$ref: ../schemas/common.yaml#/Unauthorized
"409":
description: Discord is the last authentication method.
content:
application/json:
schema:
$ref: ../schemas/common.yaml#/ErrorResponse
/api/users/me:
patch:
tags: [Users]
operationId: updateCurrentUser
summary: Update the current User's product profile.
requestBody:
required: true
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/UserProfilePatch
responses:
"200":
description: Updated User.
content:
application/json:
schema:
$ref: ../schemas/identity.yaml#/User
"400":
$ref: ../schemas/common.yaml#/BadRequest
"401":
$ref: ../schemas/common.yaml#/Unauthorized
"409":
$ref: ../schemas/common.yaml#/Conflict