solid-logic 1.3.17-80b4d030 → 1.3.17-81536f11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/lib/acl/aclLogic.d.ts +2 -11
  2. package/lib/acl/aclLogic.d.ts.map +1 -1
  3. package/lib/acl/aclLogic.js.map +1 -1
  4. package/lib/chat/chatLogic.d.ts +2 -15
  5. package/lib/chat/chatLogic.d.ts.map +1 -1
  6. package/lib/chat/chatLogic.js +8 -7
  7. package/lib/chat/chatLogic.js.map +1 -1
  8. package/lib/inbox/inboxLogic.d.ts +2 -6
  9. package/lib/inbox/inboxLogic.d.ts.map +1 -1
  10. package/lib/inbox/inboxLogic.js.map +1 -1
  11. package/lib/index.d.ts +4 -18
  12. package/lib/index.d.ts.map +1 -1
  13. package/lib/index.js +2 -86
  14. package/lib/index.js.map +1 -1
  15. package/lib/issuer/issuerLogic.js +1 -1
  16. package/lib/issuer/issuerLogic.js.map +1 -1
  17. package/lib/logic/solidLogic.d.ts +6 -0
  18. package/lib/logic/solidLogic.d.ts.map +1 -0
  19. package/lib/logic/{SolidLogic.js → solidLogic.js} +38 -33
  20. package/lib/logic/solidLogic.js.map +1 -0
  21. package/lib/logic/solidLogicSingleton.d.ts +1 -2
  22. package/lib/logic/solidLogicSingleton.d.ts.map +1 -1
  23. package/lib/logic/solidLogicSingleton.js +2 -2
  24. package/lib/logic/solidLogicSingleton.js.map +1 -1
  25. package/lib/profile/profileLogic.d.ts +2 -12
  26. package/lib/profile/profileLogic.d.ts.map +1 -1
  27. package/lib/profile/profileLogic.js +1 -23
  28. package/lib/profile/profileLogic.js.map +1 -1
  29. package/lib/typeIndex/typeIndexLogic.d.ts +2 -31
  30. package/lib/typeIndex/typeIndexLogic.d.ts.map +1 -1
  31. package/lib/typeIndex/typeIndexLogic.js +12 -359
  32. package/lib/typeIndex/typeIndexLogic.js.map +1 -1
  33. package/lib/types.d.ts +65 -1
  34. package/lib/types.d.ts.map +1 -1
  35. package/package.json +14 -14
  36. package/src/acl/aclLogic.ts +5 -4
  37. package/src/chat/chatLogic.ts +7 -7
  38. package/src/inbox/inboxLogic.ts +2 -1
  39. package/src/index.ts +5 -147
  40. package/src/issuer/issuerLogic.ts +1 -1
  41. package/src/logic/solidLogic.ts +75 -0
  42. package/src/logic/solidLogicSingleton.ts +2 -2
  43. package/src/profile/profileLogic.ts +4 -12
  44. package/src/typeIndex/typeIndexLogic.ts +6 -277
  45. package/src/types.ts +76 -1
  46. package/test/typeIndexLogic.test.ts +484 -54
  47. package/lib/logic/SolidLogic.d.ts +0 -22
  48. package/lib/logic/SolidLogic.d.ts.map +0 -1
  49. package/lib/logic/SolidLogic.js.map +0 -1
  50. package/lib/logic/solidLogicSingletonNew.d.ts +0 -80
  51. package/lib/logic/solidLogicSingletonNew.d.ts.map +0 -1
  52. package/lib/logic/solidLogicSingletonNew.js +0 -238
  53. package/lib/logic/solidLogicSingletonNew.js.map +0 -1
  54. package/src/logic/SolidLogic.ts +0 -81
  55. package/src/logic/solidLogicSingletonNew.ts +0 -239
  56. package/test/typeIndexLogicPart2.test.ts +0 -485
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solid-logic",
3
- "version": "1.3.17-80b4d030",
3
+ "version": "1.3.17-81536f11",
4
4
  "description": "Core business logic of Solid OS",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -25,24 +25,24 @@
25
25
  },
26
26
  "homepage": "https://github.com/solidos/solid-logic#readme",
27
27
  "devDependencies": {
28
- "@babel/plugin-proposal-class-properties": "~7.16.7",
29
- "@babel/plugin-proposal-optional-chaining": "~7.16.7",
30
- "@babel/plugin-transform-async-to-generator": "~7.16.8",
31
- "@babel/plugin-transform-runtime": "^7.17.0",
32
- "@babel/preset-env": "~7.16.11",
33
- "@babel/preset-typescript": "~7.16.7",
34
- "@types/jest": "^27.4.1",
35
- "@typescript-eslint/eslint-plugin": "^5.19.0",
36
- "@typescript-eslint/parser": "^5.19.0",
37
- "eslint": "^8.13.0",
28
+ "@babel/plugin-proposal-class-properties": "~7.18.6",
29
+ "@babel/plugin-proposal-optional-chaining": "~7.18.9",
30
+ "@babel/plugin-transform-async-to-generator": "~7.18.6",
31
+ "@babel/plugin-transform-runtime": "^7.18.10",
32
+ "@babel/preset-env": "~7.18.10",
33
+ "@babel/preset-typescript": "~7.18.6",
34
+ "@types/jest": "^27.5.2",
35
+ "@typescript-eslint/eslint-plugin": "^5.35.1",
36
+ "@typescript-eslint/parser": "^5.35.1",
37
+ "eslint": "^8.23.0",
38
38
  "jest": "^27.5.1",
39
39
  "jest-environment-node-debug": "^2.0.0",
40
40
  "jest-fetch-mock": "^3.0.3",
41
- "typescript": "^4.6.3"
41
+ "typescript": "^4.8.2"
42
42
  },
43
43
  "dependencies": {
44
- "@inrupt/solid-client-authn-browser": "^1.11.7",
45
- "rdflib": "^2.2.19",
44
+ "@inrupt/solid-client-authn-browser": "^1.12.2",
45
+ "rdflib": "^2.2.20",
46
46
  "solid-namespace": "^0.5.2"
47
47
  }
48
48
  }
@@ -1,4 +1,5 @@
1
1
  import { graph, NamedNode, Namespace, serialize, sym } from "rdflib"
2
+ import { AclLogic } from "../types";
2
3
  import { ns as namespace } from '../util/ns'
3
4
 
4
5
 
@@ -6,7 +7,7 @@ export const ACL_LINK = sym(
6
7
  "http://www.iana.org/assignments/link-relations/acl"
7
8
  );
8
9
 
9
- export function createAclLogic(store) {
10
+ export function createAclLogic(store): AclLogic {
10
11
 
11
12
  const ns = namespace
12
13
 
@@ -116,9 +117,9 @@ export function createAclLogic(store) {
116
117
  me: NamedNode,
117
118
  aclURI: string,
118
119
  options: {
119
- defaultForNew?: boolean,
120
- public?: []
121
- } = {}
120
+ defaultForNew?: boolean,
121
+ public?: []
122
+ } = {}
122
123
  ): string | undefined {
123
124
  const optPublic = options.public || []
124
125
  const g = graph()
@@ -1,13 +1,13 @@
1
1
  import { NamedNode, Node, st, term } from "rdflib"
2
- import { CreatedPaneOptions, NewPaneOptions } from "../types"
2
+ import { ChatLogic, CreatedPaneOptions, NewPaneOptions, Chat } from "../types"
3
+ import { ns as namespace } from "../util/ns";
3
4
  import { determineChatContainer, newThing } from "../util/utils"
4
- import { ns as namespace } from '../util/ns'
5
5
 
6
- const CHAT_LOCATION_IN_CONTAINER = "index.ttl#this";
6
+ const CHAT_LOCATION_IN_CONTAINER = "index.ttl#this"
7
7
 
8
- export function createChatLogic(store, profileLogic) {
8
+ export function createChatLogic(store, profileLogic): ChatLogic {
9
9
  const ns = namespace
10
-
10
+
11
11
  async function setAcl(
12
12
  chatContainer: NamedNode,
13
13
  me: NamedNode,
@@ -87,7 +87,7 @@ export function createChatLogic(store, profileLogic) {
87
87
  });
88
88
  }
89
89
 
90
- async function findChat(invitee: NamedNode) {
90
+ async function findChat(invitee: NamedNode): Promise<Chat> {
91
91
  const me = await profileLogic.loadMe();
92
92
  const podRoot = await profileLogic.getPodRoot(me);
93
93
  const chatContainer = determineChatContainer(invitee, podRoot);
@@ -206,7 +206,7 @@ export function createChatLogic(store, profileLogic) {
206
206
  ${ns.rdf("seeAlso")} <${chatThing.value}> .
207
207
  `;
208
208
 
209
- const inviteResponse = await store.fetcher.webOperation(
209
+ const inviteResponse = await store.fetcher?.webOperation(
210
210
  "POST",
211
211
  inviteeInbox.value,
212
212
  {
@@ -1,7 +1,8 @@
1
1
  import { NamedNode } from "rdflib";
2
+ import { InboxLogic } from "../types";
2
3
  import { getArchiveUrl } from "../util/utils";
3
4
 
4
- export function createInboxLogic(store, profileLogic, utilityLogic, containerLogic, aclLogic) {
5
+ export function createInboxLogic(store, profileLogic, utilityLogic, containerLogic, aclLogic): InboxLogic {
5
6
 
6
7
  async function createInboxFor(peerWebId: string, nick: string) {
7
8
  const myWebId: NamedNode = await profileLogic.loadMe();
package/src/index.ts CHANGED
@@ -6,158 +6,16 @@ const authn = solidLogicSingleton.authn
6
6
  const authSession = solidLogicSingleton.authn.authSession
7
7
  const store = solidLogicSingleton.store
8
8
 
9
- const aclLogic = solidLogicSingleton.aclLogic
10
- const utilityLogic = solidLogicSingleton.utilityLogic
11
- const containerLogic = solidLogicSingleton.containerLogic
12
- const profileLogic = solidLogicSingleton.profileLogic
13
- const inboxLogic = solidLogicSingleton.inboxLogic
14
- const typeIndexLogic = solidLogicSingleton.typeIndexLogic
15
- const chatLogic = solidLogicSingleton.chatLogic
16
-
17
- const {
18
- findAclDocUrl,
19
- setACLUserPublic,
20
- genACLText,
21
- } = aclLogic
22
-
23
- const {
24
- ensureTypeIndexes,
25
- loadTypeIndexes,
26
- registerInTypeIndex,
27
- loadIndex,
28
- ensureOneTypeIndex,
29
- putIndex,
30
- makeIndexIfNecessary,
31
- loadIndexes,
32
- getTypeIndex,
33
- getRegistrations,
34
- //NEW function for discovery
35
- loadTypeIndexesFor,
36
- loadCommunityTypeIndexes,
37
- loadAllTypeIndexes,
38
- getScopedAppInstances,
39
- getAppInstances,
40
- suggestPublicTypeIndex,
41
- suggestPrivateTypeIndex,
42
- registerInstanceInTypeIndex,
43
- deleteTypeIndexRegistration,
44
- getScopedAppsFromIndex
45
- } = typeIndexLogic
46
-
47
- const {
48
- setAcl,
49
- addToPrivateTypeIndex,
50
- findChat,
51
- createChatThing,
52
- getChat,
53
- sendInvite,
54
- mintNew
55
- } = chatLogic
56
-
57
- const { createInboxFor, getNewMessages, markAsRead } = inboxLogic
58
- const {
59
- recursiveDelete,
60
- setSinglePeerAccess,
61
- createEmptyRdfDoc,
62
- //NEW function for discovery
63
- followOrCreateLink,
64
- loadOrCreateIfNotExists,
65
- } = utilityLogic
66
-
67
- const {
68
- ensureLoadedPreferences,
69
- loadMe,
70
- getPodRoot,
71
- getMainInbox,
72
- findStorage,
73
- //NEW content from discovery
74
- loadPreferences,
75
- loadProfile,
76
- //NEW function for discovery
77
- silencedLoadPreferences
78
- } = profileLogic
79
-
80
- const {
81
- isContainer,
82
- createContainer,
83
- getContainerElements,
84
- getContainerMembers
85
- } = containerLogic
86
-
87
9
  export { ACL_LINK } from './acl/aclLogic'
88
10
  export { offlineTestID, appContext } from './authn/authUtil'
89
11
  export { getSuggestedIssuers } from './issuer/issuerLogic'
90
- export { SolidLogic } from './logic/SolidLogic'
91
- export { AppDetails, SolidNamespace, AuthenticationContext } from './types'
92
- // solidLogicSingleton is exported entirely because it is used in solid-panes
93
- export { solidLogicSingleton } from './logic/solidLogicSingleton'
12
+ export { AppDetails, SolidNamespace, AuthenticationContext, SolidLogic } from './types'
94
13
  export { UnauthorizedError, CrossOriginForbiddenError, SameOriginForbiddenError, NotFoundError, FetchError, NotEditableError, WebOperationError } from './logic/CustomError'
95
14
 
96
15
  export {
16
+ solidLogicSingleton, // solidLogicSingleton is exported entirely because it is used in solid-panes
97
17
  store,
98
18
  authn,
99
- authSession,
100
- aclLogic,
101
- utilityLogic,
102
- containerLogic,
103
- profileLogic,
104
- inboxLogic,
105
- typeIndexLogic,
106
- chatLogic,
107
- //aclLogic
108
- findAclDocUrl,
109
- setACLUserPublic,
110
- genACLText,
111
- //typeIndexLogic
112
- ensureTypeIndexes,
113
- loadTypeIndexes,
114
- registerInTypeIndex,
115
- loadIndex,
116
- ensureOneTypeIndex,
117
- putIndex,
118
- makeIndexIfNecessary,
119
- loadIndexes,
120
- getTypeIndex,
121
- getRegistrations,
122
- loadTypeIndexesFor,
123
- loadCommunityTypeIndexes,
124
- loadAllTypeIndexes,
125
- getScopedAppInstances,
126
- getAppInstances,
127
- suggestPublicTypeIndex,
128
- suggestPrivateTypeIndex,
129
- registerInstanceInTypeIndex,
130
- deleteTypeIndexRegistration,
131
- getScopedAppsFromIndex,
132
- setAcl,
133
- addToPrivateTypeIndex,
134
- findChat,
135
- createChatThing,
136
- getChat,
137
- sendInvite,
138
- //inboxLogic
139
- mintNew,
140
- createInboxFor,
141
- getNewMessages,
142
- markAsRead,
143
- //utilityLogic
144
- recursiveDelete,
145
- setSinglePeerAccess,
146
- createEmptyRdfDoc,
147
- followOrCreateLink,
148
- loadOrCreateIfNotExists,
149
- //profileLogic
150
- ensureLoadedPreferences,
151
- loadMe,
152
- getPodRoot,
153
- getMainInbox,
154
- findStorage,
155
- loadPreferences,
156
- loadProfile,
157
- silencedLoadPreferences,
158
- //containerLogic
159
- isContainer,
160
- createContainer,
161
- getContainerElements,
162
- getContainerMembers
163
- }
19
+ authSession
20
+ }
21
+
@@ -13,7 +13,7 @@ const DEFAULT_ISSUERS = [
13
13
  },
14
14
  {
15
15
  name: 'pod.Inrupt.com',
16
- uri: 'https://broker.pod.inrupt.com'
16
+ uri: 'https://login.inrupt.com'
17
17
  }
18
18
  ]
19
19
 
@@ -0,0 +1,75 @@
1
+ import { Session } from "@inrupt/solid-client-authn-browser";
2
+ import * as rdf from "rdflib";
3
+ import { LiveStore, NamedNode, Statement } from "rdflib";
4
+ import { createAclLogic } from "../acl/aclLogic";
5
+ import { SolidAuthnLogic } from "../authn/SolidAuthnLogic";
6
+ import { createChatLogic } from "../chat/chatLogic";
7
+ import { createInboxLogic } from "../inbox/inboxLogic";
8
+ import { createProfileLogic } from "../profile/profileLogic";
9
+ import { createTypeIndexLogic } from "../typeIndex/typeIndexLogic";
10
+ import { createContainerLogic } from "../util/containerLogic";
11
+ import { createUtilityLogic } from "../util/utilityLogic";
12
+ import { AuthnLogic, SolidLogic } from "../types";
13
+ import * as debug from "../util/debug";
14
+ /*
15
+ ** It is important to distinquish `fetch`, a function provided by the browser
16
+ ** and `Fetcher`, a helper object for the rdflib Store which turns it
17
+ ** into a `ConnectedStore` or a `LiveStore`. A Fetcher object is
18
+ ** available at store.fetcher, and `fetch` function at `store.fetcher._fetch`,
19
+ */
20
+ export function createSolidLogic(specialFetch: { fetch: (url: any, requestInit: any) => any }, session: Session): SolidLogic {
21
+
22
+ debug.log("SolidLogic: Unique instance created. There should only be one of these.")
23
+ const store: LiveStore = rdf.graph() as LiveStore
24
+ rdf.fetcher(store, {fetch: specialFetch.fetch}); // Attach a web I/O module, store.fetcher
25
+ store.updater = new rdf.UpdateManager(store); // Add real-time live updates store.updater
26
+ store.features = [] // disable automatic node merging on store load
27
+
28
+ const authn: AuthnLogic = new SolidAuthnLogic(session)
29
+
30
+ const acl = createAclLogic(store)
31
+ const containerLogic = createContainerLogic(store)
32
+ const utilityLogic = createUtilityLogic(store, acl, containerLogic)
33
+ const profile = createProfileLogic(store, authn, utilityLogic)
34
+ const chat = createChatLogic(store, profile)
35
+ const inbox = createInboxLogic(store, profile, utilityLogic, containerLogic, acl)
36
+ const typeIndex = createTypeIndexLogic(store, authn, profile, utilityLogic)
37
+ debug.log('SolidAuthnLogic initialized')
38
+
39
+ function load(doc: NamedNode | NamedNode[] | string) {
40
+ return store.fetcher.load(doc);
41
+ }
42
+
43
+ // @@@@ use the one in rdflib.js when it is available and delete this
44
+ function updatePromise(
45
+ del: Array<Statement>,
46
+ ins: Array<Statement> = []
47
+ ): Promise<void> {
48
+ return new Promise((resolve, reject) => {
49
+ store.updater.update(del, ins, function (_uri, ok, errorBody) {
50
+ if (!ok) {
51
+ reject(new Error(errorBody));
52
+ } else {
53
+ resolve();
54
+ }
55
+ }); // callback
56
+ }); // promise
57
+ }
58
+
59
+ function clearStore() {
60
+ store.statements.slice().forEach(store.remove.bind(store));
61
+ }
62
+
63
+ return {
64
+ store,
65
+ authn,
66
+ acl,
67
+ inbox,
68
+ chat,
69
+ profile,
70
+ typeIndex,
71
+ load,
72
+ updatePromise,
73
+ clearStore
74
+ }
75
+ }
@@ -1,6 +1,6 @@
1
1
  import * as debug from "../util/debug"
2
2
  import { authSession } from "../authSession/authSession"
3
- import { SolidLogic } from "./SolidLogic"
3
+ import { createSolidLogic } from "./solidLogic"
4
4
 
5
5
  const _fetch = async (url, requestInit) => {
6
6
  const omitCreds = requestInit && requestInit.credentials && requestInit.credentials == 'omit'
@@ -13,7 +13,7 @@ const _fetch = async (url, requestInit) => {
13
13
  }
14
14
 
15
15
  //this const makes solidLogicSingleton global accessible in mashlib
16
- const solidLogicSingleton = new SolidLogic({ fetch: _fetch }, authSession)
16
+ const solidLogicSingleton = createSolidLogic({ fetch: _fetch }, authSession)
17
17
 
18
18
  debug.log('Unique quadstore initialized.')
19
19
 
@@ -1,20 +1,13 @@
1
1
  import { NamedNode } from "rdflib";
2
2
  import { CrossOriginForbiddenError, FetchError, NotEditableError, SameOriginForbiddenError, UnauthorizedError, WebOperationError } from "../logic/CustomError";
3
- import { AuthenticationContext } from "../types";
4
3
  import * as debug from "../util/debug";
5
- import { differentOrigin, suggestPreferencesFile } from "../util/utils";
6
- import { ns as namespace } from '../util/ns'
4
+ import { ns as namespace } from '../util/ns';
5
+ import { differentOrigin, suggestPreferencesFile } from "../util/utils"
6
+ import { ProfileLogic } from "../types"
7
7
 
8
- export function createProfileLogic(store, authn, utilityLogic) {
8
+ export function createProfileLogic(store, authn, utilityLogic): ProfileLogic {
9
9
  const ns = namespace
10
10
 
11
- async function ensureLoadedPreferences (context: AuthenticationContext) {
12
- if (!context.me) throw new Error('@@ ensureLoadedPreferences: no user specified')
13
- context.publicProfile = await loadProfile(context.me)
14
- context.preferencesFile = await silencedLoadPreferences(context.me)
15
- return context
16
- }
17
-
18
11
  /**
19
12
  * loads the preference without throwing errors - if it can create it it does so.
20
13
  * remark: it still throws error if it cannot load profile.
@@ -121,7 +114,6 @@ export function createProfileLogic(store, authn, utilityLogic) {
121
114
  }
122
115
 
123
116
  return {
124
- ensureLoadedPreferences,
125
117
  loadMe,
126
118
  getPodRoot,
127
119
  getMainInbox,