@fedify/fedify 1.5.0-dev.731 → 1.5.0-dev.738
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/CHANGES.md +73 -0
- package/esm/deno.js +1 -1
- package/esm/deps/jsr.io/@std/encoding/1.0.8/_common16.js +45 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.8/_common64.js +98 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.8/_common_detach.js +13 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.8/base64.js +82 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.8/base64url.js +72 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.8/hex.js +87 -0
- package/esm/federation/collection.js +3 -3
- package/esm/federation/handler.js +5 -2
- package/esm/federation/middleware.js +63 -25
- package/esm/federation/mq.js +31 -0
- package/esm/runtime/key.js +3 -3
- package/esm/sig/http.js +2 -2
- package/esm/sig/ld.js +2 -2
- package/esm/sig/proof.js +1 -1
- package/esm/vocab/lookup.js +1 -1
- package/esm/vocab/vocab.js +176 -176
- package/package.json +1 -1
- package/types/deps/jsr.io/@std/async/{1.0.11 → 1.0.12}/delay.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/encoding/1.0.8/_common16.d.ts +21 -0
- package/types/deps/jsr.io/@std/encoding/1.0.8/_common16.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/encoding/1.0.8/_common64.d.ts +21 -0
- package/types/deps/jsr.io/@std/encoding/1.0.8/_common64.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/encoding/1.0.8/_common_detach.d.ts +4 -0
- package/types/deps/jsr.io/@std/encoding/1.0.8/_common_detach.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/encoding/{1.0.7 → 1.0.8}/_types.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/encoding/1.0.8/base64.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/encoding/1.0.8/base64url.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/encoding/1.0.8/hex.d.ts.map +1 -0
- package/types/federation/collection.d.ts +2 -2
- package/types/federation/handler.d.ts.map +1 -1
- package/types/federation/middleware.d.ts.map +1 -1
- package/types/federation/mq.d.ts +11 -0
- package/types/federation/mq.d.ts.map +1 -1
- package/esm/deps/jsr.io/@std/encoding/1.0.7/_validate_binary_like.js +0 -26
- package/esm/deps/jsr.io/@std/encoding/1.0.7/base64.js +0 -163
- package/esm/deps/jsr.io/@std/encoding/1.0.7/base64url.js +0 -81
- package/esm/deps/jsr.io/@std/encoding/1.0.7/hex.js +0 -109
- package/types/deps/jsr.io/@std/encoding/1.0.7/_validate_binary_like.d.ts +0 -2
- package/types/deps/jsr.io/@std/encoding/1.0.7/_validate_binary_like.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/encoding/1.0.7/base64.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/encoding/1.0.7/base64url.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/encoding/1.0.7/hex.d.ts.map +0 -1
- /package/esm/deps/jsr.io/@std/async/{1.0.11 → 1.0.12}/delay.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.7 → 1.0.8}/_types.js +0 -0
- /package/types/deps/jsr.io/@std/async/{1.0.11 → 1.0.12}/delay.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.7 → 1.0.8}/_types.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.7 → 1.0.8}/base64.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.7 → 1.0.8}/base64url.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.7 → 1.0.8}/hex.d.ts +0 -0
package/CHANGES.md
CHANGED
@@ -64,6 +64,9 @@ To be released.
|
|
64
64
|
- Deprecated the fourth parameter of the `ObjectAuthorizePredicate` type
|
65
65
|
in favor of the `RequestContext.getSignedKeyOwner()` method.
|
66
66
|
|
67
|
+
- Added an optional method `enqueueMany()` to `MessageQueue` interface
|
68
|
+
for sending multiple activities at once.
|
69
|
+
|
67
70
|
- Fixed a bug of the `fedify inbox` command where it had failed to render
|
68
71
|
the web interface when the `fedify` command was installed using
|
69
72
|
`deno install` command from JSR.
|
@@ -91,6 +94,20 @@ To be released.
|
|
91
94
|
[multibase]: https://github.com/multiformats/js-multibase
|
92
95
|
|
93
96
|
|
97
|
+
Version 1.4.8
|
98
|
+
-------------
|
99
|
+
|
100
|
+
Released on March 26, 2025.
|
101
|
+
|
102
|
+
- Fixed a bug where the `totalItems` property of `OrderedCollection`
|
103
|
+
objects returned by followers collection dispatcher had been an incorrect
|
104
|
+
value if a `base-url` parameter was provided.
|
105
|
+
|
106
|
+
- Fixed a bug where the `id` property of `OrderedCollection` and
|
107
|
+
`OrderedCollectionPage` objects returned by followers collection dispatcher
|
108
|
+
had been an incorrect value if a `base-url` parameter was provided.
|
109
|
+
|
110
|
+
|
94
111
|
Version 1.4.7
|
95
112
|
-------------
|
96
113
|
|
@@ -267,6 +284,20 @@ Released on February 5, 2025.
|
|
267
284
|
[#195]: https://github.com/fedify-dev/fedify/issues/195
|
268
285
|
|
269
286
|
|
287
|
+
Version 1.3.15
|
288
|
+
--------------
|
289
|
+
|
290
|
+
Released on March 26, 2025.
|
291
|
+
|
292
|
+
- Fixed a bug where the `totalItems` property of `OrderedCollection`
|
293
|
+
objects returned by followers collection dispatcher had been an incorrect
|
294
|
+
value if a `base-url` parameter was provided.
|
295
|
+
|
296
|
+
- Fixed a bug where the `id` property of `OrderedCollection` and
|
297
|
+
`OrderedCollectionPage` objects returned by followers collection dispatcher
|
298
|
+
had been an incorrect value if a `base-url` parameter was provided.
|
299
|
+
|
300
|
+
|
270
301
|
Version 1.3.14
|
271
302
|
--------------
|
272
303
|
|
@@ -559,6 +590,20 @@ Released on November 30, 2024.
|
|
559
590
|
[#193]: https://github.com/fedify-dev/fedify/issues/193
|
560
591
|
|
561
592
|
|
593
|
+
Version 1.2.19
|
594
|
+
--------------
|
595
|
+
|
596
|
+
Released on March 26, 2025.
|
597
|
+
|
598
|
+
- Fixed a bug where the `totalItems` property of `OrderedCollection`
|
599
|
+
objects returned by followers collection dispatcher had been an incorrect
|
600
|
+
value if a `base-url` parameter was provided.
|
601
|
+
|
602
|
+
- Fixed a bug where the `id` property of `OrderedCollection` and
|
603
|
+
`OrderedCollectionPage` objects returned by followers collection dispatcher
|
604
|
+
had been an incorrect value if a `base-url` parameter was provided.
|
605
|
+
|
606
|
+
|
562
607
|
Version 1.2.18
|
563
608
|
--------------
|
564
609
|
|
@@ -900,6 +945,20 @@ Released on October 31, 2024.
|
|
900
945
|
[#118]: https://github.com/fedify-dev/fedify/issues/118
|
901
946
|
|
902
947
|
|
948
|
+
Version 1.1.19
|
949
|
+
--------------
|
950
|
+
|
951
|
+
Released on March 26, 2025.
|
952
|
+
|
953
|
+
- Fixed a bug where the `totalItems` property of `OrderedCollection`
|
954
|
+
objects returned by followers collection dispatcher had been an incorrect
|
955
|
+
value if a `base-url` parameter was provided.
|
956
|
+
|
957
|
+
- Fixed a bug where the `id` property of `OrderedCollection` and
|
958
|
+
`OrderedCollectionPage` objects returned by followers collection dispatcher
|
959
|
+
had been an incorrect value if a `base-url` parameter was provided.
|
960
|
+
|
961
|
+
|
903
962
|
Version 1.1.18
|
904
963
|
--------------
|
905
964
|
|
@@ -1282,6 +1341,20 @@ Released on October 20, 2024.
|
|
1282
1341
|
[#150]: https://github.com/fedify-dev/fedify/issues/150
|
1283
1342
|
|
1284
1343
|
|
1344
|
+
Version 1.0.22
|
1345
|
+
--------------
|
1346
|
+
|
1347
|
+
Released on March 26, 2025.
|
1348
|
+
|
1349
|
+
- Fixed a bug where the `totalItems` property of `OrderedCollection`
|
1350
|
+
objects returned by followers collection dispatcher had been an incorrect
|
1351
|
+
value if a `base-url` parameter was provided.
|
1352
|
+
|
1353
|
+
- Fixed a bug where the `id` property of `OrderedCollection` and
|
1354
|
+
`OrderedCollectionPage` objects returned by followers collection dispatcher
|
1355
|
+
had been an incorrect value if a `base-url` parameter was provided.
|
1356
|
+
|
1357
|
+
|
1285
1358
|
Version 1.0.21
|
1286
1359
|
--------------
|
1287
1360
|
|
package/esm/deno.js
CHANGED
@@ -0,0 +1,45 @@
|
|
1
|
+
// Copyright 2018-2025 the Deno authors. MIT license.
|
2
|
+
/**
|
3
|
+
* Calculate the output size needed to encode a given input size for
|
4
|
+
* {@linkcode encodeRawHex}.
|
5
|
+
*
|
6
|
+
* @param originalSize The size of the input buffer.
|
7
|
+
* @returns The size of the output buffer.
|
8
|
+
*
|
9
|
+
* @example Basic Usage
|
10
|
+
* ```ts
|
11
|
+
* import { assertEquals } from "@std/assert";
|
12
|
+
* import { calcMax } from "@std/encoding/unstable-hex";
|
13
|
+
*
|
14
|
+
* assertEquals(calcMax(1), 2);
|
15
|
+
* ```
|
16
|
+
*/
|
17
|
+
export function calcMax(originalSize) {
|
18
|
+
return originalSize * 2;
|
19
|
+
}
|
20
|
+
export function encode(buffer, i, o, alphabet) {
|
21
|
+
for (; i < buffer.length; ++i) {
|
22
|
+
const x = buffer[i];
|
23
|
+
buffer[o++] = alphabet[x >> 4];
|
24
|
+
buffer[o++] = alphabet[x & 0xF];
|
25
|
+
}
|
26
|
+
return o;
|
27
|
+
}
|
28
|
+
export function decode(buffer, i, o, alphabet) {
|
29
|
+
if ((buffer.length - o) % 2 === 1) {
|
30
|
+
throw new RangeError(`Cannot decode input as hex: Length (${buffer.length - o}) must be divisible by 2`);
|
31
|
+
}
|
32
|
+
i += 1;
|
33
|
+
for (; i < buffer.length; i += 2) {
|
34
|
+
buffer[o++] = (getByte(buffer[i - 1], alphabet) << 4) |
|
35
|
+
getByte(buffer[i], alphabet);
|
36
|
+
}
|
37
|
+
return o;
|
38
|
+
}
|
39
|
+
function getByte(char, alphabet) {
|
40
|
+
const byte = alphabet[char] ?? 16;
|
41
|
+
if (byte === 16) { // alphabet.Hex.length
|
42
|
+
throw new TypeError(`Cannot decode input as hex: Invalid character (${String.fromCharCode(char)})`);
|
43
|
+
}
|
44
|
+
return byte;
|
45
|
+
}
|
@@ -0,0 +1,98 @@
|
|
1
|
+
// Copyright 2018-2025 the Deno authors. MIT license.
|
2
|
+
/**
|
3
|
+
* Calculate the output size needed to encode a given input size for
|
4
|
+
* {@linkcode encodeRawBase64}.
|
5
|
+
*
|
6
|
+
* @param originalSize The size of the input buffer.
|
7
|
+
* @returns The size of the output buffer.
|
8
|
+
*
|
9
|
+
* @example Basic Usage
|
10
|
+
* ```ts
|
11
|
+
* import { assertEquals } from "@std/assert";
|
12
|
+
* import { calcMax } from "@std/encoding/unstable-base64";
|
13
|
+
*
|
14
|
+
* assertEquals(calcMax(1), 4);
|
15
|
+
* ```
|
16
|
+
*/
|
17
|
+
export function calcMax(originalSize) {
|
18
|
+
return ((originalSize + 2) / 3 | 0) * 4;
|
19
|
+
}
|
20
|
+
export function encode(buffer, i, o, alphabet, padding) {
|
21
|
+
i += 2;
|
22
|
+
for (; i < buffer.length; i += 3) {
|
23
|
+
const x = (buffer[i - 2] << 16) | (buffer[i - 1] << 8) | buffer[i];
|
24
|
+
buffer[o++] = alphabet[x >> 18];
|
25
|
+
buffer[o++] = alphabet[x >> 12 & 0x3F];
|
26
|
+
buffer[o++] = alphabet[x >> 6 & 0x3F];
|
27
|
+
buffer[o++] = alphabet[x & 0x3F];
|
28
|
+
}
|
29
|
+
switch (i) {
|
30
|
+
case buffer.length + 1: {
|
31
|
+
const x = buffer[i - 2] << 16;
|
32
|
+
buffer[o++] = alphabet[x >> 18];
|
33
|
+
buffer[o++] = alphabet[x >> 12 & 0x3F];
|
34
|
+
buffer[o++] = padding;
|
35
|
+
buffer[o++] = padding;
|
36
|
+
break;
|
37
|
+
}
|
38
|
+
case buffer.length: {
|
39
|
+
const x = (buffer[i - 2] << 16) | (buffer[i - 1] << 8);
|
40
|
+
buffer[o++] = alphabet[x >> 18];
|
41
|
+
buffer[o++] = alphabet[x >> 12 & 0x3F];
|
42
|
+
buffer[o++] = alphabet[x >> 6 & 0x3F];
|
43
|
+
buffer[o++] = padding;
|
44
|
+
break;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
return o;
|
48
|
+
}
|
49
|
+
export function decode(buffer, i, o, alphabet, padding) {
|
50
|
+
for (let x = buffer.length - 2; x < buffer.length; ++x) {
|
51
|
+
if (buffer[x] === padding) {
|
52
|
+
for (let y = x + 1; y < buffer.length; ++y) {
|
53
|
+
if (buffer[y] !== padding) {
|
54
|
+
throw new TypeError(`Cannot decode input as base64: Invalid character (${String.fromCharCode(buffer[y])})`);
|
55
|
+
}
|
56
|
+
}
|
57
|
+
buffer = buffer.subarray(0, x);
|
58
|
+
break;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
if ((buffer.length - o) % 4 === 1) {
|
62
|
+
throw new RangeError(`Cannot decode input as base64: Length (${buffer.length - o}), excluding padding, must not have a remainder of 1 when divided by 4`);
|
63
|
+
}
|
64
|
+
i += 3;
|
65
|
+
for (; i < buffer.length; i += 4) {
|
66
|
+
const x = (getByte(buffer[i - 3], alphabet) << 18) |
|
67
|
+
(getByte(buffer[i - 2], alphabet) << 12) |
|
68
|
+
(getByte(buffer[i - 1], alphabet) << 6) |
|
69
|
+
getByte(buffer[i], alphabet);
|
70
|
+
buffer[o++] = x >> 16;
|
71
|
+
buffer[o++] = x >> 8 & 0xFF;
|
72
|
+
buffer[o++] = x & 0xFF;
|
73
|
+
}
|
74
|
+
switch (i) {
|
75
|
+
case buffer.length + 1: {
|
76
|
+
const x = (getByte(buffer[i - 3], alphabet) << 18) |
|
77
|
+
(getByte(buffer[i - 2], alphabet) << 12);
|
78
|
+
buffer[o++] = x >> 16;
|
79
|
+
break;
|
80
|
+
}
|
81
|
+
case buffer.length: {
|
82
|
+
const x = (getByte(buffer[i - 3], alphabet) << 18) |
|
83
|
+
(getByte(buffer[i - 2], alphabet) << 12) |
|
84
|
+
(getByte(buffer[i - 1], alphabet) << 6);
|
85
|
+
buffer[o++] = x >> 16;
|
86
|
+
buffer[o++] = x >> 8 & 0xFF;
|
87
|
+
break;
|
88
|
+
}
|
89
|
+
}
|
90
|
+
return o;
|
91
|
+
}
|
92
|
+
function getByte(char, alphabet) {
|
93
|
+
const byte = alphabet[char] ?? 64;
|
94
|
+
if (byte === 64) { // alphabet.Base64.length
|
95
|
+
throw new TypeError(`Cannot decode input as base64: Invalid character (${String.fromCharCode(char)})`);
|
96
|
+
}
|
97
|
+
return byte;
|
98
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
// Copyright 2018-2025 the Deno authors. MIT license.
|
2
|
+
export function detach(buffer, maxSize) {
|
3
|
+
const originalSize = buffer.length;
|
4
|
+
if (buffer.byteOffset) {
|
5
|
+
const b = new Uint8Array(buffer.buffer);
|
6
|
+
b.set(buffer);
|
7
|
+
buffer = b.subarray(0, originalSize);
|
8
|
+
}
|
9
|
+
// deno-lint-ignore no-explicit-any
|
10
|
+
buffer = new Uint8Array(buffer.buffer.transfer(maxSize));
|
11
|
+
buffer.set(buffer.subarray(0, originalSize), maxSize - originalSize);
|
12
|
+
return [buffer, maxSize - originalSize];
|
13
|
+
}
|
@@ -0,0 +1,82 @@
|
|
1
|
+
// Copyright 2018-2025 the Deno authors. MIT license.
|
2
|
+
// This module is browser compatible.
|
3
|
+
/**
|
4
|
+
* Utilities for
|
5
|
+
* {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-4 | base64}
|
6
|
+
* encoding and decoding.
|
7
|
+
*
|
8
|
+
* ```ts
|
9
|
+
* import {
|
10
|
+
* encodeBase64,
|
11
|
+
* decodeBase64,
|
12
|
+
* } from "@std/encoding/base64";
|
13
|
+
* import { assertEquals } from "@std/assert";
|
14
|
+
*
|
15
|
+
* const foobar = new TextEncoder().encode("foobar");
|
16
|
+
*
|
17
|
+
* assertEquals(encodeBase64(foobar), "Zm9vYmFy");
|
18
|
+
* assertEquals(decodeBase64("Zm9vYmFy"), foobar);
|
19
|
+
* ```
|
20
|
+
*
|
21
|
+
* @module
|
22
|
+
*/
|
23
|
+
import { calcMax, decode, encode } from "./_common64.js";
|
24
|
+
import { detach } from "./_common_detach.js";
|
25
|
+
const padding = "=".charCodeAt(0);
|
26
|
+
const alphabet = new TextEncoder()
|
27
|
+
.encode("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/");
|
28
|
+
const rAlphabet = new Uint8Array(128).fill(64); // alphabet.length
|
29
|
+
alphabet.forEach((byte, i) => rAlphabet[byte] = i);
|
30
|
+
/**
|
31
|
+
* Converts data into a base64-encoded string.
|
32
|
+
*
|
33
|
+
* @see {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-4}
|
34
|
+
*
|
35
|
+
* @param data The data to encode.
|
36
|
+
* @returns The base64-encoded string.
|
37
|
+
*
|
38
|
+
* @example Usage
|
39
|
+
* ```ts
|
40
|
+
* import { encodeBase64 } from "@std/encoding/base64";
|
41
|
+
* import { assertEquals } from "@std/assert";
|
42
|
+
*
|
43
|
+
* assertEquals(encodeBase64("foobar"), "Zm9vYmFy");
|
44
|
+
* ```
|
45
|
+
*/
|
46
|
+
export function encodeBase64(data) {
|
47
|
+
if (typeof data === "string") {
|
48
|
+
data = new TextEncoder().encode(data);
|
49
|
+
}
|
50
|
+
else if (data instanceof ArrayBuffer)
|
51
|
+
data = new Uint8Array(data).slice();
|
52
|
+
else
|
53
|
+
data = data.slice();
|
54
|
+
const [output, i] = detach(data, calcMax(data.length));
|
55
|
+
encode(output, i, 0, alphabet, padding);
|
56
|
+
return new TextDecoder().decode(output);
|
57
|
+
}
|
58
|
+
/**
|
59
|
+
* Decodes a base64-encoded string.
|
60
|
+
*
|
61
|
+
* @see {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-4}
|
62
|
+
*
|
63
|
+
* @param b64 The base64-encoded string to decode.
|
64
|
+
* @returns The decoded data.
|
65
|
+
*
|
66
|
+
* @example Usage
|
67
|
+
* ```ts
|
68
|
+
* import { decodeBase64 } from "@std/encoding/base64";
|
69
|
+
* import { assertEquals } from "@std/assert";
|
70
|
+
*
|
71
|
+
* assertEquals(
|
72
|
+
* decodeBase64("Zm9vYmFy"),
|
73
|
+
* new TextEncoder().encode("foobar")
|
74
|
+
* );
|
75
|
+
* ```
|
76
|
+
*/
|
77
|
+
export function decodeBase64(b64) {
|
78
|
+
const output = new TextEncoder().encode(b64);
|
79
|
+
// deno-lint-ignore no-explicit-any
|
80
|
+
return new Uint8Array(output.buffer
|
81
|
+
.transfer(decode(output, 0, 0, rAlphabet, padding)));
|
82
|
+
}
|
@@ -0,0 +1,72 @@
|
|
1
|
+
// Copyright 2018-2025 the Deno authors. MIT license.
|
2
|
+
// This module is browser compatible.
|
3
|
+
/**
|
4
|
+
* Utilities for
|
5
|
+
* {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-5 | base64url}
|
6
|
+
* encoding and decoding.
|
7
|
+
*
|
8
|
+
* @module
|
9
|
+
*/
|
10
|
+
import { calcMax, decode, encode } from "./_common64.js";
|
11
|
+
import { detach } from "./_common_detach.js";
|
12
|
+
const padding = "=".charCodeAt(0);
|
13
|
+
const alphabet = new TextEncoder()
|
14
|
+
.encode("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_");
|
15
|
+
const rAlphabet = new Uint8Array(128).fill(64); // alphabet.length
|
16
|
+
alphabet.forEach((byte, i) => rAlphabet[byte] = i);
|
17
|
+
/**
|
18
|
+
* Convert data into a base64url-encoded string.
|
19
|
+
*
|
20
|
+
* @see {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-5}
|
21
|
+
*
|
22
|
+
* @param data The data to encode.
|
23
|
+
* @returns The base64url-encoded string.
|
24
|
+
*
|
25
|
+
* @example Usage
|
26
|
+
* ```ts
|
27
|
+
* import { encodeBase64Url } from "@std/encoding/base64url";
|
28
|
+
* import { assertEquals } from "@std/assert";
|
29
|
+
*
|
30
|
+
* assertEquals(encodeBase64Url("foobar"), "Zm9vYmFy");
|
31
|
+
* ```
|
32
|
+
*/
|
33
|
+
export function encodeBase64Url(data) {
|
34
|
+
if (typeof data === "string") {
|
35
|
+
data = new TextEncoder().encode(data);
|
36
|
+
}
|
37
|
+
else if (data instanceof ArrayBuffer)
|
38
|
+
data = new Uint8Array(data).slice();
|
39
|
+
else
|
40
|
+
data = data.slice();
|
41
|
+
const [output, i] = detach(data, calcMax(data.length));
|
42
|
+
let o = encode(output, i, 0, alphabet, padding);
|
43
|
+
o = output.indexOf(padding, o - 2);
|
44
|
+
return new TextDecoder().decode(
|
45
|
+
// deno-lint-ignore no-explicit-any
|
46
|
+
o > 0 ? new Uint8Array(output.buffer.transfer(o)) : output);
|
47
|
+
}
|
48
|
+
/**
|
49
|
+
* Decodes a given base64url-encoded string.
|
50
|
+
*
|
51
|
+
* @see {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-5}
|
52
|
+
*
|
53
|
+
* @param b64url The base64url-encoded string to decode.
|
54
|
+
* @returns The decoded data.
|
55
|
+
*
|
56
|
+
* @example Usage
|
57
|
+
* ```ts
|
58
|
+
* import { decodeBase64Url } from "@std/encoding/base64url";
|
59
|
+
* import { assertEquals } from "@std/assert";
|
60
|
+
*
|
61
|
+
* assertEquals(
|
62
|
+
* decodeBase64Url("Zm9vYmFy"),
|
63
|
+
* new TextEncoder().encode("foobar")
|
64
|
+
* );
|
65
|
+
* ```
|
66
|
+
*/
|
67
|
+
export function decodeBase64Url(b64url) {
|
68
|
+
const output = new TextEncoder().encode(b64url);
|
69
|
+
// deno-lint-ignore no-explicit-any
|
70
|
+
return new Uint8Array(output.buffer
|
71
|
+
.transfer(decode(output, 0, 0, rAlphabet, padding)));
|
72
|
+
}
|
@@ -0,0 +1,87 @@
|
|
1
|
+
// Copyright 2009 The Go Authors. All rights reserved.
|
2
|
+
// https://github.com/golang/go/blob/master/LICENSE
|
3
|
+
// Copyright 2018-2025 the Deno authors. MIT license.
|
4
|
+
// This module is browser compatible.
|
5
|
+
/**
|
6
|
+
* Port of the Go
|
7
|
+
* {@link https://github.com/golang/go/blob/go1.12.5/src/encoding/hex/hex.go | encoding/hex}
|
8
|
+
* library.
|
9
|
+
*
|
10
|
+
* ```ts
|
11
|
+
* import {
|
12
|
+
* decodeHex,
|
13
|
+
* encodeHex,
|
14
|
+
* } from "@std/encoding/hex";
|
15
|
+
* import { assertEquals } from "@std/assert";
|
16
|
+
*
|
17
|
+
* assertEquals(encodeHex("abc"), "616263");
|
18
|
+
*
|
19
|
+
* assertEquals(
|
20
|
+
* decodeHex("616263"),
|
21
|
+
* new TextEncoder().encode("abc"),
|
22
|
+
* );
|
23
|
+
* ```
|
24
|
+
*
|
25
|
+
* @module
|
26
|
+
*/
|
27
|
+
import { calcMax, decode, encode } from "./_common16.js";
|
28
|
+
import { detach } from "./_common_detach.js";
|
29
|
+
const alphabet = new TextEncoder()
|
30
|
+
.encode("0123456789abcdef");
|
31
|
+
const rAlphabet = new Uint8Array(128).fill(16); // alphabet.length
|
32
|
+
alphabet.forEach((byte, i) => rAlphabet[byte] = i);
|
33
|
+
new TextEncoder()
|
34
|
+
.encode("ABCDEF")
|
35
|
+
.forEach((byte, i) => rAlphabet[byte] = i + 10);
|
36
|
+
/**
|
37
|
+
* Converts data into a hex-encoded string.
|
38
|
+
*
|
39
|
+
* @param src The data to encode.
|
40
|
+
*
|
41
|
+
* @returns The hex-encoded string.
|
42
|
+
*
|
43
|
+
* @example Usage
|
44
|
+
* ```ts
|
45
|
+
* import { encodeHex } from "@std/encoding/hex";
|
46
|
+
* import { assertEquals } from "@std/assert";
|
47
|
+
*
|
48
|
+
* assertEquals(encodeHex("abc"), "616263");
|
49
|
+
* ```
|
50
|
+
*/
|
51
|
+
export function encodeHex(src) {
|
52
|
+
if (typeof src === "string") {
|
53
|
+
src = new TextEncoder().encode(src);
|
54
|
+
}
|
55
|
+
else if (src instanceof ArrayBuffer)
|
56
|
+
src = new Uint8Array(src).slice();
|
57
|
+
else
|
58
|
+
src = src.slice();
|
59
|
+
const [output, i] = detach(src, calcMax(src.length));
|
60
|
+
encode(output, i, 0, alphabet);
|
61
|
+
return new TextDecoder().decode(output);
|
62
|
+
}
|
63
|
+
/**
|
64
|
+
* Decodes the given hex-encoded string. If the input is malformed, an error is
|
65
|
+
* thrown.
|
66
|
+
*
|
67
|
+
* @param src The hex-encoded string to decode.
|
68
|
+
*
|
69
|
+
* @returns The decoded data.
|
70
|
+
*
|
71
|
+
* @example Usage
|
72
|
+
* ```ts
|
73
|
+
* import { decodeHex } from "@std/encoding/hex";
|
74
|
+
* import { assertEquals } from "@std/assert";
|
75
|
+
*
|
76
|
+
* assertEquals(
|
77
|
+
* decodeHex("616263"),
|
78
|
+
* new TextEncoder().encode("abc"),
|
79
|
+
* );
|
80
|
+
* ```
|
81
|
+
*/
|
82
|
+
export function decodeHex(src) {
|
83
|
+
const output = new TextEncoder().encode(src);
|
84
|
+
// deno-lint-ignore no-explicit-any
|
85
|
+
return new Uint8Array(output.buffer
|
86
|
+
.transfer(decode(output, 0, 0, rAlphabet)));
|
87
|
+
}
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import * as dntShim from "../_dnt.shims.js";
|
2
|
-
import { encodeHex } from "../deps/jsr.io/@std/encoding/1.0.
|
2
|
+
import { encodeHex } from "../deps/jsr.io/@std/encoding/1.0.8/hex.js";
|
3
3
|
/**
|
4
4
|
* Calculates the [partial follower collection digest][1].
|
5
5
|
*
|
6
|
-
* [1]: https://
|
6
|
+
* [1]: https://w3id.org/fep/8fcf#partial-follower-collection-digest
|
7
7
|
* @param uris The URIs to calculate the digest. Duplicate URIs are ignored.
|
8
8
|
* @returns The digest.
|
9
9
|
*/
|
@@ -27,7 +27,7 @@ export async function digest(uris) {
|
|
27
27
|
/**
|
28
28
|
* Builds [`Collection-Synchronization`][1] header content.
|
29
29
|
*
|
30
|
-
* [1]: https://
|
30
|
+
* [1]: https://w3id.org/fep/8fcf#the-collection-synchronization-http-header
|
31
31
|
*
|
32
32
|
* @param collectionId The sender's followers collection URI.
|
33
33
|
* @param actorIds The actor URIs to digest.
|
@@ -120,7 +120,9 @@ export async function handleCollection(request, { name, identifier, uriGetter, f
|
|
120
120
|
const baseUri = uriGetter(identifier);
|
121
121
|
if (cursor == null) {
|
122
122
|
const firstCursor = await collectionCallbacks.firstCursor?.(context, identifier);
|
123
|
-
const totalItems =
|
123
|
+
const totalItems = filter == null
|
124
|
+
? await collectionCallbacks.counter?.(context, identifier)
|
125
|
+
: undefined;
|
124
126
|
if (firstCursor == null) {
|
125
127
|
const itemsOrResponse = await tracer.startActiveSpan(`activitypub.dispatch_collection ${spanName}`, {
|
126
128
|
kind: SpanKind.SERVER,
|
@@ -277,7 +279,8 @@ function filterCollectionItems(items, collectionName, filterPredicate) {
|
|
277
279
|
if (!logged) {
|
278
280
|
getLogger(["fedify", "federation", "collection"]).warn(`The ${collectionName} collection apparently does not implement ` +
|
279
281
|
"filtering. This may result in a large response payload. " +
|
280
|
-
"Please consider implementing filtering for the collection."
|
282
|
+
"Please consider implementing filtering for the collection. " +
|
283
|
+
"See also: https://fedify.dev/manual/collections#filtering-by-server");
|
281
284
|
logged = true;
|
282
285
|
}
|
283
286
|
continue;
|