From 522e9fb4ecdba1b1637629a7722ac42ff7aed1ba Mon Sep 17 00:00:00 2001 From: Mikunj Date: Tue, 30 Jun 2020 09:43:22 +1000 Subject: [PATCH] Remove old functions --- js/modules/web_api.js | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/js/modules/web_api.js b/js/modules/web_api.js index 0b89c3804..efe82f9ad 100644 --- a/js/modules/web_api.js +++ b/js/modules/web_api.js @@ -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, {