| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- import loggerFactory from '~/utils/logger';
- const logger = loggerFactory('growi:service:fileUploaderAws');
- const { Storage } = require('@google-cloud/storage');
- const urljoin = require('url-join');
- let _instance;
- module.exports = function(crowi) {
- const Uploader = require('./uploader');
- const { configManager } = crowi;
- const lib = new Uploader(crowi);
- function getGcsBucket() {
- return configManager.getConfig('crowi', 'gcs:bucket');
- }
- function getGcsInstance() {
- if (_instance == null) {
- const keyFilename = configManager.getConfig('crowi', 'gcs:apiKeyJsonPath');
- // see https://googleapis.dev/nodejs/storage/latest/Storage.html
- _instance = keyFilename != null
- ? new Storage({ keyFilename }) // Create a client with explicit credentials
- : new Storage(); // Create a client that uses Application Default Credentials
- }
- return _instance;
- }
- function getFilePathOnStorage(attachment) {
- const namespace = configManager.getConfig('crowi', 'gcs:uploadNamespace');
- // const namespace = null;
- const dirName = (attachment.page != null)
- ? 'attachment'
- : 'user';
- const filePath = urljoin(namespace || '', dirName, attachment.fileName);
- return filePath;
- }
- /**
- * check file existence
- * @param {File} file https://googleapis.dev/nodejs/storage/latest/File.html
- */
- async function isFileExists(file) {
- // check file exists
- const res = await file.exists();
- return res[0];
- }
- lib.isValidUploadSettings = function() {
- return configManager.getConfig('crowi', 'gcs:apiKeyJsonPath') != null
- && configManager.getConfig('crowi', 'gcs:bucket') != null;
- };
- lib.canRespond = function() {
- return !configManager.getConfig('crowi', 'gcs:referenceFileWithRelayMode');
- };
- lib.respond = async function(res, attachment) {
- if (!lib.getIsUploadable()) {
- throw new Error('GCS is not configured.');
- }
- const temporaryUrl = attachment.getValidTemporaryUrl();
- if (temporaryUrl != null) {
- return res.redirect(temporaryUrl);
- }
- const gcs = getGcsInstance();
- const myBucket = gcs.bucket(getGcsBucket());
- const filePath = getFilePathOnStorage(attachment);
- const file = myBucket.file(filePath);
- const lifetimeSecForTemporaryUrl = configManager.getConfig('crowi', 'gcs:lifetimeSecForTemporaryUrl');
- // issue signed url (default: expires 120 seconds)
- // https://cloud.google.com/storage/docs/access-control/signed-urls
- const [signedUrl] = await file.getSignedUrl({
- action: 'read',
- expires: Date.now() + lifetimeSecForTemporaryUrl * 1000,
- });
- res.redirect(signedUrl);
- try {
- return attachment.cashTemporaryUrlByProvideSec(signedUrl, lifetimeSecForTemporaryUrl);
- }
- catch (err) {
- logger.error(err);
- }
- };
- lib.deleteFile = function(attachment) {
- const filePath = getFilePathOnStorage(attachment);
- return lib.deleteFilesByFilePaths([filePath]);
- };
- lib.deleteFiles = function(attachments) {
- const filePaths = attachments.map((attachment) => {
- return getFilePathOnStorage(attachment);
- });
- return lib.deleteFilesByFilePaths(filePaths);
- };
- lib.deleteFilesByFilePaths = function(filePaths) {
- if (!lib.getIsUploadable()) {
- throw new Error('GCS is not configured.');
- }
- const gcs = getGcsInstance();
- const myBucket = gcs.bucket(getGcsBucket());
- const files = filePaths.map((filePath) => {
- return myBucket.file(filePath);
- });
- files.forEach((file) => {
- file.delete({ ignoreNotFound: true });
- });
- };
- lib.uploadAttachment = function(fileStream, attachment) {
- if (!lib.getIsUploadable()) {
- throw new Error('GCS is not configured.');
- }
- logger.debug(`File uploading: fileName=${attachment.fileName}`);
- const gcs = getGcsInstance();
- const myBucket = gcs.bucket(getGcsBucket());
- const filePath = getFilePathOnStorage(attachment);
- const options = {
- destination: filePath,
- };
- return myBucket.upload(fileStream.path, options);
- };
- lib.saveFile = async function({ filePath, contentType, data }) {
- const gcs = getGcsInstance();
- const myBucket = gcs.bucket(getGcsBucket());
- return myBucket.file(filePath).save(data, { resumable: false });
- };
- /**
- * Find data substance
- *
- * @param {Attachment} attachment
- * @return {stream.Readable} readable stream
- */
- lib.findDeliveryFile = async function(attachment) {
- if (!lib.getIsReadable()) {
- throw new Error('GCS is not configured.');
- }
- const gcs = getGcsInstance();
- const myBucket = gcs.bucket(getGcsBucket());
- const filePath = getFilePathOnStorage(attachment);
- const file = myBucket.file(filePath);
- // check file exists
- const isExists = await isFileExists(file);
- if (!isExists) {
- throw new Error(`Any object that relate to the Attachment (${filePath}) does not exist in GCS`);
- }
- let stream;
- try {
- stream = file.createReadStream();
- }
- catch (err) {
- logger.error(err);
- throw new Error(`Coudn't get file from AWS for the Attachment (${attachment._id.toString()})`);
- }
- // return stream.Readable
- return stream;
- };
- /**
- * check the file size limit
- *
- * In detail, the followings are checked.
- * - per-file size limit (specified by MAX_FILE_SIZE)
- */
- lib.checkLimit = async function(uploadFileSize) {
- const maxFileSize = configManager.getConfig('crowi', 'app:maxFileSize');
- const gcsTotalLimit = configManager.getConfig('crowi', 'app:fileUploadTotalLimit');
- return lib.doCheckLimit(uploadFileSize, maxFileSize, gcsTotalLimit);
- };
- /**
- * List files in storage
- */
- lib.listFiles = async function() {
- if (!lib.getIsReadable()) {
- throw new Error('GCS is not configured.');
- }
- const gcs = getGcsInstance();
- const bucket = gcs.bucket(getGcsBucket());
- const [files] = await bucket.getFiles({
- prefix: configManager.getConfig('crowi', 'gcs:uploadNamespace'),
- });
- return files.map(({ name, metadata: { size } }) => {
- return { name, size };
- });
- };
- return lib;
- };
|