javascript-solid-server 0.0.175 → 0.0.177
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/.claude/scheduled_tasks.lock +1 -0
- package/README.md +1 -0
- package/docs/lws.md +84 -0
- package/package.json +1 -1
- package/src/auth/lws-cid.js +679 -0
- package/src/auth/token.js +12 -1
- package/src/idp/credentials.js +176 -37
- package/src/idp/index.js +33 -1
- package/src/idp/views.js +188 -0
- package/test/idp-delete-account.test.js +301 -0
- package/test/lws-cid.test.js +705 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"sessionId":"a05da419-92b7-4056-93b8-e97b2035d4ae","pid":3932382,"procStart":"114094236","acquiredAt":1778317500161}
|
package/README.md
CHANGED
|
@@ -26,6 +26,7 @@ A minimal, fast, JSON-LD native Solid server.
|
|
|
26
26
|
- **Nostr Relay** — Integrated NIP-01 relay (`wss://your.pod/relay`)
|
|
27
27
|
- **Nostr Auth** — NIP-98 signatures, did:nostr → WebID resolution
|
|
28
28
|
- **End-to-End Encryption** — Encrypt pod content client-side via NIP-44 / NIP-04 using `did:nostr` keys ([docs](https://jss.live/docs/features/e2ee/), zero server-side changes)
|
|
29
|
+
- **LWS / CID v1 profile shape** — New pod profiles are structurally W3C [Controlled Identifier](https://www.w3.org/TR/cid-1.0/) documents, ready for [LWS 1.0](https://www.w3.org/TR/2026/WD-lws10-authn-ssi-cid-20260423/) auth ([docs](docs/lws.md))
|
|
29
30
|
- **ActivityPub** — Fediverse federation with Mastodon-compatible API
|
|
30
31
|
- **remoteStorage** — [draft-dejong-remotestorage-22](https://remotestorage.io/spec/) file sync
|
|
31
32
|
- **MongoDB Storage** — Optional `/db/` route for JSON-LD at scale
|
package/docs/lws.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# LWS / Controlled Identifiers (CID v1)
|
|
2
|
+
|
|
3
|
+
JSS pod profiles are aligned with the W3C [Linked Web Storage 1.0 Authentication Suite](https://www.w3.org/news/2026/first-public-working-drafts-for-the-linked-web-storage-lws-1-0-authentication-suite/) (FPWDs published 2026-04-23) and its substrate, [W3C Controlled Identifiers v1.0](https://www.w3.org/TR/cid-1.0/).
|
|
4
|
+
|
|
5
|
+
The work is phased — see [#386](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/386) for the convergence tracker and [#319](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/319) for the FPWD-alignment audit.
|
|
6
|
+
|
|
7
|
+
## Three levels of compatibility
|
|
8
|
+
|
|
9
|
+
| | What it means | Status |
|
|
10
|
+
|---|---|---|
|
|
11
|
+
| **1. Profile shape** | A WebID profile that's structurally a W3C Controlled Identifier document — right `@context`, right vocabulary, parseable as a CID document by any LWS-aware tool | ✅ **Yes** (since v0.0.174, [#388](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/pull/388)) |
|
|
12
|
+
| **2. Profile carries keys** | The CID document actually declares `verificationMethod` entries an LWS verifier can look up by `kid` | ❌ Phase B — a separate "doctor / add-keys" app PATCHes them in after authentication. Out of JSS server scope. |
|
|
13
|
+
| **3. Server accepts LWS-CID JWTs** | An incoming request with an LWS-CID self-signed JWT (`sub`/`iss`/`client_id` triple-equality, `kid` lookup against the WebID's `verificationMethod`, signature check) | ❌ Phase 3 of [#386](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/386) — JSS still only knows OIDC/DPoP, NIP-98, passkey, simple bearer |
|
|
14
|
+
|
|
15
|
+
## What Phase A actually does
|
|
16
|
+
|
|
17
|
+
`src/webid/profile.js` declares the six CID v1 vocabulary terms — `controller`, `verificationMethod`, `authentication`, `assertionMethod`, `publicKeyJwk`, `publicKeyMultibase` — in the profile's `@context` (inline, so JSS's JSON-LD → Turtle conneg layer can expand them without fetching external contexts), and emits a `controller` triple pointing at the WebID itself per CID v1's self-control contract.
|
|
18
|
+
|
|
19
|
+
A freshly-created pod's `profile/card.jsonld` looks like this (excerpt — the existing Solid predicates `oidcIssuer`, `pim:storage`, `ldp:inbox`, `service` etc. are unchanged):
|
|
20
|
+
|
|
21
|
+
```jsonld
|
|
22
|
+
{
|
|
23
|
+
"@context": {
|
|
24
|
+
"foaf": "...", "solid": "...", "cid": "https://www.w3.org/ns/cid/v1#", "lws": "https://www.w3.org/ns/lws#",
|
|
25
|
+
"controller": { "@id": "cid:controller", "@type": "@id" },
|
|
26
|
+
"verificationMethod": { "@id": "cid:verificationMethod", "@container": "@set" },
|
|
27
|
+
"authentication": { "@id": "cid:authentication", "@type": "@id", "@container": "@set" },
|
|
28
|
+
"assertionMethod": { "@id": "cid:assertionMethod", "@type": "@id", "@container": "@set" },
|
|
29
|
+
"publicKeyJwk": { "@id": "cid:publicKeyJwk", "@type": "@json" },
|
|
30
|
+
"publicKeyMultibase": { "@id": "cid:publicKeyMultibase" }
|
|
31
|
+
},
|
|
32
|
+
"@id": "https://alice.example/profile/card.jsonld#me",
|
|
33
|
+
"@type": ["foaf:Person"],
|
|
34
|
+
"controller": "https://alice.example/profile/card.jsonld#me"
|
|
35
|
+
// verificationMethod / authentication / assertionMethod arrays are
|
|
36
|
+
// intentionally absent until Phase B's doctor app PATCHes them in.
|
|
37
|
+
}
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## What Phase B will add
|
|
41
|
+
|
|
42
|
+
A standalone web app (separate repo, no JSS coupling) where the WebID owner authenticates via existing means (OIDC, NIP-98, passkey) and PATCHes their profile with one or more verification methods:
|
|
43
|
+
|
|
44
|
+
```jsonld
|
|
45
|
+
"verificationMethod": [
|
|
46
|
+
{ "id": "...#nostr-1", "type": "Multikey", "controller": "...#me",
|
|
47
|
+
"publicKeyMultibase": "fe70102..." },
|
|
48
|
+
{ "id": "...#did-key-1", "type": "Multikey", "controller": "...#me",
|
|
49
|
+
"publicKeyMultibase": "z6MkpT..." },
|
|
50
|
+
{ "id": "...#passkey-1", "type": "JsonWebKey", "controller": "...#me",
|
|
51
|
+
"publicKeyJwk": { "kty": "EC", "crv": "P-256", "x": "...", "y": "..." } }
|
|
52
|
+
],
|
|
53
|
+
"authentication": ["...#nostr-1", "...#did-key-1", "...#passkey-1"]
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Because Phase A already declared the context terms, this is a pure data-layer PATCH — no `@context` rewrite needed.
|
|
57
|
+
|
|
58
|
+
## What Phase 3 will add (server-side verifier)
|
|
59
|
+
|
|
60
|
+
When an incoming request carries an LWS-CID JWT, JSS will:
|
|
61
|
+
|
|
62
|
+
1. Confirm `sub`/`iss`/`client_id` are the same URI (the caller's WebID)
|
|
63
|
+
2. Dereference the WebID, parse it as a CID document
|
|
64
|
+
3. Look up `kid` in the document's `verificationMethod` array
|
|
65
|
+
4. Confirm the method is in `authentication`
|
|
66
|
+
5. Verify the JWT signature with that public key
|
|
67
|
+
|
|
68
|
+
The verifier joins the existing auth methods (OIDC, NIP-98, etc.) — preference ordering tracked in [#306](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/306).
|
|
69
|
+
|
|
70
|
+
## Spec references
|
|
71
|
+
|
|
72
|
+
- [W3C CID v1.0 — Controlled Identifiers](https://www.w3.org/TR/cid-1.0/)
|
|
73
|
+
- [LWS 1.0 SSI via CID (FPWD 2026-04-23)](https://www.w3.org/TR/2026/WD-lws10-authn-ssi-cid-20260423/)
|
|
74
|
+
- [LWS 1.0 SSI via did:key (FPWD 2026-04-23)](https://www.w3.org/TR/2026/WD-lws10-authn-ssi-did-key-20260423/)
|
|
75
|
+
- [W3C announcement](https://www.w3.org/news/2026/first-public-working-drafts-for-the-linked-web-storage-lws-1-0-authentication-suite/)
|
|
76
|
+
|
|
77
|
+
## Related
|
|
78
|
+
|
|
79
|
+
- [`docs/authentication.md`](authentication.md) — current JSS auth surface (OIDC, NIP-98, passkey, etc.)
|
|
80
|
+
- [`docs/nostr.md`](nostr.md) — Nostr relay + did:nostr resolution
|
|
81
|
+
- [#386](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/386) — convergence tracker
|
|
82
|
+
- [#388](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/pull/388) — Phase A PR
|
|
83
|
+
- [#389](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/389) — `@context` array form support (turtle conneg)
|
|
84
|
+
- [#390](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/390) — `@type:'@json'` literal handling (turtle conneg)
|