@atproto/pds 0.4.77 → 0.4.78
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 +7 -0
- package/dist/lexicon/index.d.ts +2 -2
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/lexicons.d.ts +4 -0
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +2 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/package.json +5 -5
- package/src/lexicon/index.ts +2 -2
- package/src/lexicon/lexicons.ts +3 -0
- package/tests/account-deactivation.test.ts +1 -1
- package/tests/account-migration.test.ts +3 -3
- package/tests/blob-deletes.test.ts +8 -8
- package/tests/crud.test.ts +4 -12
- package/tests/file-uploads.test.ts +5 -11
- package/tests/moderation.test.ts +1 -1
- package/tests/proxied/__snapshots__/admin.test.ts.snap +32 -7
- package/tests/proxied/__snapshots__/feedgen.test.ts.snap +4 -4
- package/tests/proxied/__snapshots__/views.test.ts.snap +32 -32
- package/tests/proxied/read-after-write.test.ts +2 -2
- package/tests/seeds/basic.ts +3 -3
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@atproto/pds",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.78",
|
4
4
|
"license": "MIT",
|
5
5
|
"description": "Reference implementation of atproto Personal Data Server (PDS)",
|
6
6
|
"keywords": [
|
@@ -46,7 +46,7 @@
|
|
46
46
|
"undici": "^6.19.8",
|
47
47
|
"zod": "^3.23.8",
|
48
48
|
"@atproto-labs/fetch-node": "0.1.4",
|
49
|
-
"@atproto/api": "^0.13.
|
49
|
+
"@atproto/api": "^0.13.22",
|
50
50
|
"@atproto/aws": "^0.2.10",
|
51
51
|
"@atproto/common": "^0.4.5",
|
52
52
|
"@atproto/crypto": "^0.4.2",
|
@@ -75,9 +75,9 @@
|
|
75
75
|
"ts-node": "^10.8.2",
|
76
76
|
"typescript": "^5.6.3",
|
77
77
|
"ws": "^8.12.0",
|
78
|
-
"@atproto/api": "^0.13.
|
79
|
-
"@atproto/bsky": "^0.0.
|
80
|
-
"@atproto/lex-cli": "^0.5.
|
78
|
+
"@atproto/api": "^0.13.22",
|
79
|
+
"@atproto/bsky": "^0.0.100",
|
80
|
+
"@atproto/lex-cli": "^0.5.4",
|
81
81
|
"@atproto/oauth-client-browser-example": "0.0.0"
|
82
82
|
},
|
83
83
|
"scripts": {
|
package/src/lexicon/index.ts
CHANGED
@@ -2638,13 +2638,13 @@ export class ToolsOzoneTeamNS {
|
|
2638
2638
|
|
2639
2639
|
type SharedRateLimitOpts<T> = {
|
2640
2640
|
name: string
|
2641
|
-
calcKey?: (ctx: T) => string
|
2641
|
+
calcKey?: (ctx: T) => string | null
|
2642
2642
|
calcPoints?: (ctx: T) => number
|
2643
2643
|
}
|
2644
2644
|
type RouteRateLimitOpts<T> = {
|
2645
2645
|
durationMs: number
|
2646
2646
|
points: number
|
2647
|
-
calcKey?: (ctx: T) => string
|
2647
|
+
calcKey?: (ctx: T) => string | null
|
2648
2648
|
calcPoints?: (ctx: T) => number
|
2649
2649
|
}
|
2650
2650
|
type HandlerOpts = { blobLimit?: number }
|
package/src/lexicon/lexicons.ts
CHANGED
@@ -12498,6 +12498,9 @@ export const schemaDict = {
|
|
12498
12498
|
type: 'array',
|
12499
12499
|
items: {
|
12500
12500
|
type: 'string',
|
12501
|
+
maxLength: 25,
|
12502
|
+
description:
|
12503
|
+
'Items in this array are applied with OR filters. To apply AND filter, put all tags in the same string and separate using && characters',
|
12501
12504
|
},
|
12502
12505
|
},
|
12503
12506
|
excludeTags: {
|
@@ -44,17 +44,17 @@ describe('account migration', () => {
|
|
44
44
|
}
|
45
45
|
const img1 = await sc.uploadFile(
|
46
46
|
alice,
|
47
|
-
'../dev-env/
|
47
|
+
'../dev-env/assets/at.png',
|
48
48
|
'image/png',
|
49
49
|
)
|
50
50
|
const img2 = await sc.uploadFile(
|
51
51
|
alice,
|
52
|
-
'../dev-env/
|
52
|
+
'../dev-env/assets/key-alt.jpg',
|
53
53
|
'image/jpeg',
|
54
54
|
)
|
55
55
|
const img3 = await sc.uploadFile(
|
56
56
|
alice,
|
57
|
-
'../dev-env/
|
57
|
+
'../dev-env/assets/key-landscape-small.jpg',
|
58
58
|
'image/jpeg',
|
59
59
|
)
|
60
60
|
|
@@ -48,7 +48,7 @@ describe('blob deletes', () => {
|
|
48
48
|
it('deletes blob when record is deleted', async () => {
|
49
49
|
const img = await sc.uploadFile(
|
50
50
|
alice,
|
51
|
-
'../dev-env/
|
51
|
+
'../dev-env/assets/key-portrait-small.jpg',
|
52
52
|
'image/jpeg',
|
53
53
|
)
|
54
54
|
const post = await sc.post(alice, 'test', undefined, [img])
|
@@ -65,12 +65,12 @@ describe('blob deletes', () => {
|
|
65
65
|
it('deletes blob when blob-ref in record is updated', async () => {
|
66
66
|
const img = await sc.uploadFile(
|
67
67
|
alice,
|
68
|
-
'../dev-env/
|
68
|
+
'../dev-env/assets/key-portrait-small.jpg',
|
69
69
|
'image/jpeg',
|
70
70
|
)
|
71
71
|
const img2 = await sc.uploadFile(
|
72
72
|
alice,
|
73
|
-
'../dev-env/
|
73
|
+
'../dev-env/assets/key-landscape-small.jpg',
|
74
74
|
'image/jpeg',
|
75
75
|
)
|
76
76
|
await updateProfile(sc, alice, img.image, img.image)
|
@@ -94,12 +94,12 @@ describe('blob deletes', () => {
|
|
94
94
|
it('does not delete blob when blob-ref in record is not updated', async () => {
|
95
95
|
const img = await sc.uploadFile(
|
96
96
|
alice,
|
97
|
-
'../dev-env/
|
97
|
+
'../dev-env/assets/key-portrait-small.jpg',
|
98
98
|
'image/jpeg',
|
99
99
|
)
|
100
100
|
const img2 = await sc.uploadFile(
|
101
101
|
alice,
|
102
|
-
'../dev-env/
|
102
|
+
'../dev-env/assets/key-landscape-small.jpg',
|
103
103
|
'image/jpeg',
|
104
104
|
)
|
105
105
|
await updateProfile(sc, alice, img.image, img.image)
|
@@ -120,7 +120,7 @@ describe('blob deletes', () => {
|
|
120
120
|
it('does not delete blob when blob is reused by another record in same commit', async () => {
|
121
121
|
const img = await sc.uploadFile(
|
122
122
|
alice,
|
123
|
-
'../dev-env/
|
123
|
+
'../dev-env/assets/key-portrait-small.jpg',
|
124
124
|
'image/jpeg',
|
125
125
|
)
|
126
126
|
const post = await sc.post(alice, 'post', undefined, [img])
|
@@ -167,12 +167,12 @@ describe('blob deletes', () => {
|
|
167
167
|
it('does delete blob from user blob store if another user is using it', async () => {
|
168
168
|
const imgAlice = await sc.uploadFile(
|
169
169
|
alice,
|
170
|
-
'../dev-env/
|
170
|
+
'../dev-env/assets/key-landscape-small.jpg',
|
171
171
|
'image/jpeg',
|
172
172
|
)
|
173
173
|
const imgBob = await sc.uploadFile(
|
174
174
|
bob,
|
175
|
-
'../dev-env/
|
175
|
+
'../dev-env/assets/key-landscape-small.jpg',
|
176
176
|
'image/jpeg',
|
177
177
|
)
|
178
178
|
const postAlice = await sc.post(alice, 'post', undefined, [imgAlice])
|
package/tests/crud.test.ts
CHANGED
@@ -156,9 +156,7 @@ describe('crud operations', () => {
|
|
156
156
|
})
|
157
157
|
|
158
158
|
it('attaches images to a post', async () => {
|
159
|
-
const file = await fs.readFile(
|
160
|
-
'../dev-env/src/seed/img/key-landscape-small.jpg',
|
161
|
-
)
|
159
|
+
const file = await fs.readFile('../dev-env/assets/key-landscape-small.jpg')
|
162
160
|
const uploadedRes = await aliceAgent.api.com.atproto.repo.uploadBlob(file, {
|
163
161
|
encoding: 'image/jpeg',
|
164
162
|
})
|
@@ -516,9 +514,7 @@ describe('crud operations', () => {
|
|
516
514
|
// @TODO remove after migrating legacy blobs
|
517
515
|
it('updates a legacy blob ref when updating profile', async () => {
|
518
516
|
const { repo } = bobAgent.api.com.atproto
|
519
|
-
const file = await fs.readFile(
|
520
|
-
'../dev-env/src/seed/img/key-portrait-small.jpg',
|
521
|
-
)
|
517
|
+
const file = await fs.readFile('../dev-env/assets/key-portrait-small.jpg')
|
522
518
|
const uploadedRes = await repo.uploadBlob(file, {
|
523
519
|
encoding: 'image/jpeg',
|
524
520
|
})
|
@@ -812,9 +808,7 @@ describe('crud operations', () => {
|
|
812
808
|
})
|
813
809
|
|
814
810
|
it('correctly associates images with unknown record types', async () => {
|
815
|
-
const file = await fs.readFile(
|
816
|
-
'../dev-env/src/seed/img/key-portrait-small.jpg',
|
817
|
-
)
|
811
|
+
const file = await fs.readFile('../dev-env/assets/key-portrait-small.jpg')
|
818
812
|
const uploadedRes = await aliceAgent.api.com.atproto.repo.uploadBlob(
|
819
813
|
file,
|
820
814
|
{
|
@@ -867,9 +861,7 @@ describe('crud operations', () => {
|
|
867
861
|
})
|
868
862
|
|
869
863
|
it('enforces blob ref format even when unvalidated', async () => {
|
870
|
-
const file = await fs.readFile(
|
871
|
-
'../dev-env/src/seed/img/key-portrait-small.jpg',
|
872
|
-
)
|
864
|
+
const file = await fs.readFile('../dev-env/assets/key-portrait-small.jpg')
|
873
865
|
const uploadedRes = await aliceAgent.api.com.atproto.repo.uploadBlob(
|
874
866
|
file,
|
875
867
|
{
|
@@ -72,9 +72,7 @@ describe('file uploads', () => {
|
|
72
72
|
})
|
73
73
|
|
74
74
|
it('uploads files', async () => {
|
75
|
-
smallFile = await fs.readFile(
|
76
|
-
'../dev-env/src/seed/img/key-portrait-small.jpg',
|
77
|
-
)
|
75
|
+
smallFile = await fs.readFile('../dev-env/assets/key-portrait-small.jpg')
|
78
76
|
const res = await agent.api.com.atproto.repo.uploadBlob(smallFile, {
|
79
77
|
headers: sc.getHeaders(alice),
|
80
78
|
encoding: 'image/jpeg',
|
@@ -130,7 +128,7 @@ describe('file uploads', () => {
|
|
130
128
|
let largeFile: Uint8Array
|
131
129
|
|
132
130
|
it('does not allow referencing a file that is outside blob constraints', async () => {
|
133
|
-
largeFile = await fs.readFile('../dev-env/
|
131
|
+
largeFile = await fs.readFile('../dev-env/assets/hd-key.jpg')
|
134
132
|
const res = await agent.api.com.atproto.repo.uploadBlob(largeFile, {
|
135
133
|
headers: sc.getHeaders(alice),
|
136
134
|
encoding: 'image/jpeg',
|
@@ -159,9 +157,7 @@ describe('file uploads', () => {
|
|
159
157
|
})
|
160
158
|
|
161
159
|
it('permits duplicate uploads of the same file', async () => {
|
162
|
-
const file = await fs.readFile(
|
163
|
-
'../dev-env/src/seed/img/key-landscape-small.jpg',
|
164
|
-
)
|
160
|
+
const file = await fs.readFile('../dev-env/assets/key-landscape-small.jpg')
|
165
161
|
const { data: uploadA } = await agent.api.com.atproto.repo.uploadBlob(
|
166
162
|
file,
|
167
163
|
{
|
@@ -225,9 +221,7 @@ describe('file uploads', () => {
|
|
225
221
|
})
|
226
222
|
|
227
223
|
it('corrects a bad mimetype', async () => {
|
228
|
-
const file = await fs.readFile(
|
229
|
-
'../dev-env/src/seed/img/key-landscape-large.jpg',
|
230
|
-
)
|
224
|
+
const file = await fs.readFile('../dev-env/assets/key-landscape-large.jpg')
|
231
225
|
const res = await agent.api.com.atproto.repo.uploadBlob(file, {
|
232
226
|
headers: sc.getHeaders(alice),
|
233
227
|
encoding: 'video/mp4',
|
@@ -245,7 +239,7 @@ describe('file uploads', () => {
|
|
245
239
|
})
|
246
240
|
|
247
241
|
it('handles pngs', async () => {
|
248
|
-
const file = await fs.readFile('../dev-env/
|
242
|
+
const file = await fs.readFile('../dev-env/assets/at.png')
|
249
243
|
const res = await agent.api.com.atproto.repo.uploadBlob(file, {
|
250
244
|
headers: sc.getHeaders(alice),
|
251
245
|
encoding: 'image/png',
|
package/tests/moderation.test.ts
CHANGED
@@ -177,7 +177,7 @@ describe('moderation', () => {
|
|
177
177
|
it('prevents blob from being reuploaded', async () => {
|
178
178
|
const attempt = sc.uploadFile(
|
179
179
|
sc.dids.carol,
|
180
|
-
'../dev-env/
|
180
|
+
'../dev-env/assets/key-alt.jpg',
|
181
181
|
'image/jpeg',
|
182
182
|
)
|
183
183
|
await expect(attempt).rejects.toThrow(
|
@@ -35,7 +35,7 @@ Array [
|
|
35
35
|
"event": Object {
|
36
36
|
"$type": "tools.ozone.moderation.defs#modEventAcknowledge",
|
37
37
|
},
|
38
|
-
"id":
|
38
|
+
"id": 7,
|
39
39
|
"subject": Object {
|
40
40
|
"$type": "com.atproto.admin.defs#repoRef",
|
41
41
|
"did": "user(0)",
|
@@ -46,6 +46,25 @@ Array [
|
|
46
46
|
Object {
|
47
47
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
48
48
|
"createdBy": "user(2)",
|
49
|
+
"creatorHandle": "mod-authority.test",
|
50
|
+
"event": Object {
|
51
|
+
"$type": "tools.ozone.moderation.defs#modEventTag",
|
52
|
+
"add": Array [
|
53
|
+
"report:other",
|
54
|
+
],
|
55
|
+
"remove": Array [],
|
56
|
+
},
|
57
|
+
"id": 4,
|
58
|
+
"subject": Object {
|
59
|
+
"$type": "com.atproto.admin.defs#repoRef",
|
60
|
+
"did": "user(0)",
|
61
|
+
},
|
62
|
+
"subjectBlobCids": Array [],
|
63
|
+
"subjectHandle": "bob.test",
|
64
|
+
},
|
65
|
+
Object {
|
66
|
+
"createdAt": "1970-01-01T00:00:00.000Z",
|
67
|
+
"createdBy": "user(3)",
|
49
68
|
"creatorHandle": "carol.test",
|
50
69
|
"event": Object {
|
51
70
|
"$type": "tools.ozone.moderation.defs#modEventReport",
|
@@ -63,11 +82,12 @@ Array [
|
|
63
82
|
},
|
64
83
|
Object {
|
65
84
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
66
|
-
"createdBy": "user(
|
85
|
+
"createdBy": "user(2)",
|
67
86
|
"creatorHandle": "mod-authority.test",
|
68
87
|
"event": Object {
|
69
88
|
"$type": "tools.ozone.moderation.defs#modEventTag",
|
70
89
|
"add": Array [
|
90
|
+
"report:spam",
|
71
91
|
"lang:en",
|
72
92
|
"lang:i",
|
73
93
|
],
|
@@ -108,6 +128,7 @@ Object {
|
|
108
128
|
"event": Object {
|
109
129
|
"$type": "tools.ozone.moderation.defs#modEventTag",
|
110
130
|
"add": Array [
|
131
|
+
"report:spam",
|
111
132
|
"lang:en",
|
112
133
|
"lang:i",
|
113
134
|
],
|
@@ -138,8 +159,10 @@ Object {
|
|
138
159
|
"subjectBlobCids": Array [],
|
139
160
|
"subjectRepoHandle": "bob.test",
|
140
161
|
"tags": Array [
|
162
|
+
"report:spam",
|
141
163
|
"lang:en",
|
142
164
|
"lang:i",
|
165
|
+
"report:other",
|
143
166
|
],
|
144
167
|
"takendown": false,
|
145
168
|
"updatedAt": "1970-01-01T00:00:00.000Z",
|
@@ -180,7 +203,7 @@ Array [
|
|
180
203
|
],
|
181
204
|
"remove": Array [],
|
182
205
|
},
|
183
|
-
"id":
|
206
|
+
"id": 6,
|
184
207
|
"subject": Object {
|
185
208
|
"$type": "com.atproto.repo.strongRef",
|
186
209
|
"cid": "cids(0)",
|
@@ -196,7 +219,7 @@ Array [
|
|
196
219
|
"event": Object {
|
197
220
|
"$type": "tools.ozone.moderation.defs#modEventAcknowledge",
|
198
221
|
},
|
199
|
-
"id":
|
222
|
+
"id": 5,
|
200
223
|
"subject": Object {
|
201
224
|
"$type": "com.atproto.repo.strongRef",
|
202
225
|
"cid": "cids(0)",
|
@@ -222,7 +245,7 @@ Object {
|
|
222
245
|
"$type": "tools.ozone.moderation.defs#recordHosting",
|
223
246
|
"status": "unknown",
|
224
247
|
},
|
225
|
-
"id":
|
248
|
+
"id": 5,
|
226
249
|
"lastReviewedAt": "1970-01-01T00:00:00.000Z",
|
227
250
|
"lastReviewedBy": "user(1)",
|
228
251
|
"reviewState": "tools.ozone.moderation.defs#reviewClosed",
|
@@ -295,8 +318,10 @@ Object {
|
|
295
318
|
"subjectBlobCids": Array [],
|
296
319
|
"subjectRepoHandle": "bob.test",
|
297
320
|
"tags": Array [
|
321
|
+
"report:spam",
|
298
322
|
"lang:en",
|
299
323
|
"lang:i",
|
324
|
+
"report:other",
|
300
325
|
],
|
301
326
|
"takendown": false,
|
302
327
|
"updatedAt": "1970-01-01T00:00:00.000Z",
|
@@ -401,7 +426,7 @@ Object {
|
|
401
426
|
"event": Object {
|
402
427
|
"$type": "tools.ozone.moderation.defs#modEventAcknowledge",
|
403
428
|
},
|
404
|
-
"id":
|
429
|
+
"id": 5,
|
405
430
|
"subject": Object {
|
406
431
|
"$type": "com.atproto.repo.strongRef",
|
407
432
|
"cid": "cids(0)",
|
@@ -418,7 +443,7 @@ Object {
|
|
418
443
|
"event": Object {
|
419
444
|
"$type": "tools.ozone.moderation.defs#modEventAcknowledge",
|
420
445
|
},
|
421
|
-
"id":
|
446
|
+
"id": 7,
|
422
447
|
"subject": Object {
|
423
448
|
"$type": "com.atproto.admin.defs#repoRef",
|
424
449
|
"did": "user(0)",
|
@@ -87,12 +87,12 @@ Object {
|
|
87
87
|
"$type": "app.bsky.embed.images#view",
|
88
88
|
"images": Array [
|
89
89
|
Object {
|
90
|
-
"alt": "../dev-env/
|
90
|
+
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
91
91
|
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(4)@jpeg",
|
92
92
|
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(4)@jpeg",
|
93
93
|
},
|
94
94
|
Object {
|
95
|
-
"alt": "../dev-env/
|
95
|
+
"alt": "../dev-env/assets/key-alt.jpg",
|
96
96
|
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(5)@jpeg",
|
97
97
|
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(5)@jpeg",
|
98
98
|
},
|
@@ -149,7 +149,7 @@ Object {
|
|
149
149
|
"$type": "app.bsky.embed.images",
|
150
150
|
"images": Array [
|
151
151
|
Object {
|
152
|
-
"alt": "../dev-env/
|
152
|
+
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
153
153
|
"image": Object {
|
154
154
|
"$type": "blob",
|
155
155
|
"mimeType": "image/jpeg",
|
@@ -160,7 +160,7 @@ Object {
|
|
160
160
|
},
|
161
161
|
},
|
162
162
|
Object {
|
163
|
-
"alt": "../dev-env/
|
163
|
+
"alt": "../dev-env/assets/key-alt.jpg",
|
164
164
|
"image": Object {
|
165
165
|
"$type": "blob",
|
166
166
|
"mimeType": "image/jpeg",
|