|
const axios = require('axios')
|
|
const FormData = require('form-data')
|
|
const uuid = require('uuid')
|
|
|
|
async function uploadImage(base64Data, authorization) {
|
|
|
|
const base64Image = base64Data.split(';base64,').pop()
|
|
const imageBuffer = Buffer.from(base64Image, 'base64')
|
|
|
|
|
|
const formData = new FormData()
|
|
formData.append('file', imageBuffer, {
|
|
filename: uuid.v4(),
|
|
contentType: 'image/png'
|
|
})
|
|
|
|
try {
|
|
|
|
const response = await axios.post('https://chat.qwenlm.ai/api/v1/files/', formData, {
|
|
headers: {
|
|
...formData.getHeaders(),
|
|
'Reqable-Id': 'reqable-id-e1a06322-bbbd-4fbc-8529-d2c35f538a60',
|
|
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0',
|
|
'authorization': authorization
|
|
}
|
|
})
|
|
return response.data.id
|
|
|
|
} catch (error) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
uploadImage
|
|
}
|
|
|