mirror of
https://github.com/apgzs/cool-admin-api.git
synced 2025-04-05 19:41:46 +08:00
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import { BaseService } from 'egg-cool-service';
|
|
import * as moment from 'moment';
|
|
import * as uuid from 'uuid/v1';
|
|
import axios from 'axios';
|
|
import * as _ from 'lodash';
|
|
|
|
/**
|
|
* 文件
|
|
*/
|
|
export default class File extends BaseService {
|
|
/**
|
|
* 上传文件
|
|
*/
|
|
public async upload () {
|
|
const ctx = this.ctx;
|
|
if (_.isEmpty(ctx.request.files)) {
|
|
throw new Error('上传文件为空');
|
|
}
|
|
const file = ctx.request.files[0];
|
|
try {
|
|
const extend = file.filename.split('.');
|
|
const name = moment().format('YYYYMMDD') + '/' + uuid() + '.' + extend[extend.length - 1];
|
|
const result = await ctx.oss.put(name, file.filepath);
|
|
if (result.url && result.url.indexOf('http://') !== -1) {
|
|
result.url = result.url.replace('http', 'https');
|
|
}
|
|
return result;
|
|
} catch (err) {
|
|
throw new Error('上传文件失败:' + err);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 下载图片链接并上传到oss
|
|
*/
|
|
public async uploadWithPic (url) {
|
|
try {
|
|
const ctx = this.ctx;
|
|
const data = await axios.get(url, { responseType: 'arraybuffer' }).then(res => {
|
|
return res.data;
|
|
});
|
|
const name = moment().format('YYYYMMDD') + '/' + uuid() + '.png';
|
|
return await ctx.oss.put(name, data);
|
|
} catch (err) {
|
|
return { url };
|
|
}
|
|
}
|
|
}
|