-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathrepository.ts
More file actions
426 lines (373 loc) · 12.5 KB
/
Copy pathrepository.ts
File metadata and controls
426 lines (373 loc) · 12.5 KB
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
import fs from 'fs-extra';
import getUnixUtcTimestamp from 'oc-get-unix-utc-timestamp';
import path from 'path';
import dotenv from 'dotenv';
import { promisify } from 'util';
import nodeDir, { PathsResult } from 'node-dir';
import ComponentsCache from './components-cache';
import getComponentsDetails from './components-details';
import registerTemplates from './register-templates';
import settings from '../../resources/settings';
import strings from '../../resources';
import * as validator from './validators';
import getPromiseBasedAdapter from './storage-adapter';
import * as versionHandler from './version-handler';
import errorToString from '../../utils/error-to-string';
import {
Component,
ComponentsDetails,
Config,
TemplateInfo
} from '../../types';
import { StorageAdapter } from 'oc-storage-adapters-utils';
const packageInfo = fs.readJsonSync(
path.join(__dirname, '..', '..', '..', 'package.json')
);
const getPaths: (path: string) => Promise<PathsResult> = promisify(
nodeDir.paths
);
export default function repository(conf: Config) {
const cdn: StorageAdapter =
!conf.local &&
(getPromiseBasedAdapter(conf.storage.adapter(conf.storage.options)) as any);
const options = !conf.local ? conf.storage.options : null;
const repositorySource = conf.local
? 'local repository'
: cdn.adapterType + ' cdn';
const componentsCache = ComponentsCache(conf, cdn);
const componentsDetails = getComponentsDetails(conf, cdn);
const getFilePath = (component: string, version: string, filePath: string) =>
`${options!.componentsDir}/${component}/${version}/${filePath}`;
const { templatesHash, templatesInfo } = registerTemplates(
conf.templates,
conf.local
);
const local = {
getCompiledView(componentName: string): string {
if (componentName === 'oc-client') {
return fs
.readFileSync(
path.join(
__dirname,
'../../components/oc-client/_package/template.js'
)
)
.toString();
}
return fs
.readFileSync(
path.join(conf.path, `${componentName}/_package/template.js`)
)
.toString();
},
getComponents(): string[] {
const validComponents =
conf.components ||
fs.readdirSync(conf.path).filter(file => {
const isDir = fs.lstatSync(path.join(conf.path, file)).isDirectory();
const isValidComponent = isDir
? fs
.readdirSync(path.join(conf.path, file))
.filter(file => file === '_package').length === 1
: false;
return isValidComponent;
});
validComponents.push('oc-client');
return validComponents;
},
getComponentVersions(componentName: string): Promise<string[]> {
if (componentName === 'oc-client') {
return Promise.all([
fs
.readJson(path.join(__dirname, '../../../package.json'))
.then(x => x.version)
]);
}
if (!local.getComponents().includes(componentName)) {
return Promise.reject(
strings.errors.registry.COMPONENT_NOT_FOUND(
componentName,
repositorySource
)
);
}
return Promise.all([
fs
.readJson(path.join(conf.path, `${componentName}/package.json`))
.then(x => x.version)
]);
},
getDataProvider(componentName: string) {
const ocClientServerPath =
'../../components/oc-client/_package/server.js';
const filePath =
componentName === 'oc-client'
? path.join(__dirname, ocClientServerPath)
: path.join(conf.path, `${componentName}/_package/server.js`);
return {
content: fs.readFileSync(filePath).toString(),
filePath
};
},
getEnv(componentName: string): Record<string, string> {
const pkg: Component = fs.readJsonSync(
path.join(conf.path, `${componentName}/package.json`)
);
const filePath = path.join(conf.path, componentName, pkg.oc.files.env!);
return dotenv.parse(fs.readFileSync(filePath).toString());
}
};
const putDir = async (dirInput: string, dirOutput: string) => {
const paths = await getPaths(dirInput);
const packageJsonFile = path.join(dirInput, 'package.json');
const files = paths.files.filter(file => file !== packageJsonFile);
const filesResults = await Promise.all(
files.map((file: string) => {
const relativeFile = file.slice(dirInput.length);
const url = (dirOutput + relativeFile).replace(/\\/g, '/');
const serverPattern = /(\\|\/)server\.js/;
const dotFilePattern = /(\\|\/)\..+/;
const privateFilePatterns = [serverPattern, dotFilePattern];
return cdn.putFile(
file,
url,
privateFilePatterns.some(r => r.test(relativeFile))
);
})
);
// Ensuring package.json is uploaded last so we can verify that a component
// was properly uploaded by checking if package.json exists
const packageJsonFileResult = await cdn.putFile(
packageJsonFile,
`${dirOutput}/package.json`.replace(/\\/g, '/'),
false
);
return [...filesResults, packageJsonFileResult];
};
const repository = {
getCompiledView(
componentName: string,
componentVersion: string
): Promise<string> {
if (conf.local) {
return Promise.resolve(local.getCompiledView(componentName));
}
return cdn.getFile(
getFilePath(componentName, componentVersion, 'template.js')
);
},
async getComponent(
componentName: string,
componentVersion?: string
): Promise<Component> {
const allVersions = await repository.getComponentVersions(componentName);
if (allVersions.length === 0) {
throw strings.errors.registry.COMPONENT_NOT_FOUND(
componentName,
repositorySource
);
}
const version = versionHandler.getAvailableVersion(
componentVersion,
allVersions
);
if (!version) {
throw strings.errors.registry.COMPONENT_VERSION_NOT_FOUND(
componentName,
componentVersion || '',
repositorySource
);
}
const component = await repository
.getComponentInfo(componentName, version)
.catch(err => {
throw `component not available: ${errorToString(err)}`;
});
return Object.assign(component, { allVersions });
},
getComponentInfo(
componentName: string,
componentVersion: string
): Promise<Component> {
if (conf.local) {
let componentInfo: Component;
if (componentName === 'oc-client') {
componentInfo = fs.readJsonSync(
path.join(
__dirname,
'../../components/oc-client/_package/package.json'
)
);
} else {
componentInfo = fs.readJsonSync(
path.join(conf.path, `${componentName}/_package/package.json`)
);
}
if (componentInfo.version === componentVersion) {
return Promise.resolve(componentInfo);
} else {
// eslint-disable-next-line prefer-promise-reject-errors
return Promise.reject('version not available');
}
}
return cdn.getJson<Component>(
getFilePath(componentName, componentVersion, 'package.json'),
false
);
},
getComponentPath(componentName: string, componentVersion: string): string {
const prefix = conf.local
? conf.baseUrl
: `${options!['path']}${options!.componentsDir}/`;
return `${prefix}${componentName}/${componentVersion}/`;
},
async getComponents(): Promise<string[]> {
if (conf.local) {
return local.getComponents();
}
const { components } = await componentsCache.get();
return Object.keys(components);
},
getComponentsDetails(): Promise<ComponentsDetails> {
if (conf.local) {
// when in local this won't get called
return Promise.resolve(null) as any;
}
return componentsDetails.get();
},
async getComponentVersions(componentName: string): Promise<string[]> {
if (conf.local) {
return local.getComponentVersions(componentName);
}
const res = await componentsCache.get();
return res.components[componentName] ? res.components[componentName] : [];
},
async getDataProvider(
componentName: string,
componentVersion: string
): Promise<{
content: string;
filePath: string;
}> {
if (conf.local) {
return local.getDataProvider(componentName);
}
const filePath = getFilePath(
componentName,
componentVersion,
'server.js'
);
const content = await cdn.getFile(filePath);
return { content, filePath };
},
async getEnv(
componentName: string,
componentVersion: string
): Promise<Record<string, string>> {
if (conf.local) {
return local.getEnv(componentName);
}
const filePath = getFilePath(componentName, componentVersion, '.env');
const file = await cdn.getFile(filePath);
return dotenv.parse(file);
},
getStaticClientPath: (): string =>
`${options!['path']}${getFilePath(
'oc-client',
packageInfo.version,
'src/oc-client.min.js'
)}`,
getStaticClientMapPath: (): string =>
`${options!['path']}${getFilePath(
'oc-client',
packageInfo.version,
'src/oc-client.min.map'
)}`,
getStaticFilePath: (
componentName: string,
componentVersion: string,
filePath: string
): string =>
`${repository.getComponentPath(componentName, componentVersion)}${
conf.local ? settings.registry.localStaticRedirectorPath : ''
}${filePath}`,
getTemplatesInfo: (): TemplateInfo[] => templatesInfo,
getTemplate: (type: string) => templatesHash[type],
async init(): Promise<ComponentsDetails | undefined> {
if (conf.local) {
// when in local this won't get called
return;
}
const componentsList = await componentsCache.load();
return componentsDetails.refresh(componentsList);
},
async publishComponent(
pkgDetails: { outputFolder: string; packageJson: Component },
componentName: string,
componentVersion: string
): Promise<ComponentsDetails> {
if (conf.local) {
throw {
code: strings.errors.registry.LOCAL_PUBLISH_NOT_ALLOWED_CODE,
msg: strings.errors.registry.LOCAL_PUBLISH_NOT_ALLOWED
};
}
if (!validator.validateComponentName(componentName)) {
throw {
code: strings.errors.registry.COMPONENT_NAME_NOT_VALID_CODE,
msg: strings.errors.registry.COMPONENT_NAME_NOT_VALID
};
}
if (!validator.validateVersion(componentVersion)) {
throw {
code: strings.errors.registry.COMPONENT_VERSION_NOT_VALID_CODE,
msg: strings.errors.registry.COMPONENT_VERSION_NOT_VALID(
componentVersion
)
};
}
const validationResult = validator.validatePackageJson(
Object.assign(pkgDetails, {
componentName,
customValidator: conf.publishValidation
})
);
if (!validationResult.isValid) {
throw {
code: strings.errors.registry.COMPONENT_PUBLISHVALIDATION_FAIL_CODE,
msg: strings.errors.registry.COMPONENT_PUBLISHVALIDATION_FAIL(
String(validationResult.error)
)
};
}
const componentVersions = await repository.getComponentVersions(
componentName
);
if (
!versionHandler.validateNewVersion(componentVersion, componentVersions)
) {
throw {
code: strings.errors.registry.COMPONENT_VERSION_ALREADY_FOUND_CODE,
msg: strings.errors.registry.COMPONENT_VERSION_ALREADY_FOUND(
componentName,
componentVersion,
repositorySource
)
};
}
pkgDetails.packageJson.oc.date = getUnixUtcTimestamp();
await fs.writeJson(
path.join(pkgDetails.outputFolder, 'package.json'),
pkgDetails.packageJson
);
await putDir(
pkgDetails.outputFolder,
`${options!.componentsDir}/${componentName}/${componentVersion}`
);
const componentsList = await componentsCache.refresh();
return componentsDetails.refresh(componentsList);
}
};
return repository;
}
export type Repository = ReturnType<typeof repository>;