mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-01-23 06:38:13 -05:00
116 lines
3.8 KiB
JavaScript
116 lines
3.8 KiB
JavaScript
// upload dist bundled-app to r2
|
|
require('dotenv').config()
|
|
const S3 = require('aws-sdk/clients/s3')
|
|
const S3Client = require('@aws-sdk/client-s3')
|
|
const Upload = require('@aws-sdk/lib-storage')
|
|
const pkg = require('../package.json')
|
|
const configList = require('./config')
|
|
const fs = require('fs')
|
|
const path = require('path')
|
|
const yaml = require('js-yaml')
|
|
|
|
const BUCKET = 'piclist-dl'
|
|
const VERSION = pkg.version
|
|
const FILE_PATH = 'latest/'
|
|
const ACCOUNT_ID = process.env.R2_ACCOUNT_ID
|
|
const SECRET_ID = process.env.R2_SECRET_ID
|
|
const SECRET_KEY = process.env.R2_SECRET_KEY
|
|
|
|
const s3 = new S3({
|
|
endpoint: `https://${ACCOUNT_ID}.r2.cloudflarestorage.com`,
|
|
accessKeyId: SECRET_ID,
|
|
secretAccessKey: SECRET_KEY,
|
|
signatureVersion: 'v4'
|
|
})
|
|
|
|
const removeDupField = path => {
|
|
const file = fs.readFileSync(path, 'utf8')
|
|
const data = yaml.load(file)
|
|
const filesMap = {}
|
|
data.files.forEach(file => {
|
|
const key = file.url + file.sha512 + file.size
|
|
filesMap[key] = file
|
|
})
|
|
data.files = Object.values(filesMap)
|
|
const newYml = yaml.dump(data, { lineWidth: -1 })
|
|
fs.writeFileSync(path, newYml, 'utf8')
|
|
}
|
|
|
|
const uploadFile = async () => {
|
|
try {
|
|
const platform = process.platform
|
|
if (configList[platform]) {
|
|
let versionFileHasUploaded = false
|
|
for (const [index, config] of configList[platform].entries()) {
|
|
const fileName = `${config.appNameWithPrefix}${VERSION}${config.arch}${config.ext}`
|
|
const distPath = path.join(__dirname, '../dist_electron')
|
|
const versionFileName = config['version-file']
|
|
console.log('[PicList Dist] Uploading...', fileName, `${index + 1}/${configList[platform].length}`)
|
|
const fileStream = fs.createReadStream(path.join(distPath, fileName))
|
|
const options = {
|
|
credentials: {
|
|
accessKeyId: SECRET_ID,
|
|
secretAccessKey: SECRET_KEY
|
|
},
|
|
endpoint: `https://${ACCOUNT_ID}.r2.cloudflarestorage.com`,
|
|
sslEnabled: true,
|
|
region: 'us-east-1'
|
|
}
|
|
const client = new S3Client.S3Client(options)
|
|
const parallelUploads3 = new Upload.Upload({
|
|
client,
|
|
params: {
|
|
Bucket: BUCKET,
|
|
Key: `${FILE_PATH}${fileName}`,
|
|
Body: fileStream,
|
|
ContentType: 'application/octet-stream',
|
|
Metadata: {
|
|
description: 'uploaded by PicList'
|
|
}
|
|
}
|
|
})
|
|
parallelUploads3.on('httpUploadProgress', progress => {
|
|
const progressBar = Math.round((progress.loaded / progress.total) * 100)
|
|
process.stdout.write(`\r${progressBar}% ${fileName}`)
|
|
})
|
|
console.log('\n')
|
|
await parallelUploads3.done()
|
|
console.log(`${fileName} uploaded!`)
|
|
if (!versionFileHasUploaded) {
|
|
console.log('[PicList Version File] Uploading...', versionFileName)
|
|
let versionFilePath
|
|
if (platform === 'win32') {
|
|
versionFilePath = path.join(distPath, 'latest.yml')
|
|
} else if (platform === 'darwin') {
|
|
versionFilePath = path.join(distPath, 'latest-mac.yml')
|
|
} else {
|
|
versionFilePath = path.join(distPath, 'latest-linux.yml')
|
|
}
|
|
removeDupField(versionFilePath)
|
|
const versionFileBuffer = fs.readFileSync(versionFilePath)
|
|
await s3
|
|
.upload({
|
|
Bucket: BUCKET,
|
|
Key: `${versionFileName}`,
|
|
Body: versionFileBuffer
|
|
})
|
|
.promise()
|
|
await s3
|
|
.upload({
|
|
Bucket: BUCKET,
|
|
Key: `${FILE_PATH}${versionFileName}`,
|
|
Body: versionFileBuffer
|
|
})
|
|
.promise()
|
|
versionFileHasUploaded = true
|
|
}
|
|
}
|
|
} else {
|
|
console.warn('platform not supported!', platform)
|
|
}
|
|
} catch (err) {
|
|
console.error(err)
|
|
}
|
|
}
|
|
uploadFile()
|