-
Notifications
You must be signed in to change notification settings - Fork 0
Add tools and OAuth documentation #82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 16 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
bb96361
Add documentation for BBB.
CeEv 0ec02e3
fix typo
CeEv dcc2a6c
Add first part
CeEv 974038a
Part 1
CeEv e196a3d
Part 2
CeEv c2d9879
Update Getting started.md
CeEv ecbec05
Merge branch 'main' into add_tools
CeEv f5f8ac7
Cleanup
CeEv 8cbc704
Update Getting started.md
CeEv 3556277
Update Getting started.md
CeEv 78e7104
Update Getting started.md
CeEv a806cf5
Add OAuth docu
CeEv 4eae082
improve oauth and bbb docu
CeEv f0b6a6f
Update Getting started.md
CeEv dddecfa
Update Getting started.md
CeEv aa6c2f6
Update Getting started.md
CeEv 3d6c7f3
typo
CeEv File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| { | ||
| "label": "OAuth", | ||
| "position": 8, | ||
| "link": { | ||
| "type": "generated-index", | ||
| "description": "Learn about the OAuth strategy." | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # OAuth | ||
|
|
||
| ## Login Process in SVS | ||
|
|
||
|  | ||
|
|
||
| The following steps illustrated above: | ||
|
|
||
| 1. The client initiates the flow by click on the "Login via XYZ" button and directing the user to the authorization endpoint. | ||
| 2. The identity provider authenticates the user and establishes whether the resource owner grants or denies the client's access request. | ||
| 3. Assuming the resource owner grants access, the identity provider redirects the user back to the SVS-Client using the redirect_uri provided in the authentication endpoint request earlier. The redirect includes an authorization code provided by the identity provider. | ||
| 4. The client then requests an access token with the given authentication code from the SVS-Server which | ||
| 5. The client requests the signing key from the identity provider to validate the token signature. The SVS-Server validates the signature of the ID tokens according to the specified algorithm. | ||
| 6. The provisioning for the specific external system is executed to either create or update user data. | ||
| 7. A JWT is generated for the user | ||
| 8. The JWT is stored in the client for later request against the SVS-Server-API | ||
|
|
||
| ## Module Design | ||
|
|
||
|  |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| { | ||
| "label": "Tools", | ||
| "position": 13, | ||
| "link": { | ||
| "type": "generated-index", | ||
| "description": "Learn about tools." | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| # Concept of CTL | ||
|
|
||
| ## Configuration Validation Update | ||
|
|
||
| ### Change Matrix | ||
|
|
||
| | Change | SCHOOL affected | CONTEXT affected | | ||
| |--------|:---------------:|:----------------:| | ||
| | Change SCOPE of Parameter | ✅ | ✅ | | ||
| | New REQUIRED Parameter in SCHOOL | ✅ | ✅ | | ||
| | New REQUIRED Parameter in CONTEXT | ❌ | ✅ | | ||
| | New OPTIONAL Parameter in SCHOOL | ❌ | ❌ | | ||
| | New Optional Parameter in CONTEXT | ❌ | ❌ | | ||
| | Parameter NAME changed in SCHOOL | ✅ | ✅ | | ||
| | Parameter NAME changed in CONTEXT | ❌ | ✅ | | ||
| | Parameter REGEX changed/added in SCHOOL | ✅ | ✅ | | ||
| | Parameter REGEX changed/added in CONTEXT | ❌ | ✅ | | ||
| | Parameter made OPTIONAL in SCHOOL | ✅ | ❌ | | ||
| | Parameter made OPTIONAL in CONTEXT | ❌ | ✅ | | ||
| | Parameter made REQUIRED in SCHOOL | ✅ | ✅ | | ||
| | Parameter made REQUIRED in CONTEXT | ❌ | ✅ | | ||
| | Parameter TYPE changed in SCHOOL | ✅ | ✅ | | ||
| | Parameter TYPE changed in CONTEXT | ❌ | ✅ | | ||
|
|
||
| ### Validation Flow | ||
|
|
||
|  | ||
|
|
||
| ### OAuth Flow | ||
|
|
||
|  | ||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not sure this is needed / up-to-date
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Who can answer that? |
||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.