-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
231 lines (199 loc) · 6.02 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
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
require("dotenv").config();
const { Keystone } = require("@keystonejs/keystone");
const { Text, Float, Checkbox, DateTimeUtc, Virtual } = require("@keystonejs/fields");
const { GraphQLApp } = require("@keystonejs/app-graphql");
const { AdminUIApp } = require("@keystonejs/app-admin-ui");
const { StaticApp } = require("@keystonejs/app-static");
const { MongooseAdapter: Adapter } = require("@keystonejs/adapter-mongoose");
const cors = require("cors");
const s3list = require("./lib/s3-list");
const envs = require("./lib/envs");
/////////////////////
// KEYSTONE INIT //
/////////////////////
const PROJECT_NAME = "eyebrowse";
function createMongoConnectionString({ user, password="", host, port, database, forDisplay=false }) {
let formattedPassword = forDisplay ? hideSecret(password) : encodeURIComponent(password);
return `mongodb://${user || ""}${(user && password) ? `:${formattedPassword}` : ""}${user ? "@" : ""}${host}:${port}/${database}`;
}
function hideSecret(s) {
if (s) {
return s.replace(/./g, "*");
} else {
return "";
}
}
const mongoUri = createMongoConnectionString(envs.mongo);
console.log(`launching with this configuration:`, {
...envs,
// conceal security-related configuration values
accessKey: hideSecret(envs.accessKey),
secretAccessKey: hideSecret(envs.secretAccessKey),
cookieSecret: hideSecret(envs.cookieSecret),
mongo: {
...envs.mongo,
password: hideSecret(envs.mongo.password),
mongoUri: createMongoConnectionString({...envs.mongo, forDisplay: true}),
}
});
const keystone = new Keystone({
cookieSecret: envs.cookieSecret,
adapter: new Adapter({ mongoUri }),
});
keystone.createList("File", {
schemaDoc:
"A list of files which reside in a remote filestore, whose metadata is cached within Eyebrowse.",
fields: {
name: { type: Text, schemaDoc: "The filename of this object" },
path: {
type: Text,
schemaDoc: "The absolute file path of this object.",
},
parent: {
type: Text,
schemaDoc: "The absolute file path of the parent directory of this.",
},
dir: {
type: Checkbox,
schemaDoc: "Whether this object is a directory.",
},
url: {
type: Virtual,
schemaDoc: "The public URL for this object",
resolver: (item) =>
`https://${envs.bucketName}.s3.amazonaws.com/${
item.target || item.path
}`,
},
target: {
type: Text,
schemaDoc:
"An absolute path to a target file in the same file store. Used to implement symlink-like behavior.",
},
size: { type: Float, schemaDoc: "The filesize, in bytes, of this object" },
lastModified: {
type: DateTimeUtc,
schemaDoc: "The last time this object was modified, as reported by S3",
},
lastCached: {
type: DateTimeUtc,
schemaDoc: "The last time this object was cached by Eyebrowse",
},
},
});
///////////////////////////////////
// S3 CACHING PROOF OF CONCEPT //
///////////////////////////////////
(async () => {
console.log(`------------------`);
console.log(`GETTING S3 OBJECTS`);
console.log(`------------------`);
const s3objs = await s3list.listObjects();
// console.log(s3objs);
console.log(`------------------`);
console.log(`RUNNING ID QUERY `);
console.log(`------------------`);
const idQuery = `
query {
allFiles {
id
name
path
target
}
}
`;
const idQueryResponse = await keystone.executeGraphQL({
context: keystone.createContext(), // skip access control for auth checking
query: idQuery,
});
const ids = idQueryResponse.data.allFiles;
console.log(`existing ids`, ids);
console.log(`---------------------`);
console.log(`RUNNING REPLACE QUERY`);
console.log(`---------------------`);
const replaceFilesQuery = `
mutation($ids: [ID!], $newFiles: [FilesCreateInput]) {
deleteFiles(ids: $ids) {
id
}
createFiles(
data: $newFiles
) {
id
}
}
`;
const replaceFilesVariables = {
ids: ids.map((i) => i.id),
newFiles: s3objs.map((o) => ({ data: o })),
};
try {
console.log(`[START] insert ${s3objs.length} new records into mongo`);
await keystone.executeGraphQL({
context: keystone.createContext(), // skip access control for auth checking
query: replaceFilesQuery,
variables: replaceFilesVariables,
});
console.log(`[FINISH] insert ${s3objs.length} new records into mongo`);
} catch (e) {
console.log(`[ERROR] insert ${s3objs.length} new records into mongo`);
console.error(e);
}
})();
module.exports = {
keystone,
apps: [
new GraphQLApp(),
new StaticApp({ path: "/", src: "public" }),
new AdminUIApp({ name: PROJECT_NAME, enableDefaultRoute: true }),
],
configureExpress: (app) => {
app.use(cors());
app.set("trust proxy", true);
app.get("/files/*", async (req, res) => {
// enforce trailing slash
if (!/\/$/.test(req.url)) {
res.redirect(`${req.url}/`);
return;
}
// remove leading "/files/" and trailing "/"
const requestedDir = req.url.replace(/^\/files\//, "").replace(/\/$/, "");
const clientFileList = await keystone.executeGraphQL({
context: keystone.createContext(),
query: `
query($requestedDir: String) {
allFiles(where: { parent: $requestedDir }, sortBy: [dir_DESC, name_ASC]) {
id
name
path
dir
parent
target
size
url
lastModified
lastCached
}
}
`,
variables: {
requestedDir
}
});
const data = {
allFiles: clientFileList.data.allFiles,
bucket: {
region: envs.region,
bucketName: envs.bucketName,
}
};
res.type("json").send({
status: "success",
data,
});
});
// add trailing slash if omitted
app.get("/files", async (req, res) => res.redirect("/files/"));
},
};