| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- const logger = require('@alias/logger')('growi:service:fileUploaderAws');
- const urljoin = require('url-join');
- const { Storage } = require('@google-cloud/storage');
- 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 = new Storage({ keyFilename });
- }
- 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 this.configManager.getConfig('crowi', 'gcs:apiKeyJsonPath') != null
- && this.configManager.getConfig('crowi', 'gcs:bucket') != null;
- };
- lib.deleteFile = async function(attachment) {
- const filePath = getFilePathOnStorage(attachment);
- return lib.deleteFileByFilePath(filePath);
- };
- lib.deleteFileByFilePath = async function(filePath) {
- if (!this.getIsUploadable()) {
- throw new Error('GCS is not configured.');
- }
- const gcs = getGcsInstance();
- const myBucket = gcs.bucket(getGcsBucket());
- const file = myBucket.file(filePath);
- // check file exists
- const isExists = await isFileExists(file);
- if (!isExists) {
- logger.warn(`Any object that relate to the Attachment (${filePath}) does not exist in GCS`);
- return;
- }
- return file.delete();
- };
- lib.uploadFile = function(fileStream, attachment) {
- if (!this.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);
- };
- /**
- * Find data substance
- *
- * @param {Attachment} attachment
- * @return {stream.Readable} readable stream
- */
- lib.findDeliveryFile = async function(attachment) {
- if (!this.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(uploadFileSize) => {
- const maxFileSize = crowi.configManager.getConfig('crowi', 'app:maxFileSize');
- const gcsTotalLimit = crowi.configManager.getConfig('crowi', 'app:fileUploadTotalLimit');
- return lib.doCheckLimit(uploadFileSize, maxFileSize, gcsTotalLimit);
- };
- return lib;
- };
|