Skip to content

Commit

Permalink
OIDC: document OidcError use (#3808)
Browse files Browse the repository at this point in the history
* comments

* Update src/oidc/authorize.ts

Co-authored-by: Richard van der Hoff <[email protected]>

* Update src/oidc/register.ts

Co-authored-by: Richard van der Hoff <[email protected]>

---------

Co-authored-by: Richard van der Hoff <[email protected]>
  • Loading branch information
Kerry and richvdh authored Oct 18, 2023
1 parent 6468d79 commit 4bcea2c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/oidc/authorize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ const normalizeBearerTokenResponseTokenType = (response: SigninResponse): Bearer
* @param code - authorization code as returned by OP during authorization
* @param storedAuthorizationParams - stored params from start of oidc login flow
* @returns valid bearer token response
* @throws when request fails, or returned token response is invalid
* @throws An `Error` with `message` set to an entry in {@link OidcError},
* when the request fails, or the returned token response is invalid.
*/
export const completeAuthorizationCodeGrant = async (
code: string,
Expand Down
4 changes: 4 additions & 0 deletions src/oidc/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

/**
* Errors expected to be encountered during OIDC discovery, client registration, and authentication.
* Not intended to be displayed directly to the user.
*/
export enum OidcError {
NotSupported = "OIDC authentication not supported",
Misconfigured = "OIDC is misconfigured",
Expand Down
5 changes: 5 additions & 0 deletions src/oidc/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,9 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

export * from "./authorize";
export * from "./discovery";
export * from "./error";
export * from "./register";
export * from "./tokenRefresher";
export * from "./validate";
3 changes: 2 additions & 1 deletion src/oidc/register.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ export type OidcRegistrationClientMetadata = {
* @param registrationEndpoint - URL as returned from issuer ./well-known/openid-configuration
* @param clientMetadata - registration metadata
* @returns resolves to the registered client id when registration is successful
* @throws when registration request fails, or response is invalid
* @throws An `Error` with `message` set to an entry in {@link OidcError},
* when the registration request fails, or the response is invalid.
*/
const doRegistration = async (
registrationEndpoint: string,
Expand Down

0 comments on commit 4bcea2c

Please sign in to comment.