@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,11 @@
|
|
1
|
+
/**
|
2
|
+
* Every store file exports all the types needed to implement that store. This
|
3
|
+
* files re-exports all the types from the x-store files.
|
4
|
+
*/
|
5
|
+
|
6
|
+
export * from './account/account-store.js'
|
7
|
+
export * from './client/client-store.js'
|
8
|
+
export * from './device/device-store.js'
|
9
|
+
export * from './replay/replay-store.js'
|
10
|
+
export * from './request/request-store.js'
|
11
|
+
export * from './token/token-store.js'
|
@@ -0,0 +1,219 @@
|
|
1
|
+
import { Key, Keyset, isSignedJwt } from '@atproto/jwk'
|
2
|
+
import {
|
3
|
+
AccessToken,
|
4
|
+
OAuthTokenType,
|
5
|
+
oauthIssuerIdentifierSchema,
|
6
|
+
} from '@atproto/oauth-types'
|
7
|
+
import { Redis, type RedisOptions } from 'ioredis'
|
8
|
+
|
9
|
+
import { AccessTokenType } from './access-token/access-token-type.js'
|
10
|
+
import { DpopManager, DpopManagerOptions } from './dpop/dpop-manager.js'
|
11
|
+
import { DpopNonce } from './dpop/dpop-nonce.js'
|
12
|
+
import { InvalidDpopProofError } from './errors/invalid-dpop-proof-error.js'
|
13
|
+
import { InvalidTokenError } from './errors/invalid-token-error.js'
|
14
|
+
import { UseDpopNonceError } from './errors/use-dpop-nonce-error.js'
|
15
|
+
import { WWWAuthenticateError } from './errors/www-authenticate-error.js'
|
16
|
+
import { parseAuthorizationHeader } from './lib/util/authorization-header.js'
|
17
|
+
import { Override } from './lib/util/type.js'
|
18
|
+
import { ReplayManager } from './replay/replay-manager.js'
|
19
|
+
import { ReplayStoreMemory } from './replay/replay-store-memory.js'
|
20
|
+
import { ReplayStoreRedis } from './replay/replay-store-redis.js'
|
21
|
+
import { ReplayStore } from './replay/replay-store.js'
|
22
|
+
import { Signer } from './signer/signer.js'
|
23
|
+
import {
|
24
|
+
VerifyTokenClaimsOptions,
|
25
|
+
VerifyTokenClaimsResult,
|
26
|
+
verifyTokenClaims,
|
27
|
+
} from './token/verify-token-claims.js'
|
28
|
+
|
29
|
+
export type OAuthVerifierOptions = Override<
|
30
|
+
DpopManagerOptions,
|
31
|
+
{
|
32
|
+
/**
|
33
|
+
* The "issuer" identifier of the OAuth provider, this is the base URL of the
|
34
|
+
* OAuth provider.
|
35
|
+
*/
|
36
|
+
issuer: URL | string
|
37
|
+
|
38
|
+
/**
|
39
|
+
* The keyset used to sign tokens. Note that OIDC requires that at least one
|
40
|
+
* RS256 key is present in the keyset. ATPROTO requires ES256.
|
41
|
+
*/
|
42
|
+
keyset: Keyset | Iterable<Key | undefined | null | false>
|
43
|
+
|
44
|
+
/**
|
45
|
+
* If set to {@link AccessTokenType.jwt}, the provider will use JWTs for
|
46
|
+
* access tokens. If set to {@link AccessTokenType.id}, the provider will
|
47
|
+
* use tokenId as access tokens. If set to {@link AccessTokenType.auto},
|
48
|
+
* JWTs will only be used if the audience is different from the issuer.
|
49
|
+
* Defaults to {@link AccessTokenType.jwt}.
|
50
|
+
*
|
51
|
+
* Here is a comparison of the two types:
|
52
|
+
*
|
53
|
+
* - pro id: less CPU intensive (no crypto operations)
|
54
|
+
* - pro id: less bandwidth (shorter tokens than jwt)
|
55
|
+
* - pro id: token data is in sync with database (e.g. revocation)
|
56
|
+
* - pro jwt: stateless: no I/O needed (no db lookups through token store)
|
57
|
+
* - pro jwt: stateless: allows Resource Server to be on a different
|
58
|
+
* host/server
|
59
|
+
*/
|
60
|
+
accessTokenType?: AccessTokenType
|
61
|
+
|
62
|
+
/**
|
63
|
+
* A redis instance to use for replay protection. If not provided, replay
|
64
|
+
* protection will use memory storage.
|
65
|
+
*/
|
66
|
+
redis?: Redis | RedisOptions | string
|
67
|
+
|
68
|
+
replayStore?: ReplayStore
|
69
|
+
}
|
70
|
+
>
|
71
|
+
|
72
|
+
export {
|
73
|
+
AccessTokenType,
|
74
|
+
DpopNonce,
|
75
|
+
Keyset,
|
76
|
+
type ReplayStore,
|
77
|
+
type VerifyTokenClaimsOptions,
|
78
|
+
}
|
79
|
+
|
80
|
+
export class OAuthVerifier {
|
81
|
+
public readonly issuer: string
|
82
|
+
public readonly keyset: Keyset
|
83
|
+
|
84
|
+
protected readonly accessTokenType: AccessTokenType
|
85
|
+
protected readonly dpopManager: DpopManager
|
86
|
+
protected readonly replayManager: ReplayManager
|
87
|
+
protected readonly signer: Signer
|
88
|
+
|
89
|
+
constructor({
|
90
|
+
redis,
|
91
|
+
issuer,
|
92
|
+
keyset,
|
93
|
+
replayStore = redis != null
|
94
|
+
? new ReplayStoreRedis({ redis })
|
95
|
+
: new ReplayStoreMemory(),
|
96
|
+
accessTokenType = AccessTokenType.jwt,
|
97
|
+
|
98
|
+
...dpopMgrOptions
|
99
|
+
}: OAuthVerifierOptions) {
|
100
|
+
const issuerParsed = oauthIssuerIdentifierSchema.parse(issuer)
|
101
|
+
const issuerUrl = new URL(issuerParsed)
|
102
|
+
|
103
|
+
// TODO (?) support issuer with path
|
104
|
+
if (issuerUrl.pathname !== '/') {
|
105
|
+
throw new TypeError(
|
106
|
+
`"issuer" must be an URL with no path, search or hash (${issuerUrl})`,
|
107
|
+
)
|
108
|
+
}
|
109
|
+
|
110
|
+
this.issuer = issuerParsed
|
111
|
+
this.keyset = keyset instanceof Keyset ? keyset : new Keyset(keyset)
|
112
|
+
|
113
|
+
this.accessTokenType = accessTokenType
|
114
|
+
this.dpopManager = new DpopManager(dpopMgrOptions)
|
115
|
+
this.replayManager = new ReplayManager(replayStore)
|
116
|
+
this.signer = new Signer(this.issuer, this.keyset)
|
117
|
+
}
|
118
|
+
|
119
|
+
public nextDpopNonce() {
|
120
|
+
return this.dpopManager.nextNonce()
|
121
|
+
}
|
122
|
+
|
123
|
+
public async checkDpopProof(
|
124
|
+
proof: unknown,
|
125
|
+
htm: string,
|
126
|
+
htu: string | URL,
|
127
|
+
accessToken?: string,
|
128
|
+
): Promise<string | null> {
|
129
|
+
if (proof === undefined) return null
|
130
|
+
|
131
|
+
const { payload, jkt } = await this.dpopManager.checkProof(
|
132
|
+
proof,
|
133
|
+
htm,
|
134
|
+
htu,
|
135
|
+
accessToken,
|
136
|
+
)
|
137
|
+
|
138
|
+
const unique = await this.replayManager.uniqueDpop(payload.jti)
|
139
|
+
if (!unique) throw new InvalidDpopProofError('DPoP proof jti is not unique')
|
140
|
+
|
141
|
+
return jkt
|
142
|
+
}
|
143
|
+
|
144
|
+
protected assertTokenTypeAllowed(
|
145
|
+
tokenType: OAuthTokenType,
|
146
|
+
accessTokenType: AccessTokenType,
|
147
|
+
) {
|
148
|
+
if (
|
149
|
+
this.accessTokenType !== AccessTokenType.auto &&
|
150
|
+
this.accessTokenType !== accessTokenType
|
151
|
+
) {
|
152
|
+
throw new InvalidTokenError(tokenType, `Invalid token type`)
|
153
|
+
}
|
154
|
+
}
|
155
|
+
|
156
|
+
protected async authenticateToken(
|
157
|
+
tokenType: OAuthTokenType,
|
158
|
+
token: AccessToken,
|
159
|
+
dpopJkt: string | null,
|
160
|
+
verifyOptions?: VerifyTokenClaimsOptions,
|
161
|
+
): Promise<VerifyTokenClaimsResult> {
|
162
|
+
if (!isSignedJwt(token)) {
|
163
|
+
throw new InvalidTokenError(tokenType, `Malformed token`)
|
164
|
+
}
|
165
|
+
|
166
|
+
this.assertTokenTypeAllowed(tokenType, AccessTokenType.jwt)
|
167
|
+
|
168
|
+
const { payload } = await this.signer
|
169
|
+
.verifyAccessToken(token)
|
170
|
+
.catch((err) => {
|
171
|
+
throw InvalidTokenError.from(err, tokenType)
|
172
|
+
})
|
173
|
+
|
174
|
+
return verifyTokenClaims(
|
175
|
+
token,
|
176
|
+
payload.jti,
|
177
|
+
tokenType,
|
178
|
+
dpopJkt,
|
179
|
+
payload,
|
180
|
+
verifyOptions,
|
181
|
+
)
|
182
|
+
}
|
183
|
+
|
184
|
+
public async authenticateRequest(
|
185
|
+
method: string,
|
186
|
+
url: URL,
|
187
|
+
headers: {
|
188
|
+
authorization?: string
|
189
|
+
dpop?: unknown
|
190
|
+
},
|
191
|
+
verifyOptions?: VerifyTokenClaimsOptions,
|
192
|
+
): Promise<VerifyTokenClaimsResult> {
|
193
|
+
const [tokenType, token] = parseAuthorizationHeader(headers.authorization)
|
194
|
+
try {
|
195
|
+
const dpopJkt = await this.checkDpopProof(
|
196
|
+
headers.dpop,
|
197
|
+
method,
|
198
|
+
url,
|
199
|
+
token,
|
200
|
+
)
|
201
|
+
|
202
|
+
if (tokenType === 'DPoP' && !dpopJkt) {
|
203
|
+
throw new InvalidDpopProofError(`DPoP proof required`)
|
204
|
+
}
|
205
|
+
|
206
|
+
return await this.authenticateToken(
|
207
|
+
tokenType,
|
208
|
+
token,
|
209
|
+
dpopJkt,
|
210
|
+
verifyOptions,
|
211
|
+
)
|
212
|
+
} catch (err) {
|
213
|
+
if (err instanceof UseDpopNonceError) throw err.toWwwAuthenticateError()
|
214
|
+
if (err instanceof WWWAuthenticateError) throw err
|
215
|
+
|
216
|
+
throw InvalidTokenError.from(err, tokenType)
|
217
|
+
}
|
218
|
+
}
|
219
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import { JwtPayload } from '@atproto/jwk'
|
2
|
+
|
3
|
+
/**
|
4
|
+
* @see {@link https://openid.net/specs/openid-connect-core-1_0.html#ScopeClaims | OpenID Connect Core 1.0, 5.4. Requesting Claims using Scope Values}
|
5
|
+
*/
|
6
|
+
export const OIDC_SCOPE_CLAIMS = Object.freeze({
|
7
|
+
email: Object.freeze(['email', 'email_verified'] as const),
|
8
|
+
phone: Object.freeze(['phone_number', 'phone_number_verified'] as const),
|
9
|
+
address: Object.freeze(['address'] as const),
|
10
|
+
profile: Object.freeze([
|
11
|
+
'name',
|
12
|
+
'family_name',
|
13
|
+
'given_name',
|
14
|
+
'middle_name',
|
15
|
+
'nickname',
|
16
|
+
'preferred_username',
|
17
|
+
'gender',
|
18
|
+
'picture',
|
19
|
+
'profile',
|
20
|
+
'website',
|
21
|
+
'birthdate',
|
22
|
+
'zoneinfo',
|
23
|
+
'locale',
|
24
|
+
'updated_at',
|
25
|
+
] as const),
|
26
|
+
})
|
27
|
+
|
28
|
+
export const OIDC_STANDARD_CLAIMS = Object.freeze(
|
29
|
+
Object.values(OIDC_SCOPE_CLAIMS).flat(),
|
30
|
+
)
|
31
|
+
|
32
|
+
export type OIDCStandardClaim = (typeof OIDC_STANDARD_CLAIMS)[number]
|
33
|
+
export type OIDCStandardPayload = Partial<{
|
34
|
+
[K in OIDCStandardClaim]?: JwtPayload[K]
|
35
|
+
}>
|
package/src/oidc/sub.ts
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
import { OIDCStandardPayload } from './claims.js'
|
2
|
+
|
3
|
+
export type Userinfo = OIDCStandardPayload & {
|
4
|
+
// "The sub (subject) Claim MUST always be returned in the UserInfo Response."
|
5
|
+
sub: string
|
6
|
+
|
7
|
+
// client_id is not mandatory per spec, but we require it here for convenience
|
8
|
+
client_id: string
|
9
|
+
|
10
|
+
username?: string
|
11
|
+
}
|
@@ -0,0 +1,143 @@
|
|
1
|
+
import { JwtVerifyError } from '@atproto/jwk'
|
2
|
+
import { JOSEError } from 'jose/errors'
|
3
|
+
import { ZodError } from 'zod'
|
4
|
+
|
5
|
+
import { OAuthError } from '../errors/oauth-error.js'
|
6
|
+
|
7
|
+
const INVALID_REQUEST = 'invalid_request'
|
8
|
+
const SERVER_ERROR = 'server_error'
|
9
|
+
|
10
|
+
export function buildErrorStatus(error: unknown): number {
|
11
|
+
if (error instanceof OAuthError) {
|
12
|
+
return error.statusCode
|
13
|
+
}
|
14
|
+
|
15
|
+
if (error instanceof JwtVerifyError) {
|
16
|
+
return 400
|
17
|
+
}
|
18
|
+
|
19
|
+
if (error instanceof ZodError) {
|
20
|
+
return 400
|
21
|
+
}
|
22
|
+
|
23
|
+
if (error instanceof JOSEError) {
|
24
|
+
return 400
|
25
|
+
}
|
26
|
+
|
27
|
+
if (error instanceof TypeError) {
|
28
|
+
return 400
|
29
|
+
}
|
30
|
+
|
31
|
+
if (isBoom(error)) {
|
32
|
+
return error.output.statusCode
|
33
|
+
}
|
34
|
+
|
35
|
+
if (isXrpcError(error)) {
|
36
|
+
return error.type
|
37
|
+
}
|
38
|
+
|
39
|
+
const status = (error as any)?.status
|
40
|
+
if (
|
41
|
+
typeof status === 'number' &&
|
42
|
+
status === (status | 0) &&
|
43
|
+
status >= 400 &&
|
44
|
+
status < 600
|
45
|
+
) {
|
46
|
+
return status
|
47
|
+
}
|
48
|
+
|
49
|
+
return 500
|
50
|
+
}
|
51
|
+
|
52
|
+
export function buildErrorPayload(error: unknown): {
|
53
|
+
error: string
|
54
|
+
error_description: string
|
55
|
+
} {
|
56
|
+
if (error instanceof OAuthError) {
|
57
|
+
return error.toJSON()
|
58
|
+
}
|
59
|
+
|
60
|
+
if (error instanceof ZodError) {
|
61
|
+
return {
|
62
|
+
error: INVALID_REQUEST,
|
63
|
+
error_description: error.issues[0]?.message || 'Invalid request',
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
if (error instanceof JOSEError) {
|
68
|
+
return {
|
69
|
+
error: INVALID_REQUEST,
|
70
|
+
error_description: error.message,
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
if (error instanceof TypeError) {
|
75
|
+
return {
|
76
|
+
error: INVALID_REQUEST,
|
77
|
+
error_description: error.message,
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
if (isBoom(error)) {
|
82
|
+
return {
|
83
|
+
error: error.output.statusCode <= 500 ? INVALID_REQUEST : SERVER_ERROR,
|
84
|
+
error_description:
|
85
|
+
error.output.statusCode <= 500
|
86
|
+
? isPayloadLike(error.output?.payload)
|
87
|
+
? error.output.payload.message
|
88
|
+
: error.message
|
89
|
+
: 'Server error',
|
90
|
+
}
|
91
|
+
}
|
92
|
+
|
93
|
+
if (isXrpcError(error)) {
|
94
|
+
return {
|
95
|
+
error: error.type <= 500 ? INVALID_REQUEST : SERVER_ERROR,
|
96
|
+
error_description: error.payload.message,
|
97
|
+
}
|
98
|
+
}
|
99
|
+
|
100
|
+
const status = buildErrorStatus(error)
|
101
|
+
return {
|
102
|
+
error: status < 500 ? INVALID_REQUEST : SERVER_ERROR,
|
103
|
+
error_description:
|
104
|
+
error instanceof Error && (error as any)?.expose === true
|
105
|
+
? error.message
|
106
|
+
: 'Server error',
|
107
|
+
}
|
108
|
+
}
|
109
|
+
|
110
|
+
function isBoom(v: unknown): v is Error & {
|
111
|
+
isBoom: true
|
112
|
+
output: { statusCode: number; payload: unknown }
|
113
|
+
} {
|
114
|
+
return (
|
115
|
+
v instanceof Error &&
|
116
|
+
(v as any).isBoom === true &&
|
117
|
+
isHttpErrorCode(v['output']?.['statusCode'])
|
118
|
+
)
|
119
|
+
}
|
120
|
+
|
121
|
+
function isXrpcError(v: unknown): v is Error & {
|
122
|
+
type: number
|
123
|
+
payload: { error: string; message: string }
|
124
|
+
} {
|
125
|
+
return (
|
126
|
+
v instanceof Error &&
|
127
|
+
isHttpErrorCode(v['type']) &&
|
128
|
+
isPayloadLike(v['payload'])
|
129
|
+
)
|
130
|
+
}
|
131
|
+
|
132
|
+
function isHttpErrorCode(v: unknown): v is number {
|
133
|
+
return typeof v === 'number' && v >= 400 && v < 600 && v === (v | 0)
|
134
|
+
}
|
135
|
+
|
136
|
+
function isPayloadLike(v: unknown): v is { error: string; message: string } {
|
137
|
+
return (
|
138
|
+
v != null &&
|
139
|
+
typeof v === 'object' &&
|
140
|
+
typeof v['error'] === 'string' &&
|
141
|
+
typeof v['message'] === 'string'
|
142
|
+
)
|
143
|
+
}
|
@@ -0,0 +1,96 @@
|
|
1
|
+
// Matches colors defined in tailwind.config.js
|
2
|
+
const colorNames = ['primary', 'error'] as const
|
3
|
+
type ColorName = (typeof colorNames)[number]
|
4
|
+
const isColorName = (name: string): name is ColorName =>
|
5
|
+
(colorNames as readonly string[]).includes(name)
|
6
|
+
|
7
|
+
export type FieldDefinition = {
|
8
|
+
label?: string
|
9
|
+
placeholder?: string
|
10
|
+
pattern?: string
|
11
|
+
title?: string
|
12
|
+
}
|
13
|
+
|
14
|
+
export type ExtraFieldDefinition = FieldDefinition & {
|
15
|
+
type: 'text' | 'password' | 'date' | 'captcha'
|
16
|
+
required?: boolean
|
17
|
+
[_: string]: unknown
|
18
|
+
}
|
19
|
+
|
20
|
+
export type Customization = {
|
21
|
+
name?: string
|
22
|
+
logo?: string
|
23
|
+
colors?: { [_ in ColorName]?: string }
|
24
|
+
links?: Array<{
|
25
|
+
href: string
|
26
|
+
title: string
|
27
|
+
rel?: string
|
28
|
+
}>
|
29
|
+
}
|
30
|
+
|
31
|
+
export function buildCustomizationData({
|
32
|
+
name,
|
33
|
+
logo,
|
34
|
+
links,
|
35
|
+
}: Customization = {}) {
|
36
|
+
return {
|
37
|
+
name,
|
38
|
+
logo,
|
39
|
+
links,
|
40
|
+
}
|
41
|
+
}
|
42
|
+
|
43
|
+
export function buildCustomizationCss(customization?: Customization) {
|
44
|
+
if (!customization?.colors) return ''
|
45
|
+
|
46
|
+
const vars = Object.entries(customization.colors)
|
47
|
+
.filter((e) => isColorName(e[0]) && e[1] != null)
|
48
|
+
.map(([name, value]) => [name, parseColor(value)] as const)
|
49
|
+
.filter((e): e is [ColorName, ParsedColor] => e[1] != null)
|
50
|
+
// alpha not supported by tailwind (it does not work that way)
|
51
|
+
.map(([name, { r, g, b }]) => `--color-${name}: ${r} ${g} ${b};`)
|
52
|
+
|
53
|
+
return `:root { ${vars.join(' ')} }`
|
54
|
+
}
|
55
|
+
|
56
|
+
type ParsedColor = { r: number; g: number; b: number; a?: number }
|
57
|
+
function parseColor(color: string): undefined | ParsedColor {
|
58
|
+
if (color.startsWith('#')) {
|
59
|
+
if (color.length === 4 || color.length === 5) {
|
60
|
+
const [r, g, b, a] = color
|
61
|
+
.slice(1)
|
62
|
+
.split('')
|
63
|
+
.map((c) => parseInt(c + c, 16))
|
64
|
+
return { r, g, b, a }
|
65
|
+
}
|
66
|
+
|
67
|
+
if (color.length === 7 || color.length === 9) {
|
68
|
+
const r = parseInt(color.slice(1, 3), 16)
|
69
|
+
const g = parseInt(color.slice(3, 5), 16)
|
70
|
+
const b = parseInt(color.slice(5, 7), 16)
|
71
|
+
const a = color.length > 8 ? parseInt(color.slice(7, 9), 16) : undefined
|
72
|
+
return { r, g, b, a }
|
73
|
+
}
|
74
|
+
|
75
|
+
return undefined
|
76
|
+
}
|
77
|
+
|
78
|
+
const rgbMatch = color.match(/rgb\((\d+),\s*(\d+),\s*(\d+)\)/)
|
79
|
+
if (rgbMatch) {
|
80
|
+
const [, r, g, b] = rgbMatch
|
81
|
+
return { r: parseInt(r, 10), g: parseInt(g, 10), b: parseInt(b, 10) }
|
82
|
+
}
|
83
|
+
|
84
|
+
const rgbaMatch = color.match(/rgba\((\d+),\s*(\d+),\s*(\d+),\s*(\d+)\)/)
|
85
|
+
if (rgbaMatch) {
|
86
|
+
const [, r, g, b, a] = rgbaMatch
|
87
|
+
return {
|
88
|
+
r: parseInt(r, 10),
|
89
|
+
g: parseInt(g, 10),
|
90
|
+
b: parseInt(b, 10),
|
91
|
+
a: parseInt(a, 10),
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
return undefined
|
96
|
+
}
|
@@ -0,0 +1,111 @@
|
|
1
|
+
import {
|
2
|
+
OAuthAuthenticationRequestParameters,
|
3
|
+
OAuthClientMetadata,
|
4
|
+
} from '@atproto/oauth-types'
|
5
|
+
import { ServerResponse } from 'node:http'
|
6
|
+
|
7
|
+
import { DeviceAccountInfo } from '../account/account-store.js'
|
8
|
+
import { Account } from '../account/account.js'
|
9
|
+
import { getAsset } from '../assets/index.js'
|
10
|
+
import { Client } from '../client/client.js'
|
11
|
+
import { cssCode, html } from '../lib/html/index.js'
|
12
|
+
import { RequestUri } from '../request/request-uri.js'
|
13
|
+
import {
|
14
|
+
Customization,
|
15
|
+
buildCustomizationCss,
|
16
|
+
buildCustomizationData,
|
17
|
+
} from './customization.js'
|
18
|
+
import { declareBackendData, sendWebPage } from './send-web-page.js'
|
19
|
+
|
20
|
+
export type AuthorizationResultAuthorize = {
|
21
|
+
issuer: string
|
22
|
+
client: Client
|
23
|
+
parameters: OAuthAuthenticationRequestParameters
|
24
|
+
authorize: {
|
25
|
+
uri: RequestUri
|
26
|
+
sessions: readonly {
|
27
|
+
account: Account
|
28
|
+
info: DeviceAccountInfo
|
29
|
+
|
30
|
+
selected: boolean
|
31
|
+
loginRequired: boolean
|
32
|
+
consentRequired: boolean
|
33
|
+
}[]
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
// TODO: find a way to share this type with the frontend code
|
38
|
+
// (app/backend-data.ts)
|
39
|
+
|
40
|
+
type Session = {
|
41
|
+
account: Account
|
42
|
+
info?: never // Prevent accidental leaks to frontend
|
43
|
+
|
44
|
+
selected: boolean
|
45
|
+
loginRequired: boolean
|
46
|
+
consentRequired: boolean
|
47
|
+
}
|
48
|
+
|
49
|
+
export type AuthorizeData = {
|
50
|
+
clientId: string
|
51
|
+
clientMetadata: OAuthClientMetadata
|
52
|
+
clientTrusted: boolean
|
53
|
+
requestUri: string
|
54
|
+
csrfCookie: string
|
55
|
+
loginHint?: string
|
56
|
+
newSessionsRequireConsent: boolean
|
57
|
+
sessions: Session[]
|
58
|
+
}
|
59
|
+
|
60
|
+
function buildAuthorizeData(data: AuthorizationResultAuthorize): AuthorizeData {
|
61
|
+
return {
|
62
|
+
clientId: data.client.id,
|
63
|
+
clientMetadata: data.client.metadata,
|
64
|
+
clientTrusted: data.client.info.isTrusted,
|
65
|
+
requestUri: data.authorize.uri,
|
66
|
+
csrfCookie: `csrf-${data.authorize.uri}`,
|
67
|
+
loginHint: data.parameters.login_hint,
|
68
|
+
newSessionsRequireConsent: data.parameters.prompt === 'consent',
|
69
|
+
sessions: data.authorize.sessions.map(
|
70
|
+
(session): Session => ({
|
71
|
+
account: session.account,
|
72
|
+
selected: session.selected,
|
73
|
+
loginRequired: session.loginRequired,
|
74
|
+
consentRequired: session.consentRequired,
|
75
|
+
}),
|
76
|
+
),
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
export async function sendAuthorizePage(
|
81
|
+
res: ServerResponse,
|
82
|
+
data: AuthorizationResultAuthorize,
|
83
|
+
customization?: Customization,
|
84
|
+
): Promise<void> {
|
85
|
+
res.setHeader('Cache-Control', 'no-store')
|
86
|
+
res.setHeader('Permissions-Policy', 'otp-credentials=*, document-domain=()')
|
87
|
+
|
88
|
+
const [jsAsset, cssAsset] = await Promise.all([
|
89
|
+
getAsset('main.js'),
|
90
|
+
getAsset('main.css'),
|
91
|
+
])
|
92
|
+
|
93
|
+
return sendWebPage(res, {
|
94
|
+
scripts: [
|
95
|
+
declareBackendData(
|
96
|
+
'__customizationData',
|
97
|
+
buildCustomizationData(customization),
|
98
|
+
),
|
99
|
+
declareBackendData('__authorizeData', buildAuthorizeData(data)),
|
100
|
+
jsAsset, // Last (to be able to read the global variables)
|
101
|
+
],
|
102
|
+
styles: [
|
103
|
+
cssAsset, // First (to be overridden by customization)
|
104
|
+
cssCode(buildCustomizationCss(customization)),
|
105
|
+
],
|
106
|
+
links: customization?.links,
|
107
|
+
htmlAttrs: { lang: 'en' },
|
108
|
+
title: 'Authorize',
|
109
|
+
body: html`<div id="root"></div>`,
|
110
|
+
})
|
111
|
+
}
|