-
Notifications
You must be signed in to change notification settings - Fork 1
/
msgToSparql.ts
285 lines (276 loc) · 7.97 KB
/
msgToSparql.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
import { Message } from "../scuttlesaurus/agents/feeds/FeedsAgent.ts";
import {
parseBlobId,
parseFeedId,
parseMsgKey,
} from "../scuttlesaurus/util.ts";
type FeedIdStr = `@${string}.ed25519`;
type Mention = {
link: string;
name: string;
};
type Post = {
type: "post";
root?: string;
fork?: string;
branch?: string;
reply?: Record<string, FeedIdStr>;
channel?: string | string[] | null;
recps?: null | string[];
text: string;
mentions: Mention[];
};
type Vote = {
type: "vote";
vote: {
link: string;
value: number;
expression?: string;
};
};
type Contact = {
type: "contact";
contact: FeedIdStr;
following: boolean;
autofollow?: boolean;
blocking?: boolean;
};
type About = {
type: "about";
about: string;
name?: string;
image?: string | { link: string };
description?: string;
title?: string;
};
type OldSchoolAddress = { host: string; port: number; key: FeedIdStr };
type Pub = {
type: "pub";
address: string | OldSchoolAddress;
};
export type RichMessage = Message & {
value: {
content: { type?: string } | Post | Vote | Contact | About | Pub;
timestamp: number;
};
};
export type InsertDelete = { insertClause: string; deleteClause: string };
export default function msgToSparql(msg: RichMessage): InsertDelete {
const msgUri = parseMsgKey(msg.key).toUri();
const timestamp = msg.value.timestamp;
const content = msg.value.content;
abstract class StatementGenerator {
abstract get insertDelete(): InsertDelete;
}
class BasicMessage extends StatementGenerator {
get insertDelete(): InsertDelete {
const safeContent = (() => {
try {
return this.content;
} catch (error) {
console.error(
`Failed converting ${JSON.stringify(content)} to sparql: ${error}.`,
);
return undefined;
}
})();
return {
insertClause: `
<${msgUri}> rdf:type ssb:Message;
ssb:seq ${msg.value.sequence};
ssb:timestamp ${timestamp};
ssb:author <${feedIdToUri(msg.value.author as FeedIdStr)}>;
ssb:raw "${escapeLiteral(JSON.stringify(msg))}"
${
safeContent
? `; ssb:content <content:${msgUri}>. <content:${msgUri}> ${safeContent}`
: ""
}.
`,
deleteClause: "",
};
}
get content(): string | undefined {
return undefined;
}
}
function feedIdToUri(feedId: FeedIdStr) {
const [key, cypher] = feedId.trim().split(".");
if (cypher !== "ed25519") {
return `ssb:feed/${cypher}/${
key.substring(1).replaceAll("/", "_").replaceAll("+", "-")
}`.replaceAll("}", encodeURIComponent("}")); //TODO make safety more generic
}
return parseFeedId(feedId).toUri();
}
const contentSerializers: Record<string, StatementGenerator> = {
"post": new class extends BasicMessage {
get content() {
const content = msg.value.content as Post;
return `rdf:type ssb:Post;
ssb:text "${escapeLiteral(content.text)}"
${content.root ? `;\nssb:root <${msgKeyToUri(content.root)}>` : ""}
${content.fork ? `;\nssb:fork <${msgKeyToUri(content.fork)}>` : ""}
${
content.reply && Object.entries(content.reply).length > 0
? ";\n" + Object.entries(content.reply).map(([p, _a]) =>
`ssb:reply <${msgKeyToUri(p)}>`
).join(";\n")
: ""
}
${
content.mentions && Object.entries(content.mentions).length > 0
? ";\n" + content.mentions.map((mention, index) =>
`ssb:mention <mention:${msgUri}/${index}>. <mention:${msgUri}/${index}> ${
mentionAsTurtlePredicates(mention)
}`
).join(";\n")
: ""
}
`;
}
}(),
"contact": new class extends BasicMessage {
get content() {
const content = msg.value.content as Contact;
return `
rdf:type ssb:Contact;
ssb:contact <${feedIdToUri(content.contact)}>
${
typeof (content.following) === "boolean"
? `;\nssb:following ${content.following}`
: ""
}
${
typeof (content.autofollow) === "boolean"
? `;\nssb:autofollow ${content.autofollow}`
: ""
}
${
typeof (content.blocking) === "boolean"
? `;\nssb:blocking ${content.blocking}`
: ""
}
`;
}
get insertDelete(): InsertDelete {
const content = msg.value.content as Contact;
if (typeof (content.following) !== "boolean") {
return super.insertDelete;
}
const result = super.insertDelete;
const shortcutTriple = `<${
feedIdToUri(msg.value.author as FeedIdStr)
}> ssbx:follows <${feedIdToUri(content.contact)}> .`;
if (content.following) {
result.insertClause += `
${shortcutTriple}
`;
} else {
result.deleteClause += `
${shortcutTriple}
`;
}
return result;
}
}(),
"vote": new class extends BasicMessage {
get content() {
const content = msg.value.content as Vote;
return `
rdf:type ssb:Vote;
${content.vote.value ? `rdf:value ${content.vote.value};` : ""}
${
content.vote.expression
? `ssb:expression "${escapeLiteral(content.vote.expression)}";`
: ""
}
ssb:link <${sigilToIri(content.vote.link)}>`;
}
}(),
"about": new class extends BasicMessage {
get content() {
const content = msg.value.content as About;
return `
rdf:type ssb:About;
ssb:about <${sigilToIri(content.about)}>${
content.description
? `;
ssb:description "${escapeLiteral(content.description)}"`
: ""
}${
content.image
? typeof (content.image) !== "string"
? `;
ssb:image <${sigilToIri(content.image.link)}>`
: `;
ssb:image <${sigilToIri(content.image)}>`
: ""
}${
content.name
? `;
ssb:name "${escapeLiteral(content.name)}"`
: ""
}${
content.title
? `;
ssb:title "${escapeLiteral(content.title)}"`
: ""
}
`;
}
}(),
"pub": new class extends BasicMessage {
get content() {
const content = msg.value.content as Pub;
const oldSchool2String = (old: OldSchoolAddress) =>
`net:${old.host}:${old.port}~shs:${parseFeedId(old.key).base64Key}`;
const address = typeof content.address === "string"
? content.address
: oldSchool2String(content.address as OldSchoolAddress);
return `
rdf:type ssb:Pub;
ssb:address "${escapeLiteral(address)}"`;
}
}(),
};
function mentionAsTurtlePredicates(mention: Mention) {
return `
a ssb:Link;
ssb:target <${
sigilToIri(typeof (mention) === "string" ? mention : mention.link)
}>
`;
}
function msgKeyToUri(key: string) {
return parseMsgKey(key).toUri();
}
function sigilToIri(sigil: string) {
switch (sigil[0]) {
case "@":
return parseFeedId(sigil).toUri();
case "&":
return parseBlobId(sigil).toUri();
case "%":
return parseMsgKey(sigil).toUri();
case "#":
return `ssb:tag/${encodeURIComponent(sigil.substring(1))}`;
default:
throw new Error("unrecognized sigil type: " + sigil);
}
}
function escapeLiteral(text: string) {
return text.replaceAll("\\", "\\\\")
.replaceAll('"', '\\"')
.replaceAll("\n", "\\n").replaceAll("\r", "");
}
const statementGenerator = content.type && contentSerializers[content.type];
if (statementGenerator) {
try {
return statementGenerator.insertDelete;
} catch (e) {
console.info(`Caught ${e}, failing back to BasicMessage`);
}
}
return new BasicMessage().insertDelete;
}