@noeldemartin/solid-utils 0.6.0-next.cccdc9c7e033588e2df9d1887ceae49788344d84 → 0.6.0-next.cfba421315c47e4aa5a72990714376d9dcd1ffff
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/io-CMHtz5bu.js +401 -0
- package/dist/io-CMHtz5bu.js.map +1 -0
- package/dist/noeldemartin-solid-utils.d.ts +51 -3
- package/dist/noeldemartin-solid-utils.js +166 -532
- package/dist/noeldemartin-solid-utils.js.map +1 -1
- package/dist/testing.d.ts +75 -0
- package/dist/testing.js +176 -0
- package/dist/testing.js.map +1 -0
- package/package.json +14 -9
- package/src/errors/UnauthorizedError.ts +1 -3
- package/src/errors/UnsuccessfulNetworkRequestError.ts +2 -2
- package/src/helpers/identifiers.ts +13 -16
- package/src/helpers/io.ts +10 -10
- package/src/helpers/jsonld.ts +5 -5
- package/src/helpers/vocabs.ts +3 -6
- package/src/index.ts +1 -0
- package/src/testing/chai/assertions.ts +35 -0
- package/src/testing/chai/index.ts +19 -0
- package/src/testing/helpers.ts +187 -0
- package/src/testing/hepers.test.ts +329 -0
- package/src/testing/index.ts +3 -0
- package/src/testing/types/index.ts +2 -0
- package/src/testing/vitest/index.ts +20 -0
- package/src/testing/vitest/matchers.ts +68 -0
- package/src/types/n3.d.ts +0 -2
|
@@ -0,0 +1,401 @@
|
|
|
1
|
+
var E = Object.defineProperty;
|
|
2
|
+
var k = (r, t, e) => t in r ? E(r, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : r[t] = e;
|
|
3
|
+
var i = (r, t, e) => k(r, typeof t != "symbol" ? t + "" : t, e);
|
|
4
|
+
import w from "jsonld";
|
|
5
|
+
import $ from "md5";
|
|
6
|
+
import { JSError as h, parseDate as f, stringMatch as Q, arrayFilter as v, objectWithoutEmpty as T, stringMatchAll as x, arr as b, tap as L, arrayReplace as F } from "@noeldemartin/utils";
|
|
7
|
+
import { Parser as q, Writer as S, BlankNode as W, Quad as z } from "n3";
|
|
8
|
+
function B(r, t, e) {
|
|
9
|
+
return r ? `Malformed ${t} document found at ${r} - ${e}` : `Malformed ${t} document - ${e}`;
|
|
10
|
+
}
|
|
11
|
+
var m = /* @__PURE__ */ ((r) => (r.Turtle = "Turtle", r))(m || {});
|
|
12
|
+
class P extends h {
|
|
13
|
+
constructor(e, s, n) {
|
|
14
|
+
super(B(e, s, n));
|
|
15
|
+
i(this, "documentUrl");
|
|
16
|
+
i(this, "documentFormat");
|
|
17
|
+
i(this, "malformationDetails");
|
|
18
|
+
this.documentUrl = e, this.documentFormat = s, this.malformationDetails = n;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
class U extends h {
|
|
22
|
+
constructor(e, s) {
|
|
23
|
+
super(`Request failed trying to fetch ${e}`, s);
|
|
24
|
+
i(this, "url");
|
|
25
|
+
this.url = e;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
class p extends h {
|
|
29
|
+
constructor(e) {
|
|
30
|
+
super(`Document with '${e}' url not found`);
|
|
31
|
+
i(this, "url");
|
|
32
|
+
this.url = e;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
function O(r, t) {
|
|
36
|
+
return `Unauthorized${t === 403 ? " (Forbidden)" : ""}: ${r}`;
|
|
37
|
+
}
|
|
38
|
+
class R extends h {
|
|
39
|
+
constructor(e, s) {
|
|
40
|
+
super(O(e, s));
|
|
41
|
+
i(this, "url");
|
|
42
|
+
i(this, "responseStatus");
|
|
43
|
+
this.url = e, this.responseStatus = s;
|
|
44
|
+
}
|
|
45
|
+
get forbidden() {
|
|
46
|
+
return typeof this.responseStatus < "u" ? this.responseStatus === 403 : void 0;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
const j = {
|
|
50
|
+
acl: "http://www.w3.org/ns/auth/acl#",
|
|
51
|
+
foaf: "http://xmlns.com/foaf/0.1/",
|
|
52
|
+
ldp: "http://www.w3.org/ns/ldp#",
|
|
53
|
+
pim: "http://www.w3.org/ns/pim/space#",
|
|
54
|
+
purl: "http://purl.org/dc/terms/",
|
|
55
|
+
rdf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
56
|
+
rdfs: "http://www.w3.org/2000/01/rdf-schema#",
|
|
57
|
+
schema: "https://schema.org/",
|
|
58
|
+
solid: "http://www.w3.org/ns/solid/terms#",
|
|
59
|
+
vcard: "http://www.w3.org/2006/vcard/ns#"
|
|
60
|
+
};
|
|
61
|
+
function ct(r, t) {
|
|
62
|
+
j[r] = t;
|
|
63
|
+
}
|
|
64
|
+
function l(r, t = {}) {
|
|
65
|
+
var n;
|
|
66
|
+
if (r.startsWith("http")) return r;
|
|
67
|
+
const [e, s] = r.split(":");
|
|
68
|
+
if (e && s) {
|
|
69
|
+
const a = j[e] ?? ((n = t.extraContext) == null ? void 0 : n[e]) ?? null;
|
|
70
|
+
if (!a) throw new Error(`Can't expand IRI with unknown prefix: '${r}'`);
|
|
71
|
+
return a + s;
|
|
72
|
+
}
|
|
73
|
+
if (!t.defaultPrefix) throw new Error(`Can't expand IRI without a default prefix: '${r}'`);
|
|
74
|
+
return t.defaultPrefix + e;
|
|
75
|
+
}
|
|
76
|
+
class J {
|
|
77
|
+
constructor(t, e) {
|
|
78
|
+
i(this, "url");
|
|
79
|
+
i(this, "quads");
|
|
80
|
+
this.url = t, this.quads = e;
|
|
81
|
+
}
|
|
82
|
+
value(t) {
|
|
83
|
+
var e;
|
|
84
|
+
return (e = this.quads.find((s) => s.predicate.value === l(t))) == null ? void 0 : e.object.value;
|
|
85
|
+
}
|
|
86
|
+
values(t) {
|
|
87
|
+
return this.quads.filter((e) => e.predicate.value === l(t)).map((e) => e.object.value);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
class _ {
|
|
91
|
+
constructor(t = []) {
|
|
92
|
+
i(this, "quads");
|
|
93
|
+
this.quads = t;
|
|
94
|
+
}
|
|
95
|
+
isEmpty() {
|
|
96
|
+
return this.statements.length === 0;
|
|
97
|
+
}
|
|
98
|
+
getQuads() {
|
|
99
|
+
return this.quads.slice(0);
|
|
100
|
+
}
|
|
101
|
+
addQuads(t) {
|
|
102
|
+
this.quads.push(...t);
|
|
103
|
+
}
|
|
104
|
+
statements(t, e, s) {
|
|
105
|
+
return this.quads.filter(
|
|
106
|
+
(n) => (!s || this.termMatches(n.object, s)) && (!t || this.termMatches(n.subject, t)) && (!e || this.termMatches(n.predicate, e))
|
|
107
|
+
);
|
|
108
|
+
}
|
|
109
|
+
statement(t, e, s) {
|
|
110
|
+
return this.quads.find(
|
|
111
|
+
(a) => (!s || this.termMatches(a.object, s)) && (!t || this.termMatches(a.subject, t)) && (!e || this.termMatches(a.predicate, e))
|
|
112
|
+
) ?? null;
|
|
113
|
+
}
|
|
114
|
+
contains(t, e, s) {
|
|
115
|
+
return this.statement(t, e, s) !== null;
|
|
116
|
+
}
|
|
117
|
+
getThing(t) {
|
|
118
|
+
const e = this.statements(t);
|
|
119
|
+
return new J(t, e);
|
|
120
|
+
}
|
|
121
|
+
expandIRI(t) {
|
|
122
|
+
return l(t);
|
|
123
|
+
}
|
|
124
|
+
termMatches(t, e) {
|
|
125
|
+
return typeof e == "string" ? this.expandIRI(e) === t.value : t.termType === t.termType && t.value === e.value;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
var G = /* @__PURE__ */ ((r) => (r.Read = "read", r.Write = "write", r.Append = "append", r.Control = "control", r))(G || {});
|
|
129
|
+
class D extends _ {
|
|
130
|
+
constructor(e, s, n) {
|
|
131
|
+
super(s);
|
|
132
|
+
i(this, "url");
|
|
133
|
+
i(this, "headers");
|
|
134
|
+
this.url = e, this.headers = n;
|
|
135
|
+
}
|
|
136
|
+
isACPResource() {
|
|
137
|
+
var e;
|
|
138
|
+
return !!((e = this.headers.get("Link")) != null && e.match(/<http:\/\/www\.w3\.org\/ns\/solid\/acp#AccessControlResource>;[^,]+rel="type"/));
|
|
139
|
+
}
|
|
140
|
+
isPersonalProfile() {
|
|
141
|
+
return !!this.statement(this.url, l("rdf:type"), l("foaf:PersonalProfileDocument"));
|
|
142
|
+
}
|
|
143
|
+
isStorage() {
|
|
144
|
+
var e;
|
|
145
|
+
return !!((e = this.headers.get("Link")) != null && e.match(/<http:\/\/www\.w3\.org\/ns\/pim\/space#Storage>;[^,]+rel="type"/));
|
|
146
|
+
}
|
|
147
|
+
isUserWritable() {
|
|
148
|
+
return this.getUserPermissions().includes(
|
|
149
|
+
"write"
|
|
150
|
+
/* Write */
|
|
151
|
+
);
|
|
152
|
+
}
|
|
153
|
+
getUserPermissions() {
|
|
154
|
+
return this.getPermissionsFromWAC("user");
|
|
155
|
+
}
|
|
156
|
+
getPublicPermissions() {
|
|
157
|
+
return this.getPermissionsFromWAC("public");
|
|
158
|
+
}
|
|
159
|
+
getLastModified() {
|
|
160
|
+
var e;
|
|
161
|
+
return f(this.headers.get("last-modified")) ?? f((e = this.statement(this.url, "purl:modified")) == null ? void 0 : e.object.value) ?? this.getLatestDocumentDate() ?? null;
|
|
162
|
+
}
|
|
163
|
+
expandIRI(e) {
|
|
164
|
+
return l(e, { defaultPrefix: this.url });
|
|
165
|
+
}
|
|
166
|
+
getLatestDocumentDate() {
|
|
167
|
+
const e = [...this.statements(void 0, "purl:modified"), ...this.statements(void 0, "purl:created")].map((s) => f(s.object.value)).filter((s) => s !== null);
|
|
168
|
+
return e.length > 0 ? e.reduce((s, n) => s > n ? s : n) : null;
|
|
169
|
+
}
|
|
170
|
+
getPermissionsFromWAC(e) {
|
|
171
|
+
var a;
|
|
172
|
+
const s = this.headers.get("WAC-Allow") ?? "", n = ((a = Q(s, new RegExp(`${e}="([^"]+)"`))) == null ? void 0 : a[1]) ?? "";
|
|
173
|
+
return v([
|
|
174
|
+
n.includes("read") && "read",
|
|
175
|
+
n.includes("write") && "write",
|
|
176
|
+
n.includes("append") && "append",
|
|
177
|
+
n.includes("control") && "control"
|
|
178
|
+
/* Control */
|
|
179
|
+
]);
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
async function dt(r) {
|
|
183
|
+
const t = await w.compact(r, {});
|
|
184
|
+
return "@graph" in t ? t : "@id" in t ? { "@graph": [t] } : { "@graph": [] };
|
|
185
|
+
}
|
|
186
|
+
function H(r) {
|
|
187
|
+
return "@graph" in r;
|
|
188
|
+
}
|
|
189
|
+
const g = "anonymous://", X = g.length;
|
|
190
|
+
async function Y(r, t) {
|
|
191
|
+
const e = {
|
|
192
|
+
headers: { Accept: "text/turtle" }
|
|
193
|
+
};
|
|
194
|
+
t != null && t.cache && (e.cache = t.cache);
|
|
195
|
+
try {
|
|
196
|
+
const n = await ((t == null ? void 0 : t.fetch) ?? window.fetch)(r, e);
|
|
197
|
+
if (n.status === 404) throw new p(r);
|
|
198
|
+
if ([401, 403].includes(n.status)) throw new R(r, n.status);
|
|
199
|
+
return {
|
|
200
|
+
body: await n.text(),
|
|
201
|
+
headers: n.headers
|
|
202
|
+
};
|
|
203
|
+
} catch (s) {
|
|
204
|
+
throw s instanceof R || s instanceof p ? s : new U(r, { cause: s });
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
function V(r) {
|
|
208
|
+
const t = r.slice(0), e = {}, s = b(r).flatMap((n, a) => L(
|
|
209
|
+
v([
|
|
210
|
+
n.object.termType === "BlankNode" ? n.object.value : null,
|
|
211
|
+
n.subject.termType === "BlankNode" ? n.subject.value : null
|
|
212
|
+
]),
|
|
213
|
+
(c) => c.forEach((o) => (e[o] ?? (e[o] = /* @__PURE__ */ new Set())).add(a))
|
|
214
|
+
)).filter().unique();
|
|
215
|
+
for (const n of s) {
|
|
216
|
+
const a = e[n], c = $(
|
|
217
|
+
b(a).map((o) => r[o]).filter(({ subject: { termType: o, value: u } }) => o === "BlankNode" && u === n).map(({ predicate: o, object: u }) => u.termType === "BlankNode" ? o.value : o.value + u.value).sorted().join()
|
|
218
|
+
);
|
|
219
|
+
for (const o of a) {
|
|
220
|
+
const u = t[o], d = {
|
|
221
|
+
subject: u.subject,
|
|
222
|
+
object: u.object
|
|
223
|
+
};
|
|
224
|
+
for (const [C, y] of Object.entries(d))
|
|
225
|
+
y.termType !== "BlankNode" || y.value !== n || (d[C] = new W(c));
|
|
226
|
+
F(
|
|
227
|
+
t,
|
|
228
|
+
u,
|
|
229
|
+
new z(d.subject, u.predicate, d.object)
|
|
230
|
+
);
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
return t;
|
|
234
|
+
}
|
|
235
|
+
function A(r) {
|
|
236
|
+
return r.map((t) => " " + rt(t)).sort().join(`
|
|
237
|
+
`);
|
|
238
|
+
}
|
|
239
|
+
function K(r) {
|
|
240
|
+
var t;
|
|
241
|
+
(t = r["@id"]) != null && t.startsWith("#") && (r["@id"] = g + r["@id"]);
|
|
242
|
+
}
|
|
243
|
+
function Z(r) {
|
|
244
|
+
for (const t of r)
|
|
245
|
+
t.subject.value.startsWith(g) && (t.subject.value = t.subject.value.slice(X));
|
|
246
|
+
}
|
|
247
|
+
async function lt(r, t, e) {
|
|
248
|
+
e = e ?? window.fetch.bind(window);
|
|
249
|
+
const s = await I(t);
|
|
250
|
+
return await e(r, {
|
|
251
|
+
method: "PUT",
|
|
252
|
+
headers: { "Content-Type": "text/turtle" },
|
|
253
|
+
body: t
|
|
254
|
+
}), new D(r, s, new Headers({}));
|
|
255
|
+
}
|
|
256
|
+
async function M(r, t) {
|
|
257
|
+
const { body: e, headers: s } = await Y(r, t), n = await I(e, { baseIRI: r });
|
|
258
|
+
return new D(r, n, s);
|
|
259
|
+
}
|
|
260
|
+
async function ht(r, t) {
|
|
261
|
+
try {
|
|
262
|
+
return await M(r, t);
|
|
263
|
+
} catch (e) {
|
|
264
|
+
if (!(e instanceof p)) throw e;
|
|
265
|
+
return null;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
async function tt(r, t) {
|
|
269
|
+
if (H(r))
|
|
270
|
+
return (await Promise.all(r["@graph"].map((n) => tt(n, t)))).flat();
|
|
271
|
+
K(r);
|
|
272
|
+
const e = await w.toRDF(r, { base: t });
|
|
273
|
+
return Z(e), e;
|
|
274
|
+
}
|
|
275
|
+
function ft(r) {
|
|
276
|
+
const t = st(r);
|
|
277
|
+
return Object.entries(t).reduce((e, [s, n]) => {
|
|
278
|
+
const a = A(n);
|
|
279
|
+
return e.concat(`${s.toUpperCase()} DATA {
|
|
280
|
+
${a}
|
|
281
|
+
}`);
|
|
282
|
+
}, []).join(` ;
|
|
283
|
+
`);
|
|
284
|
+
}
|
|
285
|
+
function pt(r) {
|
|
286
|
+
const t = N(r);
|
|
287
|
+
return A(t);
|
|
288
|
+
}
|
|
289
|
+
function et(r, t = {}) {
|
|
290
|
+
const e = T({ baseIRI: t.baseIRI }), s = new q(e), n = {
|
|
291
|
+
quads: [],
|
|
292
|
+
containsRelativeIRIs: !1
|
|
293
|
+
};
|
|
294
|
+
return new Promise((a, c) => {
|
|
295
|
+
const o = s._resolveRelativeIRI;
|
|
296
|
+
s._resolveRelativeIRI = (...u) => (n.containsRelativeIRIs = !0, s._resolveRelativeIRI = o, s._resolveRelativeIRI(...u)), s.parse(r, (u, d) => {
|
|
297
|
+
if (u) {
|
|
298
|
+
c(
|
|
299
|
+
new P(t.baseIRI ?? null, m.Turtle, u.message)
|
|
300
|
+
);
|
|
301
|
+
return;
|
|
302
|
+
}
|
|
303
|
+
if (!d) {
|
|
304
|
+
a(n);
|
|
305
|
+
return;
|
|
306
|
+
}
|
|
307
|
+
n.quads.push(d);
|
|
308
|
+
});
|
|
309
|
+
});
|
|
310
|
+
}
|
|
311
|
+
async function wt(r) {
|
|
312
|
+
return {
|
|
313
|
+
"@graph": await w.fromRDF(r)
|
|
314
|
+
};
|
|
315
|
+
}
|
|
316
|
+
function mt(r) {
|
|
317
|
+
return new S().quadsToString(r);
|
|
318
|
+
}
|
|
319
|
+
function rt(r) {
|
|
320
|
+
return new S().quadsToString([r]).slice(0, -1);
|
|
321
|
+
}
|
|
322
|
+
async function gt(r, t) {
|
|
323
|
+
try {
|
|
324
|
+
return !(await M(r, t)).isEmpty();
|
|
325
|
+
} catch {
|
|
326
|
+
return !1;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
async function It(r, t = {}) {
|
|
330
|
+
const e = x(r, /(\w+) DATA {([^}]+)}/g), s = {};
|
|
331
|
+
return await Promise.all(
|
|
332
|
+
[...e].map(async (n) => {
|
|
333
|
+
const a = n[1].toLowerCase(), c = n[2];
|
|
334
|
+
s[a] = await I(c, t);
|
|
335
|
+
})
|
|
336
|
+
), s;
|
|
337
|
+
}
|
|
338
|
+
function st(r, t = {}) {
|
|
339
|
+
const e = x(r, /(\w+) DATA {([^}]+)}/g), s = {};
|
|
340
|
+
for (const n of e) {
|
|
341
|
+
const a = n[1].toLowerCase(), c = n[2];
|
|
342
|
+
s[a] = N(c, t);
|
|
343
|
+
}
|
|
344
|
+
return s;
|
|
345
|
+
}
|
|
346
|
+
async function I(r, t = {}) {
|
|
347
|
+
const { quads: e } = await et(r, t);
|
|
348
|
+
return e;
|
|
349
|
+
}
|
|
350
|
+
function N(r, t = {}) {
|
|
351
|
+
const e = T({ baseIRI: t.baseIRI }), s = new q(e);
|
|
352
|
+
try {
|
|
353
|
+
const n = s.parse(r);
|
|
354
|
+
return t.normalizeBlankNodes ? V(n) : n;
|
|
355
|
+
} catch (n) {
|
|
356
|
+
throw new P(
|
|
357
|
+
t.baseIRI ?? null,
|
|
358
|
+
m.Turtle,
|
|
359
|
+
n.message ?? ""
|
|
360
|
+
);
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
async function yt(r, t, e) {
|
|
364
|
+
e = e ?? window.fetch.bind(window), await e(r, {
|
|
365
|
+
method: "PATCH",
|
|
366
|
+
headers: { "Content-Type": "application/sparql-update" },
|
|
367
|
+
body: t
|
|
368
|
+
});
|
|
369
|
+
}
|
|
370
|
+
export {
|
|
371
|
+
P as M,
|
|
372
|
+
U as N,
|
|
373
|
+
_ as S,
|
|
374
|
+
R as U,
|
|
375
|
+
ht as a,
|
|
376
|
+
m as b,
|
|
377
|
+
lt as c,
|
|
378
|
+
p as d,
|
|
379
|
+
pt as e,
|
|
380
|
+
M as f,
|
|
381
|
+
mt as g,
|
|
382
|
+
rt as h,
|
|
383
|
+
It as i,
|
|
384
|
+
tt as j,
|
|
385
|
+
st as k,
|
|
386
|
+
N as l,
|
|
387
|
+
dt as m,
|
|
388
|
+
ft as n,
|
|
389
|
+
H as o,
|
|
390
|
+
et as p,
|
|
391
|
+
wt as q,
|
|
392
|
+
ct as r,
|
|
393
|
+
gt as s,
|
|
394
|
+
I as t,
|
|
395
|
+
yt as u,
|
|
396
|
+
l as v,
|
|
397
|
+
D as w,
|
|
398
|
+
G as x,
|
|
399
|
+
J as y
|
|
400
|
+
};
|
|
401
|
+
//# sourceMappingURL=io-CMHtz5bu.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"io-CMHtz5bu.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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"}
|
|
@@ -2,13 +2,18 @@ import { BlankNode } from '@rdfjs/types';
|
|
|
2
2
|
import { JSError } from '@noeldemartin/utils';
|
|
3
3
|
import { JSErrorOptions } from '@noeldemartin/utils';
|
|
4
4
|
import { Literal } from '@rdfjs/types';
|
|
5
|
+
import { MatcherState } from '@vitest/expect';
|
|
5
6
|
import { NamedNode } from '@rdfjs/types';
|
|
6
7
|
import { Quad } from '@rdfjs/types';
|
|
7
8
|
import { Variable } from '@rdfjs/types';
|
|
8
9
|
|
|
9
10
|
export declare type AnyFetch = (input: any, options?: any) => Promise<Response>;
|
|
10
11
|
|
|
11
|
-
export declare
|
|
12
|
+
export declare type ChaiSolidAssertions = {
|
|
13
|
+
[assertion in keyof typeof _default]: (typeof _default)[assertion];
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export declare function compactJsonLDGraph(json: JsonLDGraph): Promise<JsonLDGraph>;
|
|
12
17
|
|
|
13
18
|
/**
|
|
14
19
|
* @deprecated Use soukai-solid instead
|
|
@@ -22,6 +27,27 @@ export declare function createPublicTypeIndex(user: SolidUserProfile, fetch?: Fe
|
|
|
22
27
|
|
|
23
28
|
export declare function createSolidDocument(url: string, body: string, fetch?: Fetch): Promise<SolidDocument>;
|
|
24
29
|
|
|
30
|
+
declare const _default: {
|
|
31
|
+
turtle(this: Chai.AssertionStatic, graph: string): void;
|
|
32
|
+
sparql(this: Chai.AssertionStatic, query: string): void;
|
|
33
|
+
equalityResult(this: Chai.AssertionStatic): void;
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
declare const _default_2: {
|
|
37
|
+
toEqualJsonLD(this: MatcherState, received: any, expected: JsonLD): Promise<{
|
|
38
|
+
pass: boolean;
|
|
39
|
+
message: () => string;
|
|
40
|
+
}>;
|
|
41
|
+
toEqualSparql(this: MatcherState, received: any, expected: string): {
|
|
42
|
+
pass: boolean;
|
|
43
|
+
message: () => string;
|
|
44
|
+
};
|
|
45
|
+
toEqualTurtle(this: MatcherState, received: any, expected: string): {
|
|
46
|
+
pass: boolean;
|
|
47
|
+
message: () => string;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
|
|
25
51
|
export declare function defineIRIPrefix(name: string, value: string): void;
|
|
26
52
|
|
|
27
53
|
export declare function expandIRI(iri: string, options?: Partial<ExpandIRIOptions>): string;
|
|
@@ -69,7 +95,7 @@ export declare function findContainerRegistrations(typeIndexUrl: string, type: s
|
|
|
69
95
|
*/
|
|
70
96
|
export declare function findInstanceRegistrations(typeIndexUrl: string, type: string | string[], fetch?: Fetch): Promise<string[]>;
|
|
71
97
|
|
|
72
|
-
export declare function isJsonLDGraph(
|
|
98
|
+
export declare function isJsonLDGraph(json: JsonLD): json is JsonLDGraph;
|
|
73
99
|
|
|
74
100
|
export declare type JsonLD = Partial<{
|
|
75
101
|
'@context': Record<string, unknown>;
|
|
@@ -88,7 +114,7 @@ export declare type JsonLDResource = Omit<JsonLD, '@id'> & {
|
|
|
88
114
|
'@id': string;
|
|
89
115
|
};
|
|
90
116
|
|
|
91
|
-
export declare function jsonldToQuads(
|
|
117
|
+
export declare function jsonldToQuads(json: JsonLD, baseIRI?: string): Promise<Quad[]>;
|
|
92
118
|
|
|
93
119
|
export declare class MalformedSolidDocumentError extends JSError {
|
|
94
120
|
readonly documentUrl: string | null;
|
|
@@ -237,4 +263,26 @@ export declare class UnsupportedAuthorizationProtocolError extends JSError {
|
|
|
237
263
|
|
|
238
264
|
export declare function updateSolidDocument(url: string, body: string, fetch?: Fetch): Promise<void>;
|
|
239
265
|
|
|
266
|
+
export declare type VitestSolidMatchers<R = unknown> = {
|
|
267
|
+
[K in keyof typeof _default_2]: (...args: Parameters<(typeof _default_2)[K]> extends [any, ...infer Rest] ? Rest : never) => ReturnType<(typeof _default_2)[K]> extends Promise<any> ? Promise<R> : R;
|
|
268
|
+
};
|
|
269
|
+
|
|
240
270
|
export { }
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
declare module '@vitest/expect' {
|
|
274
|
+
interface Assertion<T> extends VitestSolidMatchers<T> {
|
|
275
|
+
}
|
|
276
|
+
interface AsymmetricMatchersContaining extends VitestSolidMatchers {
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
declare global {
|
|
282
|
+
namespace Chai {
|
|
283
|
+
interface Assertion extends ChaiSolidAssertions {
|
|
284
|
+
}
|
|
285
|
+
interface Include extends ChaiSolidAssertions {
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
}
|