2019-09-09 01:11:25 +00:00
|
|
|
const S3 = require('aws-sdk/clients/s3')
|
2019-10-13 23:59:50 +00:00
|
|
|
const pageHelper = require('../../../helpers/page.js')
|
2019-09-09 01:11:25 +00:00
|
|
|
|
|
|
|
/* global WIKI */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deduce the file path given the `page` object and the object's key to the page's path.
|
|
|
|
*/
|
|
|
|
const getFilePath = (page, pathKey) => {
|
2019-10-13 23:59:50 +00:00
|
|
|
const fileName = `${page[pathKey]}.${pageHelper.getFileExtension(page.contentType)}`
|
2019-09-09 01:11:25 +00:00
|
|
|
const withLocaleCode = WIKI.config.lang.namespacing && WIKI.config.lang.code !== page.localeCode
|
|
|
|
return withLocaleCode ? `${page.localeCode}/${fileName}` : fileName
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Can be used with S3 compatible storage.
|
|
|
|
*/
|
|
|
|
module.exports = class S3CompatibleStorage {
|
|
|
|
constructor(storageName) {
|
|
|
|
this.storageName = storageName
|
|
|
|
}
|
|
|
|
async activated() {
|
|
|
|
// not used
|
|
|
|
}
|
|
|
|
async deactivated() {
|
|
|
|
// not used
|
|
|
|
}
|
|
|
|
async init() {
|
|
|
|
WIKI.logger.info(`(STORAGE/${this.storageName}) Initializing...`)
|
|
|
|
const { accessKeyId, secretAccessKey, region, bucket, endpoint } = this.config
|
|
|
|
this.s3 = new S3({
|
|
|
|
accessKeyId,
|
|
|
|
secretAccessKey,
|
|
|
|
region,
|
|
|
|
endpoint,
|
|
|
|
params: { Bucket: bucket },
|
|
|
|
apiVersions: '2006-03-01'
|
|
|
|
})
|
|
|
|
// determine if a bucket exists and you have permission to access it
|
|
|
|
await this.s3.headBucket().promise()
|
|
|
|
WIKI.logger.info(`(STORAGE/${this.storageName}) Initialization completed.`)
|
|
|
|
}
|
|
|
|
async created(page) {
|
|
|
|
WIKI.logger.info(`(STORAGE/${this.storageName}) Creating file ${page.path}...`)
|
|
|
|
const filePath = getFilePath(page, 'path')
|
|
|
|
await this.s3.putObject({ Key: filePath, Body: page.injectMetadata() }).promise()
|
|
|
|
}
|
|
|
|
async updated(page) {
|
|
|
|
WIKI.logger.info(`(STORAGE/${this.storageName}) Updating file ${page.path}...`)
|
|
|
|
const filePath = getFilePath(page, 'path')
|
|
|
|
await this.s3.putObject({ Key: filePath, Body: page.injectMetadata() }).promise()
|
|
|
|
}
|
|
|
|
async deleted(page) {
|
|
|
|
WIKI.logger.info(`(STORAGE/${this.storageName}) Deleting file ${page.path}...`)
|
|
|
|
const filePath = getFilePath(page, 'path')
|
|
|
|
await this.s3.deleteObject({ Key: filePath }).promise()
|
|
|
|
}
|
|
|
|
async renamed(page) {
|
2019-10-13 23:59:50 +00:00
|
|
|
WIKI.logger.info(`(STORAGE/${this.storageName}) Renaming file ${page.path} to ${page.destinationPath}...`)
|
2019-12-23 05:12:19 +00:00
|
|
|
let sourceFilePath = getFilePath(page, 'path')
|
|
|
|
let destinationFilePath = getFilePath(page, 'destinationPath')
|
2019-10-13 23:59:50 +00:00
|
|
|
if (WIKI.config.lang.namespacing) {
|
|
|
|
if (WIKI.config.lang.code !== page.localeCode) {
|
|
|
|
sourceFilePath = `${page.localeCode}/${sourceFilePath}`
|
|
|
|
}
|
|
|
|
if (WIKI.config.lang.code !== page.destinationLocaleCode) {
|
|
|
|
destinationFilePath = `${page.destinationLocaleCode}/${destinationFilePath}`
|
|
|
|
}
|
|
|
|
}
|
2019-09-09 01:11:25 +00:00
|
|
|
await this.s3.copyObject({ CopySource: sourceFilePath, Key: destinationFilePath }).promise()
|
|
|
|
await this.s3.deleteObject({ Key: sourceFilePath }).promise()
|
|
|
|
}
|
2019-10-19 21:45:01 +00:00
|
|
|
/**
|
|
|
|
* ASSET UPLOAD
|
|
|
|
*
|
|
|
|
* @param {Object} asset Asset to upload
|
|
|
|
*/
|
|
|
|
async assetUploaded (asset) {
|
|
|
|
WIKI.logger.info(`(STORAGE/${this.storageName}) Creating new file ${asset.path}...`)
|
|
|
|
await this.s3.putObject({ Key: asset.path, Body: asset.data }).promise()
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* ASSET DELETE
|
|
|
|
*
|
|
|
|
* @param {Object} asset Asset to delete
|
|
|
|
*/
|
|
|
|
async assetDeleted (asset) {
|
|
|
|
WIKI.logger.info(`(STORAGE/${this.storageName}) Deleting file ${asset.path}...`)
|
|
|
|
await this.s3.deleteObject({ Key: asset.path }).promise()
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* ASSET RENAME
|
|
|
|
*
|
|
|
|
* @param {Object} asset Asset to rename
|
|
|
|
*/
|
|
|
|
async assetRenamed (asset) {
|
|
|
|
WIKI.logger.info(`(STORAGE/${this.storageName}) Renaming file from ${asset.path} to ${asset.destinationPath}...`)
|
|
|
|
await this.s3.copyObject({ CopySource: asset.path, Key: asset.destinationPath }).promise()
|
|
|
|
await this.s3.deleteObject({ Key: asset.path }).promise()
|
|
|
|
}
|
2019-09-09 01:11:25 +00:00
|
|
|
}
|