Remove old functions

pull/1198/head
Mikunj 5 years ago
parent 347a1e5582
commit 522e9fb4ec

@ -1,8 +1,7 @@
const fetch = require('node-fetch');
const { Agent } = require('https');
const FormData = require('form-data');
/* global Buffer, setTimeout, log, _, lokiFileServerAPI */
/* global Buffer, setTimeout, log, _ */
/* eslint-disable more/no-then, no-bitwise, no-nested-ternary */
@ -302,8 +301,6 @@ function initialize() {
getAttachment,
getProxiedSize,
makeProxiedRequest,
putAttachment,
putAvatar,
};
function getAttachment(fileUrl) {
@ -315,30 +312,6 @@ function initialize() {
});
}
function putAttachment(maybeEncryptedBin) {
const formData = new FormData();
const buffer = Buffer.from(maybeEncryptedBin);
formData.append('type', 'network.loki');
formData.append('content', buffer, {
contentType: 'application/octet-stream',
name: 'content',
filename: 'attachment',
});
return lokiFileServerAPI.constructor.uploadPrivateAttachment(formData);
}
function putAvatar(bin) {
const formData = new FormData();
const buffer = Buffer.from(bin);
formData.append('avatar', buffer, {
contentType: 'application/octet-stream',
name: 'avatar',
filename: 'attachment',
});
return lokiFileServerAPI.uploadAvatar(formData);
}
// eslint-disable-next-line no-shadow
async function getProxiedSize(url) {
const result = await _outerAjax(url, {

Loading…
Cancel
Save