mirror of
https://github.com/status-im/codimd.git
synced 2025-01-13 06:14:15 +00:00
710620a920
Signed-off-by: Raccoon <raccoon@hackmd.io>
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import * as fs from "fs";
|
|
import * as path from "path";
|
|
|
|
import * as Minio from "minio";
|
|
|
|
import * as config from "../config";
|
|
import {getImageMimeType} from "../utils";
|
|
import * as logger from "../logger";
|
|
|
|
const minioClient = new Minio.Client({
|
|
endPoint: config.minio.endPoint,
|
|
port: config.minio.port,
|
|
useSSL: config.minio.secure,
|
|
accessKey: config.minio.accessKey,
|
|
secretKey: config.minio.secretKey
|
|
})
|
|
|
|
export function uploadImage(imagePath, callback) {
|
|
if (!imagePath || typeof imagePath !== 'string') {
|
|
callback(new Error('Image path is missing or wrong'), null)
|
|
return
|
|
}
|
|
|
|
if (!callback || typeof callback !== 'function') {
|
|
logger.error('Callback has to be a function')
|
|
return
|
|
}
|
|
|
|
fs.readFile(imagePath, function (err, buffer) {
|
|
if (err) {
|
|
callback(err, null)
|
|
return
|
|
}
|
|
|
|
const key = path.join('uploads', path.basename(imagePath))
|
|
const protocol = config.minio.secure ? 'https' : 'http'
|
|
|
|
minioClient.putObject(config.s3bucket, key, buffer, buffer.length, getImageMimeType(imagePath), function (err, data) {
|
|
if (err) {
|
|
callback(err, null)
|
|
return
|
|
}
|
|
const hidePort = [80, 443].includes(config.minio.port)
|
|
const urlPort = hidePort ? '' : `:${config.minio.port}`
|
|
callback(null, `${protocol}://${config.minio.endPoint}${urlPort}/${config.s3bucket}/${key}`)
|
|
})
|
|
})
|
|
}
|