fedipod-server 0.11.0 → 0.13.0

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.
Files changed (152) hide show
  1. package/README.md +22 -6
  2. package/dist/claims.d.ts +8 -0
  3. package/dist/claims.js +10 -0
  4. package/dist/handler.d.ts +13 -0
  5. package/dist/handler.js +56 -11
  6. package/dist/handler.jsonld +8 -0
  7. package/dist/store-pod.js +18 -4
  8. package/lib/{c2s.mjs → client/c2s.mjs} +10 -3
  9. package/lib/{localapi.mjs → client/localapi.mjs} +2 -2
  10. package/lib/client/masto/accounts.mjs +264 -0
  11. package/lib/client/masto/body.mjs +69 -0
  12. package/lib/client/masto/index.mjs +183 -0
  13. package/lib/client/masto/instance.mjs +104 -0
  14. package/lib/client/masto/media.mjs +133 -0
  15. package/lib/client/masto/oauth.mjs +599 -0
  16. package/lib/client/masto/render.mjs +459 -0
  17. package/lib/client/masto/statuses.mjs +331 -0
  18. package/lib/client/masto/timelines.mjs +316 -0
  19. package/lib/{streaming.mjs → client/streaming.mjs} +1 -1
  20. package/lib/{acctfeed.mjs → connections/acctfeed.mjs} +1 -1
  21. package/lib/{atproto.mjs → connections/atproto.mjs} +15 -16
  22. package/lib/{bskygroup.mjs → connections/bskygroup.mjs} +1 -1
  23. package/lib/{fediacct.mjs → connections/fediacct.mjs} +31 -35
  24. package/lib/{import.mjs → connections/import.mjs} +1 -1
  25. package/lib/{tagfeed.mjs → connections/tagfeed.mjs} +3 -3
  26. package/lib/connections/vault.mjs +114 -0
  27. package/lib/core/as2.mjs +170 -0
  28. package/lib/core/contexts/activitystreams.json +379 -0
  29. package/lib/core/contexts/did-v1.json +57 -0
  30. package/lib/core/contexts/fep-5711.json +36 -0
  31. package/lib/core/contexts/gotosocial.json +86 -0
  32. package/lib/core/contexts/identity-v1.json +152 -0
  33. package/lib/core/contexts/index.mjs +45 -0
  34. package/lib/core/contexts/join-lemmy.json +33 -0
  35. package/lib/core/contexts/joinmastodon.json +28 -0
  36. package/lib/core/contexts/map.json +16 -0
  37. package/lib/core/contexts/miscellany.json +19 -0
  38. package/lib/core/contexts/schemaorg.json +8845 -0
  39. package/lib/core/contexts/security-data-integrity-v1.json +78 -0
  40. package/lib/core/contexts/security-data-integrity-v2.json +81 -0
  41. package/lib/core/contexts/security-multikey-v1.json +35 -0
  42. package/lib/core/contexts/security-v1.json +74 -0
  43. package/lib/core/contexts/webfinger.json +10 -0
  44. package/lib/{deliver.mjs → core/deliver.mjs} +2 -2
  45. package/lib/core/graphview.mjs +269 -0
  46. package/lib/core/intake/activities.mjs +437 -0
  47. package/lib/core/intake/activity.mjs +240 -0
  48. package/lib/core/intake/channel.mjs +144 -0
  49. package/lib/core/intake/group.mjs +222 -0
  50. package/lib/core/intake/index.mjs +629 -0
  51. package/lib/core/intake/notes.mjs +288 -0
  52. package/lib/core/intake/verify.mjs +142 -0
  53. package/lib/{keys.mjs → core/keys.mjs} +1 -1
  54. package/lib/core/publisher/collections.mjs +229 -0
  55. package/lib/core/publisher/index.mjs +421 -0
  56. package/lib/core/publisher/notes.mjs +188 -0
  57. package/lib/core/publisher/questions.mjs +233 -0
  58. package/lib/core/publisher/restore.mjs +199 -0
  59. package/lib/core/shapes/activitystreams.ttl +129 -0
  60. package/lib/core/shapes/index.mjs +107 -0
  61. package/lib/core/shapes/shapes-text.mjs +13 -0
  62. package/lib/{social.mjs → core/social.mjs} +2 -2
  63. package/lib/{store.mjs → core/store.mjs} +4 -0
  64. package/lib/{wire.mjs → core/wire.mjs} +2 -2
  65. package/lib/device/admin/index.mjs +13 -0
  66. package/lib/device/admin/origins.mjs +35 -0
  67. package/lib/device/admin/routes/connections.mjs +144 -0
  68. package/lib/device/admin/routes/gateway.mjs +199 -0
  69. package/lib/device/admin/routes/lifecycle.mjs +191 -0
  70. package/lib/device/admin/routes/owner.mjs +322 -0
  71. package/lib/device/admin/routes/setup.mjs +393 -0
  72. package/lib/device/admin/routes/social.mjs +188 -0
  73. package/lib/device/admin/server.mjs +95 -0
  74. package/lib/device/admin/static.mjs +244 -0
  75. package/lib/device/admin/surface.mjs +274 -0
  76. package/lib/device/cli/commands/account.mjs +586 -0
  77. package/lib/device/cli/commands/run.mjs +278 -0
  78. package/lib/device/cli/commands/service.mjs +221 -0
  79. package/lib/device/cli/commands/setup.mjs +410 -0
  80. package/lib/device/cli/commands/state.mjs +559 -0
  81. package/lib/device/cli/context.mjs +288 -0
  82. package/lib/{migrate.mjs → device/migrate.mjs} +1 -1
  83. package/lib/{remote.mjs → device/remote.mjs} +3 -3
  84. package/lib/{setup.mjs → device/setup.mjs} +3 -3
  85. package/lib/{update.mjs → device/update.mjs} +1 -1
  86. package/lib/{directory.mjs → gateway/directory.mjs} +1 -1
  87. package/lib/{front-core.mjs → gateway/front-core.mjs} +3 -3
  88. package/lib/{gateway-core.mjs → gateway/gateway-core.mjs} +1 -1
  89. package/lib/{httpsig.mjs → gateway/httpsig.mjs} +1 -1
  90. package/lib/server/embed.mjs +405 -0
  91. package/lib/{links.mjs → shared/links.mjs} +1 -1
  92. package/lib/{ua.mjs → shared/ua.mjs} +1 -1
  93. package/package.json +1 -1
  94. package/run-agent.mjs +33 -25
  95. package/web/admin/actors.js +145 -0
  96. package/web/admin/common.js +23 -0
  97. package/web/admin/connections.js +112 -0
  98. package/web/admin/gateway.js +111 -0
  99. package/web/admin/group.js +258 -0
  100. package/web/admin/index.html +7 -1
  101. package/web/admin/record.js +378 -0
  102. package/web/admin/setup/index.html +1 -0
  103. package/web/admin/setup/setup.js +2 -13
  104. package/web/admin/upkeep.js +170 -0
  105. package/web/app/README.md +6 -6
  106. package/web/app/admin-facade.mjs +3 -3
  107. package/web/app/agent.mjs +14 -16
  108. package/web/app/atproto-browser.mjs +1 -1
  109. package/web/app/boot.mjs +2 -3
  110. package/web/app/deliver-relay.mjs +1 -1
  111. package/web/app/dist/boot.js +22 -3
  112. package/web/app/dist/boot.js.map +2 -2
  113. package/web/app/dist/sw.js +21913 -5446
  114. package/web/app/dist/sw.js.map +4 -4
  115. package/web/app/fediacct-browser.mjs +1 -1
  116. package/web/app/keys-browser.mjs +27 -4
  117. package/web/app/shims/shapes-text.mjs +8 -0
  118. package/web/app/signup.mjs +2 -3
  119. package/web/app/site/admin/actors.js +145 -0
  120. package/web/app/site/admin/common.js +23 -0
  121. package/web/app/site/admin/connections.js +112 -0
  122. package/web/app/site/admin/gateway.js +111 -0
  123. package/web/app/site/admin/group.js +258 -0
  124. package/web/app/site/admin/index.html +7 -1
  125. package/web/app/site/admin/record.js +378 -0
  126. package/web/app/site/admin/setup/index.html +1 -0
  127. package/web/app/site/admin/setup/setup.js +2 -13
  128. package/web/app/site/admin/upkeep.js +170 -0
  129. package/web/app/site/boot.js +22 -3
  130. package/web/app/site/sw.js +21913 -5446
  131. package/web/app/sw-src.mjs +17 -2
  132. package/lib/admin.mjs +0 -1913
  133. package/lib/embed.mjs +0 -220
  134. package/lib/intake.mjs +0 -1981
  135. package/lib/mastoapi.mjs +0 -2284
  136. package/lib/publisher.mjs +0 -1192
  137. package/web/admin/admin.js +0 -1181
  138. package/web/app/site/admin/admin.js +0 -1181
  139. /package/lib/{oidc-auth.mjs → client/oidc-auth.mjs} +0 -0
  140. /package/lib/{webpush.mjs → client/webpush.mjs} +0 -0
  141. /package/lib/{bskyfeed.mjs → connections/bskyfeed.mjs} +0 -0
  142. /package/lib/{lease.mjs → core/lease.mjs} +0 -0
  143. /package/lib/{polls.mjs → core/polls.mjs} +0 -0
  144. /package/lib/{proof.mjs → core/proof.mjs} +0 -0
  145. /package/lib/{storage.mjs → core/storage.mjs} +0 -0
  146. /package/lib/{account.mjs → device/account.mjs} +0 -0
  147. /package/lib/{certs.mjs → device/certs.mjs} +0 -0
  148. /package/lib/{export-collections.mjs → device/export-collections.mjs} +0 -0
  149. /package/lib/{home.mjs → device/home.mjs} +0 -0
  150. /package/lib/{ports.mjs → device/ports.mjs} +0 -0
  151. /package/lib/{guard.mjs → shared/guard.mjs} +0 -0
  152. /package/lib/{safefetch.mjs → shared/safefetch.mjs} +0 -0
@@ -0,0 +1,69 @@
1
+ // body.mjs — reading what a client sent: JSON or form-encoded bodies, the
2
+ // poll a compose request carries, and the text of a post back out of its
3
+ // HTML.
4
+
5
+
6
+
7
+ /**
8
+ * A poll out of a compose request, or null when there is none. A JSON client
9
+ * sends a `poll` object; a form-encoded one spells the same thing out in
10
+ * Rails's bracket notation, which is the shape the option list arrives in.
11
+ */
12
+ export function pollParams(body) {
13
+ const nested = body?.poll && typeof body.poll === 'object' ? body.poll : null;
14
+ const options = [].concat(nested?.options ?? body?.['poll[options][]'] ?? [])
15
+ .map(o => String(o ?? '').trim()).filter(Boolean);
16
+ const rawExpiry = nested?.expires_in ?? body?.['poll[expires_in]'];
17
+ const rawMultiple = nested?.multiple ?? body?.['poll[multiple]'];
18
+ if (!options.length && rawExpiry === undefined) return null;
19
+ return {
20
+ options,
21
+ expiresIn: rawExpiry === undefined || rawExpiry === null || rawExpiry === ''
22
+ ? null : Number(rawExpiry),
23
+ multiple: rawMultiple === true || rawMultiple === 'true' || rawMultiple === '1',
24
+ };
25
+ }
26
+
27
+ // Accepts JSON or form-encoded bodies (OAuth posts are often form-encoded).
28
+ // The source of a post that predates raw-text storage: its HTML back to
29
+ // typed text, near enough to edit.
30
+ export function htmlToText(html) {
31
+ return String(html)
32
+ .replace(/<br\s*\/?>/gi, '\n')
33
+ .replace(/<\/p>\s*<p[^>]*>/gi, '\n\n')
34
+ .replace(/<[^>]+>/g, '')
35
+ .replace(/&amp;/g, '&').replace(/&lt;/g, '<').replace(/&gt;/g, '>')
36
+ .replace(/&quot;/g, '"').replace(/&#39;/g, "'")
37
+ .trim();
38
+ }
39
+
40
+ export function readBody(req) {
41
+ return new Promise((resolve, reject) => {
42
+ let data = '';
43
+ req.on('data', c => {
44
+ data += c;
45
+ // Destroying the socket without settling left the awaiting handler
46
+ // pending for the life of the process and the client waiting on a
47
+ // response that would never come.
48
+ if (data.length > 1e6) { req.destroy(); reject(new Error('request body too large')); }
49
+ });
50
+ req.on('end', () => {
51
+ const ct = String(req.headers['content-type'] || '');
52
+ try {
53
+ if (ct.includes('application/json')) return resolve(data ? JSON.parse(data) : {});
54
+ // A form-encoded list is the same key repeated, spelled with a
55
+ // trailing `[]`. Reading it as a plain object kept only the last one,
56
+ // so a client sending its poll or its media that way lost all but the
57
+ // final value. Only the `[]` keys become lists: everything else keeps
58
+ // the single value the rest of this file reads.
59
+ const form = new URLSearchParams(data);
60
+ const out = {};
61
+ for (const key of new Set(form.keys())) {
62
+ out[key] = key.endsWith('[]') ? form.getAll(key) : form.get(key);
63
+ }
64
+ resolve(out);
65
+ } catch (e) { reject(e); }
66
+ });
67
+ req.on('error', reject);
68
+ });
69
+ }
@@ -0,0 +1,183 @@
1
+ // mastoapi.mjs — Mastodon client-API facade over ap-agent (M1: read + post).
2
+ // Modeled on snac2's approach: real implementations for the endpoints
3
+ // clients actually exercise, empty-collection stubs for the rest. Reached
4
+ // through the router (/api/*, /oauth/* → this port), so requests carry the
5
+ // gate; OAuth here is theater for a single already-trusted local user.
6
+ //
7
+ // Surface: oauth trio · instance v1/v2 · verify_credentials · timelines/home
8
+ // (M1) · notifications, relationships, lookup, follow/unfollow, thread
9
+ // context, /v2/search (M2) · favourite/reblog, media upload, markers,
10
+ // DELETE status (M3) · stub farm. Unknown /api/* GETs 404 and are LOGGED —
11
+ // that log is the running punch list.
12
+ //
13
+ // This file is the class and the dispatcher. The endpoints are in the modules
14
+ // beside it, one per area — oauth.mjs, instance.mjs, accounts.mjs,
15
+ // timelines.mjs, statuses.mjs, media.mjs — each exporting handle(api, ctx),
16
+ // which answers and returns true or returns false; handle() below walks them
17
+ // in order with the bearer gate between the public ones and the rest. The
18
+ // JSON shapes are render.mjs and the request readers body.mjs; every helper
19
+ // the areas reach through `api.` is a one-line delegation here.
20
+
21
+ import { Push } from '../webpush.mjs';
22
+ import * as oauth from './oauth.mjs';
23
+ import * as render from './render.mjs';
24
+ import * as instance from './instance.mjs';
25
+ import * as accounts from './accounts.mjs';
26
+ import * as timelines from './timelines.mjs';
27
+ import * as statuses from './statuses.mjs';
28
+ import * as media from './media.mjs';
29
+ export { hashPassword } from './oauth.mjs';
30
+ export { pollParams } from './body.mjs';
31
+ export { attachmentType, extensionFor } from './media.mjs';
32
+
33
+ export class MastoApi {
34
+ constructor({ agent, log = console.log, allowed = null, scheme = null, embedded = false,
35
+ streaming = true, webPush = true, scheduling = true }) {
36
+ this.agent = agent;
37
+ // A server-hosted identity has no CLI of its own, so the advice this gives
38
+ // when it refuses has to name the route that identity really has.
39
+ this.embedded = embedded;
40
+ this.log = log;
41
+ this.allowed = allowed; // authorities a redirect_uri may name
42
+ // The scheme this identity is reached on, when the socket cannot say —
43
+ // a server behind a TLS proxy terminates cleartext and still is https.
44
+ this.scheme = scheme;
45
+ // Whether this deployment can serve the Mastodon streaming WebSocket. A
46
+ // Node agent can; the in-browser service-worker facade cannot (it is
47
+ // fetch-only), so it advertises NO streaming URL. Otherwise the client
48
+ // opens wss://localhost/... (the worker has no request host to name), which
49
+ // not only fails but, from a public origin, trips Chrome's private-network
50
+ // permission prompt ("access other apps and services on this device").
51
+ // With no streaming URL the client falls back to polling, which is served.
52
+ this.streaming = streaming;
53
+ // The same idea for two more capabilities the browser build does not have.
54
+ // A client decides what to offer from what the instance document says, so
55
+ // the honest thing is to say nothing rather than advertise and no-op.
56
+ //
57
+ // `webPush`: the browser build's web-push is a shim that mints a random
58
+ // placeholder VAPID key and whose sendNotification does nothing. Advertised,
59
+ // the client shows a notifications toggle that looks on and never fires.
60
+ // Omit `vapid` and it hides the toggle instead.
61
+ this.webPush = webPush;
62
+ // `scheduling`: a scheduled post is only a stored row until something
63
+ // publishes it when its time comes, and the only such tick is the Node
64
+ // agent's (run-agent.mjs). Where nothing ticks, accepting one is silent
65
+ // loss — the client says "scheduled" and the post never appears. Refusing
66
+ // it is worse UX and better behaviour.
67
+ this.scheduling = scheduling;
68
+ this.authzAttempts = []; // password-attempt timestamps
69
+ }
70
+
71
+ get store() { return this.agent.store; }
72
+ get urls() { return this.agent.publisher?.urls; }
73
+ get push() {
74
+ this._push ||= new Push({
75
+ store: this.store,
76
+ subject: () => this.urls?.actor || 'https://localhost/',
77
+ log: this.log,
78
+ });
79
+ return this._push;
80
+ }
81
+ get host() { return this.urls ? new URL(this.urls.base).host : 'unconfigured.invalid'; }
82
+
83
+ // Where the live feed is, as the CLIENT must address it: this agent's own
84
+ // origin, taken from the request, not the pod's host. An instance document
85
+ // that leaves it empty is not merely unhelpful — clients read it without a
86
+ // guard and fall over, and every one of them loses live updates.
87
+ streamingUrl(req) {
88
+ if (!this.streaming) return null; // fetch-only facade: no WebSocket, no wss://localhost prompt
89
+ const host = req?.headers?.host || `localhost:${this.port || ''}`;
90
+ const secure = this.scheme
91
+ ? this.scheme.startsWith('https')
92
+ : req?.headers?.['x-forwarded-proto'] === 'https' || !!req?.socket?.encrypted;
93
+ return `${secure ? 'wss' : 'ws'}://${host}/api/v1/streaming`;
94
+ }
95
+
96
+ static scopeFor(...a) { return oauth.scopeFor(...a); }
97
+ static scopeAllows(...a) { return oauth.scopeAllows(...a); }
98
+ static redirectMatches(...a) { return oauth.redirectMatches(...a); }
99
+ static provesCode(...a) { return oauth.provesCode(...a); }
100
+
101
+ // ---- request handling; returns true when handled ----
102
+ async handle(req, res, pathname, url) {
103
+ const send = (status, obj, headers = {}) => {
104
+ const body = JSON.stringify(obj);
105
+ res.writeHead(status, { 'content-type': 'application/json', ...headers });
106
+ res.end(body);
107
+ return true;
108
+ };
109
+ const ctx = { req, res, pathname, url, send };
110
+
111
+ if (await oauth.handle(this, ctx)) return true;
112
+ if (!pathname.startsWith('/api/')) return false;
113
+ if (await instance.handle(this, ctx)) return true;
114
+
115
+ // --- everything below needs a bearer token + a configured agent ---
116
+ const bearer = this.tokenOf(req);
117
+ if (!bearer) return send(401, { error: 'The access token is invalid' });
118
+ // One gate for every client route below, rather than a check in each of
119
+ // the fifty-odd branches — which is how the scope came to be recorded and
120
+ // never consulted in the first place.
121
+ const need = MastoApi.scopeFor(req.method, pathname);
122
+ if (!MastoApi.scopeAllows(bearer.scope, need)) {
123
+ this.log(`refused ${req.method} ${pathname}: token has "${bearer.scope}", needs "${need}"`);
124
+ return send(403, { error: `This action is outside the authorized scopes (needs ${need})` });
125
+ }
126
+ if (!this.agent.configured()) return send(503, { error: 'agent not configured' });
127
+ // A viewer-mode agent (another agent holds the drain lease) may not act —
128
+ // but a user acting HERE outranks the idle active agent elsewhere, so a
129
+ // write attempt claims the lease and proceeds. Only a failed claim 503s.
130
+ if (this.agent.viewer && req.method !== 'GET' && req.method !== 'HEAD') {
131
+ const took = await this.agent.requestTakeover?.();
132
+ if (!took) return send(503, { error: 'another agent is active for this pod — takeover failed, try again' });
133
+ }
134
+
135
+ for (const area of [accounts, timelines, statuses, media]) {
136
+ if (await area.handle(this, ctx)) return true;
137
+ }
138
+
139
+ this.log(`mastoapi: unhandled ${req.method} ${pathname} — punch list`);
140
+ return send(404, { error: `Unimplemented: ${req.method} ${pathname}` });
141
+ }
142
+
143
+ // oauth.mjs
144
+ tokenRecords(...a) { return oauth.tokenRecords(this, ...a); }
145
+ tokens(...a) { return oauth.tokens(this, ...a); }
146
+ mintToken(...a) { return oauth.mintToken(this, ...a); }
147
+ apps(...a) { return oauth.apps(this, ...a); }
148
+ authorizationServerMetadata(...a) { return oauth.authorizationServerMetadata(this, ...a); }
149
+ findApp(...a) { return oauth.findApp(this, ...a); }
150
+ resolveClientDocument(...a) { return oauth.resolveClientDocument(this, ...a); }
151
+ registerApp(...a) { return oauth.registerApp(this, ...a); }
152
+ mintCode(...a) { return oauth.mintCode(this, ...a); }
153
+ consumeCode(...a) { return oauth.consumeCode(this, ...a); }
154
+ tokenOf(...a) { return oauth.tokenOf(this, ...a); }
155
+ authed(...a) { return oauth.authed(this, ...a); }
156
+ redirectAllowed(...a) { return oauth.redirectAllowed(this, ...a); }
157
+ rateLimited(...a) { return oauth.rateLimited(this, ...a); }
158
+
159
+ // render.mjs
160
+ selfAccount(...a) { return render.selfAccount(this, ...a); }
161
+ account(...a) { return render.account(this, ...a); }
162
+ page(...a) { return render.page(this, ...a); }
163
+ bskyReply(...a) { return render.bskyReply(this, ...a); }
164
+ acctAction(...a) { return render.acctAction(this, ...a); }
165
+ acctReply(...a) { return render.acctReply(this, ...a); }
166
+ status(...a) { return render.status(this, ...a); }
167
+ filtersFor(...a) { return render.filtersFor(this, ...a); }
168
+ lookup(...a) { return render.lookup(this, ...a); }
169
+ statusOrBoost(...a) { return render.statusOrBoost(this, ...a); }
170
+ pushNotify(...a) { return render.pushNotify(this, ...a); }
171
+ scheduledJson(...a) { return render.scheduledJson(this, ...a); }
172
+ pollJson(...a) { return render.pollJson(this, ...a); }
173
+ mediaJson(...a) { return render.mediaJson(this, ...a); }
174
+ relationship(...a) { return render.relationship(this, ...a); }
175
+ notificationType(...a) { return render.notificationType(this, ...a); }
176
+ notification(...a) { return render.notification(this, ...a); }
177
+ accountSearch(...a) { return render.accountSearch(this, ...a); }
178
+
179
+ // instance.mjs
180
+ instanceTitle(...a) { return instance.instanceTitle(this, ...a); }
181
+ tagObject(...a) { return instance.tagObject(this, ...a); }
182
+ instanceBlurb(...a) { return instance.instanceBlurb(this, ...a); }
183
+ }
@@ -0,0 +1,104 @@
1
+ // instance.mjs — what the instance says about itself: the v1 and v2 instance
2
+ // documents, the limits a client reads from them, the title and blurb, the
3
+ // tag object, and the empty-collection stubs for endpoints a single-actor
4
+ // instance has nothing to say to.
5
+
6
+ import { TRANSPARENT_PNG } from './render.mjs';
7
+ import {
8
+ MAX_OPTIONS as POLL_MAX_OPTIONS, MAX_OPTION_CHARS as POLL_MAX_OPTION_CHARS,
9
+ MIN_SECONDS as POLL_MIN_SECONDS, MAX_SECONDS as POLL_MAX_SECONDS,
10
+ } from '../../core/polls.mjs';
11
+
12
+ const STUBS = new Map(Object.entries({
13
+ '/api/v1/filters': [],
14
+ '/api/v1/custom_emojis': [],
15
+ '/api/v1/announcements': [],
16
+ '/api/v1/instance/peers': [],
17
+ '/api/v1/trends/tags': [], '/api/v1/trends/links': [],
18
+ '/api/v2/suggestions': [],
19
+ '/api/v1/preferences': {},
20
+ })); // followed_tags is served live from the tag feed, not stubbed
21
+
22
+ export function instanceConfig() {
23
+ return {
24
+ statuses: { max_characters: 5000, max_media_attachments: 4, characters_reserved_per_url: 23 },
25
+ media_attachments: {
26
+ supported_mime_types: ['image/jpeg', 'image/png', 'image/gif', 'image/webp',
27
+ 'video/mp4', 'video/webm', 'audio/mpeg', 'audio/ogg'],
28
+ image_size_limit: 10 * 1024 * 1024, video_size_limit: 40 * 1024 * 1024,
29
+ image_matrix_limit: 16777216, video_matrix_limit: 2304000,
30
+ },
31
+ polls: {
32
+ max_options: POLL_MAX_OPTIONS,
33
+ max_characters_per_option: POLL_MAX_OPTION_CHARS,
34
+ min_expiration: POLL_MIN_SECONDS,
35
+ max_expiration: POLL_MAX_SECONDS,
36
+ },
37
+ accounts: { max_featured_tags: 0 },
38
+ };
39
+ }
40
+
41
+ // Every agent used to report title 'solid-activitypub', so a client holding two
42
+ // of them showed two identical instances and you had to read the acct to tell
43
+ // them apart. The title is free text no client parses — make it say who.
44
+ export function instanceTitle(api) {
45
+ const cfg = api.store.getConfig();
46
+ return cfg?.handle ? `@${cfg.handle}@${api.host}` : 'FediPod';
47
+ }
48
+
49
+ // A Mastodon Tag object. The client reads `following` in its Followed
50
+ // Hashtags view and toggles it with the follow/unfollow endpoints. No usage
51
+ // history — a single-actor instance has no firehose stats to report.
52
+ export function tagObject(api, name, following, req) {
53
+ const host = req?.headers?.host || api.host;
54
+ return { name, url: `https://${host}/tags/${name}`, history: [], following: !!following };
55
+ }
56
+
57
+ export function instanceBlurb(api) {
58
+ const kind = api.store.getConfig()?.kind === 'group' ? 'group' : 'actor';
59
+ return `Solid pod ActivityPub ${kind}`;
60
+ }
61
+
62
+ export async function handle(api, ctx) {
63
+ const { req, res, pathname, url, send } = ctx; // eslint-disable-line no-unused-vars
64
+
65
+ // --- instance (public) ---
66
+ if (pathname === '/api/v1/instance') {
67
+ const su = api.streamingUrl(req);
68
+ return send(200, {
69
+ uri: api.host, title: api.instanceTitle(), short_description: api.instanceBlurb(),
70
+ description: api.instanceBlurb(), email: '', version: '4.2.0 (compatible; fedipod)',
71
+ urls: su ? { streaming_api: su } : {},
72
+ stats: { user_count: 1, status_count: api.store.countStatuses(), domain_count: 1 },
73
+ languages: ['en'], registrations: false, approval_required: false, invites_enabled: false,
74
+ configuration: instanceConfig(),
75
+ contact_account: null, rules: [],
76
+ });
77
+ }
78
+ if (pathname === '/api/v2/instance') {
79
+ const su = api.streamingUrl(req);
80
+ return send(200, {
81
+ domain: api.host, title: api.instanceTitle(), version: '4.2.0 (compatible; fedipod)',
82
+ source_url: 'https://github.com/jeff-zucker/FediPod', description: api.instanceBlurb(),
83
+ usage: { users: { active_month: 1 } },
84
+ thumbnail: { url: TRANSPARENT_PNG },
85
+ languages: ['en'],
86
+ // Both spellings: v2 clients read configuration.urls.streaming, older
87
+ // ones the top-level urls.streaming_api, and some fall back blindly.
88
+ // Omitted entirely when there is no streaming, so the client polls.
89
+ urls: su ? { streaming_api: su } : {},
90
+ configuration: {
91
+ ...instanceConfig(),
92
+ ...(su ? { urls: { streaming: su } } : {}),
93
+ ...(api.webPush ? { vapid: { public_key: api.push.publicKey() } } : {}),
94
+ },
95
+ registrations: { enabled: false, approval_required: false, message: null },
96
+ contact: { email: '', account: null }, rules: [],
97
+ });
98
+ }
99
+
100
+ const stub = STUBS.get(pathname);
101
+ if (stub !== undefined && req.method === 'GET') return send(200, stub);
102
+
103
+ return false;
104
+ }
@@ -0,0 +1,133 @@
1
+ // media.mjs — an upload on its way to the pod's media container: what an
2
+ // attachment is allowed to be, the multipart reader, and the two media
3
+ // endpoints.
4
+
5
+ import crypto from 'node:crypto';
6
+ import * as podMedia from '../../pod/media.mjs';
7
+ import { readBody } from './body.mjs';
8
+
9
+ // What an attachment is allowed to BE. Anything else is stored as bytes, which
10
+ // a browser downloads rather than runs.
11
+ const ATTACHMENT_KINDS = new Set(['image', 'video', 'audio']);
12
+ // image/* with an exception: an SVG is a document, it carries script, and a
13
+ // browser renders it rather than showing it. Mastodon does not take them as
14
+ // media either.
15
+ const NEVER = new Set(['image/svg+xml', 'image/svg']);
16
+ const OPAQUE = 'application/octet-stream';
17
+
18
+ export function attachmentType(claimed) {
19
+ const t = String(claimed || '').split(';')[0].trim().toLowerCase();
20
+ if (!/^[a-z0-9.+-]+\/[a-z0-9.+-]+$/.test(t) || NEVER.has(t)) return OPAQUE;
21
+ return ATTACHMENT_KINDS.has(t.split('/')[0]) ? t : OPAQUE;
22
+ }
23
+
24
+ // From the TYPE we accepted, not from the name the client sent — an `.html`
25
+ // suffix on a file stored as octet-stream is what a pod would serve from, and
26
+ // a filename is the client's to choose.
27
+ export function extensionFor(mediaType, filename = '') {
28
+ if (mediaType === OPAQUE) return 'bin';
29
+ const sub = mediaType.split('/')[1].replace(/[^a-z0-9]/g, '');
30
+ const given = String(filename || '').includes('.')
31
+ ? filename.split('.').pop().toLowerCase().replace(/[^a-z0-9]/g, '') : '';
32
+ // Keep the client's suffix only when it plainly belongs to the accepted type,
33
+ // so jpg/jpeg and mp4/m4v survive without a table of every media type.
34
+ return given && (given === sub || sub.startsWith(given) || given.startsWith(sub)) ? given : (sub || 'bin');
35
+ }
36
+
37
+ // Minimal multipart/form-data reader for media uploads: string fields plus
38
+ // at most one file part (Mastodon's media endpoints send exactly one).
39
+ export function readMultipart(req, limit = 12e6) {
40
+ return new Promise((resolve, reject) => {
41
+ const chunks = [];
42
+ let n = 0;
43
+ req.on('data', c => {
44
+ n += c.length;
45
+ if (n > limit) { reject(new Error('upload too large')); req.destroy(); return; }
46
+ chunks.push(c);
47
+ });
48
+ req.on('error', reject);
49
+ req.on('end', () => {
50
+ try {
51
+ const m = /boundary=(?:"([^"]+)"|([^;]+))/.exec(String(req.headers['content-type'] || ''));
52
+ if (!m) return resolve({ fields: {}, file: null });
53
+ const buf = Buffer.concat(chunks);
54
+ const boundary = Buffer.from('--' + (m[1] || m[2]).trim());
55
+ const fields = {};
56
+ // `file` is the last one seen, which is what the single-file media
57
+ // upload wants. `files` keys them by field name, because the profile
58
+ // editor submits an avatar and a header in one request.
59
+ const files = {};
60
+ let file = null;
61
+ let i = buf.indexOf(boundary);
62
+ while (i >= 0) {
63
+ const start = i + boundary.length;
64
+ if (buf.slice(start, start + 2).toString() === '--') break;
65
+ const next = buf.indexOf(boundary, start);
66
+ if (next < 0) break;
67
+ const part = buf.slice(start + 2, next - 2); // strip the CRLFs framing the part
68
+ const sep = part.indexOf('\r\n\r\n');
69
+ if (sep >= 0) {
70
+ const head = part.slice(0, sep).toString();
71
+ const body = part.slice(sep + 4);
72
+ const name = /name="([^"]*)"/.exec(head)?.[1];
73
+ const filename = /filename="([^"]*)"/.exec(head)?.[1];
74
+ if (filename !== undefined) {
75
+ file = {
76
+ filename,
77
+ contentType: /content-type:\s*([^\r\n]+)/i.exec(head)?.[1]?.trim() || 'application/octet-stream',
78
+ data: body,
79
+ };
80
+ if (name) files[name] = file;
81
+ } else if (name) fields[name] = body.toString();
82
+ }
83
+ i = next;
84
+ }
85
+ resolve({ fields, file, files });
86
+ } catch (e) { reject(e); }
87
+ });
88
+ });
89
+ }
90
+
91
+ export async function handle(api, ctx) {
92
+ const { req, res, pathname, url, send } = ctx; // eslint-disable-line no-unused-vars
93
+
94
+ // Media upload: file → remote pod /ap/media/ (public-Read), entry in the
95
+ // media registry so a later POST /statuses can attach it.
96
+ if ((pathname === '/api/v2/media' || pathname === '/api/v1/media') && req.method === 'POST') {
97
+ const { fields, file } = await readMultipart(req);
98
+ if (!file?.data?.length) return send(422, { error: 'file required' });
99
+ // The client said what this is, and we used to believe it. The media
100
+ // container is world-readable and sits on the pod's own origin — the same
101
+ // origin as the WebID and the ACLs — so a file stored as text/html is a
102
+ // page served from your identity, and script in it runs as you in any
103
+ // browser already logged into that pod. A bearer is not "only you": the
104
+ // facade exists so third-party clients can connect, tokens last 90 days,
105
+ // and no scope is enforced. So any client you authorize could leave that
106
+ // page behind.
107
+ const mediaType = attachmentType(file.contentType);
108
+ const ext = extensionFor(mediaType, file.filename);
109
+ const slug = new Date().toISOString().slice(0, 10) + '-' + crypto.randomBytes(4).toString('hex') + '.' + ext;
110
+ const mediaUrl = api.urls.media + slug;
111
+ await api.agent.publisher.ensureMediaContainer();
112
+ await podMedia.write(api.agent.remote, mediaUrl, file.data, mediaType);
113
+ const entry = { url: mediaUrl, mediaType, description: fields.description || '' };
114
+ const id = api.store.idFor(mediaUrl);
115
+ api.store.setMedia(id, entry);
116
+ return send(200, api.mediaJson({ id, ...entry }));
117
+ }
118
+ const mMedia = /^\/api\/v1\/media\/([a-f0-9]+)$/.exec(pathname);
119
+ if (mMedia) {
120
+ const entry = api.store.getMedia()[mMedia[1]];
121
+ if (!entry) return send(404, { error: 'Record not found' });
122
+ if (req.method === 'PUT') {
123
+ const body = await readBody(req);
124
+ if (typeof body.description === 'string') {
125
+ entry.description = body.description;
126
+ api.store.setMedia(mMedia[1], entry);
127
+ }
128
+ }
129
+ return send(200, api.mediaJson({ id: mMedia[1], ...entry }));
130
+ }
131
+
132
+ return false;
133
+ }