@atproto/pds 0.4.91 → 0.4.93
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/bin/migration-create.ts +2 -2
- package/dist/account-manager/db/index.d.ts.map +1 -1
- package/dist/account-manager/db/index.js.map +1 -1
- package/dist/account-manager/db/schema/authorization-request.d.ts +1 -1
- package/dist/account-manager/db/schema/authorization-request.d.ts.map +1 -1
- package/dist/account-manager/db/schema/device.d.ts +1 -1
- package/dist/account-manager/db/schema/device.d.ts.map +1 -1
- package/dist/account-manager/db/schema/index.d.ts +7 -7
- package/dist/account-manager/db/schema/index.d.ts.map +1 -1
- package/dist/account-manager/db/schema/token.d.ts +1 -1
- package/dist/account-manager/db/schema/token.d.ts.map +1 -1
- package/dist/account-manager/db/schema/token.js.map +1 -1
- package/dist/account-manager/db/schema/used-refresh-token.d.ts +1 -1
- package/dist/account-manager/db/schema/used-refresh-token.d.ts.map +1 -1
- package/dist/account-manager/helpers/account.d.ts +8 -8
- package/dist/account-manager/helpers/account.d.ts.map +1 -1
- package/dist/account-manager/helpers/account.js +1 -1
- package/dist/account-manager/helpers/account.js.map +1 -1
- package/dist/account-manager/helpers/authorization-request.d.ts +1 -1
- package/dist/account-manager/helpers/authorization-request.d.ts.map +1 -1
- package/dist/account-manager/helpers/device-account.d.ts +37 -37
- package/dist/account-manager/helpers/device-account.d.ts.map +1 -1
- package/dist/account-manager/helpers/device-account.js.map +1 -1
- package/dist/account-manager/helpers/device.d.ts +2 -2
- package/dist/account-manager/helpers/device.d.ts.map +1 -1
- package/dist/account-manager/helpers/email-token.js +1 -1
- package/dist/account-manager/helpers/email-token.js.map +1 -1
- package/dist/account-manager/helpers/invite.d.ts.map +1 -1
- package/dist/account-manager/helpers/invite.js.map +1 -1
- package/dist/account-manager/helpers/password.d.ts +1 -1
- package/dist/account-manager/helpers/password.d.ts.map +1 -1
- package/dist/account-manager/helpers/password.js.map +1 -1
- package/dist/account-manager/helpers/scrypt.js +6 -6
- package/dist/account-manager/helpers/scrypt.js.map +1 -1
- package/dist/account-manager/helpers/token.d.ts +201 -201
- package/dist/account-manager/helpers/token.d.ts.map +1 -1
- package/dist/account-manager/index.d.ts +8 -3
- package/dist/account-manager/index.d.ts.map +1 -1
- package/dist/account-manager/index.js +34 -5
- package/dist/account-manager/index.js.map +1 -1
- package/dist/actor-store/actor-store-reader.d.ts +19 -0
- package/dist/actor-store/actor-store-reader.d.ts.map +1 -0
- package/dist/actor-store/actor-store-reader.js +69 -0
- package/dist/actor-store/actor-store-reader.js.map +1 -0
- package/dist/actor-store/actor-store-resources.d.ts +8 -0
- package/dist/actor-store/actor-store-resources.d.ts.map +1 -0
- package/dist/actor-store/actor-store-resources.js +3 -0
- package/dist/actor-store/actor-store-resources.js.map +1 -0
- package/dist/actor-store/actor-store-transactor.d.ts +17 -0
- package/dist/actor-store/actor-store-transactor.d.ts.map +1 -0
- package/dist/actor-store/actor-store-transactor.js +58 -0
- package/dist/actor-store/actor-store-transactor.js.map +1 -0
- package/dist/actor-store/actor-store-writer.d.ts +5 -0
- package/dist/actor-store/actor-store-writer.d.ts.map +1 -0
- package/dist/actor-store/actor-store-writer.js +14 -0
- package/dist/actor-store/actor-store-writer.js.map +1 -0
- package/dist/actor-store/actor-store.d.ts +33 -0
- package/dist/actor-store/actor-store.d.ts.map +1 -0
- package/dist/actor-store/{index.js → actor-store.js} +37 -82
- package/dist/actor-store/actor-store.js.map +1 -0
- package/dist/actor-store/blob/reader.d.ts +4 -2
- package/dist/actor-store/blob/reader.d.ts.map +1 -1
- package/dist/actor-store/blob/reader.js +14 -0
- package/dist/actor-store/blob/reader.js.map +1 -1
- package/dist/actor-store/blob/transactor.d.ts +6 -5
- package/dist/actor-store/blob/transactor.d.ts.map +1 -1
- package/dist/actor-store/blob/transactor.js +18 -5
- package/dist/actor-store/blob/transactor.js.map +1 -1
- package/dist/actor-store/db/index.d.ts +1 -1
- package/dist/actor-store/db/index.d.ts.map +1 -1
- package/dist/actor-store/db/index.js.map +1 -1
- package/dist/actor-store/db/schema/index.d.ts +3 -3
- package/dist/actor-store/db/schema/index.d.ts.map +1 -1
- package/dist/actor-store/migrate.d.ts +1 -1
- package/dist/actor-store/migrate.d.ts.map +1 -1
- package/dist/actor-store/migrate.js.map +1 -1
- package/dist/actor-store/preference/transactor.d.ts +1 -1
- package/dist/actor-store/preference/transactor.d.ts.map +1 -1
- package/dist/actor-store/preference/transactor.js.map +1 -1
- package/dist/actor-store/record/reader.d.ts +18 -6
- package/dist/actor-store/record/reader.d.ts.map +1 -1
- package/dist/actor-store/record/reader.js +104 -2
- package/dist/actor-store/record/reader.js.map +1 -1
- package/dist/actor-store/record/transactor.d.ts +3 -3
- package/dist/actor-store/record/transactor.d.ts.map +1 -1
- package/dist/actor-store/record/transactor.js.map +1 -1
- package/dist/actor-store/repo/reader.d.ts +1 -1
- package/dist/actor-store/repo/reader.d.ts.map +1 -1
- package/dist/actor-store/repo/reader.js +1 -1
- package/dist/actor-store/repo/reader.js.map +1 -1
- package/dist/actor-store/repo/sql-repo-reader.d.ts +2 -2
- package/dist/actor-store/repo/sql-repo-reader.d.ts.map +1 -1
- package/dist/actor-store/repo/sql-repo-reader.js +6 -5
- package/dist/actor-store/repo/sql-repo-reader.js.map +1 -1
- package/dist/actor-store/repo/sql-repo-transactor.d.ts +1 -1
- package/dist/actor-store/repo/sql-repo-transactor.d.ts.map +1 -1
- package/dist/actor-store/repo/sql-repo-transactor.js +2 -2
- package/dist/actor-store/repo/sql-repo-transactor.js.map +1 -1
- package/dist/actor-store/repo/transactor.d.ts +7 -6
- package/dist/actor-store/repo/transactor.d.ts.map +1 -1
- package/dist/actor-store/repo/transactor.js +22 -15
- package/dist/actor-store/repo/transactor.js.map +1 -1
- package/dist/api/app/bsky/actor/getPreferences.d.ts +1 -1
- package/dist/api/app/bsky/actor/getPreferences.d.ts.map +1 -1
- package/dist/api/app/bsky/actor/getPreferences.js +1 -1
- package/dist/api/app/bsky/actor/getPreferences.js.map +1 -1
- package/dist/api/app/bsky/actor/getProfile.d.ts +1 -1
- package/dist/api/app/bsky/actor/getProfile.d.ts.map +1 -1
- package/dist/api/app/bsky/actor/getProfile.js +1 -2
- package/dist/api/app/bsky/actor/getProfile.js.map +1 -1
- package/dist/api/app/bsky/actor/getProfiles.d.ts +1 -1
- package/dist/api/app/bsky/actor/getProfiles.d.ts.map +1 -1
- package/dist/api/app/bsky/actor/getProfiles.js +1 -2
- package/dist/api/app/bsky/actor/getProfiles.js.map +1 -1
- package/dist/api/app/bsky/actor/index.d.ts +1 -1
- package/dist/api/app/bsky/actor/index.d.ts.map +1 -1
- package/dist/api/app/bsky/actor/index.js.map +1 -1
- package/dist/api/app/bsky/actor/putPreferences.d.ts +1 -1
- package/dist/api/app/bsky/actor/putPreferences.d.ts.map +1 -1
- package/dist/api/app/bsky/actor/putPreferences.js +1 -1
- package/dist/api/app/bsky/actor/putPreferences.js.map +1 -1
- package/dist/api/app/bsky/feed/getActorLikes.d.ts +1 -1
- package/dist/api/app/bsky/feed/getActorLikes.d.ts.map +1 -1
- package/dist/api/app/bsky/feed/getActorLikes.js +1 -2
- package/dist/api/app/bsky/feed/getActorLikes.js.map +1 -1
- package/dist/api/app/bsky/feed/getAuthorFeed.d.ts +1 -1
- package/dist/api/app/bsky/feed/getAuthorFeed.d.ts.map +1 -1
- package/dist/api/app/bsky/feed/getAuthorFeed.js +1 -2
- package/dist/api/app/bsky/feed/getAuthorFeed.js.map +1 -1
- package/dist/api/app/bsky/feed/getFeed.d.ts +1 -1
- package/dist/api/app/bsky/feed/getFeed.d.ts.map +1 -1
- package/dist/api/app/bsky/feed/getFeed.js +6 -7
- package/dist/api/app/bsky/feed/getFeed.js.map +1 -1
- package/dist/api/app/bsky/feed/getPostThread.d.ts +1 -1
- package/dist/api/app/bsky/feed/getPostThread.d.ts.map +1 -1
- package/dist/api/app/bsky/feed/getPostThread.js +4 -5
- package/dist/api/app/bsky/feed/getPostThread.js.map +1 -1
- package/dist/api/app/bsky/feed/getTimeline.d.ts +1 -1
- package/dist/api/app/bsky/feed/getTimeline.d.ts.map +1 -1
- package/dist/api/app/bsky/feed/getTimeline.js +1 -2
- package/dist/api/app/bsky/feed/getTimeline.js.map +1 -1
- package/dist/api/app/bsky/feed/index.d.ts +1 -1
- package/dist/api/app/bsky/feed/index.d.ts.map +1 -1
- package/dist/api/app/bsky/index.d.ts +1 -1
- package/dist/api/app/bsky/index.d.ts.map +1 -1
- package/dist/api/app/bsky/notification/index.d.ts +1 -1
- package/dist/api/app/bsky/notification/index.d.ts.map +1 -1
- package/dist/api/app/bsky/notification/registerPush.d.ts +1 -1
- package/dist/api/app/bsky/notification/registerPush.d.ts.map +1 -1
- package/dist/api/app/bsky/notification/registerPush.js +6 -6
- package/dist/api/app/bsky/notification/registerPush.js.map +1 -1
- package/dist/api/app/bsky/util/resolver.d.ts +1 -1
- package/dist/api/app/bsky/util/resolver.d.ts.map +1 -1
- package/dist/api/app/bsky/util/resolver.js.map +1 -1
- package/dist/api/com/atproto/admin/deleteAccount.d.ts +1 -1
- package/dist/api/com/atproto/admin/deleteAccount.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/deleteAccount.js.map +1 -1
- package/dist/api/com/atproto/admin/disableAccountInvites.d.ts +1 -1
- package/dist/api/com/atproto/admin/disableAccountInvites.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/disableInviteCodes.d.ts +1 -1
- package/dist/api/com/atproto/admin/disableInviteCodes.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/enableAccountInvites.d.ts +1 -1
- package/dist/api/com/atproto/admin/enableAccountInvites.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/getAccountInfo.d.ts +1 -1
- package/dist/api/com/atproto/admin/getAccountInfo.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/getAccountInfo.js.map +1 -1
- package/dist/api/com/atproto/admin/getAccountInfos.d.ts +1 -1
- package/dist/api/com/atproto/admin/getAccountInfos.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/getInviteCodes.d.ts +2 -2
- package/dist/api/com/atproto/admin/getInviteCodes.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/getInviteCodes.js +1 -1
- package/dist/api/com/atproto/admin/getInviteCodes.js.map +1 -1
- package/dist/api/com/atproto/admin/getSubjectStatus.d.ts +1 -1
- package/dist/api/com/atproto/admin/getSubjectStatus.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/index.d.ts +1 -1
- package/dist/api/com/atproto/admin/index.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/index.js +8 -8
- package/dist/api/com/atproto/admin/index.js.map +1 -1
- package/dist/api/com/atproto/admin/sendEmail.d.ts +1 -1
- package/dist/api/com/atproto/admin/sendEmail.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/sendEmail.js +1 -1
- package/dist/api/com/atproto/admin/sendEmail.js.map +1 -1
- package/dist/api/com/atproto/admin/updateAccountEmail.d.ts +1 -1
- package/dist/api/com/atproto/admin/updateAccountEmail.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/updateAccountHandle.d.ts +1 -1
- package/dist/api/com/atproto/admin/updateAccountHandle.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/updateAccountHandle.js.map +1 -1
- package/dist/api/com/atproto/admin/updateAccountPassword.d.ts +1 -1
- package/dist/api/com/atproto/admin/updateAccountPassword.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/updateSubjectStatus.d.ts +1 -1
- package/dist/api/com/atproto/admin/updateSubjectStatus.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/updateSubjectStatus.js +1 -1
- package/dist/api/com/atproto/admin/updateSubjectStatus.js.map +1 -1
- package/dist/api/com/atproto/admin/util.d.ts.map +1 -1
- package/dist/api/com/atproto/admin/util.js.map +1 -1
- package/dist/api/com/atproto/identity/getRecommendedDidCredentials.d.ts +1 -1
- package/dist/api/com/atproto/identity/getRecommendedDidCredentials.d.ts.map +1 -1
- package/dist/api/com/atproto/identity/index.d.ts +1 -1
- package/dist/api/com/atproto/identity/index.d.ts.map +1 -1
- package/dist/api/com/atproto/identity/index.js +2 -2
- package/dist/api/com/atproto/identity/index.js.map +1 -1
- package/dist/api/com/atproto/identity/requestPlcOperationSignature.d.ts +1 -1
- package/dist/api/com/atproto/identity/requestPlcOperationSignature.d.ts.map +1 -1
- package/dist/api/com/atproto/identity/requestPlcOperationSignature.js +1 -1
- package/dist/api/com/atproto/identity/requestPlcOperationSignature.js.map +1 -1
- package/dist/api/com/atproto/identity/resolveHandle.d.ts +1 -1
- package/dist/api/com/atproto/identity/resolveHandle.d.ts.map +1 -1
- package/dist/api/com/atproto/identity/resolveHandle.js +11 -14
- package/dist/api/com/atproto/identity/resolveHandle.js.map +1 -1
- package/dist/api/com/atproto/identity/signPlcOperation.d.ts +1 -1
- package/dist/api/com/atproto/identity/signPlcOperation.d.ts.map +1 -1
- package/dist/api/com/atproto/identity/signPlcOperation.js +1 -1
- package/dist/api/com/atproto/identity/signPlcOperation.js.map +1 -1
- package/dist/api/com/atproto/identity/submitPlcOperation.d.ts +1 -1
- package/dist/api/com/atproto/identity/submitPlcOperation.d.ts.map +1 -1
- package/dist/api/com/atproto/identity/submitPlcOperation.js.map +1 -1
- package/dist/api/com/atproto/identity/updateHandle.d.ts +1 -1
- package/dist/api/com/atproto/identity/updateHandle.d.ts.map +1 -1
- package/dist/api/com/atproto/identity/updateHandle.js +2 -2
- package/dist/api/com/atproto/identity/updateHandle.js.map +1 -1
- package/dist/api/com/atproto/index.d.ts +1 -1
- package/dist/api/com/atproto/index.d.ts.map +1 -1
- package/dist/api/com/atproto/moderation/createReport.d.ts +1 -1
- package/dist/api/com/atproto/moderation/createReport.d.ts.map +1 -1
- package/dist/api/com/atproto/moderation/createReport.js +2 -2
- package/dist/api/com/atproto/moderation/createReport.js.map +1 -1
- package/dist/api/com/atproto/moderation/index.d.ts +1 -1
- package/dist/api/com/atproto/moderation/index.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/applyWrites.d.ts +1 -1
- package/dist/api/com/atproto/repo/applyWrites.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/applyWrites.js +4 -5
- package/dist/api/com/atproto/repo/applyWrites.js.map +1 -1
- package/dist/api/com/atproto/repo/createRecord.d.ts +1 -1
- package/dist/api/com/atproto/repo/createRecord.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/createRecord.js +3 -4
- package/dist/api/com/atproto/repo/createRecord.js.map +1 -1
- package/dist/api/com/atproto/repo/deleteRecord.d.ts +1 -1
- package/dist/api/com/atproto/repo/deleteRecord.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/deleteRecord.js +3 -4
- package/dist/api/com/atproto/repo/deleteRecord.js.map +1 -1
- package/dist/api/com/atproto/repo/describeRepo.d.ts +1 -1
- package/dist/api/com/atproto/repo/describeRepo.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/describeRepo.js +1 -1
- package/dist/api/com/atproto/repo/describeRepo.js.map +1 -1
- package/dist/api/com/atproto/repo/getRecord.d.ts +1 -1
- package/dist/api/com/atproto/repo/getRecord.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/getRecord.js.map +1 -1
- package/dist/api/com/atproto/repo/importRepo.d.ts +2 -2
- package/dist/api/com/atproto/repo/importRepo.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/importRepo.js +6 -22
- package/dist/api/com/atproto/repo/importRepo.js.map +1 -1
- package/dist/api/com/atproto/repo/index.d.ts +1 -1
- package/dist/api/com/atproto/repo/index.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/index.js +2 -2
- package/dist/api/com/atproto/repo/index.js.map +1 -1
- package/dist/api/com/atproto/repo/listMissingBlobs.d.ts +1 -1
- package/dist/api/com/atproto/repo/listMissingBlobs.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/listRecords.d.ts +1 -1
- package/dist/api/com/atproto/repo/listRecords.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/listRecords.js +1 -1
- package/dist/api/com/atproto/repo/listRecords.js.map +1 -1
- package/dist/api/com/atproto/repo/putRecord.d.ts +1 -1
- package/dist/api/com/atproto/repo/putRecord.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/putRecord.js +5 -6
- package/dist/api/com/atproto/repo/putRecord.js.map +1 -1
- package/dist/api/com/atproto/repo/uploadBlob.d.ts +1 -1
- package/dist/api/com/atproto/repo/uploadBlob.d.ts.map +1 -1
- package/dist/api/com/atproto/server/activateAccount.d.ts +1 -1
- package/dist/api/com/atproto/server/activateAccount.d.ts.map +1 -1
- package/dist/api/com/atproto/server/activateAccount.js +1 -1
- package/dist/api/com/atproto/server/activateAccount.js.map +1 -1
- package/dist/api/com/atproto/server/checkAccountStatus.d.ts +1 -1
- package/dist/api/com/atproto/server/checkAccountStatus.d.ts.map +1 -1
- package/dist/api/com/atproto/server/confirmEmail.d.ts +1 -1
- package/dist/api/com/atproto/server/confirmEmail.d.ts.map +1 -1
- package/dist/api/com/atproto/server/confirmEmail.js.map +1 -1
- package/dist/api/com/atproto/server/createAccount.d.ts +1 -1
- package/dist/api/com/atproto/server/createAccount.d.ts.map +1 -1
- package/dist/api/com/atproto/server/createAccount.js +5 -5
- package/dist/api/com/atproto/server/createAccount.js.map +1 -1
- package/dist/api/com/atproto/server/createAppPassword.d.ts +1 -1
- package/dist/api/com/atproto/server/createAppPassword.d.ts.map +1 -1
- package/dist/api/com/atproto/server/createAppPassword.js.map +1 -1
- package/dist/api/com/atproto/server/createInviteCode.d.ts +1 -1
- package/dist/api/com/atproto/server/createInviteCode.d.ts.map +1 -1
- package/dist/api/com/atproto/server/createInviteCodes.d.ts +1 -1
- package/dist/api/com/atproto/server/createInviteCodes.d.ts.map +1 -1
- package/dist/api/com/atproto/server/createInviteCodes.js.map +1 -1
- package/dist/api/com/atproto/server/createSession.d.ts +1 -1
- package/dist/api/com/atproto/server/createSession.d.ts.map +1 -1
- package/dist/api/com/atproto/server/createSession.js.map +1 -1
- package/dist/api/com/atproto/server/deactivateAccount.d.ts +1 -1
- package/dist/api/com/atproto/server/deactivateAccount.d.ts.map +1 -1
- package/dist/api/com/atproto/server/deleteAccount.d.ts +1 -1
- package/dist/api/com/atproto/server/deleteAccount.d.ts.map +1 -1
- package/dist/api/com/atproto/server/deleteAccount.js +1 -1
- package/dist/api/com/atproto/server/deleteAccount.js.map +1 -1
- package/dist/api/com/atproto/server/deleteSession.d.ts +1 -1
- package/dist/api/com/atproto/server/deleteSession.d.ts.map +1 -1
- package/dist/api/com/atproto/server/describeServer.d.ts +1 -1
- package/dist/api/com/atproto/server/describeServer.d.ts.map +1 -1
- package/dist/api/com/atproto/server/getAccountInviteCodes.d.ts +1 -1
- package/dist/api/com/atproto/server/getAccountInviteCodes.d.ts.map +1 -1
- package/dist/api/com/atproto/server/getAccountInviteCodes.js +1 -1
- package/dist/api/com/atproto/server/getAccountInviteCodes.js.map +1 -1
- package/dist/api/com/atproto/server/getServiceAuth.d.ts +1 -1
- package/dist/api/com/atproto/server/getServiceAuth.d.ts.map +1 -1
- package/dist/api/com/atproto/server/getServiceAuth.js +2 -2
- package/dist/api/com/atproto/server/getServiceAuth.js.map +1 -1
- package/dist/api/com/atproto/server/getSession.d.ts +1 -1
- package/dist/api/com/atproto/server/getSession.d.ts.map +1 -1
- package/dist/api/com/atproto/server/getSession.js +2 -2
- package/dist/api/com/atproto/server/getSession.js.map +1 -1
- package/dist/api/com/atproto/server/index.d.ts +1 -1
- package/dist/api/com/atproto/server/index.d.ts.map +1 -1
- package/dist/api/com/atproto/server/index.js +17 -17
- package/dist/api/com/atproto/server/index.js.map +1 -1
- package/dist/api/com/atproto/server/listAppPasswords.d.ts +1 -1
- package/dist/api/com/atproto/server/listAppPasswords.d.ts.map +1 -1
- package/dist/api/com/atproto/server/listAppPasswords.js.map +1 -1
- package/dist/api/com/atproto/server/refreshSession.d.ts +1 -1
- package/dist/api/com/atproto/server/refreshSession.d.ts.map +1 -1
- package/dist/api/com/atproto/server/refreshSession.js +1 -1
- package/dist/api/com/atproto/server/refreshSession.js.map +1 -1
- package/dist/api/com/atproto/server/requestAccountDelete.d.ts +1 -1
- package/dist/api/com/atproto/server/requestAccountDelete.d.ts.map +1 -1
- package/dist/api/com/atproto/server/requestAccountDelete.js.map +1 -1
- package/dist/api/com/atproto/server/requestEmailConfirmation.d.ts +1 -1
- package/dist/api/com/atproto/server/requestEmailConfirmation.d.ts.map +1 -1
- package/dist/api/com/atproto/server/requestEmailConfirmation.js.map +1 -1
- package/dist/api/com/atproto/server/requestEmailUpdate.d.ts +1 -1
- package/dist/api/com/atproto/server/requestEmailUpdate.d.ts.map +1 -1
- package/dist/api/com/atproto/server/requestEmailUpdate.js +1 -1
- package/dist/api/com/atproto/server/requestEmailUpdate.js.map +1 -1
- package/dist/api/com/atproto/server/requestPasswordReset.d.ts +1 -1
- package/dist/api/com/atproto/server/requestPasswordReset.d.ts.map +1 -1
- package/dist/api/com/atproto/server/reserveSigningKey.d.ts +1 -1
- package/dist/api/com/atproto/server/reserveSigningKey.d.ts.map +1 -1
- package/dist/api/com/atproto/server/resetPassword.d.ts +1 -1
- package/dist/api/com/atproto/server/resetPassword.d.ts.map +1 -1
- package/dist/api/com/atproto/server/resetPassword.js.map +1 -1
- package/dist/api/com/atproto/server/revokeAppPassword.d.ts +1 -1
- package/dist/api/com/atproto/server/revokeAppPassword.d.ts.map +1 -1
- package/dist/api/com/atproto/server/revokeAppPassword.js.map +1 -1
- package/dist/api/com/atproto/server/updateEmail.d.ts +1 -1
- package/dist/api/com/atproto/server/updateEmail.d.ts.map +1 -1
- package/dist/api/com/atproto/server/updateEmail.js +1 -1
- package/dist/api/com/atproto/server/updateEmail.js.map +1 -1
- package/dist/api/com/atproto/server/util.d.ts +1 -1
- package/dist/api/com/atproto/server/util.d.ts.map +1 -1
- package/dist/api/com/atproto/server/util.js +2 -2
- package/dist/api/com/atproto/server/util.js.map +1 -1
- package/dist/api/com/atproto/sync/deprecated/getCheckout.d.ts +1 -1
- package/dist/api/com/atproto/sync/deprecated/getCheckout.d.ts.map +1 -1
- package/dist/api/com/atproto/sync/deprecated/getHead.d.ts +1 -1
- package/dist/api/com/atproto/sync/deprecated/getHead.d.ts.map +1 -1
- package/dist/api/com/atproto/sync/getBlob.d.ts +1 -1
- package/dist/api/com/atproto/sync/getBlob.d.ts.map +1 -1
- package/dist/api/com/atproto/sync/getBlob.js +2 -2
- package/dist/api/com/atproto/sync/getBlob.js.map +1 -1
- package/dist/api/com/atproto/sync/getBlocks.d.ts +1 -1
- package/dist/api/com/atproto/sync/getBlocks.d.ts.map +1 -1
- package/dist/api/com/atproto/sync/getBlocks.js +1 -1
- package/dist/api/com/atproto/sync/getBlocks.js.map +1 -1
- package/dist/api/com/atproto/sync/getLatestCommit.d.ts +1 -1
- package/dist/api/com/atproto/sync/getLatestCommit.d.ts.map +1 -1
- package/dist/api/com/atproto/sync/getRecord.d.ts +1 -1
- package/dist/api/com/atproto/sync/getRecord.d.ts.map +1 -1
- package/dist/api/com/atproto/sync/getRecord.js +1 -1
- package/dist/api/com/atproto/sync/getRecord.js.map +1 -1
- package/dist/api/com/atproto/sync/getRepo.d.ts +2 -2
- package/dist/api/com/atproto/sync/getRepo.d.ts.map +1 -1
- package/dist/api/com/atproto/sync/getRepo.js +1 -1
- package/dist/api/com/atproto/sync/getRepo.js.map +1 -1
- package/dist/api/com/atproto/sync/getRepoStatus.d.ts +1 -1
- package/dist/api/com/atproto/sync/getRepoStatus.d.ts.map +1 -1
- package/dist/api/com/atproto/sync/getRepoStatus.js +1 -1
- package/dist/api/com/atproto/sync/getRepoStatus.js.map +1 -1
- package/dist/api/com/atproto/sync/index.d.ts +1 -1
- package/dist/api/com/atproto/sync/index.d.ts.map +1 -1
- package/dist/api/com/atproto/sync/index.js +4 -4
- package/dist/api/com/atproto/sync/index.js.map +1 -1
- package/dist/api/com/atproto/sync/listBlobs.d.ts +1 -1
- package/dist/api/com/atproto/sync/listBlobs.d.ts.map +1 -1
- package/dist/api/com/atproto/sync/listBlobs.js +1 -1
- package/dist/api/com/atproto/sync/listBlobs.js.map +1 -1
- package/dist/api/com/atproto/sync/listRepos.d.ts +2 -2
- package/dist/api/com/atproto/sync/listRepos.d.ts.map +1 -1
- package/dist/api/com/atproto/sync/listRepos.js +1 -1
- package/dist/api/com/atproto/sync/listRepos.js.map +1 -1
- package/dist/api/com/atproto/sync/subscribeRepos.d.ts +1 -1
- package/dist/api/com/atproto/sync/subscribeRepos.d.ts.map +1 -1
- package/dist/api/com/atproto/sync/subscribeRepos.js +2 -5
- package/dist/api/com/atproto/sync/subscribeRepos.js.map +1 -1
- package/dist/api/com/atproto/sync/util.d.ts +1 -1
- package/dist/api/com/atproto/sync/util.d.ts.map +1 -1
- package/dist/api/com/atproto/temp/checkSignupQueue.d.ts +1 -1
- package/dist/api/com/atproto/temp/checkSignupQueue.d.ts.map +1 -1
- package/dist/api/com/atproto/temp/checkSignupQueue.js +1 -1
- package/dist/api/com/atproto/temp/checkSignupQueue.js.map +1 -1
- package/dist/api/com/atproto/temp/index.d.ts +1 -1
- package/dist/api/com/atproto/temp/index.d.ts.map +1 -1
- package/dist/api/index.d.ts +1 -1
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/index.js +1 -1
- package/dist/api/index.js.map +1 -1
- package/dist/api/proxy.d.ts +1 -1
- package/dist/api/proxy.d.ts.map +1 -1
- package/dist/api/proxy.js.map +1 -1
- package/dist/auth-routes.d.ts +1 -1
- package/dist/auth-routes.d.ts.map +1 -1
- package/dist/auth-routes.js +1 -1
- package/dist/auth-routes.js.map +1 -1
- package/dist/auth-verifier.d.ts +1 -1
- package/dist/auth-verifier.d.ts.map +1 -1
- package/dist/auth-verifier.js +2 -2
- package/dist/auth-verifier.js.map +1 -1
- package/dist/basic-routes.d.ts +3 -3
- package/dist/basic-routes.d.ts.map +1 -1
- package/dist/basic-routes.js +2 -5
- package/dist/basic-routes.js.map +1 -1
- package/dist/bsky-app-view.d.ts +15 -0
- package/dist/bsky-app-view.d.ts.map +1 -0
- package/dist/bsky-app-view.js +43 -0
- package/dist/bsky-app-view.js.map +1 -0
- package/dist/config/config.js +1 -1
- package/dist/config/config.js.map +1 -1
- package/dist/context.d.ts +15 -15
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +30 -36
- package/dist/context.js.map +1 -1
- package/dist/crawlers.d.ts.map +1 -1
- package/dist/crawlers.js +1 -1
- package/dist/crawlers.js.map +1 -1
- package/dist/db/db.d.ts +2 -2
- package/dist/db/db.d.ts.map +1 -1
- package/dist/db/db.js +4 -4
- package/dist/db/db.js.map +1 -1
- package/dist/db/migrator.d.ts +1 -1
- package/dist/db/migrator.d.ts.map +1 -1
- package/dist/db/tables/moderation.d.ts +1 -1
- package/dist/db/tables/moderation.d.ts.map +1 -1
- package/dist/db/util.d.ts.map +1 -1
- package/dist/db/util.js +1 -1
- package/dist/db/util.js.map +1 -1
- package/dist/did-cache/db/index.d.ts.map +1 -1
- package/dist/did-cache/db/index.js.map +1 -1
- package/dist/disk-blobstore.d.ts +1 -2
- package/dist/disk-blobstore.d.ts.map +1 -1
- package/dist/disk-blobstore.js +17 -18
- package/dist/disk-blobstore.js.map +1 -1
- package/dist/error.d.ts.map +1 -1
- package/dist/error.js +1 -1
- package/dist/error.js.map +1 -1
- package/dist/handle/index.d.ts +1 -1
- package/dist/handle/index.d.ts.map +1 -1
- package/dist/handle/index.js +1 -1
- package/dist/handle/index.js.map +1 -1
- package/dist/image/image-url-builder.d.ts +8 -0
- package/dist/image/image-url-builder.d.ts.map +1 -0
- package/dist/image/image-url-builder.js +26 -0
- package/dist/image/image-url-builder.js.map +1 -0
- package/dist/image/index.d.ts +1 -1
- package/dist/image/index.d.ts.map +1 -1
- package/dist/image/index.js +1 -1
- package/dist/image/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -10
- package/dist/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +68 -4
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +39 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/actor/defs.d.ts +19 -1
- package/dist/lexicon/types/app/bsky/actor/defs.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/actor/defs.js +10 -0
- package/dist/lexicon/types/app/bsky/actor/defs.js.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/postgate.d.ts +1 -0
- package/dist/lexicon/types/app/bsky/feed/postgate.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/postgate.js.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/threadgate.d.ts +8 -1
- package/dist/lexicon/types/app/bsky/feed/threadgate.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/threadgate.js +10 -0
- package/dist/lexicon/types/app/bsky/feed/threadgate.js.map +1 -1
- package/dist/logger.js +2 -5
- package/dist/logger.js.map +1 -1
- package/dist/mailer/index.d.ts.map +1 -1
- package/dist/mailer/index.js.map +1 -1
- package/dist/mailer/moderation.d.ts.map +1 -1
- package/dist/mailer/moderation.js.map +1 -1
- package/dist/oauth/provider.d.ts +1 -5
- package/dist/oauth/provider.d.ts.map +1 -1
- package/dist/oauth/provider.js +2 -6
- package/dist/oauth/provider.js.map +1 -1
- package/dist/pipethrough.d.ts +2 -2
- package/dist/pipethrough.d.ts.map +1 -1
- package/dist/pipethrough.js +1 -1
- package/dist/pipethrough.js.map +1 -1
- package/dist/read-after-write/types.d.ts +3 -3
- package/dist/read-after-write/types.d.ts.map +1 -1
- package/dist/read-after-write/util.d.ts +2 -2
- package/dist/read-after-write/util.d.ts.map +1 -1
- package/dist/read-after-write/util.js +1 -2
- package/dist/read-after-write/util.js.map +1 -1
- package/dist/read-after-write/viewer.d.ts +16 -31
- package/dist/read-after-write/viewer.d.ts.map +1 -1
- package/dist/read-after-write/viewer.js +28 -110
- package/dist/read-after-write/viewer.js.map +1 -1
- package/dist/redis.js +2 -2
- package/dist/redis.js.map +1 -1
- package/dist/repo/prepare.d.ts +2 -2
- package/dist/repo/prepare.d.ts.map +1 -1
- package/dist/repo/prepare.js +6 -6
- package/dist/repo/prepare.js.map +1 -1
- package/dist/repo/types.d.ts +2 -2
- package/dist/repo/types.d.ts.map +1 -1
- package/dist/scripts/rebuild-repo.d.ts +1 -1
- package/dist/scripts/rebuild-repo.d.ts.map +1 -1
- package/dist/scripts/rebuild-repo.js +3 -46
- package/dist/scripts/rebuild-repo.js.map +1 -1
- package/dist/sequencer/db/index.d.ts.map +1 -1
- package/dist/sequencer/db/index.js.map +1 -1
- package/dist/sequencer/events.d.ts +7 -7
- package/dist/sequencer/events.d.ts.map +1 -1
- package/dist/sequencer/events.js.map +1 -1
- package/dist/sequencer/outbox.d.ts +1 -2
- package/dist/sequencer/outbox.d.ts.map +1 -1
- package/dist/sequencer/outbox.js +0 -1
- package/dist/sequencer/outbox.js.map +1 -1
- package/dist/sequencer/sequencer.d.ts +4 -4
- package/dist/sequencer/sequencer.d.ts.map +1 -1
- package/dist/sequencer/sequencer.js +9 -9
- package/dist/sequencer/sequencer.js.map +1 -1
- package/dist/util/compression.js.map +1 -1
- package/dist/util/params.d.ts.map +1 -1
- package/dist/util/params.js +1 -1
- package/dist/util/params.js.map +1 -1
- package/dist/well-known.d.ts +3 -3
- package/dist/well-known.d.ts.map +1 -1
- package/dist/well-known.js +2 -5
- package/dist/well-known.js.map +1 -1
- package/package.json +21 -18
- package/src/account-manager/db/index.ts +1 -1
- package/src/account-manager/db/schema/authorization-request.ts +1 -1
- package/src/account-manager/db/schema/device.ts +1 -1
- package/src/account-manager/db/schema/index.ts +7 -7
- package/src/account-manager/db/schema/token.ts +1 -2
- package/src/account-manager/db/schema/used-refresh-token.ts +1 -1
- package/src/account-manager/helpers/account.ts +2 -2
- package/src/account-manager/helpers/authorization-request.ts +2 -2
- package/src/account-manager/helpers/device-account.ts +1 -2
- package/src/account-manager/helpers/device.ts +3 -3
- package/src/account-manager/helpers/email-token.ts +1 -1
- package/src/account-manager/helpers/invite.ts +1 -1
- package/src/account-manager/helpers/password.ts +2 -2
- package/src/account-manager/helpers/scrypt.ts +2 -2
- package/src/account-manager/helpers/token.ts +1 -1
- package/src/account-manager/index.ts +38 -8
- package/src/actor-store/actor-store-reader.ts +45 -0
- package/src/actor-store/actor-store-resources.ts +8 -0
- package/src/actor-store/actor-store-transactor.ts +31 -0
- package/src/actor-store/actor-store-writer.ts +17 -0
- package/src/actor-store/{index.ts → actor-store.ts} +26 -117
- package/src/actor-store/blob/reader.ts +17 -2
- package/src/actor-store/blob/transactor.ts +25 -10
- package/src/actor-store/db/index.ts +1 -1
- package/src/actor-store/db/schema/index.ts +3 -3
- package/src/actor-store/migrate.ts +1 -1
- package/src/actor-store/preference/transactor.ts +2 -2
- package/src/actor-store/record/reader.ts +125 -4
- package/src/actor-store/record/transactor.ts +3 -3
- package/src/actor-store/repo/reader.ts +1 -1
- package/src/actor-store/repo/sql-repo-reader.ts +7 -6
- package/src/actor-store/repo/sql-repo-transactor.ts +2 -2
- package/src/actor-store/repo/transactor.ts +16 -9
- package/src/api/app/bsky/actor/getPreferences.ts +4 -3
- package/src/api/app/bsky/actor/getProfile.ts +4 -4
- package/src/api/app/bsky/actor/getProfiles.ts +4 -4
- package/src/api/app/bsky/actor/index.ts +1 -2
- package/src/api/app/bsky/actor/putPreferences.ts +4 -3
- package/src/api/app/bsky/feed/getActorLikes.ts +4 -4
- package/src/api/app/bsky/feed/getAuthorFeed.ts +5 -5
- package/src/api/app/bsky/feed/getFeed.ts +8 -8
- package/src/api/app/bsky/feed/getPostThread.ts +14 -14
- package/src/api/app/bsky/feed/getTimeline.ts +4 -4
- package/src/api/app/bsky/feed/index.ts +1 -1
- package/src/api/app/bsky/index.ts +1 -1
- package/src/api/app/bsky/notification/index.ts +1 -1
- package/src/api/app/bsky/notification/registerPush.ts +9 -8
- package/src/api/app/bsky/util/resolver.ts +1 -1
- package/src/api/com/atproto/admin/deleteAccount.ts +2 -2
- package/src/api/com/atproto/admin/disableAccountInvites.ts +1 -1
- package/src/api/com/atproto/admin/disableInviteCodes.ts +1 -1
- package/src/api/com/atproto/admin/enableAccountInvites.ts +1 -1
- package/src/api/com/atproto/admin/getAccountInfo.ts +2 -3
- package/src/api/com/atproto/admin/getAccountInfos.ts +1 -1
- package/src/api/com/atproto/admin/getInviteCodes.ts +4 -4
- package/src/api/com/atproto/admin/getSubjectStatus.ts +1 -1
- package/src/api/com/atproto/admin/index.ts +9 -9
- package/src/api/com/atproto/admin/sendEmail.ts +2 -2
- package/src/api/com/atproto/admin/updateAccountEmail.ts +1 -1
- package/src/api/com/atproto/admin/updateAccountHandle.ts +1 -1
- package/src/api/com/atproto/admin/updateAccountPassword.ts +1 -1
- package/src/api/com/atproto/admin/updateSubjectStatus.ts +3 -3
- package/src/api/com/atproto/admin/util.ts +1 -1
- package/src/api/com/atproto/identity/getRecommendedDidCredentials.ts +1 -1
- package/src/api/com/atproto/identity/index.ts +3 -3
- package/src/api/com/atproto/identity/requestPlcOperationSignature.ts +2 -4
- package/src/api/com/atproto/identity/resolveHandle.ts +12 -16
- package/src/api/com/atproto/identity/signPlcOperation.ts +2 -4
- package/src/api/com/atproto/identity/submitPlcOperation.ts +2 -2
- package/src/api/com/atproto/identity/updateHandle.ts +3 -3
- package/src/api/com/atproto/index.ts +1 -1
- package/src/api/com/atproto/moderation/createReport.ts +4 -4
- package/src/api/com/atproto/moderation/index.ts +1 -1
- package/src/api/com/atproto/repo/applyWrites.ts +9 -7
- package/src/api/com/atproto/repo/createRecord.ts +4 -3
- package/src/api/com/atproto/repo/deleteRecord.ts +7 -4
- package/src/api/com/atproto/repo/describeRepo.ts +3 -3
- package/src/api/com/atproto/repo/getRecord.ts +2 -2
- package/src/api/com/atproto/repo/importRepo.ts +12 -27
- package/src/api/com/atproto/repo/index.ts +3 -3
- package/src/api/com/atproto/repo/listMissingBlobs.ts +1 -1
- package/src/api/com/atproto/repo/listRecords.ts +2 -2
- package/src/api/com/atproto/repo/putRecord.ts +8 -7
- package/src/api/com/atproto/repo/uploadBlob.ts +2 -2
- package/src/api/com/atproto/server/activateAccount.ts +2 -3
- package/src/api/com/atproto/server/checkAccountStatus.ts +1 -1
- package/src/api/com/atproto/server/confirmEmail.ts +1 -3
- package/src/api/com/atproto/server/createAccount.ts +6 -7
- package/src/api/com/atproto/server/createAppPassword.ts +1 -2
- package/src/api/com/atproto/server/createInviteCode.ts +1 -1
- package/src/api/com/atproto/server/createInviteCodes.ts +2 -2
- package/src/api/com/atproto/server/createSession.ts +1 -2
- package/src/api/com/atproto/server/deactivateAccount.ts +1 -1
- package/src/api/com/atproto/server/deleteAccount.ts +2 -2
- package/src/api/com/atproto/server/deleteSession.ts +1 -1
- package/src/api/com/atproto/server/describeServer.ts +1 -1
- package/src/api/com/atproto/server/getAccountInviteCodes.ts +2 -4
- package/src/api/com/atproto/server/getServiceAuth.ts +4 -4
- package/src/api/com/atproto/server/getSession.ts +3 -4
- package/src/api/com/atproto/server/index.ts +18 -27
- package/src/api/com/atproto/server/listAppPasswords.ts +1 -2
- package/src/api/com/atproto/server/refreshSession.ts +2 -3
- package/src/api/com/atproto/server/requestAccountDelete.ts +1 -3
- package/src/api/com/atproto/server/requestEmailConfirmation.ts +1 -3
- package/src/api/com/atproto/server/requestEmailUpdate.ts +2 -4
- package/src/api/com/atproto/server/requestPasswordReset.ts +1 -1
- package/src/api/com/atproto/server/reserveSigningKey.ts +1 -1
- package/src/api/com/atproto/server/resetPassword.ts +2 -2
- package/src/api/com/atproto/server/revokeAppPassword.ts +1 -2
- package/src/api/com/atproto/server/updateEmail.ts +2 -4
- package/src/api/com/atproto/server/util.ts +3 -3
- package/src/api/com/atproto/sync/deprecated/getCheckout.ts +1 -1
- package/src/api/com/atproto/sync/deprecated/getHead.ts +1 -1
- package/src/api/com/atproto/sync/getBlob.ts +4 -4
- package/src/api/com/atproto/sync/getBlocks.ts +2 -2
- package/src/api/com/atproto/sync/getLatestCommit.ts +1 -1
- package/src/api/com/atproto/sync/getRecord.ts +4 -4
- package/src/api/com/atproto/sync/getRepo.ts +4 -4
- package/src/api/com/atproto/sync/getRepoStatus.ts +2 -2
- package/src/api/com/atproto/sync/index.ts +5 -5
- package/src/api/com/atproto/sync/listBlobs.ts +2 -2
- package/src/api/com/atproto/sync/listRepos.ts +3 -3
- package/src/api/com/atproto/sync/subscribeRepos.ts +2 -2
- package/src/api/com/atproto/sync/util.ts +1 -1
- package/src/api/com/atproto/temp/checkSignupQueue.ts +2 -2
- package/src/api/com/atproto/temp/index.ts +1 -1
- package/src/api/index.ts +2 -2
- package/src/api/proxy.ts +1 -1
- package/src/auth-routes.ts +2 -3
- package/src/auth-verifier.ts +2 -3
- package/src/basic-routes.ts +4 -4
- package/src/bsky-app-view.ts +26 -0
- package/src/config/config.ts +1 -1
- package/src/config/env.ts +1 -1
- package/src/context.ts +49 -46
- package/src/crawlers.ts +1 -1
- package/src/db/db.ts +7 -7
- package/src/db/migrator.ts +1 -1
- package/src/db/tables/moderation.ts +2 -2
- package/src/db/util.ts +2 -2
- package/src/did-cache/db/index.ts +1 -1
- package/src/did-cache/index.ts +1 -1
- package/src/disk-blobstore.ts +6 -8
- package/src/error.ts +2 -2
- package/src/handle/index.ts +2 -2
- package/src/image/image-url-builder.ts +16 -0
- package/src/image/index.ts +2 -2
- package/src/index.ts +15 -13
- package/src/lexicon/lexicons.ts +44 -0
- package/src/lexicon/types/app/bsky/actor/defs.ts +37 -0
- package/src/lexicon/types/app/bsky/feed/postgate.ts +1 -0
- package/src/lexicon/types/app/bsky/feed/threadgate.ts +19 -0
- package/src/logger.ts +1 -1
- package/src/mailer/index.ts +1 -2
- package/src/mailer/moderation.ts +1 -1
- package/src/mailer/templates/confirm-email.d.ts +1 -1
- package/src/mailer/templates/delete-account.d.ts +1 -1
- package/src/mailer/templates/plc-operation.d.ts +1 -1
- package/src/mailer/templates/reset-password.d.ts +1 -1
- package/src/mailer/templates/update-email.d.ts +1 -1
- package/src/oauth/provider.ts +1 -17
- package/src/pipethrough.ts +4 -6
- package/src/read-after-write/types.ts +3 -3
- package/src/read-after-write/util.ts +3 -5
- package/src/read-after-write/viewer.ts +50 -124
- package/src/redis.ts +1 -1
- package/src/repo/prepare.ts +18 -18
- package/src/repo/types.ts +2 -2
- package/src/scripts/rebuild-repo.ts +4 -61
- package/src/sequencer/db/index.ts +1 -1
- package/src/sequencer/events.ts +3 -3
- package/src/sequencer/outbox.ts +1 -3
- package/src/sequencer/sequencer.ts +12 -12
- package/src/util/compression.ts +1 -1
- package/src/util/params.ts +1 -1
- package/src/well-known.ts +4 -4
- package/tests/_util.ts +5 -5
- package/tests/account-deletion.test.ts +7 -7
- package/tests/account-migration.test.ts +3 -3
- package/tests/account.test.ts +2 -2
- package/tests/app-passwords.test.ts +1 -1
- package/tests/blob-deletes.test.ts +4 -6
- package/tests/create-post.test.ts +3 -3
- package/tests/crud.test.ts +12 -16
- package/tests/email-confirmation.test.ts +5 -5
- package/tests/entryway.test.ts +5 -5
- package/tests/file-uploads.test.ts +7 -7
- package/tests/handles.test.ts +3 -3
- package/tests/invites-admin.test.ts +1 -1
- package/tests/moderation.test.ts +2 -2
- package/tests/moderator-auth.test.ts +4 -4
- package/tests/oauth.test.ts +4 -4
- package/tests/plc-operations.test.ts +6 -6
- package/tests/preferences.test.ts +2 -2
- package/tests/proxied/admin.test.ts +2 -2
- package/tests/proxied/feedgen.test.ts +4 -4
- package/tests/proxied/notif.test.ts +5 -5
- package/tests/proxied/procedures.test.ts +1 -1
- package/tests/proxied/proxy-catchall.test.ts +6 -6
- package/tests/proxied/proxy-header.test.ts +5 -5
- package/tests/proxied/read-after-write.test.ts +6 -6
- package/tests/proxied/views.test.ts +3 -3
- package/tests/races.test.ts +2 -2
- package/tests/rate-limits.test.ts +1 -1
- package/tests/sequencer.test.ts +7 -7
- package/tests/server.test.ts +4 -4
- package/tests/sync/list.test.ts +1 -1
- package/tests/sync/subscribe-repos.test.ts +9 -9
- package/tests/sync/sync.test.ts +3 -3
- package/tests/takedown-appeal.test.ts +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
- package/dist/actor-store/index.d.ts +0 -65
- package/dist/actor-store/index.d.ts.map +0 -1
- package/dist/actor-store/index.js.map +0 -1
- package/dist/oauth/detailed-account-store.d.ts +0 -27
- package/dist/oauth/detailed-account-store.d.ts.map +0 -1
- package/dist/oauth/detailed-account-store.js +0 -76
- package/dist/oauth/detailed-account-store.js.map +0 -1
- package/src/oauth/detailed-account-store.ts +0 -96
package/src/oauth/provider.ts
CHANGED
@@ -3,17 +3,11 @@ import {
|
|
3
3
|
OAuthProvider,
|
4
4
|
OAuthProviderOptions,
|
5
5
|
} from '@atproto/oauth-provider'
|
6
|
-
|
7
6
|
import { AccountManager } from '../account-manager/index'
|
8
|
-
import { ActorStore } from '../actor-store/index'
|
9
7
|
import { oauthLogger } from '../logger'
|
10
|
-
import { LocalViewerCreator } from '../read-after-write/index'
|
11
|
-
import { DetailedAccountStore } from './detailed-account-store'
|
12
8
|
|
13
9
|
export type AuthProviderOptions = {
|
14
10
|
accountManager: AccountManager
|
15
|
-
actorStore: ActorStore
|
16
|
-
localViewer: LocalViewerCreator
|
17
11
|
} & Pick<
|
18
12
|
OAuthProviderOptions,
|
19
13
|
'issuer' | 'redis' | 'keyset' | 'dpopSecret' | 'customization'
|
@@ -23,8 +17,6 @@ export type AuthProviderOptions = {
|
|
23
17
|
export class PdsOAuthProvider extends OAuthProvider {
|
24
18
|
constructor({
|
25
19
|
accountManager,
|
26
|
-
actorStore,
|
27
|
-
localViewer,
|
28
20
|
keyset,
|
29
21
|
redis,
|
30
22
|
dpopSecret,
|
@@ -39,6 +31,7 @@ export class PdsOAuthProvider extends OAuthProvider {
|
|
39
31
|
redis,
|
40
32
|
safeFetch,
|
41
33
|
customization,
|
34
|
+
store: accountManager,
|
42
35
|
metadata: {
|
43
36
|
// PdsOAuthProvider is used when the PDS is both an authorization server
|
44
37
|
// & resource server, in which case the issuer origin is also the
|
@@ -48,15 +41,6 @@ export class PdsOAuthProvider extends OAuthProvider {
|
|
48
41
|
scopes_supported: ['transition:generic', 'transition:chat.bsky'],
|
49
42
|
},
|
50
43
|
|
51
|
-
accountStore: new DetailedAccountStore(
|
52
|
-
accountManager,
|
53
|
-
actorStore,
|
54
|
-
localViewer,
|
55
|
-
),
|
56
|
-
requestStore: accountManager,
|
57
|
-
deviceStore: accountManager,
|
58
|
-
tokenStore: accountManager,
|
59
|
-
|
60
44
|
// If the PDS is both an authorization server & resource server (no
|
61
45
|
// entryway), there is no need to use JWTs as access tokens. Instead,
|
62
46
|
// the PDS can use tokenId as access tokens. This allows the PDS to
|
package/src/pipethrough.ts
CHANGED
@@ -1,9 +1,7 @@
|
|
1
|
-
import express from 'express'
|
2
1
|
import { IncomingHttpHeaders, ServerResponse } from 'node:http'
|
3
2
|
import { PassThrough, Readable } from 'node:stream'
|
3
|
+
import express from 'express'
|
4
4
|
import { Dispatcher } from 'undici'
|
5
|
-
|
6
|
-
import { buildProxiedContentEncoding } from '@atproto-labs/xrpc-utils'
|
7
5
|
import {
|
8
6
|
decodeStream,
|
9
7
|
getServiceEndpoint,
|
@@ -17,11 +15,11 @@ import {
|
|
17
15
|
HandlerPipeThroughStream,
|
18
16
|
InternalServerError,
|
19
17
|
InvalidRequestError,
|
20
|
-
parseReqNsid,
|
21
18
|
XRPCError as XRPCServerError,
|
19
|
+
parseReqNsid,
|
22
20
|
} from '@atproto/xrpc-server'
|
23
|
-
|
24
|
-
import AppContext from './context'
|
21
|
+
import { buildProxiedContentEncoding } from '@atproto-labs/xrpc-utils'
|
22
|
+
import { AppContext } from './context'
|
25
23
|
import { ids } from './lexicon/lexicons'
|
26
24
|
import { httpLogger } from './logger'
|
27
25
|
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { Headers } from '@atproto/xrpc'
|
2
|
-
import { AtUri } from '@atproto/syntax'
|
3
1
|
import { CID } from 'multiformats/cid'
|
4
|
-
import {
|
2
|
+
import { AtUri } from '@atproto/syntax'
|
3
|
+
import { Headers } from '@atproto/xrpc'
|
5
4
|
import { Record as ProfileRecord } from '../lexicon/types/app/bsky/actor/profile'
|
5
|
+
import { Record as PostRecord } from '../lexicon/types/app/bsky/feed/post'
|
6
6
|
import { LocalViewer } from './viewer'
|
7
7
|
|
8
8
|
export type LocalRecords = {
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import express from 'express'
|
1
2
|
import { jsonToLex } from '@atproto/lexicon'
|
2
3
|
import { HeadersMap } from '@atproto/xrpc'
|
3
4
|
import {
|
@@ -5,9 +6,7 @@ import {
|
|
5
6
|
HandlerPipeThroughBuffer,
|
6
7
|
parseReqNsid,
|
7
8
|
} from '@atproto/xrpc-server'
|
8
|
-
import
|
9
|
-
|
10
|
-
import AppContext from '../context'
|
9
|
+
import { AppContext } from '../context'
|
11
10
|
import { lexicons } from '../lexicon/lexicons'
|
12
11
|
import { readStickyLogger as log } from '../logger'
|
13
12
|
import {
|
@@ -16,7 +15,6 @@ import {
|
|
16
15
|
pipethrough,
|
17
16
|
} from '../pipethrough'
|
18
17
|
import { HandlerResponse, LocalRecords, MungeFn } from './types'
|
19
|
-
import { getRecordsSinceRev } from './viewer'
|
20
18
|
|
21
19
|
const REPO_REV_HEADER = 'atproto-repo-rev'
|
22
20
|
|
@@ -62,7 +60,7 @@ export const pipethroughReadAfterWrite = async <T>(
|
|
62
60
|
const lxm = parseReqNsid(req)
|
63
61
|
|
64
62
|
return await ctx.actorStore.read(requester, async (store) => {
|
65
|
-
const local = await getRecordsSinceRev(
|
63
|
+
const local = await store.record.getRecordsSinceRev(rev)
|
66
64
|
if (local.count === 0) return streamRes
|
67
65
|
|
68
66
|
const { buffer } = (bufferRes = await asPipeThroughBuffer(streamRes))
|
@@ -1,133 +1,106 @@
|
|
1
|
-
import util from 'util'
|
2
|
-
import { CID } from 'multiformats/cid'
|
3
1
|
import { AtUri, INVALID_HANDLE } from '@atproto/syntax'
|
4
|
-
import { cborToLexRecord } from '@atproto/repo'
|
5
|
-
import { AtpAgent } from '@atproto/api'
|
6
2
|
import { createServiceAuthHeaders } from '@atproto/xrpc-server'
|
7
|
-
import {
|
8
|
-
import {
|
3
|
+
import { AccountManager } from '../account-manager'
|
4
|
+
import { ActorStoreReader } from '../actor-store/actor-store-reader'
|
5
|
+
import { BskyAppView } from '../bsky-app-view'
|
6
|
+
import { ImageUrlBuilder } from '../image/image-url-builder'
|
9
7
|
import { ids } from '../lexicon/lexicons'
|
10
8
|
import {
|
11
|
-
ProfileViewBasic,
|
12
9
|
ProfileView,
|
10
|
+
ProfileViewBasic,
|
13
11
|
ProfileViewDetailed,
|
14
12
|
} from '../lexicon/types/app/bsky/actor/defs'
|
13
|
+
import { Record as ProfileRecord } from '../lexicon/types/app/bsky/actor/profile'
|
15
14
|
import {
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
} from '../lexicon/types/app/bsky/feed/defs'
|
20
|
-
import { ListView } from '../lexicon/types/app/bsky/graph/defs'
|
15
|
+
Main as EmbedExternal,
|
16
|
+
isMain as isEmbedExternal,
|
17
|
+
} from '../lexicon/types/app/bsky/embed/external'
|
21
18
|
import {
|
22
19
|
Main as EmbedImages,
|
23
20
|
isMain as isEmbedImages,
|
24
21
|
} from '../lexicon/types/app/bsky/embed/images'
|
25
|
-
import {
|
26
|
-
Main as EmbedExternal,
|
27
|
-
isMain as isEmbedExternal,
|
28
|
-
} from '../lexicon/types/app/bsky/embed/external'
|
29
22
|
import {
|
30
23
|
Main as EmbedRecord,
|
31
|
-
isMain as isEmbedRecord,
|
32
24
|
View as EmbedRecordView,
|
33
25
|
ViewRecord,
|
26
|
+
isMain as isEmbedRecord,
|
34
27
|
} from '../lexicon/types/app/bsky/embed/record'
|
35
28
|
import {
|
36
29
|
Main as EmbedRecordWithMedia,
|
37
30
|
isMain as isEmbedRecordWithMedia,
|
38
31
|
} from '../lexicon/types/app/bsky/embed/recordWithMedia'
|
39
|
-
import {
|
32
|
+
import {
|
33
|
+
FeedViewPost,
|
34
|
+
GeneratorView,
|
35
|
+
PostView,
|
36
|
+
} from '../lexicon/types/app/bsky/feed/defs'
|
37
|
+
import { Record as PostRecord } from '../lexicon/types/app/bsky/feed/post'
|
38
|
+
import { ListView } from '../lexicon/types/app/bsky/graph/defs'
|
40
39
|
import { LocalRecords, RecordDescript } from './types'
|
41
|
-
import { AccountManager } from '../account-manager'
|
42
40
|
|
43
41
|
type CommonSignedUris = 'avatar' | 'banner' | 'feed_thumbnail' | 'feed_fullsize'
|
44
42
|
|
45
|
-
export type LocalViewerCreator = (
|
43
|
+
export type LocalViewerCreator = (
|
44
|
+
actorStoreReader: ActorStoreReader,
|
45
|
+
) => LocalViewer
|
46
46
|
|
47
47
|
export class LocalViewer {
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
appviewCdnUrlPattern?: string
|
48
|
+
constructor(
|
49
|
+
public readonly actorStoreReader: ActorStoreReader,
|
50
|
+
public readonly accountManager: AccountManager,
|
51
|
+
public readonly imageUrlBuilder: ImageUrlBuilder,
|
52
|
+
public readonly bskyAppView?: BskyAppView,
|
53
|
+
) {}
|
55
54
|
|
56
|
-
|
57
|
-
|
58
|
-
accountManager: AccountManager
|
59
|
-
pdsHostname: string
|
60
|
-
appViewAgent?: AtpAgent
|
61
|
-
appviewDid?: string
|
62
|
-
appviewCdnUrlPattern?: string
|
63
|
-
}) {
|
64
|
-
this.did = params.actorStore.did
|
65
|
-
this.actorStore = params.actorStore
|
66
|
-
this.accountManager = params.accountManager
|
67
|
-
this.pdsHostname = params.pdsHostname
|
68
|
-
this.appViewAgent = params.appViewAgent
|
69
|
-
this.appviewDid = params.appviewDid
|
70
|
-
this.appviewCdnUrlPattern = params.appviewCdnUrlPattern
|
55
|
+
get did() {
|
56
|
+
return this.actorStoreReader.did
|
71
57
|
}
|
72
58
|
|
73
|
-
static creator(
|
74
|
-
accountManager: AccountManager
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
return (actorStore) => {
|
81
|
-
return new LocalViewer({ ...params, actorStore })
|
82
|
-
}
|
59
|
+
static creator(
|
60
|
+
accountManager: AccountManager,
|
61
|
+
imageUrlBuilder: ImageUrlBuilder,
|
62
|
+
bskyAppView?: BskyAppView,
|
63
|
+
): LocalViewerCreator {
|
64
|
+
return (actorStore) =>
|
65
|
+
new LocalViewer(actorStore, accountManager, imageUrlBuilder, bskyAppView)
|
83
66
|
}
|
84
67
|
|
85
68
|
getImageUrl(pattern: CommonSignedUris, cid: string) {
|
86
|
-
|
87
|
-
return `https://${this.pdsHostname}/xrpc/${ids.ComAtprotoSyncGetBlob}?did=${this.did}&cid=${cid}`
|
88
|
-
}
|
89
|
-
return util.format(this.appviewCdnUrlPattern, pattern, this.did, cid)
|
69
|
+
return this.imageUrlBuilder.build(pattern, this.did, cid)
|
90
70
|
}
|
91
71
|
|
92
72
|
async serviceAuthHeaders(did: string, lxm: string) {
|
93
|
-
if (!this.
|
73
|
+
if (!this.bskyAppView) {
|
94
74
|
throw new Error('Could not find bsky appview did')
|
95
75
|
}
|
96
|
-
const keypair = await this.
|
76
|
+
const keypair = await this.actorStoreReader.keypair()
|
97
77
|
|
98
78
|
return createServiceAuthHeaders({
|
99
79
|
iss: did,
|
100
|
-
aud: this.
|
80
|
+
aud: this.bskyAppView.did,
|
101
81
|
lxm,
|
102
82
|
keypair,
|
103
83
|
})
|
104
84
|
}
|
105
85
|
|
106
86
|
async getRecordsSinceRev(rev: string): Promise<LocalRecords> {
|
107
|
-
return getRecordsSinceRev(
|
87
|
+
return this.actorStoreReader.record.getRecordsSinceRev(rev)
|
108
88
|
}
|
109
89
|
|
110
90
|
async getProfileBasic(): Promise<ProfileViewBasic | null> {
|
111
|
-
const profileQuery = this.actorStore.db.db
|
112
|
-
.selectFrom('record')
|
113
|
-
.leftJoin('repo_block', 'repo_block.cid', 'record.cid')
|
114
|
-
.where('record.collection', '=', ids.AppBskyActorProfile)
|
115
|
-
.where('record.rkey', '=', 'self')
|
116
|
-
.selectAll()
|
117
91
|
const [profileRes, accountRes] = await Promise.all([
|
118
|
-
|
92
|
+
this.actorStoreReader.record.getProfileRecord(),
|
119
93
|
this.accountManager.getAccount(this.did),
|
120
94
|
])
|
95
|
+
|
121
96
|
if (!accountRes) return null
|
122
|
-
|
123
|
-
? (cborToLexRecord(profileRes.content) as ProfileRecord)
|
124
|
-
: null
|
97
|
+
|
125
98
|
return {
|
126
99
|
did: this.did,
|
127
100
|
handle: accountRes.handle ?? INVALID_HANDLE,
|
128
|
-
displayName:
|
129
|
-
avatar:
|
130
|
-
? this.getImageUrl('avatar',
|
101
|
+
displayName: profileRes?.displayName,
|
102
|
+
avatar: profileRes?.avatar
|
103
|
+
? this.getImageUrl('avatar', profileRes.avatar.ref.toString())
|
131
104
|
: undefined,
|
132
105
|
}
|
133
106
|
}
|
@@ -239,12 +212,12 @@ export class LocalViewer {
|
|
239
212
|
private async formatRecordEmbedInternal(
|
240
213
|
embed: EmbedRecord,
|
241
214
|
): Promise<null | ViewRecord | GeneratorView | ListView> {
|
242
|
-
if (!this.
|
215
|
+
if (!this.bskyAppView) {
|
243
216
|
return null
|
244
217
|
}
|
245
218
|
const collection = new AtUri(embed.record.uri).collection
|
246
219
|
if (collection === ids.AppBskyFeedPost) {
|
247
|
-
const res = await this.
|
220
|
+
const res = await this.bskyAppView.agent.app.bsky.feed.getPosts(
|
248
221
|
{ uris: [embed.record.uri] },
|
249
222
|
await this.serviceAuthHeaders(this.did, ids.AppBskyFeedGetPosts),
|
250
223
|
)
|
@@ -261,7 +234,7 @@ export class LocalViewer {
|
|
261
234
|
indexedAt: post.indexedAt,
|
262
235
|
}
|
263
236
|
} else if (collection === ids.AppBskyFeedGenerator) {
|
264
|
-
const res = await this.
|
237
|
+
const res = await this.bskyAppView.agent.app.bsky.feed.getFeedGenerator(
|
265
238
|
{ feed: embed.record.uri },
|
266
239
|
await this.serviceAuthHeaders(
|
267
240
|
this.did,
|
@@ -273,7 +246,7 @@ export class LocalViewer {
|
|
273
246
|
...res.data.view,
|
274
247
|
}
|
275
248
|
} else if (collection === ids.AppBskyGraphList) {
|
276
|
-
const res = await this.
|
249
|
+
const res = await this.bskyAppView.agent.app.bsky.graph.getList(
|
277
250
|
{ list: embed.record.uri },
|
278
251
|
await this.serviceAuthHeaders(this.did, ids.AppBskyGraphGetList),
|
279
252
|
)
|
@@ -330,50 +303,3 @@ export class LocalViewer {
|
|
330
303
|
}
|
331
304
|
}
|
332
305
|
}
|
333
|
-
|
334
|
-
export const getRecordsSinceRev = async (
|
335
|
-
actorStore: ActorStoreReader,
|
336
|
-
rev: string,
|
337
|
-
): Promise<LocalRecords> => {
|
338
|
-
const res = await actorStore.db.db
|
339
|
-
.selectFrom('record')
|
340
|
-
.innerJoin('repo_block', 'repo_block.cid', 'record.cid')
|
341
|
-
.select(['repo_block.content', 'uri', 'repo_block.cid', 'record.indexedAt'])
|
342
|
-
.where('record.repoRev', '>', rev)
|
343
|
-
.limit(10)
|
344
|
-
.orderBy('record.repoRev', 'asc')
|
345
|
-
.execute()
|
346
|
-
// sanity check to ensure that the clock received is not before _all_ local records (for instance in case of account migration)
|
347
|
-
if (res.length > 0) {
|
348
|
-
const sanityCheckRes = await actorStore.db.db
|
349
|
-
.selectFrom('record')
|
350
|
-
.selectAll()
|
351
|
-
.where('record.repoRev', '<=', rev)
|
352
|
-
.limit(1)
|
353
|
-
.executeTakeFirst()
|
354
|
-
if (!sanityCheckRes) {
|
355
|
-
return { count: 0, profile: null, posts: [] }
|
356
|
-
}
|
357
|
-
}
|
358
|
-
return res.reduce(
|
359
|
-
(acc, cur) => {
|
360
|
-
const descript = {
|
361
|
-
uri: new AtUri(cur.uri),
|
362
|
-
cid: CID.parse(cur.cid),
|
363
|
-
indexedAt: cur.indexedAt,
|
364
|
-
record: cborToLexRecord(cur.content),
|
365
|
-
}
|
366
|
-
if (
|
367
|
-
descript.uri.collection === ids.AppBskyActorProfile &&
|
368
|
-
descript.uri.rkey === 'self'
|
369
|
-
) {
|
370
|
-
acc.profile = descript as RecordDescript<ProfileRecord>
|
371
|
-
} else if (descript.uri.collection === ids.AppBskyFeedPost) {
|
372
|
-
acc.posts.push(descript as RecordDescript<PostRecord>)
|
373
|
-
}
|
374
|
-
acc.count++
|
375
|
-
return acc
|
376
|
-
},
|
377
|
-
{ count: 0, profile: null, posts: [] } as LocalRecords,
|
378
|
-
)
|
379
|
-
}
|
package/src/redis.ts
CHANGED
package/src/repo/prepare.ts
CHANGED
@@ -1,9 +1,4 @@
|
|
1
1
|
import { CID } from 'multiformats/cid'
|
2
|
-
import {
|
3
|
-
AtUri,
|
4
|
-
ensureValidRecordKey,
|
5
|
-
ensureValidDatetime,
|
6
|
-
} from '@atproto/syntax'
|
7
2
|
import { TID, check, dataToCborBlock } from '@atproto/common'
|
8
3
|
import {
|
9
4
|
BlobRef,
|
@@ -15,30 +10,35 @@ import {
|
|
15
10
|
untypedJsonBlobRef,
|
16
11
|
} from '@atproto/lexicon'
|
17
12
|
import {
|
18
|
-
cborToLex,
|
19
|
-
RecordDeleteOp,
|
20
13
|
RecordCreateOp,
|
14
|
+
RecordDeleteOp,
|
21
15
|
RecordUpdateOp,
|
22
16
|
RecordWriteOp,
|
23
17
|
WriteOpAction,
|
18
|
+
cborToLex,
|
24
19
|
} from '@atproto/repo'
|
25
20
|
import {
|
21
|
+
AtUri,
|
22
|
+
ensureValidDatetime,
|
23
|
+
ensureValidRecordKey,
|
24
|
+
} from '@atproto/syntax'
|
25
|
+
import { hasExplicitSlur } from '../handle/explicit-slurs'
|
26
|
+
import * as lex from '../lexicon/lexicons'
|
27
|
+
import { isRecord as isProfile } from '../lexicon/types/app/bsky/actor/profile'
|
28
|
+
import { isRecord as isFeedGenerator } from '../lexicon/types/app/bsky/feed/generator'
|
29
|
+
import { isRecord as isPost } from '../lexicon/types/app/bsky/feed/post'
|
30
|
+
import { isRecord as isList } from '../lexicon/types/app/bsky/graph/list'
|
31
|
+
import { isRecord as isStarterPack } from '../lexicon/types/app/bsky/graph/starterpack'
|
32
|
+
import { isTag } from '../lexicon/types/app/bsky/richtext/facet'
|
33
|
+
import {
|
34
|
+
InvalidRecordError,
|
35
|
+
PreparedBlobRef,
|
26
36
|
PreparedCreate,
|
27
|
-
PreparedUpdate,
|
28
37
|
PreparedDelete,
|
29
|
-
|
38
|
+
PreparedUpdate,
|
30
39
|
PreparedWrite,
|
31
|
-
PreparedBlobRef,
|
32
40
|
ValidationStatus,
|
33
41
|
} from './types'
|
34
|
-
import * as lex from '../lexicon/lexicons'
|
35
|
-
import { isRecord as isFeedGenerator } from '../lexicon/types/app/bsky/feed/generator'
|
36
|
-
import { isRecord as isStarterPack } from '../lexicon/types/app/bsky/graph/starterpack'
|
37
|
-
import { isRecord as isPost } from '../lexicon/types/app/bsky/feed/post'
|
38
|
-
import { isTag } from '../lexicon/types/app/bsky/richtext/facet'
|
39
|
-
import { isRecord as isList } from '../lexicon/types/app/bsky/graph/list'
|
40
|
-
import { isRecord as isProfile } from '../lexicon/types/app/bsky/actor/profile'
|
41
|
-
import { hasExplicitSlur } from '../handle/explicit-slurs'
|
42
42
|
|
43
43
|
export const assertValidRecordWithStatus = (
|
44
44
|
record: Record<string, unknown>,
|
package/src/repo/types.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { CID } from 'multiformats/cid'
|
2
|
-
import { AtUri } from '@atproto/syntax'
|
3
|
-
import { WriteOpAction } from '@atproto/repo'
|
4
2
|
import { RepoRecord } from '@atproto/lexicon'
|
3
|
+
import { WriteOpAction } from '@atproto/repo'
|
4
|
+
import { AtUri } from '@atproto/syntax'
|
5
5
|
|
6
6
|
export type ValidationStatus = 'valid' | 'unknown' | undefined
|
7
7
|
|
@@ -1,17 +1,13 @@
|
|
1
1
|
import readline from 'node:readline/promises'
|
2
|
-
import {
|
2
|
+
import { TID } from '@atproto/common'
|
3
3
|
import {
|
4
4
|
BlockMap,
|
5
5
|
CidSet,
|
6
6
|
MST,
|
7
7
|
MemoryBlockstore,
|
8
|
-
formatDataKey,
|
9
8
|
signCommit,
|
10
9
|
} from '@atproto/repo'
|
11
|
-
import {
|
12
|
-
import { TID } from '@atproto/common'
|
13
|
-
import { ActorStoreTransactor } from '../actor-store'
|
14
|
-
import AppContext from '../context'
|
10
|
+
import { AppContext } from '../context'
|
15
11
|
|
16
12
|
export const rebuildRepo = async (ctx: AppContext, args: string[]) => {
|
17
13
|
const did = args[0]
|
@@ -23,8 +19,8 @@ export const rebuildRepo = async (ctx: AppContext, args: string[]) => {
|
|
23
19
|
const rev = TID.nextStr()
|
24
20
|
const commit = await ctx.actorStore.transact(did, async (store) => {
|
25
21
|
const [records, existingCids] = await Promise.all([
|
26
|
-
|
27
|
-
listExistingBlocks(
|
22
|
+
store.record.listAll(),
|
23
|
+
store.record.listExistingBlocks(),
|
28
24
|
])
|
29
25
|
let mst = await MST.create(memoryStore)
|
30
26
|
for (const record of records) {
|
@@ -81,53 +77,6 @@ export const rebuildRepo = async (ctx: AppContext, args: string[]) => {
|
|
81
77
|
await ctx.sequencer.sequenceCommit(did, commit, [])
|
82
78
|
}
|
83
79
|
|
84
|
-
const listExistingBlocks = async (
|
85
|
-
store: ActorStoreTransactor,
|
86
|
-
): Promise<CidSet> => {
|
87
|
-
const cids = new CidSet()
|
88
|
-
let cursor: string | undefined = ''
|
89
|
-
while (cursor !== undefined) {
|
90
|
-
const res = await store.db.db
|
91
|
-
.selectFrom('repo_block')
|
92
|
-
.select('cid')
|
93
|
-
.where('cid', '>', cursor)
|
94
|
-
.orderBy('cid', 'asc')
|
95
|
-
.limit(1000)
|
96
|
-
.execute()
|
97
|
-
for (const row of res) {
|
98
|
-
cids.add(CID.parse(row.cid))
|
99
|
-
}
|
100
|
-
cursor = res.at(-1)?.cid
|
101
|
-
}
|
102
|
-
return cids
|
103
|
-
}
|
104
|
-
|
105
|
-
const listAllRecords = async (
|
106
|
-
store: ActorStoreTransactor,
|
107
|
-
): Promise<RecordDescript[]> => {
|
108
|
-
const records: RecordDescript[] = []
|
109
|
-
let cursor: string | undefined = ''
|
110
|
-
while (cursor !== undefined) {
|
111
|
-
const res = await store.db.db
|
112
|
-
.selectFrom('record')
|
113
|
-
.select(['uri', 'cid'])
|
114
|
-
.where('uri', '>', cursor)
|
115
|
-
.orderBy('uri', 'asc')
|
116
|
-
.limit(1000)
|
117
|
-
.execute()
|
118
|
-
for (const row of res) {
|
119
|
-
const parsed = new AtUri(row.uri)
|
120
|
-
records.push({
|
121
|
-
uri: row.uri,
|
122
|
-
path: formatDataKey(parsed.collection, parsed.rkey),
|
123
|
-
cid: CID.parse(row.cid),
|
124
|
-
})
|
125
|
-
}
|
126
|
-
cursor = res.at(-1)?.uri
|
127
|
-
}
|
128
|
-
return records
|
129
|
-
}
|
130
|
-
|
131
80
|
const promptContinue = async (): Promise<boolean> => {
|
132
81
|
const rl = readline.createInterface({
|
133
82
|
input: process.stdin,
|
@@ -136,9 +85,3 @@ const promptContinue = async (): Promise<boolean> => {
|
|
136
85
|
const answer = await rl.question('Continue? y/n ')
|
137
86
|
return answer === ''
|
138
87
|
}
|
139
|
-
|
140
|
-
type RecordDescript = {
|
141
|
-
uri: string
|
142
|
-
path: string
|
143
|
-
cid: CID
|
144
|
-
}
|
package/src/sequencer/events.ts
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
+
import { CID } from 'multiformats/cid'
|
1
2
|
import { z } from 'zod'
|
2
3
|
import { cborEncode, schema } from '@atproto/common'
|
3
4
|
import {
|
4
5
|
BlockMap,
|
5
|
-
blocksToCarFile,
|
6
6
|
CidSet,
|
7
7
|
CommitData,
|
8
8
|
WriteOpAction,
|
9
|
+
blocksToCarFile,
|
9
10
|
} from '@atproto/repo'
|
11
|
+
import { AccountStatus } from '../account-manager'
|
10
12
|
import { PreparedWrite } from '../repo'
|
11
|
-
import { CID } from 'multiformats/cid'
|
12
13
|
import { RepoSeqInsert } from './db'
|
13
|
-
import { AccountStatus } from '../account-manager'
|
14
14
|
|
15
15
|
export const formatSeqCommit = async (
|
16
16
|
did: string,
|
package/src/sequencer/outbox.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { AsyncBuffer, AsyncBufferFullError } from '@atproto/common'
|
2
|
-
import { Sequencer, SeqEvt } from '.'
|
3
2
|
import { InvalidRequestError } from '@atproto/xrpc-server'
|
3
|
+
import { SeqEvt, Sequencer } from '.'
|
4
4
|
|
5
5
|
export type OutboxOpts = {
|
6
6
|
maxBufferSize: number
|
@@ -121,5 +121,3 @@ export class Outbox {
|
|
121
121
|
}
|
122
122
|
}
|
123
123
|
}
|
124
|
-
|
125
|
-
export default Outbox
|
@@ -1,8 +1,18 @@
|
|
1
|
-
import EventEmitter from 'events'
|
1
|
+
import EventEmitter from 'node:events'
|
2
2
|
import TypedEmitter from 'typed-emitter'
|
3
|
-
import { seqLogger as log } from '../logger'
|
4
3
|
import { SECOND, cborDecode, wait } from '@atproto/common'
|
5
4
|
import { CommitData } from '@atproto/repo'
|
5
|
+
import { AccountStatus } from '../account-manager/helpers/account'
|
6
|
+
import { Crawlers } from '../crawlers'
|
7
|
+
import { seqLogger as log } from '../logger'
|
8
|
+
import { PreparedWrite } from '../repo'
|
9
|
+
import {
|
10
|
+
RepoSeqEntry,
|
11
|
+
RepoSeqInsert,
|
12
|
+
SequencerDb,
|
13
|
+
getDb,
|
14
|
+
getMigrator,
|
15
|
+
} from './db'
|
6
16
|
import {
|
7
17
|
AccountEvt,
|
8
18
|
CommitEvt,
|
@@ -16,16 +26,6 @@ import {
|
|
16
26
|
formatSeqIdentityEvt,
|
17
27
|
formatSeqTombstone,
|
18
28
|
} from './events'
|
19
|
-
import {
|
20
|
-
SequencerDb,
|
21
|
-
getMigrator,
|
22
|
-
RepoSeqEntry,
|
23
|
-
RepoSeqInsert,
|
24
|
-
getDb,
|
25
|
-
} from './db'
|
26
|
-
import { PreparedWrite } from '../repo'
|
27
|
-
import { Crawlers } from '../crawlers'
|
28
|
-
import { AccountStatus } from '../account-manager/helpers/account'
|
29
29
|
|
30
30
|
export * from './events'
|
31
31
|
|
package/src/util/compression.ts
CHANGED
package/src/util/params.ts
CHANGED
package/src/well-known.ts
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
import
|
2
|
-
import AppContext from './context'
|
1
|
+
import { Router } from 'express'
|
2
|
+
import { AppContext } from './context'
|
3
3
|
|
4
|
-
export const createRouter = (ctx: AppContext):
|
5
|
-
const router =
|
4
|
+
export const createRouter = (ctx: AppContext): Router => {
|
5
|
+
const router = Router()
|
6
6
|
|
7
7
|
router.get('/.well-known/atproto-did', async function (req, res) {
|
8
8
|
const handle = req.hostname
|