-
Notifications
You must be signed in to change notification settings - Fork 7
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
feat: support OIDC login #127
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 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 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,47 @@ | ||
/** | ||
Juju Admin version 4. | ||
This facade is available on: | ||
Controller-machine-agent | ||
Machine-agent | ||
Unit-agent | ||
Controllers | ||
Models | ||
*/ | ||
|
||
import type { JujuRequest } from "../../generator/interfaces.js"; | ||
import { ConnectionInfo, Transport } from "../client.js"; | ||
import AdminV3, { LoginResult } from "../facades/admin/AdminV3.js"; | ||
|
||
/** | ||
admin is the only object that unlogged-in clients can access. It holds any | ||
methods that are needed to log in. | ||
*/ | ||
class AdminV4 extends AdminV3 { | ||
static NAME = "Admin"; | ||
static VERSION = 4; | ||
|
||
NAME = "Admin"; | ||
VERSION = 4; | ||
|
||
constructor(transport: Transport, info: ConnectionInfo) { | ||
super(transport, info); | ||
} | ||
/** | ||
LoginWithSessionCookie logs in if the session cookie exists when the | ||
websocket connection is made. All subsequent requests on the | ||
connection will act as the authenticated user. | ||
*/ | ||
loginWithSessionCookie(): Promise<LoginResult> { | ||
return new Promise((resolve, reject) => { | ||
const req: JujuRequest = { | ||
type: "Admin", | ||
request: "LoginWithSessionCookie", | ||
version: 4, | ||
}; | ||
|
||
this._transport.write(req, resolve, reject); | ||
}); | ||
} | ||
} | ||
|
||
export default AdminV4; |
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was wondering if putting the optional param in
login
andconnectAndLogin
at the end of the params list might be a better practice? This way, when not available, we would just not pass the param at the end instead of passing it asundefined
in the middle.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In both cases
clientVersion
is also optional, but with a default value (in TS you can't mark a param as optional and provide a default value as the variable will always be initialised). Incidentally, having an optional param before a non-optional gives a TS error.Also, if we were to swap the order it would mean we would always have to provide the client version when we wanted to pass credentials, which would mean we wouldn't get the benefit of having a default value.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense. I didn't spot that
clientVersion
is provided a default value.