Files
electron-egg/app/service/example.js
gaoshuaixing 51a8669868 1
2020-12-30 11:29:16 +08:00

52 lines
1.3 KiB
JavaScript

'use strict';
const BaseService = require('./base');
class ExampleService extends BaseService {
async openLocalDir(dir) {
const self = this;
await self.ipcCall('example.openDir', dir);
return true;
}
async uploadFileToSMMS(tmpFile) {
const res = {
code: 1000,
message: 'unknown error',
};
try {
//throw new Error('Sync Error');
const headersObj = {
'Content-Type': 'multipart/form-data',
'Authorization': 'pHVaIfVX8kgxsEL2THTYMVzJDYY3MMZU'
};
const url = 'https://sm.ms/api/v2/upload';
const response = await this.app.curl(url, {
method: 'POST',
headers: headersObj,
files: {
smfile: tmpFile,
},
dataType: 'json',
timeout: 15000,
});
const result = response.data;
if (this.app.config.env === 'local') {
this.app.logger.info('[ExampleService] [uploadFileToSMMS]: info result:%j', result);
}
if (result.code !== 'success') {
this.app.logger.error('[ExampleService] [uploadFileToSMMS]: res error result:%j', result);
}
return result;
} catch (e) {
this.app.logger.error('[ExampleService] [uploadFileToSMMS]: ERROR ', e);
}
return res;
}
}
module.exports = ExampleService;