-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmod-login-keycloak.yaml
More file actions
785 lines (755 loc) · 23.3 KB
/
Copy pathmod-login-keycloak.yaml
File metadata and controls
785 lines (755 loc) · 23.3 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
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
openapi: 3.0.0
info:
title: Mod Login Keycloak API
version: v1
description: Mod Login Keycloak API
servers:
- url: http://localhost:8081
description: Locally deployed server
paths:
/authn/loginAttempts/{userId}:
get:
description: Get login attempts for a single user
operationId: getLoginAttempts
tags:
- loginAttempts
parameters:
- $ref: '#/components/parameters/pathUserId'
responses:
'200':
description: Number of login attempts for user
content:
application/json:
schema:
$ref: '#/components/schemas/loginAttempts'
'404':
$ref: '#/components/responses/entityNotFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/login:
post:
description: Get a new login token
operationId: login
tags:
- login
parameters:
- $ref: '#/components/parameters/userAgentHeader'
- $ref: '#/components/parameters/xForwardedForHeader'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/loginCredentials'
responses:
'201':
description: Login response body with access/refresh tokens
headers:
x-okapi-token:
required: true
description: An X-Okapi-Token header
schema:
type: string
refreshtoken:
required: true
description: A refresh token
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/loginResponse'
'400':
$ref: '#/components/responses/badRequestResponse'
'422':
$ref: '#/components/responses/unprocessableEntityResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/login-with-expiry:
post:
description: Get an expiring refresh and access token
operationId: loginWithExpiry
tags:
- login
parameters:
- $ref: '#/components/parameters/userAgentHeader'
- $ref: '#/components/parameters/xForwardedForHeader'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/loginCredentials'
responses:
'201':
description: Login response body with access/refresh tokens
content:
application/json:
schema:
$ref: '#/components/schemas/loginResponseWithExpiry'
'400':
$ref: '#/components/responses/badRequestResponse'
'422':
$ref: '#/components/responses/unprocessableEntityResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/refresh:
post:
description: Get a new refresh and access token
operationId: refreshToken
tags:
- login
parameters:
- $ref: '#/components/parameters/folioRefreshTokenRequired'
responses:
'201':
description: Refresh response body with access/refresh tokens
content:
application/json:
schema:
$ref: '#/components/schemas/loginResponseWithExpiry'
'400':
$ref: '#/components/responses/badRequestResponse'
'422':
$ref: '#/components/responses/unprocessableEntityResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/logout:
post:
description: Logs the user out on their current device
operationId: logout
tags:
- login
parameters:
- $ref: '#/components/parameters/folioRefreshToken'
responses:
'204':
description: The user has been logged out from their current devices.
'400':
$ref: '#/components/responses/badRequestResponse'
'422':
$ref: '#/components/responses/unprocessableEntityResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/logout-all:
post:
description: Logs the user out on all of their devices
operationId: logoutAll
tags:
- login
responses:
'204':
description: The user has been logged out from all their devices.
'400':
$ref: '#/components/responses/badRequestResponse'
'422':
$ref: '#/components/responses/unprocessableEntityResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/token:
get:
description: Get a new login token from the authorization code
operationId: token
tags:
- login
parameters:
- $ref: '#/components/parameters/userAgentHeader'
- $ref: '#/components/parameters/xForwardedForHeader'
- $ref: '#/components/parameters/code'
- $ref: '#/components/parameters/redirect-uri'
responses:
'201':
description: Login response body with access token
headers:
x-okapi-token:
required: true
description: An X-Okapi-Token header
schema:
type: string
refreshtoken:
required: true
description: A refresh token
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/loginResponseWithExpiry'
'400':
$ref: '#/components/responses/badRequestResponse'
'422':
$ref: '#/components/responses/unprocessableEntityResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/update:
post:
description: Self-update existing credentials.
operationId: updateCredentials
tags:
- credentials
parameters:
- $ref: '#/components/parameters/userAgentHeader'
- $ref: '#/components/parameters/xForwardedForHeader'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/updateCredentials'
responses:
'204':
description: Self-update existing credentials.
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/unauthorizedResponse'
'422':
$ref: '#/components/responses/unprocessableEntityResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/credentials:
post:
description: Add a new login to the system.
operationId: createCredentials
tags:
- credentials
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/loginCredentials'
responses:
'201':
description: Success string message
'400':
$ref: '#/components/responses/badRequestResponse'
'422':
$ref: '#/components/responses/unprocessableEntityResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
delete:
description: Delete credentials for user
operationId: deleteCredentials
tags:
- credentials
parameters:
- $ref: '#/components/parameters/userId'
responses:
'204':
description: Credentials removed successfully
'404':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/password/repeatable:
post:
description: Validate password for repeatability
operationId: validatePasswordRepeatability
tags:
- password
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/password'
responses:
'200':
description: Password validation result
content:
application/json:
schema:
$ref: '#/components/schemas/validPasswordResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/reset-password:
post:
description: Resets password for user in record and deletes action record
operationId: resetPassword
tags:
- password
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/passwordResetAction'
responses:
'201':
description: Login response body with access/refresh tokens
content:
application/json:
schema:
$ref: '#/components/schemas/responseResetAction'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/password-reset-action:
post:
description: Saves password reset action to storage
operationId: createResetPasswordAction
tags:
- password
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/passwordCreateAction'
responses:
'201':
description: Response to create a new password change action
content:
application/json:
schema:
$ref: '#/components/schemas/responseCreateAction'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/password-reset-action/{actionId}:
get:
description: Retrieves action record by id
operationId: getPasswordActionById
parameters:
- $ref: '#/components/parameters/actionId'
tags:
- password
responses:
'200':
description: Number of login attempts for user
content:
application/json:
schema:
$ref: '#/components/schemas/passwordCreateAction'
'400':
$ref: '#/components/responses/badRequestResponse'
'404':
$ref: '#/components/responses/entityNotFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/log/events:
get:
description: Returns a list of events retrieved from storage
operationId: getLogEvents
tags:
- logEvents
parameters:
- $ref: '#/components/parameters/length'
- $ref: '#/components/parameters/start'
- $ref: '#/components/parameters/query'
responses:
'200':
description: Log events
content:
application/json:
schema:
$ref: '#/components/schemas/logEventCollection'
'400':
$ref: '#/components/responses/badRequestResponse'
'404':
$ref: '#/components/responses/entityNotFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
post:
description: Saves received event into the storage
operationId: saveLogEvent
tags:
- logEvents
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/logEvent'
responses:
'201':
description: Saved Log event
content:
application/json:
schema:
$ref: '#/components/schemas/logResponse'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/log/events/{eventId}:
delete:
description: Saves received event into the storage
operationId: deleteLogEvent
tags:
- logEvents
parameters:
- $ref: '#/components/parameters/eventId'
responses:
'204':
description: No content response
'404':
$ref: '#/components/responses/entityNotFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/authn/credentials-existence:
get:
description: Returns single property 'credentialsExist' with true, if user has local password
operationId: checkCredentialsExistence
tags:
- credentials
parameters:
- $ref: '#/components/parameters/userId'
responses:
'200':
description: Credentials existence response
content:
application/json:
schema:
$ref: '#/components/schemas/credentialsExistence'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/token:
post:
operationId: token-legacy
description: |
***Not Implemented, Deprecated***
_Will be removed in a future releases_
Please use `/token/sign` instead. Returns a signed, non-expiring legacy access token.
parameters:
- $ref: '#/components/parameters/okapi-token-required'
- $ref: '#/components/parameters/okapi-url-required'
tags:
- authtoken
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/signTokenPayload"
responses:
'201':
description: Created and signed token successfully
content:
application/json:
schema:
$ref: "#/components/schemas/tokenResponseLegacy"
'501':
$ref: '#/components/responses/notImplementedEntityResponse'
/refreshtoken:
post:
operationId: token-sign-legacy
description: |
***Not Implemented***
Returns a signed, expiring refresh token. This is a legacy endpoint and should not be
called by new code and will soon be fully depreciated.
parameters:
- $ref: '#/components/parameters/okapi-token-required'
- $ref: '#/components/parameters/okapi-url-required'
tags:
- authtoken
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/signRefreshToken"
required: true
responses:
"201":
description: Created and signed token successfully
content:
application/json:
schema:
$ref: "#/components/schemas/token"
'501':
$ref: '#/components/responses/notImplementedEntityResponse'
/token/sign:
post:
operationId: token-sign
description: |
***Not Implemented***
Returns a signed, expiring access token and refresh token. Also returns the expiration
of each token in the body of the response. The access token time to live is 10 minutes and
the refresh token is one week.
tags:
- authtoken
parameters:
- $ref: '#/components/parameters/okapi-token-required'
- $ref: '#/components/parameters/okapi-url-required'
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/signTokenPayload"
required: true
responses:
"201":
description: Created and signed tokens successfully
content:
application/json:
schema:
$ref: "#/components/schemas/tokenResponse"
'501':
$ref: '#/components/responses/notImplementedEntityResponse'
/token/refresh:
post:
description: |
***Not Implemented***
Returns a new refresh token and a new access token. Also returns the expiration of each token
in the body of the response. Time to live is 10 minutes for the access token and one week for
the refresh token.
tags:
- authtoken
parameters:
- $ref: '#/components/parameters/okapi-token-required'
- $ref: '#/components/parameters/okapi-url-required'
operationId: token-refresh
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/refreshToken"
required: true
responses:
"201":
description: Refreshed tokens successfully
content:
application/json:
schema:
$ref: "#/components/schemas/tokenResponse"
'501':
$ref: '#/components/responses/notImplementedEntityResponse'
/token/invalidate:
post:
operationId: token-invalidate
description: |
***Not Implemented***
Invalidate a single token
tags:
- authtoken
parameters:
- $ref: '#/components/parameters/okapi-token-required'
- $ref: '#/components/parameters/okapi-url-required'
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/refreshToken"
required: true
responses:
"204":
description: Invalidated token successfully
'501':
$ref: '#/components/responses/notImplementedEntityResponse'
/token/invalidate-all:
post:
operationId: token-invalidate-all
description: |
***Not Implemented***
Invalidate all tokens for a user
tags:
- authtoken
parameters:
- $ref: '#/components/parameters/okapi-token-required'
- $ref: '#/components/parameters/okapi-url-required'
responses:
"204":
description: Invalidated tokens successfully
'501':
$ref: '#/components/responses/notImplementedEntityResponse'
tags:
- name: authtoken
description: |
Stub implementation for `authtoken` and `authtoken2` interfaces.
components:
schemas:
loginAttempts:
$ref: schemas/loginAttempts.json
loginCredentials:
$ref: schemas/loginCredentials.json
loginResponse:
$ref: schemas/loginResponse.json
loginResponseWithExpiry:
$ref: schemas/loginResponseWithExpiry.json
updateCredentials:
$ref: schemas/updateCredentials.json
password:
$ref: schemas/password.json
passwordCreateAction:
$ref: schemas/passwordCreateAction.json
passwordResetAction:
$ref: schemas/passwordResetAction.json
responseCreateAction:
$ref: schemas/responseCreateAction.json
responseResetAction:
$ref: schemas/responseResetAction.json
validPasswordResponse:
$ref: schemas/validPassword.json
logEvent:
$ref: schemas/logEvent.json
logEventCollection:
$ref: schemas/logEventCollection.json
logResponse:
$ref: schemas/logResponse.json
credentialsExistence:
$ref: schemas/credentialsExistence.json
token:
$ref: schemas/authtoken/token.json
tokenResponse:
$ref: schemas/authtoken/tokenResponse.json
tokenResponseLegacy:
$ref: schemas/authtoken/tokenResponseLegacy.json
refreshToken:
$ref: schemas/authtoken/refreshToken.json
signRefreshToken:
$ref: schemas/authtoken/signRefreshToken.json
signTokenPayload:
$ref: schemas/authtoken/signTokenPayload.json
errorResponse:
$ref: schemas/errors.json
responses:
badRequestResponse:
description: Error response in JSON format for validation errors.
content:
application/json:
schema:
$ref: '#/components/schemas/errorResponse'
unauthorizedResponse:
description: Error response in JSON format if user is not authorized to perform operation.
content:
application/json:
schema:
$ref: '#/components/schemas/errorResponse'
entityNotFoundResponse:
description: Error response if entity is not found by id (in json format)
content:
application/json:
schema:
$ref: '#/components/schemas/errorResponse'
unprocessableEntityResponse:
description: Error response in JSON format for unprocessable entity.
content:
application/json:
schema:
$ref: '#/components/schemas/errorResponse'
notImplementedEntityResponse:
description: Error response in JSON format for endpoints that are not implemented.
content:
application/json:
schema:
$ref: '#/components/schemas/errorResponse'
internalServerErrorResponse:
description: Error response for unhandled or critical server exceptions, e.g. NullPointerException.
content:
application/json:
schema:
$ref: '#/components/schemas/errorResponse'
parameters:
actionId:
in: path
required: true
name: actionId
description: Action Identifier
schema:
type: string
userId:
in: query
required: true
name: userId
description: User identifier
schema:
type: string
eventId:
in: path
required: true
name: eventId
description: Event Identifier
schema:
type: string
pathUserId:
in: path
required: true
name: userId
description: User identifier
schema:
type: string
userAgentHeader:
in: header
required: false
name: userAgent
description: Used to identify the Operating System and Browser of the web-server
schema:
type: string
xForwardedForHeader:
in: header
required: false
name: forwardedFor
description: -<
HTTP header field is a common method for identifying the originating IP address
of a client connecting to a web server through an HTTP proxy or load balancer
schema:
type: string
folioRefreshToken:
in: cookie
required: false
name: folioRefreshToken
description: Refresh token cookie
schema:
type: string
folioRefreshTokenRequired:
in: cookie
required: true
name: folioRefreshToken
description: Refresh token cookie
schema:
type: string
length:
in: query
name: length
description: The maximum number of results to return.
required: false
schema:
type: integer
minimum: 1
default: 10
example: 10
start:
in: query
name: start
description: The starting index in a list of results (starts at one).
schema:
type: integer
minimum: 1
default: 1
query:
in: query
name: query
description: A query string to filter users based on matching criteria in fields.
required: false
schema:
type: string
example: "10"
code:
in: query
required: true
name: code
description: temporary authentication code
schema:
type: string
redirect-uri:
in: query
required: true
name: redirect-uri
description: initial uri that was used as redirect uri for getting authentication code
schema:
type: string
okapi-token-required:
in: header
name: X-Okapi-Tenant
description: Okapi Tenant
required: true
schema:
type: string
okapi-url-required:
in: header
name: X-Okapi-Url
description: Okapi URL
required: true
schema:
type: string