@noeldemartin/solid-utils 0.6.0 → 0.6.1-next.bf3a764266964fbc17b114eddb9cdb074e1dbef6

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/dist/testing.js CHANGED
@@ -1,4 +1,4 @@
1
- import { j as l, s as q, t as r } from "./helpers-DGXMj9cx.js";
1
+ import { j as l, s as q, t as r } from "./helpers-Cm2bMMlG.js";
2
2
  export {
3
3
  l as jsonldEquals,
4
4
  q as sparqlEquals,
package/dist/vitest.d.ts CHANGED
@@ -18,7 +18,7 @@ declare const _default: {
18
18
  export declare function installVitestSolidMatchers(): void;
19
19
 
20
20
  declare type JsonLD = Partial<{
21
- '@context': Record<string, unknown>;
21
+ '@context': Record<string, unknown> | string;
22
22
  '@id': string;
23
23
  '@type': null | string | string[];
24
24
  }> & {
@@ -32,6 +32,14 @@ export declare type VitestSolidMatchers<R = unknown> = {
32
32
  export { }
33
33
 
34
34
 
35
+ declare module '@vitest/expect' {
36
+ interface Assertion<T> extends VitestSolidMatchers<T> {
37
+ }
38
+ interface AsymmetricMatchersContaining extends VitestSolidMatchers {
39
+ }
40
+ }
41
+
42
+
35
43
  declare global {
36
44
  namespace Chai {
37
45
  interface Assertion extends ChaiSolidAssertions {
@@ -40,11 +48,3 @@ declare global {
40
48
  }
41
49
  }
42
50
  }
43
-
44
-
45
- declare module '@vitest/expect' {
46
- interface Assertion<T> extends VitestSolidMatchers<T> {
47
- }
48
- interface AsymmetricMatchersContaining extends VitestSolidMatchers {
49
- }
50
- }
package/dist/vitest.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { expect as l } from "vitest";
2
- import { n as r, b as i } from "./io-wCcrq4b9.js";
3
- import { t as o, s as u, j as c } from "./helpers-DGXMj9cx.js";
2
+ import { n as r, b as i } from "./io-DqYt65s_.js";
3
+ import { t as o, s as u, j as c } from "./helpers-Cm2bMMlG.js";
4
4
  function a(e, t) {
5
5
  const s = e.success, n = t.state.utils;
6
6
  return { pass: s, message: s ? () => [e.message, n.matcherHint(t.hint)].join(`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noeldemartin/solid-utils",
3
- "version": "0.6.0",
3
+ "version": "0.6.1-next.bf3a764266964fbc17b114eddb9cdb074e1dbef6",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "exports": {
@@ -35,24 +35,31 @@
35
35
  "test:ci": "vitest --run --reporter verbose",
36
36
  "verify": "noeldemartin-verify"
37
37
  },
38
+ "packageManager": "pnpm@10.27.0",
38
39
  "dependencies": {
39
- "@noeldemartin/utils": "^0.7.0",
40
+ "@noeldemartin/utils": "^0.7.1",
40
41
  "@rdfjs/types": "^2.0.1",
41
42
  "jsonld": "^8.3.3",
42
43
  "md5": "^2.3.0",
43
44
  "n3": "^1.24.2"
44
45
  },
45
46
  "devDependencies": {
47
+ "@arethetypeswrong/cli": "^0.17.4",
46
48
  "@noeldemartin/eslint-config-typescript": "^0.1.2",
47
- "@noeldemartin/scripts": "0.3.0-next.88fb0ff21ba1f9015dab043ded20be9518e51248",
48
- "@noeldemartin/testing": "0.0.0-next.cd489a93da5eaad3f89a4d9ae3734f7ef911b6f6",
49
+ "@noeldemartin/eslint-plugin": "^0.1.0",
50
+ "@noeldemartin/scripts": "next",
51
+ "@noeldemartin/testing": "next",
49
52
  "@tsconfig/node22": "^22.0.0",
50
53
  "@types/chai": "^5.2.0",
51
54
  "@types/jsonld": "^1.5.15",
52
55
  "@types/md5": "^2.3.5",
53
56
  "@types/n3": "^1.24.1",
54
57
  "@types/node": "^22.13.10",
58
+ "@typescript-eslint/eslint-plugin": "^5.6.0",
55
59
  "@vitest/expect": "^3.0.9",
60
+ "eslint": "^8.57.1",
61
+ "prettier-eslint-cli": "^8.0.1",
62
+ "publint": "^0.3.12",
56
63
  "typescript": "^5.8.2",
57
64
  "vite": "^6.2.2",
58
65
  "vite-plugin-dts": "4.5.0",
@@ -10,10 +10,9 @@ describe('Auth helpers', () => {
10
10
 
11
11
  it('reads NSS profiles', async () => {
12
12
  // Arrange
13
- const server = new FakeServer();
14
13
  const webId = 'https://alice.solidcommunity.net/profile/card#me';
15
14
 
16
- server.respondOnce(
15
+ FakeServer.respondOnce(
17
16
  'https://alice.solidcommunity.net/profile/card',
18
17
  FakeResponse.success(
19
18
  `
@@ -41,10 +40,10 @@ describe('Auth helpers', () => {
41
40
  );
42
41
 
43
42
  // Act
44
- const profile = await fetchLoginUserProfile(webId, { fetch: server.fetch });
43
+ const profile = await fetchLoginUserProfile(webId, { fetch: FakeServer.fetch });
45
44
 
46
45
  // Assert
47
- expect(server.getRequests()).toHaveLength(1);
46
+ expect(FakeServer.getRequests()).toHaveLength(1);
48
47
 
49
48
  expect(profile).toEqual({
50
49
  webId,
@@ -60,12 +59,11 @@ describe('Auth helpers', () => {
60
59
 
61
60
  it('reads ESS profiles (public)', async () => {
62
61
  // Arrange
63
- const server = new FakeServer();
64
62
  const webId = 'https://id.inrupt.com/alice';
65
63
 
66
64
  // The first request returns a 303 to `${webId}?lookup`,
67
65
  // but in order to simplify mocking requests we're assuming it doesn't.
68
- server.respondOnce(
66
+ FakeServer.respondOnce(
69
67
  'https://id.inrupt.com/alice',
70
68
  FakeResponse.success(`
71
69
  @prefix foaf: <http://xmlns.com/foaf/0.1/>.
@@ -81,16 +79,16 @@ describe('Auth helpers', () => {
81
79
  foaf:isPrimaryTopicOf <https://storage.inrupt.com/storage-hash/extendedProfile> .
82
80
  `),
83
81
  );
84
- server.respondOnce(
82
+ FakeServer.respondOnce(
85
83
  'https://storage.inrupt.com/storage-hash/extendedProfile',
86
84
  new FakeResponse(undefined, undefined, 401),
87
85
  );
88
86
 
89
87
  // Act
90
- const profile = await fetchLoginUserProfile(webId, { fetch: server.fetch });
88
+ const profile = await fetchLoginUserProfile(webId, { fetch: FakeServer.fetch });
91
89
 
92
90
  // Assert
93
- expect(server.getRequests()).toHaveLength(2);
91
+ expect(FakeServer.getRequests()).toHaveLength(2);
94
92
 
95
93
  expect(profile).toEqual({
96
94
  webId,
@@ -103,12 +101,11 @@ describe('Auth helpers', () => {
103
101
 
104
102
  it('reads ESS profiles (authenticated)', async () => {
105
103
  // Arrange
106
- const server = new FakeServer();
107
104
  const webId = 'https://id.inrupt.com/alice';
108
105
 
109
106
  // The first request returns a 303 to `${webId}?lookup`,
110
107
  // but in order to simplify mocking requests we're assuming it doesn't.
111
- server.respondOnce(
108
+ FakeServer.respondOnce(
112
109
  'https://id.inrupt.com/alice',
113
110
  FakeResponse.success(`
114
111
  @prefix foaf: <http://xmlns.com/foaf/0.1/>.
@@ -124,7 +121,7 @@ describe('Auth helpers', () => {
124
121
  foaf:isPrimaryTopicOf <https://storage.inrupt.com/storage-hash/extendedProfile> .
125
122
  `),
126
123
  );
127
- server.respondOnce(
124
+ FakeServer.respondOnce(
128
125
  'https://storage.inrupt.com/storage-hash/extendedProfile',
129
126
  FakeResponse.success(
130
127
  `
@@ -145,10 +142,10 @@ describe('Auth helpers', () => {
145
142
  );
146
143
 
147
144
  // Act
148
- const profile = await fetchLoginUserProfile(webId, { fetch: server.fetch });
145
+ const profile = await fetchLoginUserProfile(webId, { fetch: FakeServer.fetch });
149
146
 
150
147
  // Assert
151
- expect(server.getRequests()).toHaveLength(2);
148
+ expect(FakeServer.getRequests()).toHaveLength(2);
152
149
 
153
150
  expect(profile).toEqual({
154
151
  webId,
@@ -162,7 +159,6 @@ describe('Auth helpers', () => {
162
159
 
163
160
  it('reads use.id profiles', async () => {
164
161
  // Arrange
165
- const server = new FakeServer();
166
162
  const webId = 'https://use.id/alice';
167
163
  const profileTurtle = `
168
164
  @prefix foaf: <http://xmlns.com/foaf/0.1/>.
@@ -181,17 +177,20 @@ describe('Auth helpers', () => {
181
177
 
182
178
  // The first request returns a 303 to `${webId}/profile`,
183
179
  // but in order to simplify mocking requests we're assuming it doesn't.
184
- server.respondOnce('https://use.id/alice', FakeResponse.success(profileTurtle, { 'WAC-Allow': 'user="read"' }));
185
- server.respondOnce(
180
+ FakeServer.respondOnce(
181
+ 'https://use.id/alice',
182
+ FakeResponse.success(profileTurtle, { 'WAC-Allow': 'user="read"' }),
183
+ );
184
+ FakeServer.respondOnce(
186
185
  'https://use.id/alice/profile',
187
186
  FakeResponse.success(profileTurtle, { 'WAC-Allow': 'user="read"' }),
188
187
  );
189
188
 
190
189
  // Act
191
- const profile = await fetchLoginUserProfile(webId, { fetch: server.fetch });
190
+ const profile = await fetchLoginUserProfile(webId, { fetch: FakeServer.fetch });
192
191
 
193
192
  // Assert
194
- expect(server.getRequests()).toHaveLength(2);
193
+ expect(FakeServer.getRequests()).toHaveLength(2);
195
194
 
196
195
  expect(profile).toEqual({
197
196
  webId,
@@ -204,18 +203,17 @@ describe('Auth helpers', () => {
204
203
 
205
204
  it('throws errors reading required profiles', async () => {
206
205
  // Arrange
207
- const server = new FakeServer();
208
206
  const webId = 'https://pod.example.com/profile/card#me';
209
207
 
210
- server.respondOnce('https://pod.example.com/profile/card', FakeResponse.success('invalid turtle'));
208
+ FakeServer.respondOnce('https://pod.example.com/profile/card', FakeResponse.success('invalid turtle'));
211
209
 
212
210
  // Act
213
- const fetchProfile = fetchLoginUserProfile(webId, { fetch: server.fetch, required: true });
211
+ const fetchProfile = fetchLoginUserProfile(webId, { fetch: FakeServer.fetch, required: true });
214
212
 
215
213
  // Assert
216
214
  await expect(fetchProfile).rejects.toBeInstanceOf(MalformedSolidDocumentError);
217
215
 
218
- expect(server.getRequests()).toHaveLength(1);
216
+ expect(FakeServer.getRequests()).toHaveLength(1);
219
217
  });
220
218
 
221
219
  });
@@ -1,6 +1,13 @@
1
1
  import { describe, expect, it } from 'vitest';
2
2
 
3
- import { jsonldToQuads, normalizeSparql, quadsToJsonLD, sparqlToQuadsSync, turtleToQuadsSync } from './io';
3
+ import {
4
+ jsonldToQuads,
5
+ normalizeJsonLD,
6
+ normalizeSparql,
7
+ quadsToJsonLD,
8
+ sparqlToQuadsSync,
9
+ turtleToQuadsSync,
10
+ } from './io';
4
11
  import type { Quad } from '@rdfjs/types';
5
12
 
6
13
  describe('IO', () => {
@@ -200,6 +207,48 @@ describe('IO', () => {
200
207
  expect(quads[1].object.value).toEqual('John Doe');
201
208
  });
202
209
 
210
+ it('normalizes jsonld', async () => {
211
+ // Arrange
212
+ const json = {
213
+ '@graph': [
214
+ {
215
+ '@context': { '@vocab': 'https://schema.org/' },
216
+ '@id': '#it',
217
+ '@type': 'Movie',
218
+ 'name': 'Spirited Away',
219
+ },
220
+ {
221
+ '@context': { '@vocab': 'https://vocab.noeldemartin.com/crdt/' },
222
+ '@id': '#it-metadata',
223
+ '@type': 'Metadata',
224
+ 'resource': { '@id': '#it' },
225
+ },
226
+ ],
227
+ };
228
+
229
+ const clone = structuredClone(json);
230
+
231
+ // Act
232
+ const normalized = await normalizeJsonLD(json);
233
+
234
+ // Assert
235
+ expect(json).toEqual(clone);
236
+ expect(normalized).toEqual({
237
+ '@graph': [
238
+ {
239
+ '@id': '#it',
240
+ '@type': ['https://schema.org/Movie'],
241
+ 'https://schema.org/name': [{ '@value': 'Spirited Away' }],
242
+ },
243
+ {
244
+ '@id': '#it-metadata',
245
+ '@type': ['https://vocab.noeldemartin.com/crdt/Metadata'],
246
+ 'https://vocab.noeldemartin.com/crdt/resource': [{ '@id': '#it' }],
247
+ },
248
+ ],
249
+ });
250
+ });
251
+
203
252
  it('converts quads to jsonld', async () => {
204
253
  // Arrange
205
254
  const quads = turtleToQuadsSync(`
package/src/helpers/io.ts CHANGED
@@ -123,15 +123,25 @@ function preprocessSubjects(json: JsonLD): void {
123
123
  }
124
124
 
125
125
  json['@id'] = ANONYMOUS_PREFIX + json['@id'];
126
+
127
+ for (const [field, value] of Object.entries(json)) {
128
+ if (typeof value !== 'object' || value === null || !('@id' in value)) {
129
+ continue;
130
+ }
131
+
132
+ preprocessSubjects(json[field] as JsonLD);
133
+ }
126
134
  }
127
135
 
128
136
  function postprocessSubjects(quads: Quad[]): void {
129
137
  for (const quad of quads) {
130
- if (!quad.subject.value.startsWith(ANONYMOUS_PREFIX)) {
131
- continue;
138
+ if (quad.subject.value.startsWith(ANONYMOUS_PREFIX)) {
139
+ quad.subject.value = quad.subject.value.slice(ANONYMOUS_PREFIX_LENGTH);
132
140
  }
133
141
 
134
- quad.subject.value = quad.subject.value.slice(ANONYMOUS_PREFIX_LENGTH);
142
+ if (quad.object.value.startsWith(ANONYMOUS_PREFIX)) {
143
+ quad.object.value = quad.object.value.slice(ANONYMOUS_PREFIX_LENGTH);
144
+ }
135
145
  }
136
146
  }
137
147
 
@@ -202,6 +212,12 @@ export async function jsonldToQuads(json: JsonLD, baseIRI?: string): Promise<Qua
202
212
  return quads;
203
213
  }
204
214
 
215
+ export async function normalizeJsonLD(json: JsonLD, baseIRI?: string): Promise<JsonLD> {
216
+ const quads = await jsonldToQuads(structuredClone(json), baseIRI);
217
+
218
+ return quadsToJsonLD(quads);
219
+ }
220
+
205
221
  export function normalizeSparql(sparql: string): string {
206
222
  const quads = sparqlToQuadsSync(sparql);
207
223
 
@@ -2,7 +2,7 @@ import jsonld from 'jsonld';
2
2
  import type { JsonLdDocument } from 'jsonld';
3
3
 
4
4
  export type JsonLD = Partial<{
5
- '@context': Record<string, unknown>;
5
+ '@context': Record<string, unknown> | string;
6
6
  '@id': string;
7
7
  '@type': null | string | string[];
8
8
  }> & { [k: string]: unknown };
@@ -16,6 +16,7 @@ const knownPrefixes: RDFContext = {
16
16
  schema: 'https://schema.org/',
17
17
  solid: 'http://www.w3.org/ns/solid/terms#',
18
18
  vcard: 'http://www.w3.org/2006/vcard/ns#',
19
+ xsd: 'http://www.w3.org/2001/XMLSchema#',
19
20
  };
20
21
 
21
22
  export function defineIRIPrefix(name: string, value: string): void {
@@ -10,11 +10,13 @@ describe('WAC helpers', () => {
10
10
 
11
11
  it('resolves relative ACL urls', async () => {
12
12
  // Arrange
13
- const server = new FakeServer();
14
13
  const documentUrl = 'https://example.com/alice/movies/my-favorite-movie';
15
14
 
16
- server.respondOnce(documentUrl, FakeResponse.success(undefined, { Link: '<my-favorite-movie.acl>;rel="acl"' }));
17
- server.respondOnce(
15
+ FakeServer.respondOnce(
16
+ documentUrl,
17
+ FakeResponse.success(undefined, { Link: '<my-favorite-movie.acl>;rel="acl"' }),
18
+ );
19
+ FakeServer.respondOnce(
18
20
  `${documentUrl}.acl`,
19
21
  FakeResponse.success(`
20
22
  @prefix acl: <http://www.w3.org/ns/auth/acl#>.
@@ -29,25 +31,27 @@ describe('WAC helpers', () => {
29
31
  );
30
32
 
31
33
  // Act
32
- const { url, effectiveUrl, document } = await fetchSolidDocumentACL(documentUrl, server.fetch);
34
+ const { url, effectiveUrl, document } = await fetchSolidDocumentACL(documentUrl, FakeServer.fetch);
33
35
 
34
36
  // Assert
35
37
  expect(url).toEqual(`${documentUrl}.acl`);
36
38
  expect(effectiveUrl).toEqual(url);
37
39
  expect(document.contains(`${documentUrl}.acl#owner`, 'rdf:type', 'acl:Authorization')).toBe(true);
38
40
 
39
- expect(server.getRequests()).toHaveLength(2);
40
- expect(server.getRequest(documentUrl)?.method).toEqual('HEAD');
41
- expect(server.getRequest(url)).not.toBeNull();
41
+ expect(FakeServer.getRequests()).toHaveLength(2);
42
+ expect(FakeServer.getRequest(documentUrl)?.method).toEqual('HEAD');
43
+ expect(FakeServer.getRequest(url)).not.toBeNull();
42
44
  });
43
45
 
44
46
  it('fails with ACP resources', async () => {
45
47
  // Arrange
46
- const server = new FakeServer();
47
48
  const documentUrl = 'https://example.com/alice/movies/my-favorite-movie';
48
49
 
49
- server.respondOnce(documentUrl, FakeResponse.success(undefined, { Link: '<my-favorite-movie.acl>;rel="acl"' }));
50
- server.respondOnce(
50
+ FakeServer.respondOnce(
51
+ documentUrl,
52
+ FakeResponse.success(undefined, { Link: '<my-favorite-movie.acl>;rel="acl"' }),
53
+ );
54
+ FakeServer.respondOnce(
51
55
  `${documentUrl}.acl`,
52
56
  FakeResponse.success(undefined, {
53
57
  Link: '<http://www.w3.org/ns/solid/acp#AccessControlResource>; rel="type"',
@@ -55,7 +59,7 @@ describe('WAC helpers', () => {
55
59
  );
56
60
 
57
61
  // Act
58
- const promisedDocument = fetchSolidDocumentACL(documentUrl, server.fetch);
62
+ const promisedDocument = fetchSolidDocumentACL(documentUrl, FakeServer.fetch);
59
63
 
60
64
  // Assert
61
65
  await expect(promisedDocument).rejects.toBeInstanceOf(UnsupportedAuthorizationProtocolError);
package/src/index.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './errors';
2
2
  export * from './helpers';
3
3
  export * from './models';
4
+ export * from './rdf';
4
5
  export * from './types';
@@ -0,0 +1,12 @@
1
+ import type { DefaultGraph, Term } from '@rdfjs/types';
2
+
3
+ export default class RDFDefaultGraph implements DefaultGraph {
4
+
5
+ public termType = 'DefaultGraph' as const;
6
+ public value = '' as const;
7
+
8
+ public equals(other: Term | null | undefined): boolean {
9
+ return this.termType === other?.termType && this.value === other.value;
10
+ }
11
+
12
+ }
@@ -0,0 +1,27 @@
1
+ import type { Literal, NamedNode, Term } from '@rdfjs/types';
2
+
3
+ import { DATATYPE_STRING } from './constants';
4
+
5
+ export default class RDFLiteral implements Literal {
6
+
7
+ public termType = 'Literal' as const;
8
+ public value: string;
9
+ public language: string;
10
+ public datatype: NamedNode;
11
+
12
+ constructor(value: string, language: string = '', datatype: NamedNode = DATATYPE_STRING) {
13
+ this.value = value;
14
+ this.language = language;
15
+ this.datatype = datatype;
16
+ }
17
+
18
+ public equals(other: Term | null | undefined): boolean {
19
+ return (
20
+ this.termType === other?.termType &&
21
+ this.value === other.value &&
22
+ this.language === other.language &&
23
+ this.datatype.equals(other.datatype)
24
+ );
25
+ }
26
+
27
+ }
@@ -0,0 +1,16 @@
1
+ import type { NamedNode, Term } from '@rdfjs/types';
2
+
3
+ export default class RDFNamedNode implements NamedNode {
4
+
5
+ public termType = 'NamedNode' as const;
6
+ public value: string;
7
+
8
+ constructor(value: string) {
9
+ this.value = value;
10
+ }
11
+
12
+ public equals(other: Term | null | undefined): boolean {
13
+ return this.termType === other?.termType && this.value === other.value;
14
+ }
15
+
16
+ }
@@ -0,0 +1,32 @@
1
+ import type { Quad, Quad_Graph, Quad_Object, Quad_Predicate, Quad_Subject, Term } from '@rdfjs/types';
2
+
3
+ import RDFDefaultGraph from './RDFDefaultGraph';
4
+ import RDFLiteral from './RDFLiteral';
5
+ import RDFNamedNode from './RDFNamedNode';
6
+
7
+ export default class RDFQuad implements Quad {
8
+
9
+ public termType = 'Quad' as const;
10
+ public value = '' as const;
11
+ public subject: Quad_Subject;
12
+ public predicate: Quad_Predicate;
13
+ public object: Quad_Object;
14
+ public graph: Quad_Graph;
15
+
16
+ constructor(subject: string | Quad_Subject, predicate: string | Quad_Predicate, object: string | Quad_Object) {
17
+ this.subject = typeof subject === 'string' ? new RDFNamedNode(subject) : subject;
18
+ this.predicate = typeof predicate === 'string' ? new RDFNamedNode(predicate) : predicate;
19
+ this.object = typeof object === 'string' ? new RDFLiteral(object) : object;
20
+ this.graph = new RDFDefaultGraph();
21
+ }
22
+
23
+ public equals(other: Term | null | undefined): boolean {
24
+ return (
25
+ this.termType === other?.termType &&
26
+ this.subject.equals(other.subject) &&
27
+ this.predicate.equals(other.predicate) &&
28
+ this.object.equals(other.object)
29
+ );
30
+ }
31
+
32
+ }
@@ -0,0 +1,5 @@
1
+ import { expandIRI } from '@noeldemartin/solid-utils/helpers/vocabs';
2
+
3
+ import RDFNamedNode from './RDFNamedNode';
4
+
5
+ export const DATATYPE_STRING = new RDFNamedNode(expandIRI('xsd:string'));
@@ -0,0 +1,4 @@
1
+ export { default as RDFDefaultGraph } from './RDFDefaultGraph';
2
+ export { default as RDFLiteral } from './RDFLiteral';
3
+ export { default as RDFNamedNode } from './RDFNamedNode';
4
+ export { default as RDFQuad } from './RDFQuad';
@@ -0,0 +1,4 @@
1
+ import { FakeServer } from '@noeldemartin/testing';
2
+ import { beforeEach } from 'vitest';
3
+
4
+ beforeEach(() => FakeServer.reset());
@@ -1 +0,0 @@
1
- {"version":3,"file":"io-wCcrq4b9.js","sources":["../src/errors/MalformedSolidDocumentError.ts","../src/errors/NetworkRequestError.ts","../src/errors/NotFoundError.ts","../src/errors/UnauthorizedError.ts","../src/helpers/vocabs.ts","../src/models/SolidThing.ts","../src/models/SolidStore.ts","../src/models/SolidDocument.ts","../src/helpers/jsonld.ts","../src/helpers/io.ts"],"sourcesContent":["import { JSError } from '@noeldemartin/utils';\n\nfunction errorMessage(\n documentUrl: string | null,\n documentFormat: SolidDocumentFormat,\n malformationDetails: string,\n): string {\n return documentUrl\n ? `Malformed ${documentFormat} document found at ${documentUrl} - ${malformationDetails}`\n : `Malformed ${documentFormat} document - ${malformationDetails}`;\n}\n\nexport enum SolidDocumentFormat {\n Turtle = 'Turtle',\n}\n\nexport default class MalformedSolidDocumentError extends JSError {\n\n public readonly documentUrl: string | null;\n public readonly documentFormat: SolidDocumentFormat;\n public readonly malformationDetails: string;\n\n constructor(documentUrl: string | null, documentFormat: SolidDocumentFormat, malformationDetails: string) {\n super(errorMessage(documentUrl, documentFormat, malformationDetails));\n\n this.documentUrl = documentUrl;\n this.documentFormat = documentFormat;\n this.malformationDetails = malformationDetails;\n }\n\n}\n","import { JSError } from '@noeldemartin/utils';\nimport type { JSErrorOptions } from '@noeldemartin/utils';\n\nexport default class NetworkRequestError extends JSError {\n\n public readonly url: string;\n\n constructor(url: string, options?: JSErrorOptions) {\n super(`Request failed trying to fetch ${url}`, options);\n\n this.url = url;\n }\n\n}\n","import { JSError } from '@noeldemartin/utils';\n\nexport default class NotFoundError extends JSError {\n\n public readonly url: string;\n\n constructor(url: string) {\n super(`Document with '${url}' url not found`);\n\n this.url = url;\n }\n\n}\n","import { JSError } from '@noeldemartin/utils';\n\nfunction errorMessage(url: string, responseStatus?: number): string {\n const typeInfo = responseStatus === 403 ? ' (Forbidden)' : '';\n\n return `Unauthorized${typeInfo}: ${url}`;\n}\n\nexport default class UnauthorizedError extends JSError {\n\n public readonly url: string;\n public readonly responseStatus?: number;\n\n constructor(url: string, responseStatus?: number) {\n super(errorMessage(url, responseStatus));\n\n this.url = url;\n this.responseStatus = responseStatus;\n }\n\n public get forbidden(): boolean | undefined {\n return typeof this.responseStatus !== 'undefined' ? this.responseStatus === 403 : undefined;\n }\n\n}\n","export type RDFContext = Record<string, string>;\n\nexport interface ExpandIRIOptions {\n defaultPrefix: string;\n extraContext: RDFContext;\n}\n\nconst knownPrefixes: RDFContext = {\n acl: 'http://www.w3.org/ns/auth/acl#',\n foaf: 'http://xmlns.com/foaf/0.1/',\n ldp: 'http://www.w3.org/ns/ldp#',\n pim: 'http://www.w3.org/ns/pim/space#',\n purl: 'http://purl.org/dc/terms/',\n rdf: 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',\n rdfs: 'http://www.w3.org/2000/01/rdf-schema#',\n schema: 'https://schema.org/',\n solid: 'http://www.w3.org/ns/solid/terms#',\n vcard: 'http://www.w3.org/2006/vcard/ns#',\n};\n\nexport function defineIRIPrefix(name: string, value: string): void {\n knownPrefixes[name] = value;\n}\n\nexport function expandIRI(iri: string, options: Partial<ExpandIRIOptions> = {}): string {\n if (iri.startsWith('http')) return iri;\n\n const [prefix, name] = iri.split(':');\n\n if (prefix && name) {\n const expandedPrefix = knownPrefixes[prefix] ?? options.extraContext?.[prefix] ?? null;\n\n if (!expandedPrefix) throw new Error(`Can't expand IRI with unknown prefix: '${iri}'`);\n\n return expandedPrefix + name;\n }\n\n if (!options.defaultPrefix) throw new Error(`Can't expand IRI without a default prefix: '${iri}'`);\n\n return options.defaultPrefix + prefix;\n}\n","import type { Quad } from '@rdfjs/types';\n\nimport { expandIRI } from '@noeldemartin/solid-utils/helpers/vocabs';\n\nexport default class SolidThing {\n\n public readonly url: string;\n private quads: Quad[];\n\n public constructor(url: string, quads: Quad[]) {\n this.url = url;\n this.quads = quads;\n }\n\n public value(property: string): string | undefined {\n return this.quads.find((quad) => quad.predicate.value === expandIRI(property))?.object.value;\n }\n\n public values(property: string): string[] {\n return this.quads\n .filter((quad) => quad.predicate.value === expandIRI(property))\n .map((quad) => quad.object.value);\n }\n\n}\n","import type { BlankNode, Literal, NamedNode, Quad, Variable } from '@rdfjs/types';\n\nimport { expandIRI } from '@noeldemartin/solid-utils/helpers/vocabs';\n\nimport SolidThing from './SolidThing';\n\nexport type Term = NamedNode | Literal | BlankNode | Quad | Variable;\n\nexport default class SolidStore {\n\n private quads: Quad[];\n\n public constructor(quads: Quad[] = []) {\n this.quads = quads;\n }\n\n public isEmpty(): boolean {\n return this.statements.length === 0;\n }\n\n public getQuads(): Quad[] {\n return this.quads.slice(0);\n }\n\n public addQuads(quads: Quad[]): void {\n this.quads.push(...quads);\n }\n\n public statements(subject?: Term | string, predicate?: Term | string, object?: Term | string): Quad[] {\n return this.quads.filter(\n (statement) =>\n (!object || this.termMatches(statement.object, object)) &&\n (!subject || this.termMatches(statement.subject, subject)) &&\n (!predicate || this.termMatches(statement.predicate, predicate)),\n );\n }\n\n public statement(subject?: Term | string, predicate?: Term | string, object?: Term | string): Quad | null {\n const statement = this.quads.find(\n (_statement) =>\n (!object || this.termMatches(_statement.object, object)) &&\n (!subject || this.termMatches(_statement.subject, subject)) &&\n (!predicate || this.termMatches(_statement.predicate, predicate)),\n );\n\n return statement ?? null;\n }\n\n public contains(subject: string, predicate?: string, object?: string): boolean {\n return this.statement(subject, predicate, object) !== null;\n }\n\n public getThing(subject: string): SolidThing {\n const statements = this.statements(subject);\n\n return new SolidThing(subject, statements);\n }\n\n protected expandIRI(iri: string): string {\n return expandIRI(iri);\n }\n\n protected termMatches(term: Term, value: Term | string): boolean {\n if (typeof value === 'string') {\n return this.expandIRI(value) === term.value;\n }\n\n return term.termType === term.termType && term.value === value.value;\n }\n\n}\n","import { arrayFilter, parseDate, stringMatch } from '@noeldemartin/utils';\nimport type { Quad } from '@rdfjs/types';\n\nimport { expandIRI } from '@noeldemartin/solid-utils/helpers/vocabs';\n\nimport SolidStore from './SolidStore';\n\nexport enum SolidDocumentPermission {\n Read = 'read',\n Write = 'write',\n Append = 'append',\n Control = 'control',\n}\n\nexport default class SolidDocument extends SolidStore {\n\n public readonly url: string;\n public readonly headers: Headers;\n\n public constructor(url: string, quads: Quad[], headers: Headers) {\n super(quads);\n\n this.url = url;\n this.headers = headers;\n }\n\n public isACPResource(): boolean {\n return !!this.headers\n .get('Link')\n ?.match(/<http:\\/\\/www\\.w3\\.org\\/ns\\/solid\\/acp#AccessControlResource>;[^,]+rel=\"type\"/);\n }\n\n public isPersonalProfile(): boolean {\n return !!this.statement(this.url, expandIRI('rdf:type'), expandIRI('foaf:PersonalProfileDocument'));\n }\n\n public isStorage(): boolean {\n return !!this.headers.get('Link')?.match(/<http:\\/\\/www\\.w3\\.org\\/ns\\/pim\\/space#Storage>;[^,]+rel=\"type\"/);\n }\n\n public isUserWritable(): boolean {\n return this.getUserPermissions().includes(SolidDocumentPermission.Write);\n }\n\n public getUserPermissions(): SolidDocumentPermission[] {\n return this.getPermissionsFromWAC('user');\n }\n\n public getPublicPermissions(): SolidDocumentPermission[] {\n return this.getPermissionsFromWAC('public');\n }\n\n public getLastModified(): Date | null {\n return (\n parseDate(this.headers.get('last-modified')) ??\n parseDate(this.statement(this.url, 'purl:modified')?.object.value) ??\n this.getLatestDocumentDate() ??\n null\n );\n }\n\n protected expandIRI(iri: string): string {\n return expandIRI(iri, { defaultPrefix: this.url });\n }\n\n private getLatestDocumentDate(): Date | null {\n const dates = [...this.statements(undefined, 'purl:modified'), ...this.statements(undefined, 'purl:created')]\n .map((statement) => parseDate(statement.object.value))\n .filter((date): date is Date => date !== null);\n\n return dates.length > 0 ? dates.reduce((a, b) => (a > b ? a : b)) : null;\n }\n\n private getPermissionsFromWAC(type: string): SolidDocumentPermission[] {\n const wacAllow = this.headers.get('WAC-Allow') ?? '';\n const publicModes = stringMatch<2>(wacAllow, new RegExp(`${type}=\"([^\"]+)\"`))?.[1] ?? '';\n\n return arrayFilter([\n publicModes.includes('read') && SolidDocumentPermission.Read,\n publicModes.includes('write') && SolidDocumentPermission.Write,\n publicModes.includes('append') && SolidDocumentPermission.Append,\n publicModes.includes('control') && SolidDocumentPermission.Control,\n ]);\n }\n\n}\n","import jsonld from 'jsonld';\nimport type { JsonLdDocument } from 'jsonld';\n\nexport type JsonLD = Partial<{\n '@context': Record<string, unknown>;\n '@id': string;\n '@type': null | string | string[];\n}> & { [k: string]: unknown };\n\nexport type JsonLDResource = Omit<JsonLD, '@id'> & { '@id': string };\nexport type JsonLDGraph = {\n '@context'?: Record<string, unknown>;\n '@graph': JsonLDResource[];\n};\n\nexport async function compactJsonLDGraph(json: JsonLDGraph): Promise<JsonLDGraph> {\n const compactedJsonLD = await jsonld.compact(json as JsonLdDocument, {});\n\n if ('@graph' in compactedJsonLD) {\n return compactedJsonLD as JsonLDGraph;\n }\n\n if ('@id' in compactedJsonLD) {\n return { '@graph': [compactedJsonLD] } as JsonLDGraph;\n }\n\n return { '@graph': [] };\n}\n\nexport function isJsonLDGraph(json: JsonLD): json is JsonLDGraph {\n return '@graph' in json;\n}\n","import jsonld from 'jsonld';\nimport md5 from 'md5';\nimport { arr, arrayFilter, arrayReplace, objectWithoutEmpty, stringMatchAll, tap } from '@noeldemartin/utils';\nimport { BlankNode as N3BlankNode, Quad as N3Quad, Parser, Writer } from 'n3';\nimport type { JsonLdDocument } from 'jsonld';\nimport type { Quad } from '@rdfjs/types';\nimport type { Term } from 'n3';\n\nimport SolidDocument from '@noeldemartin/solid-utils/models/SolidDocument';\n\n// eslint-disable-next-line max-len\nimport MalformedSolidDocumentError, { SolidDocumentFormat } from '@noeldemartin/solid-utils/errors/MalformedSolidDocumentError';\nimport NetworkRequestError from '@noeldemartin/solid-utils/errors/NetworkRequestError';\nimport NotFoundError from '@noeldemartin/solid-utils/errors/NotFoundError';\nimport UnauthorizedError from '@noeldemartin/solid-utils/errors/UnauthorizedError';\nimport { isJsonLDGraph } from '@noeldemartin/solid-utils/helpers/jsonld';\nimport type { JsonLD, JsonLDGraph, JsonLDResource } from '@noeldemartin/solid-utils/helpers/jsonld';\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport declare type AnyFetch = (input: any, options?: any) => Promise<Response>;\nexport declare type TypedFetch = (input: RequestInfo, options?: RequestInit) => Promise<Response>;\nexport declare type Fetch = TypedFetch | AnyFetch;\n\nconst ANONYMOUS_PREFIX = 'anonymous://';\nconst ANONYMOUS_PREFIX_LENGTH = ANONYMOUS_PREFIX.length;\n\nasync function fetchRawSolidDocument(\n url: string,\n options?: FetchSolidDocumentOptions,\n): Promise<{ body: string; headers: Headers }> {\n const requestOptions: RequestInit = {\n headers: { Accept: 'text/turtle' },\n };\n\n if (options?.cache) {\n requestOptions.cache = options.cache;\n }\n\n try {\n const fetch = options?.fetch ?? window.fetch;\n const response = await fetch(url, requestOptions);\n\n if (response.status === 404) throw new NotFoundError(url);\n\n if ([401, 403].includes(response.status)) throw new UnauthorizedError(url, response.status);\n\n const body = await response.text();\n\n return {\n body,\n headers: response.headers,\n };\n } catch (error) {\n if (error instanceof UnauthorizedError) throw error;\n\n if (error instanceof NotFoundError) throw error;\n\n throw new NetworkRequestError(url, { cause: error });\n }\n}\n\nfunction normalizeBlankNodes(quads: Quad[]): Quad[] {\n const normalizedQuads = quads.slice(0);\n const quadsIndexes: Record<string, Set<number>> = {};\n const blankNodeIds = arr(quads)\n .flatMap((quad, index) =>\n tap(\n arrayFilter([\n quad.object.termType === 'BlankNode' ? quad.object.value : null,\n quad.subject.termType === 'BlankNode' ? quad.subject.value : null,\n ]),\n (ids) => ids.forEach((id) => (quadsIndexes[id] ??= new Set()).add(index)),\n ))\n .filter()\n .unique();\n\n for (const originalId of blankNodeIds) {\n const quadIndexes = quadsIndexes[originalId] as Set<number>;\n const normalizedId = md5(\n arr(quadIndexes)\n .map((index) => quads[index] as Quad)\n .filter(({ subject: { termType, value } }) => termType === 'BlankNode' && value === originalId)\n .map(({ predicate, object }) =>\n object.termType === 'BlankNode' ? predicate.value : predicate.value + object.value)\n .sorted()\n .join(),\n );\n\n for (const index of quadIndexes) {\n const quad = normalizedQuads[index] as Quad;\n const terms: Record<string, Term> = {\n subject: quad.subject as Term,\n object: quad.object as Term,\n };\n\n for (const [termName, termValue] of Object.entries(terms)) {\n if (termValue.termType !== 'BlankNode' || termValue.value !== originalId) continue;\n\n terms[termName] = new N3BlankNode(normalizedId) as Term;\n }\n\n arrayReplace(\n normalizedQuads,\n quad,\n new N3Quad(terms.subject as Term, quad.predicate as Term, terms.object as Term),\n );\n }\n }\n\n return normalizedQuads;\n}\n\nfunction normalizeQuads(quads: Quad[]): string {\n return quads\n .map((quad) => ' ' + quadToTurtle(quad))\n .sort()\n .join('\\n');\n}\n\nfunction preprocessSubjects(json: JsonLD): void {\n if (!json['@id']?.startsWith('#')) {\n return;\n }\n\n json['@id'] = ANONYMOUS_PREFIX + json['@id'];\n}\n\nfunction postprocessSubjects(quads: Quad[]): void {\n for (const quad of quads) {\n if (!quad.subject.value.startsWith(ANONYMOUS_PREFIX)) {\n continue;\n }\n\n quad.subject.value = quad.subject.value.slice(ANONYMOUS_PREFIX_LENGTH);\n }\n}\n\nexport interface FetchSolidDocumentOptions {\n fetch?: Fetch;\n cache?: RequestCache;\n}\n\nexport interface ParsingOptions {\n baseIRI: string;\n normalizeBlankNodes: boolean;\n}\n\nexport interface RDFGraphData {\n quads: Quad[];\n containsRelativeIRIs: boolean;\n}\n\nexport async function createSolidDocument(url: string, body: string, fetch?: Fetch): Promise<SolidDocument> {\n fetch = fetch ?? window.fetch.bind(window);\n\n const statements = await turtleToQuads(body);\n\n await fetch(url, {\n method: 'PUT',\n headers: { 'Content-Type': 'text/turtle' },\n body,\n });\n\n return new SolidDocument(url, statements, new Headers({}));\n}\n\nexport async function fetchSolidDocument(url: string, options?: FetchSolidDocumentOptions): Promise<SolidDocument> {\n const { body: data, headers } = await fetchRawSolidDocument(url, options);\n const statements = await turtleToQuads(data, { baseIRI: url });\n\n return new SolidDocument(url, statements, headers);\n}\n\nexport async function fetchSolidDocumentIfFound(\n url: string,\n options?: FetchSolidDocumentOptions,\n): Promise<SolidDocument | null> {\n try {\n const document = await fetchSolidDocument(url, options);\n\n return document;\n } catch (error) {\n if (!(error instanceof NotFoundError)) throw error;\n\n return null;\n }\n}\n\nexport async function jsonldToQuads(json: JsonLD, baseIRI?: string): Promise<Quad[]> {\n if (isJsonLDGraph(json)) {\n const graphQuads = await Promise.all(json['@graph'].map((resource) => jsonldToQuads(resource, baseIRI)));\n\n return graphQuads.flat();\n }\n\n preprocessSubjects(json);\n\n const quads = await (jsonld.toRDF(json as JsonLdDocument, { base: baseIRI }) as Promise<Quad[]>);\n\n postprocessSubjects(quads);\n\n return quads;\n}\n\nexport function normalizeSparql(sparql: string): string {\n const quads = sparqlToQuadsSync(sparql);\n\n return Object.entries(quads)\n .reduce((normalizedOperations, [operation, _quads]) => {\n const normalizedQuads = normalizeQuads(_quads);\n\n return normalizedOperations.concat(`${operation.toUpperCase()} DATA {\\n${normalizedQuads}\\n}`);\n }, [] as string[])\n .join(' ;\\n');\n}\n\nexport function normalizeTurtle(sparql: string): string {\n const quads = turtleToQuadsSync(sparql);\n\n return normalizeQuads(quads);\n}\n\nexport function parseTurtle(turtle: string, options: Partial<ParsingOptions> = {}): Promise<RDFGraphData> {\n const parserOptions = objectWithoutEmpty({ baseIRI: options.baseIRI });\n const parser = new Parser(parserOptions);\n const data: RDFGraphData = {\n quads: [],\n containsRelativeIRIs: false,\n };\n\n return new Promise((resolve, reject) => {\n const resolveRelativeIRI = parser._resolveRelativeIRI;\n\n parser._resolveRelativeIRI = (...args) => {\n data.containsRelativeIRIs = true;\n parser._resolveRelativeIRI = resolveRelativeIRI;\n\n return parser._resolveRelativeIRI(...args);\n };\n\n parser.parse(turtle, (error, quad) => {\n if (error) {\n reject(\n new MalformedSolidDocumentError(options.baseIRI ?? null, SolidDocumentFormat.Turtle, error.message),\n );\n\n return;\n }\n\n if (!quad) {\n // data.quads = options.normalizeBlankNodes\n // ? normalizeBlankNodes(data.quads)\n // : data.quads;\n\n resolve(data);\n\n return;\n }\n\n data.quads.push(quad);\n });\n });\n}\n\nexport async function quadsToJsonLD(quads: Quad[]): Promise<JsonLDGraph> {\n const graph = await jsonld.fromRDF(quads);\n\n return {\n '@graph': graph as JsonLDResource[],\n };\n}\n\nexport function quadsToTurtle(quads: Quad[]): string {\n const writer = new Writer();\n\n return writer.quadsToString(quads);\n}\n\nexport function quadToTurtle(quad: Quad): string {\n const writer = new Writer();\n\n return writer.quadsToString([quad]).slice(0, -1);\n}\n\nexport async function solidDocumentExists(url: string, options?: FetchSolidDocumentOptions): Promise<boolean> {\n try {\n const document = await fetchSolidDocument(url, options);\n\n return !document.isEmpty();\n } catch (error) {\n return false;\n }\n}\n\nexport async function sparqlToQuads(\n sparql: string,\n options: Partial<ParsingOptions> = {},\n): Promise<Record<string, Quad[]>> {\n const operations = stringMatchAll<3>(sparql, /(\\w+) DATA {([^}]+)}/g);\n const quads: Record<string, Quad[]> = {};\n\n await Promise.all(\n [...operations].map(async (operation) => {\n const operationName = operation[1].toLowerCase();\n const operationBody = operation[2];\n\n quads[operationName] = await turtleToQuads(operationBody, options);\n }),\n );\n\n return quads;\n}\n\nexport function sparqlToQuadsSync(sparql: string, options: Partial<ParsingOptions> = {}): Record<string, Quad[]> {\n const operations = stringMatchAll<3>(sparql, /(\\w+) DATA {([^}]+)}/g);\n const quads: Record<string, Quad[]> = {};\n\n for (const operation of operations) {\n const operationName = operation[1].toLowerCase();\n const operationBody = operation[2];\n\n quads[operationName] = turtleToQuadsSync(operationBody, options);\n }\n\n return quads;\n}\n\nexport async function turtleToQuads(turtle: string, options: Partial<ParsingOptions> = {}): Promise<Quad[]> {\n const { quads } = await parseTurtle(turtle, options);\n\n return quads;\n}\n\nexport function turtleToQuadsSync(turtle: string, options: Partial<ParsingOptions> = {}): Quad[] {\n const parserOptions = objectWithoutEmpty({ baseIRI: options.baseIRI });\n const parser = new Parser(parserOptions);\n\n try {\n const quads = parser.parse(turtle);\n\n return options.normalizeBlankNodes ? normalizeBlankNodes(quads) : quads;\n } catch (error) {\n throw new MalformedSolidDocumentError(\n options.baseIRI ?? null,\n SolidDocumentFormat.Turtle,\n (error as Error).message ?? '',\n );\n }\n}\n\nexport async function updateSolidDocument(url: string, body: string, fetch?: Fetch): Promise<void> {\n fetch = fetch ?? window.fetch.bind(window);\n\n await fetch(url, {\n method: 'PATCH',\n headers: { 'Content-Type': 'application/sparql-update' },\n body,\n });\n}\n"],"names":["errorMessage","documentUrl","documentFormat","malformationDetails","SolidDocumentFormat","MalformedSolidDocumentError","JSError","__publicField","NetworkRequestError","url","options","NotFoundError","responseStatus","UnauthorizedError","knownPrefixes","defineIRIPrefix","name","value","expandIRI","iri","prefix","expandedPrefix","_a","SolidThing","quads","property","quad","SolidStore","subject","predicate","object","statement","_statement","statements","term","SolidDocumentPermission","SolidDocument","headers","parseDate","dates","date","a","b","type","wacAllow","publicModes","stringMatch","arrayFilter","compactJsonLDGraph","json","compactedJsonLD","jsonld","isJsonLDGraph","ANONYMOUS_PREFIX","ANONYMOUS_PREFIX_LENGTH","fetchRawSolidDocument","requestOptions","response","error","normalizeBlankNodes","normalizedQuads","quadsIndexes","blankNodeIds","arr","index","tap","ids","id","originalId","quadIndexes","normalizedId","md5","termType","terms","termName","termValue","N3BlankNode","arrayReplace","N3Quad","normalizeQuads","quadToTurtle","preprocessSubjects","postprocessSubjects","createSolidDocument","body","fetch","turtleToQuads","fetchSolidDocument","data","fetchSolidDocumentIfFound","jsonldToQuads","baseIRI","resource","normalizeSparql","sparql","sparqlToQuadsSync","normalizedOperations","operation","_quads","normalizeTurtle","turtleToQuadsSync","parseTurtle","turtle","parserOptions","objectWithoutEmpty","parser","Parser","resolve","reject","resolveRelativeIRI","args","quadsToJsonLD","quadsToTurtle","Writer","solidDocumentExists","sparqlToQuads","operations","stringMatchAll","operationName","operationBody","updateSolidDocument"],"mappings":"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"}