mirror of
https://github.com/Jerryplusy/rc-plugin.git
synced 2025-10-14 08:09:19 +00:00
✨ feat: 添加上传云盘功能
This commit is contained in:
parent
d44bcd6502
commit
5dba8caa2f
@ -283,13 +283,7 @@ export class songRequest extends plugin {
|
|||||||
const title = msg.message[0].data.match(/"title":"([^"]+)"/)[1]
|
const title = msg.message[0].data.match(/"title":"([^"]+)"/)[1]
|
||||||
const desc = msg.message[0].data.match(/"desc":"([^"]+)"/)[1]
|
const desc = msg.message[0].data.match(/"desc":"([^"]+)"/)[1]
|
||||||
if (id === "") return
|
if (id === "") return
|
||||||
let paths = [
|
let path = this.getCurDownloadPath(e) + '/' + title + '-' + desc + '.flac'
|
||||||
this.getCurDownloadPath(e) + '/' + title + '-' + desc + '.flac',
|
|
||||||
this.getCurDownloadPath(e) + '/' + title + '-' + desc + '.mp3',
|
|
||||||
this.getCurDownloadPath(e) + '/' + title + '-' + desc + '.mp4'
|
|
||||||
];
|
|
||||||
|
|
||||||
for (let path of paths) {
|
|
||||||
try {
|
try {
|
||||||
// 上传群文件
|
// 上传群文件
|
||||||
await this.uploadGroupFile(e, path);
|
await this.uploadGroupFile(e, path);
|
||||||
@ -299,7 +293,6 @@ export class songRequest extends plugin {
|
|||||||
logger.error(error);
|
logger.error(error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// 上传云盘
|
// 上传云盘
|
||||||
async uploadCloud(e) {
|
async uploadCloud(e) {
|
||||||
@ -316,18 +309,12 @@ export class songRequest extends plugin {
|
|||||||
const title = msg.message[0].data.match(/"title":"([^"]+)"/)[1]
|
const title = msg.message[0].data.match(/"title":"([^"]+)"/)[1]
|
||||||
const desc = msg.message[0].data.match(/"desc":"([^"]+)"/)[1]
|
const desc = msg.message[0].data.match(/"desc":"([^"]+)"/)[1]
|
||||||
if (id === "") return
|
if (id === "") return
|
||||||
let paths = [
|
let path = this.getCurDownloadPath(e) + '/' + title + '-' + desc + '.flac'
|
||||||
this.getCurDownloadPath(e) + '/' + title + '-' + desc + '.flac',
|
|
||||||
this.getCurDownloadPath(e) + '/' + title + '-' + desc + '.mp3',
|
|
||||||
this.getCurDownloadPath(e) + '/' + title + '-' + desc + '.mp4'
|
|
||||||
];
|
|
||||||
for (let path of paths) {
|
|
||||||
try {
|
try {
|
||||||
await formData.append('songFile', fs.createReadStream(path))
|
await formData.append('songFile', fs.createReadStream(path))
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
logger.error(error);
|
logger.error(error);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
let formData = new FormData()
|
let formData = new FormData()
|
||||||
const headers = {
|
const headers = {
|
||||||
...formData.getHeaders(),
|
...formData.getHeaders(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user