@atproto/oauth-provider 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.postcssrc.yml +3 -0
- package/CHANGELOG.md +19 -0
- package/LICENSE.txt +7 -0
- package/dist/access-token/access-token-type.d.ts +6 -0
- package/dist/access-token/access-token-type.d.ts.map +1 -0
- package/dist/access-token/access-token-type.js +10 -0
- package/dist/access-token/access-token-type.js.map +1 -0
- package/dist/account/account-manager.d.ts +14 -0
- package/dist/account/account-manager.d.ts.map +1 -0
- package/dist/account/account-manager.js +39 -0
- package/dist/account/account-manager.js.map +1 -0
- package/dist/account/account-store.d.ts +39 -0
- package/dist/account/account-store.d.ts.map +1 -0
- package/dist/account/account-store.js +19 -0
- package/dist/account/account-store.js.map +1 -0
- package/dist/account/account.d.ts +8 -0
- package/dist/account/account.d.ts.map +1 -0
- package/dist/account/account.js +3 -0
- package/dist/account/account.js.map +1 -0
- package/dist/assets/app/bundle-manifest.json +22 -0
- package/dist/assets/app/main.css +3 -0
- package/dist/assets/app/main.js +20 -0
- package/dist/assets/app/main.js.map +1 -0
- package/dist/assets/asset.d.ts +9 -0
- package/dist/assets/asset.d.ts.map +1 -0
- package/dist/assets/asset.js +3 -0
- package/dist/assets/asset.js.map +1 -0
- package/dist/assets/assets-middleware.d.ts +2 -0
- package/dist/assets/assets-middleware.d.ts.map +1 -0
- package/dist/assets/assets-middleware.js +30 -0
- package/dist/assets/assets-middleware.js.map +1 -0
- package/dist/assets/index.d.ts +4 -0
- package/dist/assets/index.d.ts.map +1 -0
- package/dist/assets/index.js +65 -0
- package/dist/assets/index.js.map +1 -0
- package/dist/client/client-auth.d.ts +13 -0
- package/dist/client/client-auth.d.ts.map +1 -0
- package/dist/client/client-auth.js +35 -0
- package/dist/client/client-auth.js.map +1 -0
- package/dist/client/client-data.d.ts +8 -0
- package/dist/client/client-data.d.ts.map +1 -0
- package/dist/client/client-data.js +3 -0
- package/dist/client/client-data.js.map +1 -0
- package/dist/client/client-id.d.ts +4 -0
- package/dist/client/client-id.d.ts.map +1 -0
- package/dist/client/client-id.js +6 -0
- package/dist/client/client-id.js.map +1 -0
- package/dist/client/client-info.d.ts +13 -0
- package/dist/client/client-info.d.ts.map +1 -0
- package/dist/client/client-info.js +3 -0
- package/dist/client/client-info.js.map +1 -0
- package/dist/client/client-manager.d.ts +38 -0
- package/dist/client/client-manager.d.ts.map +1 -0
- package/dist/client/client-manager.js +534 -0
- package/dist/client/client-manager.js.map +1 -0
- package/dist/client/client-store.d.ts +13 -0
- package/dist/client/client-store.d.ts.map +1 -0
- package/dist/client/client-store.js +39 -0
- package/dist/client/client-store.js.map +1 -0
- package/dist/client/client-utils.d.ts +6 -0
- package/dist/client/client-utils.d.ts.map +1 -0
- package/dist/client/client-utils.js +40 -0
- package/dist/client/client-utils.js.map +1 -0
- package/dist/client/client.d.ts +41 -0
- package/dist/client/client.d.ts.map +1 -0
- package/dist/client/client.js +163 -0
- package/dist/client/client.js.map +1 -0
- package/dist/constants.d.ts +42 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/constants.js +53 -0
- package/dist/constants.js.map +1 -0
- package/dist/device/device-data.d.ts +20 -0
- package/dist/device/device-data.d.ts.map +1 -0
- package/dist/device/device-data.js +11 -0
- package/dist/device/device-data.js.map +1 -0
- package/dist/device/device-details.d.ts +17 -0
- package/dist/device/device-details.d.ts.map +1 -0
- package/dist/device/device-details.js +34 -0
- package/dist/device/device-details.js.map +1 -0
- package/dist/device/device-id.d.ts +6 -0
- package/dist/device/device-id.d.ts.map +1 -0
- package/dist/device/device-id.js +18 -0
- package/dist/device/device-id.js.map +1 -0
- package/dist/device/device-manager.d.ts +88 -0
- package/dist/device/device-manager.d.ts.map +1 -0
- package/dist/device/device-manager.js +206 -0
- package/dist/device/device-manager.js.map +1 -0
- package/dist/device/device-store.d.ts +15 -0
- package/dist/device/device-store.d.ts.map +1 -0
- package/dist/device/device-store.js +36 -0
- package/dist/device/device-store.js.map +1 -0
- package/dist/device/session-id.d.ts +6 -0
- package/dist/device/session-id.d.ts.map +1 -0
- package/dist/device/session-id.js +18 -0
- package/dist/device/session-id.js.map +1 -0
- package/dist/dpop/dpop-manager.d.ts +33 -0
- package/dist/dpop/dpop-manager.d.ts.map +1 -0
- package/dist/dpop/dpop-manager.js +115 -0
- package/dist/dpop/dpop-manager.js.map +1 -0
- package/dist/dpop/dpop-nonce.d.ts +13 -0
- package/dist/dpop/dpop-nonce.d.ts.map +1 -0
- package/dist/dpop/dpop-nonce.js +94 -0
- package/dist/dpop/dpop-nonce.js.map +1 -0
- package/dist/errors/access-denied-error.d.ts +8 -0
- package/dist/errors/access-denied-error.d.ts.map +1 -0
- package/dist/errors/access-denied-error.js +21 -0
- package/dist/errors/access-denied-error.js.map +1 -0
- package/dist/errors/account-selection-required-error.d.ts +6 -0
- package/dist/errors/account-selection-required-error.d.ts.map +1 -0
- package/dist/errors/account-selection-required-error.js +11 -0
- package/dist/errors/account-selection-required-error.js.map +1 -0
- package/dist/errors/consent-required-error.d.ts +6 -0
- package/dist/errors/consent-required-error.d.ts.map +1 -0
- package/dist/errors/consent-required-error.js +11 -0
- package/dist/errors/consent-required-error.js.map +1 -0
- package/dist/errors/invalid-authorization-details-error.d.ts +20 -0
- package/dist/errors/invalid-authorization-details-error.d.ts.map +1 -0
- package/dist/errors/invalid-authorization-details-error.js +26 -0
- package/dist/errors/invalid-authorization-details-error.js.map +1 -0
- package/dist/errors/invalid-client-error.d.ts +18 -0
- package/dist/errors/invalid-client-error.d.ts.map +1 -0
- package/dist/errors/invalid-client-error.js +24 -0
- package/dist/errors/invalid-client-error.js.map +1 -0
- package/dist/errors/invalid-client-id-error.d.ts +13 -0
- package/dist/errors/invalid-client-id-error.d.ts.map +1 -0
- package/dist/errors/invalid-client-id-error.js +25 -0
- package/dist/errors/invalid-client-id-error.js.map +1 -0
- package/dist/errors/invalid-client-metadata-error.d.ts +13 -0
- package/dist/errors/invalid-client-metadata-error.d.ts.map +1 -0
- package/dist/errors/invalid-client-metadata-error.js +23 -0
- package/dist/errors/invalid-client-metadata-error.js.map +1 -0
- package/dist/errors/invalid-dpop-key-binding-error.d.ts +12 -0
- package/dist/errors/invalid-dpop-key-binding-error.d.ts.map +1 -0
- package/dist/errors/invalid-dpop-key-binding-error.js +20 -0
- package/dist/errors/invalid-dpop-key-binding-error.js.map +1 -0
- package/dist/errors/invalid-dpop-proof-error.d.ts +5 -0
- package/dist/errors/invalid-dpop-proof-error.d.ts.map +1 -0
- package/dist/errors/invalid-dpop-proof-error.js +12 -0
- package/dist/errors/invalid-dpop-proof-error.js.map +1 -0
- package/dist/errors/invalid-grant-error.d.ts +14 -0
- package/dist/errors/invalid-grant-error.d.ts.map +1 -0
- package/dist/errors/invalid-grant-error.js +20 -0
- package/dist/errors/invalid-grant-error.js.map +1 -0
- package/dist/errors/invalid-parameters-error.d.ts +6 -0
- package/dist/errors/invalid-parameters-error.d.ts.map +1 -0
- package/dist/errors/invalid-parameters-error.js +11 -0
- package/dist/errors/invalid-parameters-error.js.map +1 -0
- package/dist/errors/invalid-redirect-uri-error.d.ts +11 -0
- package/dist/errors/invalid-redirect-uri-error.d.ts.map +1 -0
- package/dist/errors/invalid-redirect-uri-error.js +21 -0
- package/dist/errors/invalid-redirect-uri-error.js.map +1 -0
- package/dist/errors/invalid-request-error.d.ts +28 -0
- package/dist/errors/invalid-request-error.d.ts.map +1 -0
- package/dist/errors/invalid-request-error.js +34 -0
- package/dist/errors/invalid-request-error.js.map +1 -0
- package/dist/errors/invalid-token-error.d.ts +16 -0
- package/dist/errors/invalid-token-error.d.ts.map +1 -0
- package/dist/errors/invalid-token-error.js +45 -0
- package/dist/errors/invalid-token-error.js.map +1 -0
- package/dist/errors/login-required-error.d.ts +6 -0
- package/dist/errors/login-required-error.d.ts.map +1 -0
- package/dist/errors/login-required-error.js +11 -0
- package/dist/errors/login-required-error.js.map +1 -0
- package/dist/errors/oauth-error.d.ts +13 -0
- package/dist/errors/oauth-error.d.ts.map +1 -0
- package/dist/errors/oauth-error.js +29 -0
- package/dist/errors/oauth-error.js.map +1 -0
- package/dist/errors/unauthorized-client-error.d.ts +18 -0
- package/dist/errors/unauthorized-client-error.d.ts.map +1 -0
- package/dist/errors/unauthorized-client-error.js +24 -0
- package/dist/errors/unauthorized-client-error.js.map +1 -0
- package/dist/errors/use-dpop-nonce-error.d.ts +18 -0
- package/dist/errors/use-dpop-nonce-error.d.ts.map +1 -0
- package/dist/errors/use-dpop-nonce-error.js +27 -0
- package/dist/errors/use-dpop-nonce-error.js.map +1 -0
- package/dist/errors/www-authenticate-error.d.ts +9 -0
- package/dist/errors/www-authenticate-error.d.ts.map +1 -0
- package/dist/errors/www-authenticate-error.js +46 -0
- package/dist/errors/www-authenticate-error.js.map +1 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +31 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/html/build-document.d.ts +32 -0
- package/dist/lib/html/build-document.d.ts.map +1 -0
- package/dist/lib/html/build-document.js +61 -0
- package/dist/lib/html/build-document.js.map +1 -0
- package/dist/lib/html/escapers.d.ts +9 -0
- package/dist/lib/html/escapers.d.ts.map +1 -0
- package/dist/lib/html/escapers.js +66 -0
- package/dist/lib/html/escapers.js.map +1 -0
- package/dist/lib/html/html.d.ts +13 -0
- package/dist/lib/html/html.d.ts.map +1 -0
- package/dist/lib/html/html.js +53 -0
- package/dist/lib/html/html.js.map +1 -0
- package/dist/lib/html/index.d.ts +4 -0
- package/dist/lib/html/index.d.ts.map +1 -0
- package/dist/lib/html/index.js +21 -0
- package/dist/lib/html/index.js.map +1 -0
- package/dist/lib/html/tags.d.ts +34 -0
- package/dist/lib/html/tags.d.ts.map +1 -0
- package/dist/lib/html/tags.js +47 -0
- package/dist/lib/html/tags.js.map +1 -0
- package/dist/lib/html/util.d.ts +4 -0
- package/dist/lib/html/util.d.ts.map +1 -0
- package/dist/lib/html/util.js +20 -0
- package/dist/lib/html/util.js.map +1 -0
- package/dist/lib/http/accept.d.ts +29 -0
- package/dist/lib/http/accept.d.ts.map +1 -0
- package/dist/lib/http/accept.js +67 -0
- package/dist/lib/http/accept.js.map +1 -0
- package/dist/lib/http/context.d.ts +5 -0
- package/dist/lib/http/context.d.ts.map +1 -0
- package/dist/lib/http/context.js +10 -0
- package/dist/lib/http/context.js.map +1 -0
- package/dist/lib/http/index.d.ts +10 -0
- package/dist/lib/http/index.d.ts.map +1 -0
- package/dist/lib/http/index.js +26 -0
- package/dist/lib/http/index.js.map +1 -0
- package/dist/lib/http/method.d.ts +6 -0
- package/dist/lib/http/method.d.ts.map +1 -0
- package/dist/lib/http/method.js +19 -0
- package/dist/lib/http/method.js.map +1 -0
- package/dist/lib/http/middleware.d.ts +18 -0
- package/dist/lib/http/middleware.d.ts.map +1 -0
- package/dist/lib/http/middleware.js +118 -0
- package/dist/lib/http/middleware.js.map +1 -0
- package/dist/lib/http/parser.d.ts +33 -0
- package/dist/lib/http/parser.d.ts.map +1 -0
- package/dist/lib/http/parser.js +48 -0
- package/dist/lib/http/parser.js.map +1 -0
- package/dist/lib/http/path.d.ts +9 -0
- package/dist/lib/http/path.d.ts.map +1 -0
- package/dist/lib/http/path.js +54 -0
- package/dist/lib/http/path.js.map +1 -0
- package/dist/lib/http/request.d.ts +33 -0
- package/dist/lib/http/request.d.ts.map +1 -0
- package/dist/lib/http/request.js +86 -0
- package/dist/lib/http/request.js.map +1 -0
- package/dist/lib/http/response.d.ts +13 -0
- package/dist/lib/http/response.d.ts.map +1 -0
- package/dist/lib/http/response.js +98 -0
- package/dist/lib/http/response.js.map +1 -0
- package/dist/lib/http/route.d.ts +25 -0
- package/dist/lib/http/route.d.ts.map +1 -0
- package/dist/lib/http/route.js +39 -0
- package/dist/lib/http/route.js.map +1 -0
- package/dist/lib/http/router.d.ts +32 -0
- package/dist/lib/http/router.d.ts.map +1 -0
- package/dist/lib/http/router.js +74 -0
- package/dist/lib/http/router.js.map +1 -0
- package/dist/lib/http/stream.d.ts +13 -0
- package/dist/lib/http/stream.d.ts.map +1 -0
- package/dist/lib/http/stream.js +46 -0
- package/dist/lib/http/stream.js.map +1 -0
- package/dist/lib/http/types.d.ts +7 -0
- package/dist/lib/http/types.d.ts.map +1 -0
- package/dist/lib/http/types.js +3 -0
- package/dist/lib/http/types.js.map +1 -0
- package/dist/lib/http/url.d.ts +8 -0
- package/dist/lib/http/url.d.ts.map +1 -0
- package/dist/lib/http/url.js +22 -0
- package/dist/lib/http/url.js.map +1 -0
- package/dist/lib/redis.d.ts +5 -0
- package/dist/lib/redis.d.ts.map +1 -0
- package/dist/lib/redis.js +22 -0
- package/dist/lib/redis.js.map +1 -0
- package/dist/lib/util/authorization-header.d.ts +4 -0
- package/dist/lib/util/authorization-header.d.ts.map +1 -0
- package/dist/lib/util/authorization-header.js +23 -0
- package/dist/lib/util/authorization-header.js.map +1 -0
- package/dist/lib/util/cast.d.ts +2 -0
- package/dist/lib/util/cast.d.ts.map +1 -0
- package/dist/lib/util/cast.js +10 -0
- package/dist/lib/util/cast.js.map +1 -0
- package/dist/lib/util/crypto.d.ts +3 -0
- package/dist/lib/util/crypto.d.ts.map +1 -0
- package/dist/lib/util/crypto.js +29 -0
- package/dist/lib/util/crypto.js.map +1 -0
- package/dist/lib/util/date.d.ts +3 -0
- package/dist/lib/util/date.d.ts.map +1 -0
- package/dist/lib/util/date.js +12 -0
- package/dist/lib/util/date.js.map +1 -0
- package/dist/lib/util/hostname.d.ts +6 -0
- package/dist/lib/util/hostname.d.ts.map +1 -0
- package/dist/lib/util/hostname.js +24 -0
- package/dist/lib/util/hostname.js.map +1 -0
- package/dist/lib/util/redirect-uri.d.ts +7 -0
- package/dist/lib/util/redirect-uri.d.ts.map +1 -0
- package/dist/lib/util/redirect-uri.js +44 -0
- package/dist/lib/util/redirect-uri.js.map +1 -0
- package/dist/lib/util/time.d.ts +6 -0
- package/dist/lib/util/time.d.ts.map +1 -0
- package/dist/lib/util/time.js +28 -0
- package/dist/lib/util/time.js.map +1 -0
- package/dist/lib/util/type.d.ts +6 -0
- package/dist/lib/util/type.d.ts.map +1 -0
- package/dist/lib/util/type.js +3 -0
- package/dist/lib/util/type.js.map +1 -0
- package/dist/lib/util/well-known.d.ts +3 -0
- package/dist/lib/util/well-known.d.ts.map +1 -0
- package/dist/lib/util/well-known.js +11 -0
- package/dist/lib/util/well-known.js.map +1 -0
- package/dist/metadata/build-metadata.d.ts +14 -0
- package/dist/metadata/build-metadata.d.ts.map +1 -0
- package/dist/metadata/build-metadata.js +132 -0
- package/dist/metadata/build-metadata.js.map +1 -0
- package/dist/oauth-client.d.ts +4 -0
- package/dist/oauth-client.d.ts.map +1 -0
- package/dist/oauth-client.js +19 -0
- package/dist/oauth-client.js.map +1 -0
- package/dist/oauth-dpop.d.ts +3 -0
- package/dist/oauth-dpop.d.ts.map +1 -0
- package/dist/oauth-dpop.js +19 -0
- package/dist/oauth-dpop.js.map +1 -0
- package/dist/oauth-errors.d.ts +20 -0
- package/dist/oauth-errors.d.ts.map +1 -0
- package/dist/oauth-errors.js +43 -0
- package/dist/oauth-errors.js.map +1 -0
- package/dist/oauth-hooks.d.ts +42 -0
- package/dist/oauth-hooks.d.ts.map +1 -0
- package/dist/oauth-hooks.js +3 -0
- package/dist/oauth-hooks.js.map +1 -0
- package/dist/oauth-provider.d.ts +179 -0
- package/dist/oauth-provider.d.ts.map +1 -0
- package/dist/oauth-provider.js +748 -0
- package/dist/oauth-provider.js.map +1 -0
- package/dist/oauth-store.d.ts +11 -0
- package/dist/oauth-store.d.ts.map +1 -0
- package/dist/oauth-store.js +27 -0
- package/dist/oauth-store.js.map +1 -0
- package/dist/oauth-verifier.d.ts +66 -0
- package/dist/oauth-verifier.d.ts.map +1 -0
- package/dist/oauth-verifier.js +94 -0
- package/dist/oauth-verifier.js.map +1 -0
- package/dist/oidc/claims.d.ts +16 -0
- package/dist/oidc/claims.d.ts.map +1 -0
- package/dist/oidc/claims.js +29 -0
- package/dist/oidc/claims.js.map +1 -0
- package/dist/oidc/sub.d.ts +4 -0
- package/dist/oidc/sub.d.ts.map +1 -0
- package/dist/oidc/sub.js +6 -0
- package/dist/oidc/sub.js.map +1 -0
- package/dist/oidc/userinfo.d.ts +7 -0
- package/dist/oidc/userinfo.d.ts.map +1 -0
- package/dist/oidc/userinfo.js +3 -0
- package/dist/oidc/userinfo.js.map +1 -0
- package/dist/output/build-error-payload.d.ts +6 -0
- package/dist/output/build-error-payload.d.ts.map +1 -0
- package/dist/output/build-error-payload.js +108 -0
- package/dist/output/build-error-payload.js.map +1 -0
- package/dist/output/customization.d.ts +37 -0
- package/dist/output/customization.d.ts.map +1 -0
- package/dist/output/customization.js +62 -0
- package/dist/output/customization.js.map +1 -0
- package/dist/output/send-authorize-page.d.ts +43 -0
- package/dist/output/send-authorize-page.d.ts.map +1 -0
- package/dist/output/send-authorize-page.js +49 -0
- package/dist/output/send-authorize-page.js.map +1 -0
- package/dist/output/send-authorize-redirect.d.ts +25 -0
- package/dist/output/send-authorize-redirect.d.ts.map +1 -0
- package/dist/output/send-authorize-redirect.js +72 -0
- package/dist/output/send-authorize-redirect.js.map +1 -0
- package/dist/output/send-error-page.d.ts +5 -0
- package/dist/output/send-error-page.d.ts.map +1 -0
- package/dist/output/send-error-page.js +31 -0
- package/dist/output/send-error-page.js.map +1 -0
- package/dist/output/send-web-page.d.ts +8 -0
- package/dist/output/send-web-page.d.ts.map +1 -0
- package/dist/output/send-web-page.js +48 -0
- package/dist/output/send-web-page.js.map +1 -0
- package/dist/parameters/claims-requested.d.ts +3 -0
- package/dist/parameters/claims-requested.d.ts.map +1 -0
- package/dist/parameters/claims-requested.js +77 -0
- package/dist/parameters/claims-requested.js.map +1 -0
- package/dist/parameters/oidc-payload.d.ts +31 -0
- package/dist/parameters/oidc-payload.d.ts.map +1 -0
- package/dist/parameters/oidc-payload.js +25 -0
- package/dist/parameters/oidc-payload.js.map +1 -0
- package/dist/replay/replay-manager.d.ts +10 -0
- package/dist/replay/replay-manager.d.ts.map +1 -0
- package/dist/replay/replay-manager.js +23 -0
- package/dist/replay/replay-manager.js.map +1 -0
- package/dist/replay/replay-store-memory.d.ts +11 -0
- package/dist/replay/replay-store-memory.d.ts.map +1 -0
- package/dist/replay/replay-store-memory.js +30 -0
- package/dist/replay/replay-store-memory.js.map +1 -0
- package/dist/replay/replay-store-redis.d.ts +16 -0
- package/dist/replay/replay-store-redis.d.ts.map +1 -0
- package/dist/replay/replay-store-redis.js +20 -0
- package/dist/replay/replay-store-redis.js.map +1 -0
- package/dist/replay/replay-store.d.ts +16 -0
- package/dist/replay/replay-store.d.ts.map +1 -0
- package/dist/replay/replay-store.js +22 -0
- package/dist/replay/replay-store.js.map +1 -0
- package/dist/request/code.d.ts +7 -0
- package/dist/request/code.d.ts.map +1 -0
- package/dist/request/code.js +20 -0
- package/dist/request/code.js.map +1 -0
- package/dist/request/request-data.d.ts +21 -0
- package/dist/request/request-data.d.ts.map +1 -0
- package/dist/request/request-data.js +6 -0
- package/dist/request/request-data.js.map +1 -0
- package/dist/request/request-id.d.ts +6 -0
- package/dist/request/request-id.d.ts.map +1 -0
- package/dist/request/request-id.js +18 -0
- package/dist/request/request-id.js.map +1 -0
- package/dist/request/request-info.d.ts +12 -0
- package/dist/request/request-info.d.ts.map +1 -0
- package/dist/request/request-info.js +3 -0
- package/dist/request/request-info.js.map +1 -0
- package/dist/request/request-manager.d.ts +40 -0
- package/dist/request/request-manager.d.ts.map +1 -0
- package/dist/request/request-manager.js +310 -0
- package/dist/request/request-manager.js.map +1 -0
- package/dist/request/request-store-memory.d.ts +16 -0
- package/dist/request/request-store-memory.d.ts.map +1 -0
- package/dist/request/request-store-memory.js +31 -0
- package/dist/request/request-store-memory.js.map +1 -0
- package/dist/request/request-store-redis.d.ts +24 -0
- package/dist/request/request-store-redis.d.ts.map +1 -0
- package/dist/request/request-store-redis.js +58 -0
- package/dist/request/request-store-redis.js.map +1 -0
- package/dist/request/request-store.d.ts +27 -0
- package/dist/request/request-store.d.ts.map +1 -0
- package/dist/request/request-store.js +37 -0
- package/dist/request/request-store.js.map +1 -0
- package/dist/request/request-uri.d.ts +8 -0
- package/dist/request/request-uri.d.ts.map +1 -0
- package/dist/request/request-uri.js +24 -0
- package/dist/request/request-uri.js.map +1 -0
- package/dist/request/types.d.ts +328 -0
- package/dist/request/types.d.ts.map +1 -0
- package/dist/request/types.js +27 -0
- package/dist/request/types.js.map +1 -0
- package/dist/signer/signed-token-payload.d.ts +1694 -0
- package/dist/signer/signed-token-payload.d.ts.map +1 -0
- package/dist/signer/signed-token-payload.js +32 -0
- package/dist/signer/signed-token-payload.js.map +1 -0
- package/dist/signer/signer.d.ts +193 -0
- package/dist/signer/signer.d.ts.map +1 -0
- package/dist/signer/signer.js +101 -0
- package/dist/signer/signer.js.map +1 -0
- package/dist/token/refresh-token.d.ts +7 -0
- package/dist/token/refresh-token.d.ts.map +1 -0
- package/dist/token/refresh-token.js +20 -0
- package/dist/token/refresh-token.js.map +1 -0
- package/dist/token/token-claims.d.ts +1687 -0
- package/dist/token/token-claims.d.ts.map +1 -0
- package/dist/token/token-claims.js +30 -0
- package/dist/token/token-claims.js.map +1 -0
- package/dist/token/token-data.d.ts +20 -0
- package/dist/token/token-data.d.ts.map +1 -0
- package/dist/token/token-data.js +3 -0
- package/dist/token/token-data.js.map +1 -0
- package/dist/token/token-id.d.ts +7 -0
- package/dist/token/token-id.d.ts.map +1 -0
- package/dist/token/token-id.js +20 -0
- package/dist/token/token-id.js.map +1 -0
- package/dist/token/token-manager.d.ts +48 -0
- package/dist/token/token-manager.d.ts.map +1 -0
- package/dist/token/token-manager.js +421 -0
- package/dist/token/token-manager.js.map +1 -0
- package/dist/token/token-store.d.ts +35 -0
- package/dist/token/token-store.d.ts.map +1 -0
- package/dist/token/token-store.js +38 -0
- package/dist/token/token-store.js.map +1 -0
- package/dist/token/types.d.ts +250 -0
- package/dist/token/types.d.ts.map +1 -0
- package/dist/token/types.js +36 -0
- package/dist/token/types.js.map +1 -0
- package/dist/token/verify-token-claims.d.ts +17 -0
- package/dist/token/verify-token-claims.d.ts.map +1 -0
- package/dist/token/verify-token-claims.js +39 -0
- package/dist/token/verify-token-claims.js.map +1 -0
- package/package.json +83 -0
- package/rollup.config.js +55 -0
- package/src/access-token/access-token-type.ts +5 -0
- package/src/account/account-manager.ts +55 -0
- package/src/account/account-store.ts +74 -0
- package/src/account/account.ts +10 -0
- package/src/assets/app/app.tsx +28 -0
- package/src/assets/app/backend-data.ts +65 -0
- package/src/assets/app/components/accept-form.tsx +112 -0
- package/src/assets/app/components/account-identifier.tsx +18 -0
- package/src/assets/app/components/account-picker.tsx +108 -0
- package/src/assets/app/components/client-identifier.tsx +32 -0
- package/src/assets/app/components/client-name.tsx +30 -0
- package/src/assets/app/components/error-card.tsx +41 -0
- package/src/assets/app/components/help-card.tsx +42 -0
- package/src/assets/app/components/layout-title-page.tsx +43 -0
- package/src/assets/app/components/layout-welcome.tsx +58 -0
- package/src/assets/app/components/sign-in-form.tsx +290 -0
- package/src/assets/app/components/sign-up-account-form.tsx +210 -0
- package/src/assets/app/components/sign-up-disclaimer.tsx +44 -0
- package/src/assets/app/components/url-viewer.tsx +70 -0
- package/src/assets/app/cookies.ts +11 -0
- package/src/assets/app/hooks/use-api.ts +104 -0
- package/src/assets/app/hooks/use-bound-dispatch.ts +5 -0
- package/src/assets/app/hooks/use-csrf-token.ts +5 -0
- package/src/assets/app/lib/api.ts +64 -0
- package/src/assets/app/lib/clsx.ts +4 -0
- package/src/assets/app/lib/util.ts +10 -0
- package/src/assets/app/main.css +11 -0
- package/src/assets/app/main.tsx +28 -0
- package/src/assets/app/views/accept-view.tsx +51 -0
- package/src/assets/app/views/authorize-view.tsx +101 -0
- package/src/assets/app/views/error-view.tsx +27 -0
- package/src/assets/app/views/sign-in-view.tsx +121 -0
- package/src/assets/app/views/sign-up-view.tsx +93 -0
- package/src/assets/app/views/welcome-view.tsx +61 -0
- package/src/assets/asset.ts +8 -0
- package/src/assets/assets-middleware.ts +32 -0
- package/src/assets/index.ts +74 -0
- package/src/client/client-auth.ts +45 -0
- package/src/client/client-data.ts +9 -0
- package/src/client/client-id.ts +4 -0
- package/src/client/client-info.ts +13 -0
- package/src/client/client-manager.ts +818 -0
- package/src/client/client-store.ts +38 -0
- package/src/client/client-utils.ts +43 -0
- package/src/client/client.ts +231 -0
- package/src/constants.ts +69 -0
- package/src/device/device-data.ts +11 -0
- package/src/device/device-details.ts +43 -0
- package/src/device/device-id.ts +23 -0
- package/src/device/device-manager.ts +287 -0
- package/src/device/device-store.ts +35 -0
- package/src/device/session-id.ts +22 -0
- package/src/dpop/dpop-manager.ts +147 -0
- package/src/dpop/dpop-nonce.ts +104 -0
- package/src/errors/access-denied-error.ts +26 -0
- package/src/errors/account-selection-required-error.ts +12 -0
- package/src/errors/consent-required-error.ts +12 -0
- package/src/errors/invalid-authorization-details-error.ts +22 -0
- package/src/errors/invalid-client-error.ts +20 -0
- package/src/errors/invalid-client-id-error.ts +20 -0
- package/src/errors/invalid-client-metadata-error.ts +19 -0
- package/src/errors/invalid-dpop-key-binding-error.ts +21 -0
- package/src/errors/invalid-dpop-proof-error.ts +13 -0
- package/src/errors/invalid-grant-error.ts +16 -0
- package/src/errors/invalid-parameters-error.ts +12 -0
- package/src/errors/invalid-redirect-uri-error.ts +17 -0
- package/src/errors/invalid-request-error.ts +30 -0
- package/src/errors/invalid-token-error.ts +59 -0
- package/src/errors/login-required-error.ts +12 -0
- package/src/errors/oauth-error.ts +28 -0
- package/src/errors/unauthorized-client-error.ts +20 -0
- package/src/errors/use-dpop-nonce-error.ts +32 -0
- package/src/errors/www-authenticate-error.ts +65 -0
- package/src/index.ts +15 -0
- package/src/lib/html/README.md +9 -0
- package/src/lib/html/build-document.ts +98 -0
- package/src/lib/html/escapers.ts +66 -0
- package/src/lib/html/html.ts +61 -0
- package/src/lib/html/index.ts +5 -0
- package/src/lib/html/tags.ts +58 -0
- package/src/lib/html/util.ts +21 -0
- package/src/lib/http/README.md +11 -0
- package/src/lib/http/accept.ts +91 -0
- package/src/lib/http/context.ts +11 -0
- package/src/lib/http/index.ts +9 -0
- package/src/lib/http/method.ts +18 -0
- package/src/lib/http/middleware.ts +183 -0
- package/src/lib/http/parser.ts +64 -0
- package/src/lib/http/path.ts +82 -0
- package/src/lib/http/request.ts +141 -0
- package/src/lib/http/response.ts +133 -0
- package/src/lib/http/route.ts +56 -0
- package/src/lib/http/router.ts +118 -0
- package/src/lib/http/stream.ts +78 -0
- package/src/lib/http/types.ts +22 -0
- package/src/lib/http/url.ts +23 -0
- package/src/lib/redis.ts +23 -0
- package/src/lib/util/authorization-header.ts +26 -0
- package/src/lib/util/cast.ts +4 -0
- package/src/lib/util/crypto.ts +27 -0
- package/src/lib/util/date.ts +7 -0
- package/src/lib/util/hostname.ts +19 -0
- package/src/lib/util/redirect-uri.ts +46 -0
- package/src/lib/util/time.ts +33 -0
- package/src/lib/util/type.ts +4 -0
- package/src/lib/util/well-known.ts +8 -0
- package/src/metadata/build-metadata.ts +165 -0
- package/src/oauth-client.ts +3 -0
- package/src/oauth-dpop.ts +2 -0
- package/src/oauth-errors.ts +21 -0
- package/src/oauth-hooks.ts +66 -0
- package/src/oauth-provider.ts +1409 -0
- package/src/oauth-store.ts +11 -0
- package/src/oauth-verifier.ts +219 -0
- package/src/oidc/claims.ts +35 -0
- package/src/oidc/sub.ts +4 -0
- package/src/oidc/userinfo.ts +11 -0
- package/src/output/build-error-payload.ts +143 -0
- package/src/output/customization.ts +96 -0
- package/src/output/send-authorize-page.ts +111 -0
- package/src/output/send-authorize-redirect.ts +130 -0
- package/src/output/send-error-page.ts +41 -0
- package/src/output/send-web-page.ts +66 -0
- package/src/parameters/claims-requested.ts +106 -0
- package/src/parameters/oidc-payload.ts +28 -0
- package/src/replay/replay-manager.ts +38 -0
- package/src/replay/replay-store-memory.ts +36 -0
- package/src/replay/replay-store-redis.ts +31 -0
- package/src/replay/replay-store.ts +44 -0
- package/src/request/code.ts +24 -0
- package/src/request/request-data.ts +26 -0
- package/src/request/request-id.ts +23 -0
- package/src/request/request-info.ts +12 -0
- package/src/request/request-manager.ts +479 -0
- package/src/request/request-store-memory.ts +39 -0
- package/src/request/request-store-redis.ts +71 -0
- package/src/request/request-store.ts +54 -0
- package/src/request/request-uri.ts +29 -0
- package/src/request/types.ts +48 -0
- package/src/signer/signed-token-payload.ts +35 -0
- package/src/signer/signer.ts +165 -0
- package/src/token/refresh-token.ts +31 -0
- package/src/token/token-claims.ts +31 -0
- package/src/token/token-data.ts +33 -0
- package/src/token/token-id.ts +26 -0
- package/src/token/token-manager.ts +591 -0
- package/src/token/token-store.ts +78 -0
- package/src/token/types.ts +86 -0
- package/src/token/verify-token-claims.ts +65 -0
- package/tailwind.config.js +13 -0
- package/tsconfig.backend.json +9 -0
- package/tsconfig.frontend.json +11 -0
- package/tsconfig.json +8 -0
- package/tsconfig.tools.json +8 -0
@@ -0,0 +1,48 @@
|
|
1
|
+
import { signedJwtSchema, unsignedJwtSchema } from '@atproto/jwk'
|
2
|
+
import {
|
3
|
+
oauthAuthenticationRequestParametersSchema,
|
4
|
+
oauthClientIdentificationSchema,
|
5
|
+
} from '@atproto/oauth-types'
|
6
|
+
import { z } from 'zod'
|
7
|
+
|
8
|
+
import { requestUriSchema } from './request-uri.js'
|
9
|
+
|
10
|
+
export const authorizationRequestJarSchema = z.object({
|
11
|
+
/**
|
12
|
+
* AuthorizationRequest inside a JWT:
|
13
|
+
* - "iat" is required and **MUST** be less than one minute
|
14
|
+
*
|
15
|
+
* @see {@link https://datatracker.ietf.org/doc/html/rfc9101}
|
16
|
+
*/
|
17
|
+
request: z.union([signedJwtSchema, unsignedJwtSchema]),
|
18
|
+
})
|
19
|
+
|
20
|
+
export type AuthorizationRequestJar = z.infer<
|
21
|
+
typeof authorizationRequestJarSchema
|
22
|
+
>
|
23
|
+
|
24
|
+
export const pushedAuthorizationRequestSchema = z.intersection(
|
25
|
+
oauthClientIdentificationSchema,
|
26
|
+
z.union([
|
27
|
+
oauthAuthenticationRequestParametersSchema,
|
28
|
+
authorizationRequestJarSchema,
|
29
|
+
//
|
30
|
+
]),
|
31
|
+
)
|
32
|
+
|
33
|
+
export type PushedAuthorizationRequest = z.infer<
|
34
|
+
typeof pushedAuthorizationRequestSchema
|
35
|
+
>
|
36
|
+
|
37
|
+
export const authorizationRequestQuerySchema = z.intersection(
|
38
|
+
oauthClientIdentificationSchema,
|
39
|
+
z.union([
|
40
|
+
oauthAuthenticationRequestParametersSchema,
|
41
|
+
authorizationRequestJarSchema,
|
42
|
+
z.object({ request_uri: requestUriSchema }),
|
43
|
+
]),
|
44
|
+
)
|
45
|
+
|
46
|
+
export type AuthorizationRequestQuery = z.infer<
|
47
|
+
typeof authorizationRequestQuerySchema
|
48
|
+
>
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import { jwtPayloadSchema } from '@atproto/jwk'
|
2
|
+
import z from 'zod'
|
3
|
+
|
4
|
+
import { clientIdSchema } from '../client/client-id.js'
|
5
|
+
import { Simplify } from '../lib/util/type.js'
|
6
|
+
import { subSchema } from '../oidc/sub.js'
|
7
|
+
import { tokenIdSchema } from '../token/token-id.js'
|
8
|
+
|
9
|
+
export const signedTokenPayloadSchema = z.intersection(
|
10
|
+
jwtPayloadSchema
|
11
|
+
.pick({
|
12
|
+
exp: true,
|
13
|
+
iat: true,
|
14
|
+
iss: true,
|
15
|
+
aud: true,
|
16
|
+
})
|
17
|
+
.required(),
|
18
|
+
jwtPayloadSchema
|
19
|
+
.omit({
|
20
|
+
exp: true,
|
21
|
+
iat: true,
|
22
|
+
iss: true,
|
23
|
+
aud: true,
|
24
|
+
})
|
25
|
+
.partial()
|
26
|
+
.extend({
|
27
|
+
jti: tokenIdSchema,
|
28
|
+
sub: subSchema,
|
29
|
+
client_id: clientIdSchema,
|
30
|
+
}),
|
31
|
+
)
|
32
|
+
|
33
|
+
export type SignedTokenPayload = Simplify<
|
34
|
+
z.infer<typeof signedTokenPayloadSchema>
|
35
|
+
>
|
@@ -0,0 +1,165 @@
|
|
1
|
+
import { randomBytes } from 'node:crypto'
|
2
|
+
|
3
|
+
import {
|
4
|
+
JwtPayload,
|
5
|
+
JwtPayloadGetter,
|
6
|
+
JwtSignHeader,
|
7
|
+
Keyset,
|
8
|
+
SignedJwt,
|
9
|
+
VerifyOptions,
|
10
|
+
} from '@atproto/jwk'
|
11
|
+
import {
|
12
|
+
OAuthAuthenticationRequestParameters,
|
13
|
+
OAuthAuthorizationDetails,
|
14
|
+
} from '@atproto/oauth-types'
|
15
|
+
import { generate as hash } from 'oidc-token-hash'
|
16
|
+
|
17
|
+
import { Account } from '../account/account.js'
|
18
|
+
import { Client } from '../client/client.js'
|
19
|
+
import { InvalidClientMetadataError } from '../errors/invalid-client-metadata-error.js'
|
20
|
+
import { dateToEpoch } from '../lib/util/date.js'
|
21
|
+
import { claimRequested } from '../parameters/claims-requested.js'
|
22
|
+
import { oidcPayload } from '../parameters/oidc-payload.js'
|
23
|
+
import { TokenId } from '../token/token-id.js'
|
24
|
+
import {
|
25
|
+
SignedTokenPayload,
|
26
|
+
signedTokenPayloadSchema,
|
27
|
+
} from './signed-token-payload.js'
|
28
|
+
|
29
|
+
export type SignPayload = Omit<JwtPayload, 'iss'>
|
30
|
+
|
31
|
+
export class Signer {
|
32
|
+
constructor(
|
33
|
+
public readonly issuer: string,
|
34
|
+
public readonly keyset: Keyset,
|
35
|
+
) {}
|
36
|
+
|
37
|
+
async verify<P extends Record<string, unknown> = JwtPayload>(
|
38
|
+
token: SignedJwt,
|
39
|
+
options?: Omit<VerifyOptions, 'issuer'>,
|
40
|
+
) {
|
41
|
+
return this.keyset.verifyJwt<P>(token, {
|
42
|
+
...options,
|
43
|
+
issuer: [this.issuer],
|
44
|
+
})
|
45
|
+
}
|
46
|
+
|
47
|
+
public async sign(
|
48
|
+
signHeader: JwtSignHeader,
|
49
|
+
payload: SignPayload | JwtPayloadGetter<SignPayload>,
|
50
|
+
): Promise<SignedJwt> {
|
51
|
+
return this.keyset.createJwt(signHeader, async (protectedHeader, key) => ({
|
52
|
+
...(typeof payload === 'function'
|
53
|
+
? await payload(protectedHeader, key)
|
54
|
+
: payload),
|
55
|
+
iss: this.issuer,
|
56
|
+
}))
|
57
|
+
}
|
58
|
+
|
59
|
+
async accessToken(
|
60
|
+
client: Client,
|
61
|
+
parameters: OAuthAuthenticationRequestParameters,
|
62
|
+
account: Account,
|
63
|
+
extra: {
|
64
|
+
jti: TokenId
|
65
|
+
exp: Date
|
66
|
+
iat?: Date
|
67
|
+
alg?: string
|
68
|
+
cnf?: Record<string, string>
|
69
|
+
authorization_details?: OAuthAuthorizationDetails
|
70
|
+
},
|
71
|
+
): Promise<SignedJwt> {
|
72
|
+
const header: JwtSignHeader = {
|
73
|
+
// https://datatracker.ietf.org/doc/html/rfc9068#section-2.1
|
74
|
+
alg: extra.alg,
|
75
|
+
typ: 'at+jwt',
|
76
|
+
}
|
77
|
+
|
78
|
+
const payload: Omit<SignedTokenPayload, 'iss'> = {
|
79
|
+
aud: account.aud,
|
80
|
+
iat: dateToEpoch(extra?.iat),
|
81
|
+
exp: dateToEpoch(extra.exp),
|
82
|
+
sub: account.sub,
|
83
|
+
jti: extra.jti,
|
84
|
+
cnf: extra.cnf,
|
85
|
+
// https://datatracker.ietf.org/doc/html/rfc8693#section-4.3
|
86
|
+
client_id: client.id,
|
87
|
+
scope: parameters.scope || client.metadata.scope,
|
88
|
+
authorization_details: extra.authorization_details,
|
89
|
+
}
|
90
|
+
|
91
|
+
return this.sign(header, payload)
|
92
|
+
}
|
93
|
+
|
94
|
+
async verifyAccessToken(token: SignedJwt) {
|
95
|
+
const result = await this.verify<SignedTokenPayload>(token, {
|
96
|
+
typ: 'at+jwt',
|
97
|
+
})
|
98
|
+
|
99
|
+
// The result is already type casted as an AccessTokenPayload, but we need
|
100
|
+
// to actually verify this. That should already be covered by the fact that
|
101
|
+
// we don't sign 'at+jwt' tokens without a valid token ID. Let's double
|
102
|
+
// check in case another version/implementation was used to generate the
|
103
|
+
// token.
|
104
|
+
signedTokenPayloadSchema.parse(result.payload)
|
105
|
+
|
106
|
+
return result
|
107
|
+
}
|
108
|
+
|
109
|
+
async idToken(
|
110
|
+
client: Client,
|
111
|
+
params: OAuthAuthenticationRequestParameters,
|
112
|
+
account: Account,
|
113
|
+
extra: {
|
114
|
+
exp: Date
|
115
|
+
iat?: Date
|
116
|
+
auth_time?: Date
|
117
|
+
code?: string
|
118
|
+
access_token?: string
|
119
|
+
},
|
120
|
+
): Promise<SignedJwt> {
|
121
|
+
// This can happen when a client is using password_grant. If a client is
|
122
|
+
// using password_grant, it should not set "require_auth_time" to true.
|
123
|
+
if (client.metadata.require_auth_time && extra.auth_time == null) {
|
124
|
+
throw new InvalidClientMetadataError(
|
125
|
+
'"require_auth_time" metadata is not compatible with "password_grant" flow',
|
126
|
+
)
|
127
|
+
}
|
128
|
+
|
129
|
+
return this.sign(
|
130
|
+
{
|
131
|
+
alg: client.metadata.id_token_signed_response_alg,
|
132
|
+
typ: 'JWT',
|
133
|
+
},
|
134
|
+
async ({ alg }, key) => ({
|
135
|
+
...oidcPayload(params, account),
|
136
|
+
|
137
|
+
aud: client.id,
|
138
|
+
iat: dateToEpoch(extra.iat),
|
139
|
+
exp: dateToEpoch(extra.exp),
|
140
|
+
sub: account.sub,
|
141
|
+
jti: randomBytes(16).toString('hex'),
|
142
|
+
scope: params.scope,
|
143
|
+
nonce: params.nonce,
|
144
|
+
|
145
|
+
s_hash: params.state //
|
146
|
+
? await hash(params.state, alg, key.crv)
|
147
|
+
: undefined,
|
148
|
+
c_hash: extra.code //
|
149
|
+
? await hash(extra.code, alg, key.crv)
|
150
|
+
: undefined,
|
151
|
+
at_hash: extra.access_token //
|
152
|
+
? await hash(extra.access_token, alg, key.crv)
|
153
|
+
: undefined,
|
154
|
+
|
155
|
+
// https://openid.net/specs/openid-provider-authentication-policy-extension-1_0.html#rfc.section.5.2
|
156
|
+
auth_time:
|
157
|
+
client.metadata.require_auth_time ||
|
158
|
+
(extra.auth_time != null && params.max_age != null) ||
|
159
|
+
claimRequested(params, 'id_token', 'auth_time', extra.auth_time)
|
160
|
+
? dateToEpoch(extra.auth_time!)
|
161
|
+
: undefined,
|
162
|
+
}),
|
163
|
+
)
|
164
|
+
}
|
165
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import { z } from 'zod'
|
2
|
+
|
3
|
+
import {
|
4
|
+
REFRESH_TOKEN_BYTES_LENGTH,
|
5
|
+
REFRESH_TOKEN_PREFIX,
|
6
|
+
} from '../constants.js'
|
7
|
+
import { randomHexId } from '../lib/util/crypto.js'
|
8
|
+
|
9
|
+
export const REFRESH_TOKEN_LENGTH =
|
10
|
+
REFRESH_TOKEN_PREFIX.length + REFRESH_TOKEN_BYTES_LENGTH * 2 // hex encoding
|
11
|
+
|
12
|
+
export const refreshTokenSchema = z
|
13
|
+
.string()
|
14
|
+
.length(REFRESH_TOKEN_LENGTH)
|
15
|
+
.refine(
|
16
|
+
(v): v is `${typeof REFRESH_TOKEN_PREFIX}${string}` =>
|
17
|
+
v.startsWith(REFRESH_TOKEN_PREFIX),
|
18
|
+
{
|
19
|
+
message: `Invalid refresh token format`,
|
20
|
+
},
|
21
|
+
)
|
22
|
+
|
23
|
+
export const isRefreshToken = (data: unknown): data is RefreshToken =>
|
24
|
+
refreshTokenSchema.safeParse(data).success
|
25
|
+
|
26
|
+
export type RefreshToken = z.infer<typeof refreshTokenSchema>
|
27
|
+
export const generateRefreshToken = async (): Promise<RefreshToken> => {
|
28
|
+
return `${REFRESH_TOKEN_PREFIX}${await randomHexId(
|
29
|
+
REFRESH_TOKEN_BYTES_LENGTH,
|
30
|
+
)}`
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import { jwtPayloadSchema } from '@atproto/jwk'
|
2
|
+
import z from 'zod'
|
3
|
+
|
4
|
+
import { clientIdSchema } from '../client/client-id.js'
|
5
|
+
import { Simplify } from '../lib/util/type.js'
|
6
|
+
import { subSchema } from '../oidc/sub.js'
|
7
|
+
|
8
|
+
export const tokenClaimsSchema = z.intersection(
|
9
|
+
jwtPayloadSchema
|
10
|
+
.pick({
|
11
|
+
iat: true,
|
12
|
+
exp: true,
|
13
|
+
aud: true,
|
14
|
+
})
|
15
|
+
.required(),
|
16
|
+
jwtPayloadSchema
|
17
|
+
.omit({
|
18
|
+
exp: true,
|
19
|
+
iat: true,
|
20
|
+
iss: true,
|
21
|
+
aud: true,
|
22
|
+
jti: true,
|
23
|
+
})
|
24
|
+
.partial()
|
25
|
+
.extend({
|
26
|
+
sub: subSchema,
|
27
|
+
client_id: clientIdSchema,
|
28
|
+
}),
|
29
|
+
)
|
30
|
+
|
31
|
+
export type TokenClaims = Simplify<z.infer<typeof tokenClaimsSchema>>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import {
|
2
|
+
OAuthAuthenticationRequestParameters,
|
3
|
+
OAuthAuthorizationDetails,
|
4
|
+
} from '@atproto/oauth-types'
|
5
|
+
|
6
|
+
import { ClientAuth } from '../client/client-auth.js'
|
7
|
+
import { ClientId } from '../client/client-id.js'
|
8
|
+
import { DeviceId } from '../device/device-id.js'
|
9
|
+
import { Sub } from '../oidc/sub.js'
|
10
|
+
import { Code } from '../request/code.js'
|
11
|
+
|
12
|
+
export type {
|
13
|
+
ClientAuth,
|
14
|
+
ClientId,
|
15
|
+
Code,
|
16
|
+
DeviceId,
|
17
|
+
OAuthAuthenticationRequestParameters,
|
18
|
+
OAuthAuthorizationDetails,
|
19
|
+
Sub,
|
20
|
+
}
|
21
|
+
|
22
|
+
export type TokenData = {
|
23
|
+
createdAt: Date
|
24
|
+
updatedAt: Date
|
25
|
+
expiresAt: Date
|
26
|
+
clientId: ClientId
|
27
|
+
clientAuth: ClientAuth
|
28
|
+
deviceId: DeviceId | null
|
29
|
+
sub: Sub
|
30
|
+
parameters: OAuthAuthenticationRequestParameters
|
31
|
+
details: OAuthAuthorizationDetails | null
|
32
|
+
code: Code | null
|
33
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import { z } from 'zod'
|
2
|
+
|
3
|
+
import { TOKEN_ID_BYTES_LENGTH, TOKEN_ID_PREFIX } from '../constants.js'
|
4
|
+
import { randomHexId } from '../lib/util/crypto.js'
|
5
|
+
|
6
|
+
export const TOKEN_ID_LENGTH =
|
7
|
+
TOKEN_ID_PREFIX.length + TOKEN_ID_BYTES_LENGTH * 2 // hex encoding
|
8
|
+
|
9
|
+
export const tokenIdSchema = z
|
10
|
+
.string()
|
11
|
+
.length(TOKEN_ID_LENGTH)
|
12
|
+
.refine(
|
13
|
+
(v): v is `${typeof TOKEN_ID_PREFIX}${string}` =>
|
14
|
+
v.startsWith(TOKEN_ID_PREFIX),
|
15
|
+
{
|
16
|
+
message: `Invalid token ID format`,
|
17
|
+
},
|
18
|
+
)
|
19
|
+
|
20
|
+
export type TokenId = z.infer<typeof tokenIdSchema>
|
21
|
+
export const generateTokenId = async (): Promise<TokenId> => {
|
22
|
+
return `${TOKEN_ID_PREFIX}${await randomHexId(TOKEN_ID_BYTES_LENGTH)}`
|
23
|
+
}
|
24
|
+
|
25
|
+
export const isTokenId = (data: unknown): data is TokenId =>
|
26
|
+
tokenIdSchema.safeParse(data).success
|