-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
113 lines (99 loc) · 3.1 KB
/
index.js
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
const Koa = require('koa');
const bodyParser = require('koa-bodyparser');
const cors = require('@koa/cors');
const websocket = require('koa-easy-ws');
const WebSocketJSONStream = require('@teamwork/websocket-json-stream');
const ShareDB = require('sharedb');
const uuid = require('uuid').v4;
const COLLECTION_NAME = 'sa';
const app = new Koa();
const db = new ShareDB({ presence: true });
db.use('connect', (ctx, done) => {
// use custom to store the allowed document ID and readOnly setting
ctx.agent.custom = ctx.req;
done();
});
db.use('submit', (ctx, done) => {
const allowed =
ctx.collection === COLLECTION_NAME &&
ctx.id === ctx.agent.custom.docId &&
!ctx.agent.custom.readOnly;
done(allowed ? undefined : 'Cannot write to this document');
});
db.use('readSnapshots', (ctx, done) => {
const allowed =
ctx.collection === COLLECTION_NAME &&
!ctx.snapshots.find((snapshot) => snapshot.id !== ctx.agent.custom.docId);
done(allowed ? undefined : 'Cannot read these document(s)');
});
const documents = new Map();
app.use(cors());
app.use(websocket());
app.use(bodyParser({ enableTypes: ['json', 'text'], strict: false }));
app.use(async (ctx) => {
if (ctx.method === 'POST' && ctx.path === '/') {
const { contents } = ctx.request.body;
// Creates various IDs
const docId = uuid();
const sessionEditingId = generateShortId();
documents.set(sessionEditingId, [docId, false]);
const sessionViewingId = generateShortId();
documents.set(sessionViewingId, [docId, true]);
const connection = db.connect(undefined, { docId, readOnly: false });
const doc = connection.get(COLLECTION_NAME, docId);
await new Promise((resolve, reject) => {
doc.create({ contents }, (err) => {
if (err) {
reject(err);
} else {
resolve();
}
});
});
ctx.body = { docId, sessionEditingId, sessionViewingId };
return;
}
const sessionId = ctx.path.substr(1);
const [docId, readOnly] = getSessionDetails(sessionId);
if (docId === null) {
ctx.status = 404;
return;
}
if (ctx.method !== 'GET') {
ctx.status = 405;
return;
}
if (ctx.ws) {
const ws = new WebSocketJSONStream(await ctx.ws());
ws.on('error', (err) => {
switch (err.message) {
case 'WebSocket CLOSING or CLOSED.':
console.log(err);
break;
default:
console.error('Unexpected error:');
console.error(err);
break;
}
});
db.listen(ws, { docId, readOnly }); // docId and readOnly is passed to 'connect' middleware as ctx.req
} else {
ctx.body = { docId, readOnly };
}
});
const server = app.listen(process.env.PORT || 8080);
// Reference: https://github.com/b3nsn0w/koa-easy-ws/issues/36
server.requestTimeout = 0;
server.headersTimeout = 0;
function getSessionDetails(sessionId) {
const sessionDetails = documents.get(sessionId);
return sessionDetails === undefined ? [null, null] : sessionDetails;
}
function generateShortId() {
const id = uuid().slice(0, 6);
if (documents.has(id)) {
return generateShortId();
} else {
return id;
}
}