-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
191 lines (150 loc) · 4.09 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
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
import path, {dirname} from 'node:path';
import {fileURLToPath} from 'node:url';
import process from 'node:process';
import restafary from 'restafary';
import restbox from 'restbox';
import socketFile from 'socket-file';
import {Router} from 'express';
import currify from 'currify';
import resolvePath from './resolve-path.js';
import editFn from './edit.js';
const {assign} = Object;
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const isUndefined = (a) => typeof a === 'undefined';
const DIR_ROOT = `${__dirname}/..`;
const deepwordMiddleware = currify(_deepwordMiddleware);
const optionsFn = currify(configFn);
const restboxFn = currify(_restboxFn);
const restafaryFn = currify(_restafaryFn);
const isFn = (a) => typeof a === 'function';
const maybe = (fn) => {
if (isFn(fn))
return fn();
return fn;
};
const isDev = process.env.NODE_ENV === 'development';
const cut = currify((prefix, req, res, next) => {
req.url = req.url.replace(prefix, '');
next();
});
export default deepword;
function deepword(options) {
options = options || {};
const router = Router();
const {
prefix = '/deepword',
dropbox,
dropboxToken,
root,
} = options;
router
.route(`${prefix}/*`)
.all(cut(prefix))
.get(deepwordMiddleware(prefix))
.get(optionsFn(options))
.get(monaco)
.get(editFn)
.get(restboxFn({
root,
dropbox,
dropboxToken,
}))
.get(restafaryFn(root))
.get(staticFn)
.put(restboxFn({
root,
dropbox,
dropboxToken,
}))
.put(restafaryFn(root));
return router;
}
export const listen = (socket, options) => {
options = options || {};
const {
root = '/',
auth,
prefixSocket = '/deepword',
} = options;
return socketFile(socket, {
root: maybe(root),
auth,
prefix: prefixSocket,
});
};
assign(deepword, {
listen,
});
function checkOption(isOption) {
if (isFn(isOption))
return isOption();
if (isUndefined(isOption))
return true;
return isOption;
}
function _deepwordMiddleware(prefix, req, res, next) {
const regExp = /^\/deepword\.js(\.map)?$/;
if (regExp.test(req.url))
req.url = '/dist' + req.url;
if (isDev)
req.url = req.url.replace(/^\/dist\//, '/dist-dev/');
next();
}
function configFn(o, req, res, next) {
const online = checkOption(o.online);
const diff = checkOption(o.diff);
const zip = checkOption(o.zip);
if (req.url.indexOf('/options.json'))
return next();
res
.type('json')
.send({
diff,
zip,
online,
});
}
function _restboxFn({root, dropbox, dropboxToken}, req, res, next) {
if (!dropbox)
return next();
const {url} = req;
const prefix = '/api/v1';
const indexOf = url.indexOf.bind(url);
const not = (fn) => (a) => !fn(a);
const is = [`/api/v1`].some(not(indexOf));
if (!is)
return next();
const middle = restbox({
prefix,
token: dropboxToken,
root: maybe(root),
});
middle(req, res, next);
}
function _restafaryFn(root, req, res, next) {
const {url} = req;
const api = '/api/v1/fs';
if (url.indexOf(api))
return next();
const restafaryFunc = restafary({
prefix: api,
root: maybe(root),
});
restafaryFunc(req, res, next);
}
function monaco(req, res, next) {
if (req.url.indexOf('/monaco'))
return next();
const sendFile = res.sendFile.bind(res);
const replace = (path) => req.url.replace('/monaco', path);
const sendError = (error) => res.status(404).send(error);
resolvePath('monaco-editor')
.then(replace)
.then(sendFile)
.catch(sendError);
}
function staticFn(req, res) {
const file = path.normalize(DIR_ROOT + req.url);
res.sendFile(file);
}