solid-logic 1.3.16-8afe9dc4 → 1.3.17-0abe2b84

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.
@@ -36,32 +36,165 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
36
36
  }
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.loadAllTypeIndexes = exports.loadCommunityTypeIndexes = exports.loadTypeIndexesFor = exports.loadPreferences = exports.loadProfile = void 0;
39
+ exports.registerInstanceInTypeIndex = exports.getAppInstances = exports.getScopedAppInstances = exports.getScopedAppsfromIndex = exports.uniqueNodes = exports.loadAllTypeIndexes = exports.loadCommunityTypeIndexes = exports.loadTypeIndexesFor = exports.loadPreferences = exports.loadProfile = exports.followOrCreateLink = exports.suggestPrivateTypeIndex = exports.suggestPublicTypeIndex = exports.suggestPreferencesFile = exports.loadOrCreateIfNotExists = void 0;
40
40
  var rdflib_1 = require("rdflib");
41
+ // import * as debug from '../util/debug'
42
+ // import { getContainerMembers } from '../util/UtilityLogic'
43
+ var solidLogicSingleton_1 = require("../logic/solidLogicSingleton");
44
+ var uri_1 = require("../util/uri");
45
+ var authn = solidLogicSingleton_1.solidLogicSingleton.authn;
46
+ var currentUser = authn.currentUser;
41
47
  var ns = {
48
+ dct: (0, rdflib_1.Namespace)('http://purl.org/dc/terms/'),
49
+ ldp: (0, rdflib_1.Namespace)('http://www.w3.org/ns/ldp#'),
50
+ meeting: (0, rdflib_1.Namespace)('http://www.w3.org/ns/pim/meeting#'),
51
+ rdf: (0, rdflib_1.Namespace)('http://www.w3.org/1999/02/22-rdf-syntax-ns#'),
52
+ schema: (0, rdflib_1.Namespace)('http://schema.org/'),
42
53
  solid: (0, rdflib_1.Namespace)('http://www.w3.org/ns/solid/terms#'),
43
- space: (0, rdflib_1.Namespace)('http://www.w3.org/ns/pim/space#')
54
+ space: (0, rdflib_1.Namespace)('http://www.w3.org/ns/pim/space#'),
55
+ stat: (0, rdflib_1.Namespace)('http://www.w3.org/ns/posix/stat#'),
56
+ vcard: (0, rdflib_1.Namespace)('http://www.w3.org/2006/vcard/ns#'),
57
+ wf: (0, rdflib_1.Namespace)('http://www.w3.org/2005/01/wf/flow#'),
58
+ xsd: (0, rdflib_1.Namespace)('http://www.w3.org/2001/XMLSchema#')
44
59
  };
60
+ /** Create a resource if it really does not exist
61
+ * Be absolutely sure something does not exist before creating a new empty file
62
+ * as otherwise existing could be deleted.
63
+ * @param doc {NamedNode} - The resource
64
+ */
65
+ function loadOrCreateIfNotExists(store, doc) {
66
+ return __awaiter(this, void 0, void 0, function () {
67
+ var response, err_1, msg, msg;
68
+ return __generator(this, function (_a) {
69
+ switch (_a.label) {
70
+ case 0:
71
+ _a.trys.push([0, 2, , 3]);
72
+ return [4 /*yield*/, store.fetcher.load(doc)];
73
+ case 1:
74
+ response = _a.sent();
75
+ return [3 /*break*/, 3];
76
+ case 2:
77
+ err_1 = _a.sent();
78
+ if (err_1.response.status === 404) {
79
+ // console.log('createIfNotExists doc does NOT exist, will create: ' + doc)
80
+ try {
81
+ store.fetcher.webOperation('PUT', doc, { data: '', contentType: 'text/turtle' });
82
+ }
83
+ catch (err) {
84
+ msg = 'createIfNotExists: PUT FAILED: ' + doc + ': ' + err;
85
+ // console.log(msg)
86
+ throw new Error(msg);
87
+ }
88
+ delete store.fetcher.requested[doc.uri]; // delete cached 404 error
89
+ // console.log('createIfNotExists doc created ok ' + doc)
90
+ }
91
+ else {
92
+ msg = 'createIfNotExists doc load error NOT 404: ' + doc + ': ' + err_1;
93
+ // console.log(msg)
94
+ throw new Error(msg); // @@ add nested errors
95
+ }
96
+ return [3 /*break*/, 3];
97
+ case 3:
98
+ // console.log('createIfNotExists doc exists, all good ' + doc)
99
+ return [2 /*return*/, response];
100
+ }
101
+ });
102
+ });
103
+ }
104
+ exports.loadOrCreateIfNotExists = loadOrCreateIfNotExists;
105
+ function suggestPreferencesFile(me) {
106
+ var stripped = me.uri.replace('/profile/', '/').replace('/public/', '/');
107
+ // const stripped = me.uri.replace(\/[p|P]rofile/\g, '/').replace(\/[p|P]ublic/\g, '/')
108
+ var folderURI = stripped.split('/').slice(0, -1).join('/') + '/Settings/';
109
+ var fileURI = folderURI + 'Preferences.ttl';
110
+ return (0, rdflib_1.sym)(fileURI);
111
+ }
112
+ exports.suggestPreferencesFile = suggestPreferencesFile;
113
+ function suggestPublicTypeIndex(me) {
114
+ var _a;
115
+ return (0, rdflib_1.sym)(((_a = me.doc().dir()) === null || _a === void 0 ? void 0 : _a.uri) + 'publicTypeIndex.ttl');
116
+ }
117
+ exports.suggestPublicTypeIndex = suggestPublicTypeIndex;
118
+ // Note this one is based off the pref file not the profile
119
+ function suggestPrivateTypeIndex(preferencesFile) {
120
+ var _a;
121
+ return (0, rdflib_1.sym)(((_a = preferencesFile.doc().dir()) === null || _a === void 0 ? void 0 : _a.uri) + 'privateTypeIndex.ttl');
122
+ }
123
+ exports.suggestPrivateTypeIndex = suggestPrivateTypeIndex;
124
+ /* Follow link from this doc to another thing, or else make a new link
125
+ **
126
+ ** return: null no ld one and failed to make a new one
127
+ */
128
+ function followOrCreateLink(store, subject, predicate, object, doc) {
129
+ return __awaiter(this, void 0, void 0, function () {
130
+ var result, err_2, err_3;
131
+ return __generator(this, function (_a) {
132
+ switch (_a.label) {
133
+ case 0: return [4 /*yield*/, store.fetcher.load(doc)];
134
+ case 1:
135
+ _a.sent();
136
+ result = store.any(subject, predicate, null, doc);
137
+ // console.log('@@ followOrCreateLink result ', result)
138
+ if (result)
139
+ return [2 /*return*/, result];
140
+ if (!store.updater.editable(doc)) {
141
+ // console.log(`followOrCreateLink: Can't modify ${doc} so can't make new link to ${object}.`)
142
+ // console.log('followOrCreateLink @@ connectedStatements', store.connectedStatements(subject))
143
+ return [2 /*return*/, null];
144
+ }
145
+ _a.label = 2;
146
+ case 2:
147
+ _a.trys.push([2, 4, , 5]);
148
+ return [4 /*yield*/, store.updater.update([], [(0, rdflib_1.st)(subject, predicate, object, doc)])];
149
+ case 3:
150
+ _a.sent();
151
+ return [3 /*break*/, 5];
152
+ case 4:
153
+ err_2 = _a.sent();
154
+ console.warn("followOrCreateLink: Error making link in ".concat(doc, " to ").concat(object, ": ").concat(err_2));
155
+ return [2 /*return*/, null];
156
+ case 5:
157
+ _a.trys.push([5, 7, , 8]);
158
+ return [4 /*yield*/, loadOrCreateIfNotExists(store, object)
159
+ // store.fetcher.webOperation('PUT', object, { data: '', contentType: 'text/turtle'})
160
+ ];
161
+ case 6:
162
+ _a.sent();
163
+ return [3 /*break*/, 8];
164
+ case 7:
165
+ err_3 = _a.sent();
166
+ console.warn("followOrCreateLink: Error loading or saving new linked document: ".concat(object, ": ").concat(err_3));
167
+ return [3 /*break*/, 8];
168
+ case 8:
169
+ // console.log(`followOrCreateLink: Success loading or saving new linked document: ${object}.`)
170
+ return [2 /*return*/, object];
171
+ }
172
+ });
173
+ });
174
+ }
175
+ exports.followOrCreateLink = followOrCreateLink;
45
176
  function loadProfile(store, user) {
46
177
  return __awaiter(this, void 0, void 0, function () {
47
- var err_1;
48
178
  return __generator(this, function (_a) {
49
179
  switch (_a.label) {
50
180
  case 0:
181
+ // console.log(' @@ loadProfile: user', user)
51
182
  if (!user) {
52
183
  throw new Error("loadProfile: no user given.");
53
184
  }
54
- _a.label = 1;
185
+ // try {
186
+ return [4 /*yield*/, store.fetcher.load(user.doc())
187
+ // } catch (err) {
188
+ // throw new Error(`Unable to load profile of user ${user}: ${err}`)
189
+ //}
190
+ ];
55
191
  case 1:
56
- _a.trys.push([1, 3, , 4]);
57
- return [4 /*yield*/, store.fetcher.load(user.doc())];
58
- case 2:
192
+ // try {
59
193
  _a.sent();
60
- return [3 /*break*/, 4];
61
- case 3:
62
- err_1 = _a.sent();
63
- throw new Error("Unable to load profile of user <".concat(user, ">: ").concat(err_1));
64
- case 4: return [2 /*return*/, user.doc()];
194
+ // } catch (err) {
195
+ // throw new Error(`Unable to load profile of user ${user}: ${err}`)
196
+ //}
197
+ return [2 /*return*/, user.doc()];
65
198
  }
66
199
  });
67
200
  });
@@ -69,27 +202,43 @@ function loadProfile(store, user) {
69
202
  exports.loadProfile = loadProfile;
70
203
  function loadPreferences(store, user) {
71
204
  return __awaiter(this, void 0, void 0, function () {
72
- var profile, preferencesFile;
205
+ var possiblePreferencesFile, preferencesFile, message, err_4;
73
206
  return __generator(this, function (_a) {
74
207
  switch (_a.label) {
75
- case 0: return [4 /*yield*/, loadProfile(store, user)];
208
+ case 0:
209
+ // console.log('loadPreferences @@ user', user)
210
+ return [4 /*yield*/, loadProfile(store, user)];
76
211
  case 1:
77
- profile = _a.sent();
78
- preferencesFile = store.any(user, ns.space('preferencesFile'), undefined, profile);
212
+ // console.log('loadPreferences @@ user', user)
213
+ _a.sent();
214
+ possiblePreferencesFile = suggestPreferencesFile(user);
215
+ return [4 /*yield*/, followOrCreateLink(store, user, ns.space('preferencesFile'), possiblePreferencesFile, user.doc())
216
+ // const preferencesFile = store.any(user, ns.space('preferencesFile'), undefined, profile)
217
+ // console.log('loadPreferences @@ pref file', preferencesFile)
218
+ ];
219
+ case 2:
220
+ preferencesFile = _a.sent();
221
+ // const preferencesFile = store.any(user, ns.space('preferencesFile'), undefined, profile)
222
+ // console.log('loadPreferences @@ pref file', preferencesFile)
79
223
  if (!preferencesFile) {
80
- // throw new Error(`USer ${user} has no pointer in profile to preferences file.`)
224
+ message = "User ".concat(user, " has no pointer in profile to preferences file.");
225
+ console.warn(message);
226
+ // throw new Error()
81
227
  return [2 /*return*/, undefined];
82
228
  }
83
- try {
84
- store.fetcher.load(preferencesFile);
85
- }
86
- catch (err) { // Mabeb a permission propblem or origin problem
87
- return [2 /*return*/, undefined
88
- // throw new Error(`Unable to load preferences file ${preferencesFile} of user <${user}>: ${err}`)
89
- ];
229
+ _a.label = 3;
230
+ case 3:
231
+ _a.trys.push([3, 5, , 6]);
232
+ return [4 /*yield*/, store.fetcher.load(preferencesFile)];
233
+ case 4:
234
+ _a.sent();
235
+ return [3 /*break*/, 6];
236
+ case 5:
237
+ err_4 = _a.sent();
238
+ return [2 /*return*/, undefined
90
239
  // throw new Error(`Unable to load preferences file ${preferencesFile} of user <${user}>: ${err}`)
91
- }
92
- return [2 /*return*/, preferencesFile];
240
+ ];
241
+ case 6: return [2 /*return*/, preferencesFile];
93
242
  }
94
243
  });
95
244
  });
@@ -97,39 +246,68 @@ function loadPreferences(store, user) {
97
246
  exports.loadPreferences = loadPreferences;
98
247
  function loadTypeIndexesFor(store, user) {
99
248
  return __awaiter(this, void 0, void 0, function () {
100
- var profile, publicTypeIndex, _a, pub, preferencesFile, privateTypeIndexes, priv;
249
+ var profile, suggestion, publicTypeIndex, publicScopes, preferencesFile, err_5, privateScopes, suggestedPrivateTypeIndex, privateTypeIndex, _a, scopes, files, err_6;
101
250
  return __generator(this, function (_b) {
102
251
  switch (_b.label) {
103
252
  case 0:
253
+ // console.log('@@ loadTypeIndexesFor user', user)
104
254
  if (!user)
105
255
  throw new Error("loadTypeIndexesFor: No user given");
106
256
  return [4 /*yield*/, loadProfile(store, user)];
107
257
  case 1:
108
258
  profile = _b.sent();
109
- publicTypeIndex = store.any(user, ns.solid('publicTypeIndex'), undefined, profile);
110
- if (!publicTypeIndex) return [3 /*break*/, 5];
111
- _b.label = 2;
259
+ suggestion = suggestPublicTypeIndex(user);
260
+ return [4 /*yield*/, followOrCreateLink(store, user, ns.solid('publicTypeIndex'), suggestion, profile)
261
+ // const publicTypeIndex = store.any(user, ns.solid('publicTypeIndex'), undefined, profile)
262
+ // console.log('@@ loadTypeIndexesFor publicTypeIndex', publicTypeIndex)
263
+ ];
112
264
  case 2:
113
- _b.trys.push([2, 4, , 5]);
114
- return [4 /*yield*/, store.fetcher.load(publicTypeIndex)];
265
+ publicTypeIndex = _b.sent();
266
+ publicScopes = publicTypeIndex ? [{ label: 'public', index: publicTypeIndex, agent: user }] : [];
267
+ _b.label = 3;
115
268
  case 3:
116
- _b.sent();
117
- return [3 /*break*/, 5];
269
+ _b.trys.push([3, 5, , 6]);
270
+ return [4 /*yield*/, loadPreferences(store, user)];
118
271
  case 4:
119
- _a = _b.sent();
120
- return [3 /*break*/, 5];
272
+ preferencesFile = _b.sent();
273
+ return [3 /*break*/, 6];
121
274
  case 5:
122
- pub = publicTypeIndex ? [{ label: 'public', index: publicTypeIndex, agent: user }] : [];
123
- return [4 /*yield*/, loadPreferences(store, user)];
275
+ err_5 = _b.sent();
276
+ preferencesFile = null;
277
+ return [3 /*break*/, 6];
124
278
  case 6:
125
- preferencesFile = _b.sent();
126
- if (preferencesFile) { // watch out - can be in either as spec was not clear
127
- privateTypeIndexes = store.each(user, ns.solid('privateTypeIndex'), undefined, preferencesFile)
128
- .concat(store.each(user, ns.solid('privateTypeIndex'), undefined, profile));
129
- priv = privateTypeIndexes.length > 0 ? [{ label: 'priSo @@@@@vate', index: privateTypeIndexes[0], agent: user }] : [];
130
- return [2 /*return*/, pub.concat(priv)];
131
- }
132
- return [2 /*return*/, pub];
279
+ if (!preferencesFile) return [3 /*break*/, 9];
280
+ suggestedPrivateTypeIndex = suggestPrivateTypeIndex(preferencesFile);
281
+ _a = store.any(user, ns.solid('privateTypeIndex'), undefined, profile);
282
+ if (_a) return [3 /*break*/, 8];
283
+ return [4 /*yield*/, followOrCreateLink(store, user, ns.solid('privateTypeIndex'), suggestedPrivateTypeIndex, preferencesFile)];
284
+ case 7:
285
+ _a = (_b.sent());
286
+ _b.label = 8;
287
+ case 8:
288
+ privateTypeIndex = _a;
289
+ privateScopes = privateTypeIndex ? [{ label: 'private', index: privateTypeIndex, agent: user }] : [];
290
+ return [3 /*break*/, 10];
291
+ case 9:
292
+ privateScopes = [];
293
+ _b.label = 10;
294
+ case 10:
295
+ scopes = publicScopes.concat(privateScopes);
296
+ if (scopes.length === 0)
297
+ return [2 /*return*/, scopes];
298
+ files = scopes.map(function (scope) { return scope.index; });
299
+ _b.label = 11;
300
+ case 11:
301
+ _b.trys.push([11, 13, , 14]);
302
+ return [4 /*yield*/, store.fetcher.load(files)];
303
+ case 12:
304
+ _b.sent();
305
+ return [3 /*break*/, 14];
306
+ case 13:
307
+ err_6 = _b.sent();
308
+ console.warn('Problems loading type index: ', err_6);
309
+ return [3 /*break*/, 14];
310
+ case 14: return [2 /*return*/, scopes];
133
311
  }
134
312
  });
135
313
  });
@@ -137,44 +315,33 @@ function loadTypeIndexesFor(store, user) {
137
315
  exports.loadTypeIndexesFor = loadTypeIndexesFor;
138
316
  function loadCommunityTypeIndexes(store, user) {
139
317
  return __awaiter(this, void 0, void 0, function () {
140
- var preferencesFile, communities, communityTypeIndexesPromise, result1;
141
- var _this = this;
142
- return __generator(this, function (_a) {
143
- switch (_a.label) {
318
+ var preferencesFile, communities, result, _i, communities_1, org, _a, _b;
319
+ return __generator(this, function (_c) {
320
+ switch (_c.label) {
144
321
  case 0: return [4 /*yield*/, loadPreferences(store, user)];
145
322
  case 1:
146
- preferencesFile = _a.sent();
147
- if (preferencesFile) {
148
- communities = store.each(user, ns.solid('community'), undefined, preferencesFile);
149
- communityTypeIndexesPromise = communities.map(function (community) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
150
- switch (_a.label) {
151
- case 0: return [4 /*yield*/, loadTypeIndexesFor(store, community)];
152
- case 1: return [2 /*return*/, _a.sent()];
153
- }
154
- }); }); });
155
- result1 = Promise.all(communityTypeIndexesPromise);
156
- // const result2 = Promise.all(result1)
157
- // const flat = result2.flat()
158
- return [2 /*return*/, result1
159
- // const communityTypeIndexes = await Promise.all(communityTypeIndexesPromise)
160
- /*
161
- let result = [] as TypeIndex[]
162
- for(const community of communities) {
163
- result = result.concat(await loadTypeIndexesFor(store, community as NamedNode)) as TypeIndex[] // @@ how oto make functional with async?
164
- }
165
- */
166
- // return communityTypeIndexesPromise.resolve()
167
- ];
168
- // const communityTypeIndexes = await Promise.all(communityTypeIndexesPromise)
169
- /*
170
- let result = [] as TypeIndex[]
171
- for(const community of communities) {
172
- result = result.concat(await loadTypeIndexesFor(store, community as NamedNode)) as TypeIndex[] // @@ how oto make functional with async?
173
- }
174
- */
175
- // return communityTypeIndexesPromise.resolve()
176
- }
177
- return [2 /*return*/, []];
323
+ preferencesFile = _c.sent();
324
+ if (!preferencesFile) return [3 /*break*/, 6];
325
+ communities = store.each(user, ns.solid('community'), undefined, preferencesFile);
326
+ result = [];
327
+ _i = 0, communities_1 = communities;
328
+ _c.label = 2;
329
+ case 2:
330
+ if (!(_i < communities_1.length)) return [3 /*break*/, 5];
331
+ org = communities_1[_i];
332
+ _b = (_a = result).concat;
333
+ return [4 /*yield*/, loadTypeIndexesFor(store, org)];
334
+ case 3:
335
+ result = _b.apply(_a, [_c.sent()]);
336
+ _c.label = 4;
337
+ case 4:
338
+ _i++;
339
+ return [3 /*break*/, 2];
340
+ case 5:
341
+ // const communityTypeIndexesPromises = communities.map(async community => await loadTypeIndexesFor(store, community as NamedNode))
342
+ // const result1 = Promise.all(communityTypeIndexesPromises)
343
+ return [2 /*return*/, result];
344
+ case 6: return [2 /*return*/, []]; // No communities
178
345
  }
179
346
  });
180
347
  });
@@ -195,9 +362,133 @@ function loadAllTypeIndexes(store, user) {
195
362
  });
196
363
  }
197
364
  exports.loadAllTypeIndexes = loadAllTypeIndexes;
198
- /*
199
- export async function getAppInstances (store:LiveStore, klass: NamedNode) {
200
-
365
+ // Utility: remove duplicates from Array of NamedNodes
366
+ function uniqueNodes(arr) {
367
+ var uris = arr.map(function (x) { return x.uri; });
368
+ var set = new Set(uris);
369
+ var uris2 = Array.from(set);
370
+ var arr2 = uris2.map(function (u) { return new rdflib_1.NamedNode(u); });
371
+ return arr2; // Array.from(new Set(arr.map(x => x.uri))).map(u => sym(u))
201
372
  }
202
- */
373
+ exports.uniqueNodes = uniqueNodes;
374
+ function getScopedAppsfromIndex(store, scope, theClass) {
375
+ return __awaiter(this, void 0, void 0, function () {
376
+ var index, registrations, directInstances, instances, instanceContainers, containers, i, cont, contents;
377
+ return __generator(this, function (_a) {
378
+ switch (_a.label) {
379
+ case 0:
380
+ index = scope.index;
381
+ registrations = store.each(undefined, ns.solid('forClass'), theClass, index);
382
+ directInstances = registrations.map(function (reg) { return store.each(reg, ns.solid('instance'), null, index); }).flat();
383
+ instances = uniqueNodes(directInstances);
384
+ instanceContainers = registrations.map(function (reg) { return store.each(reg, ns.solid('instanceContainer'), null, index); }).flat();
385
+ containers = uniqueNodes(instanceContainers);
386
+ i = 0;
387
+ _a.label = 1;
388
+ case 1:
389
+ if (!(i < containers.length)) return [3 /*break*/, 4];
390
+ cont = containers[i];
391
+ return [4 /*yield*/, store.fetcher.load(cont)];
392
+ case 2:
393
+ _a.sent();
394
+ contents = store.each(cont, ns.ldp('contains'), null, cont);
395
+ // if (contents.length) console.log('getScopedAppsfromIndex @@ instanceContainer contents:', contents)
396
+ instances = instances.concat(contents);
397
+ _a.label = 3;
398
+ case 3:
399
+ i++;
400
+ return [3 /*break*/, 1];
401
+ case 4: return [2 /*return*/, instances.map(function (instance) { return { instance: instance, scope: scope }; })];
402
+ }
403
+ });
404
+ });
405
+ }
406
+ exports.getScopedAppsfromIndex = getScopedAppsfromIndex;
407
+ function getScopedAppInstances(store, klass, user) {
408
+ return __awaiter(this, void 0, void 0, function () {
409
+ var scopes, scopedApps, _i, scopes_1, scope, scopedApps0;
410
+ return __generator(this, function (_a) {
411
+ switch (_a.label) {
412
+ case 0: return [4 /*yield*/, loadAllTypeIndexes(store, user)];
413
+ case 1:
414
+ scopes = _a.sent();
415
+ scopedApps = [];
416
+ _i = 0, scopes_1 = scopes;
417
+ _a.label = 2;
418
+ case 2:
419
+ if (!(_i < scopes_1.length)) return [3 /*break*/, 5];
420
+ scope = scopes_1[_i];
421
+ return [4 /*yield*/, getScopedAppsfromIndex(store, scope, klass)];
422
+ case 3:
423
+ scopedApps0 = _a.sent();
424
+ scopedApps = scopedApps.concat(scopedApps0);
425
+ _a.label = 4;
426
+ case 4:
427
+ _i++;
428
+ return [3 /*break*/, 2];
429
+ case 5: return [2 /*return*/, scopedApps];
430
+ }
431
+ });
432
+ });
433
+ }
434
+ exports.getScopedAppInstances = getScopedAppInstances;
435
+ // This is the function signature which used to be in solid-ui/logic
436
+ // Recommended to use getScopedAppInstances instead as it provides more information.
437
+ //
438
+ function getAppInstances(store, klass) {
439
+ return __awaiter(this, void 0, void 0, function () {
440
+ var user, scopedAppInstances;
441
+ return __generator(this, function (_a) {
442
+ switch (_a.label) {
443
+ case 0:
444
+ user = currentUser();
445
+ if (!user)
446
+ throw new Error('getAppInstances: Must be logged in to find apps.');
447
+ return [4 /*yield*/, getScopedAppInstances(store, klass, user)];
448
+ case 1:
449
+ scopedAppInstances = _a.sent();
450
+ return [2 /*return*/, scopedAppInstances.map(function (scoped) { return scoped.instance; })];
451
+ }
452
+ });
453
+ });
454
+ }
455
+ exports.getAppInstances = getAppInstances;
456
+ /**
457
+ * Register a new app in a type index
458
+ * used in chat in bookmark.js (solid-ui)
459
+ * Returns the registration object if successful else null
460
+ */
461
+ function registerInstanceInTypeIndex(store, instance, index, theClass) {
462
+ return __awaiter(this, void 0, void 0, function () {
463
+ var registration, ins, err_7, msg;
464
+ return __generator(this, function (_a) {
465
+ switch (_a.label) {
466
+ case 0:
467
+ registration = (0, uri_1.newThing)(index);
468
+ ins = [
469
+ // See https://github.com/solid/solid/blob/main/proposals/data-discovery.md
470
+ (0, rdflib_1.st)(registration, ns.rdf('type'), ns.solid('TypeRegistration'), index),
471
+ (0, rdflib_1.st)(registration, ns.solid('forClass'), theClass, index),
472
+ (0, rdflib_1.st)(registration, ns.solid('instance'), instance, index)
473
+ ];
474
+ _a.label = 1;
475
+ case 1:
476
+ _a.trys.push([1, 3, , 4]);
477
+ console.log('patching index', ins);
478
+ return [4 /*yield*/, store.updater.update([], ins)];
479
+ case 2:
480
+ _a.sent();
481
+ return [3 /*break*/, 4];
482
+ case 3:
483
+ err_7 = _a.sent();
484
+ msg = "Unable to register ".concat(instance, " in index ").concat(index, ": ").concat(err_7);
485
+ console.warn(msg);
486
+ return [2 /*return*/, null];
487
+ case 4: return [2 /*return*/, registration];
488
+ }
489
+ });
490
+ });
491
+ }
492
+ exports.registerInstanceInTypeIndex = registerInstanceInTypeIndex;
493
+ // ENDS
203
494
  //# sourceMappingURL=discoveryLogic.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"discoveryLogic.js","sourceRoot":"","sources":["../../src/discovery/discoveryLogic.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"discoveryLogic.js","sourceRoot":"","sources":["../../src/discovery/discoveryLogic.ts"],"names":[],"mappings":"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"}
@@ -67,7 +67,7 @@ var _fetch = function (url, requestInit) { return __awaiter(void 0, void 0, void
67
67
  var omitCreds;
68
68
  return __generator(this, function (_a) {
69
69
  omitCreds = requestInit && requestInit.credentials && requestInit.credentials == 'omit';
70
- if (authSession_1.authSession.info.webId && !omitCreds) { // see https://github.com/solid/solidos/issues/114
70
+ if (authSession_1.authSession.info.webId && !omitCreds) { // see https://github.com/solidos/solidos/issues/114
71
71
  // In fact ftech should respect crentials omit itself
72
72
  return [2 /*return*/, authSession_1.authSession.fetch(url, requestInit)];
73
73
  }
@@ -1 +1 @@
1
- {"version":3,"file":"solidLogicSingleton.js","sourceRoot":"","sources":["../../src/logic/solidLogicSingleton.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mDAAsC;AACtC,0DAAwD;AACxD,2CAAyC;AAEzC,IAAM,MAAM,GAAG,UAAO,GAAG,EAAE,WAAW;;;QAC5B,SAAS,GAAG,WAAW,IAAI,WAAW,CAAC,WAAW,IAAI,WAAW,CAAC,WAAW,IAAI,MAAM,CAAA;QAC7F,IAAI,yBAAW,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,SAAS,EAAE,EAAE,kDAAkD;YAC1F,qDAAqD;YACrD,sBAAO,yBAAW,CAAC,KAAK,CAAC,GAAG,EAAE,WAAW,CAAC,EAAA;SAC7C;aAAM;YACH,sBAAO,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,WAAW,CAAC,EAAA;SACxC;;;KACJ,CAAA;AAED,mEAAmE;AACnE,IAAM,mBAAmB,GAAG,IAAI,uBAAU,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,yBAAW,CAAC,CAAA;AAIjE,kDAAmB;AAF5B,KAAK,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAA"}
1
+ {"version":3,"file":"solidLogicSingleton.js","sourceRoot":"","sources":["../../src/logic/solidLogicSingleton.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mDAAsC;AACtC,0DAAwD;AACxD,2CAAyC;AAEzC,IAAM,MAAM,GAAG,UAAO,GAAG,EAAE,WAAW;;;QAC5B,SAAS,GAAG,WAAW,IAAI,WAAW,CAAC,WAAW,IAAI,WAAW,CAAC,WAAW,IAAI,MAAM,CAAA;QAC7F,IAAI,yBAAW,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,SAAS,EAAE,EAAE,oDAAoD;YAC5F,qDAAqD;YACrD,sBAAO,yBAAW,CAAC,KAAK,CAAC,GAAG,EAAE,WAAW,CAAC,EAAA;SAC7C;aAAM;YACH,sBAAO,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,WAAW,CAAC,EAAA;SACxC;;;KACJ,CAAA;AAED,mEAAmE;AACnE,IAAM,mBAAmB,GAAG,IAAI,uBAAU,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,yBAAW,CAAC,CAAA;AAIjE,kDAAmB;AAF5B,KAAK,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAA"}
@@ -5,13 +5,13 @@ export declare const ns: any;
5
5
  * Resolves with the same context, outputting
6
6
  * output: index.public, index.private
7
7
  * @@ This is a very bizare function
8
- * @see https://github.com/solid/solid/blob/main/proposals/data-discovery.md#discoverability
8
+ * @see https://github.com/solidos/solid/blob/main/proposals/data-discovery.md#discoverability
9
9
  */
10
10
  export declare function loadIndex(context: AuthenticationContext, isPublic: boolean): Promise<AuthenticationContext>;
11
11
  export declare function loadTypeIndexes(context: AuthenticationContext): Promise<AuthenticationContext | undefined>;
12
12
  /**
13
13
  * Resolves with the same context, outputting
14
- * @see https://github.com/solid/solid/blob/main/proposals/data-discovery.md#discoverability
14
+ * @see https://github.com/solidos/solid/blob/main/proposals/data-discovery.md#discoverability
15
15
  */
16
16
  export declare function ensureTypeIndexes(context: AuthenticationContext, agent?: NamedNode): Promise<AuthenticationContext>;
17
17
  /**