mirror of https://gitlab.com/ecentrics/concordia
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.5 KiB
38 lines
1.5 KiB
import { promises as fs, constants } from 'fs';
|
|
import path from 'path';
|
|
import { getStorageLocation, getTagsDirectory } from '../utils/storageUtils';
|
|
|
|
const readContractFilesToArray = (contractsDirectoryPath) => fs
|
|
.readdir(contractsDirectoryPath)
|
|
.then((contractFilenames) => contractFilenames
|
|
.map((contractFilename) => fs
|
|
.readFile(path.join(`${contractsDirectoryPath}/${contractFilename}`), 'utf-8')
|
|
.then((rawContractData) => JSON.parse(rawContractData))))
|
|
.then((contractObjectPromises) => Promise.all([...contractObjectPromises]));
|
|
|
|
const downloadContracts = async (req, res) => {
|
|
const { params: { hash: identifier } } = req;
|
|
const hashBasedDirectoryPath = getStorageLocation(identifier);
|
|
|
|
return fs.access(hashBasedDirectoryPath, constants.R_OK)
|
|
.then(() => readContractFilesToArray(hashBasedDirectoryPath))
|
|
.catch(() => {
|
|
const tagsDirectory = getTagsDirectory();
|
|
|
|
return fs
|
|
.access(tagsDirectory, constants.R_OK)
|
|
.then(() => {
|
|
const tagFilePath = path.join(tagsDirectory, identifier);
|
|
|
|
return fs.readFile(tagFilePath, 'utf-8')
|
|
.then((tagReference) => {
|
|
const tagBasedDirectoryPath = getStorageLocation(tagReference);
|
|
|
|
return readContractFilesToArray(tagBasedDirectoryPath);
|
|
});
|
|
});
|
|
}).then((contracts) => res.send(contracts))
|
|
.catch(() => Promise.reject(new Error(`No contracts version or tag found for ${identifier}.`)));
|
|
};
|
|
|
|
export default downloadContracts;
|
|
|