|
|
|
@ -4,9 +4,14 @@ import { parseStatusCodeFromOnionRequest } from '../opengroup/opengroupV2/OpenGr
|
|
|
|
|
import { fromArrayBufferToBase64, fromBase64ToArrayBuffer } from '../session/utils/String';
|
|
|
|
|
|
|
|
|
|
// tslint:disable-next-line: no-http-string
|
|
|
|
|
export const fileServerV2URL = 'http://88.99.175.227';
|
|
|
|
|
export const fileServerV2PubKey =
|
|
|
|
|
export const oldFileServerV2URL = 'http://88.99.175.227';
|
|
|
|
|
export const oldFileServerV2PubKey =
|
|
|
|
|
'7cb31905b55cd5580c686911debf672577b3fb0bff81df4ce2d5c4cb3a7aaa69';
|
|
|
|
|
// tslint:disable-next-line: no-http-string
|
|
|
|
|
export const fileServerV2URL = 'http://filev2.getsession.org';
|
|
|
|
|
|
|
|
|
|
export const fileServerV2PubKey =
|
|
|
|
|
'da21e1d886c6fbaea313f75298bd64aab03a97ce985b46bb2dad9f2089c8ee59';
|
|
|
|
|
|
|
|
|
|
export type FileServerV2Request = {
|
|
|
|
|
method: 'GET' | 'POST' | 'DELETE' | 'PUT';
|
|
|
|
@ -14,6 +19,7 @@ export type FileServerV2Request = {
|
|
|
|
|
// queryParams are used for post or get, but not the same way
|
|
|
|
|
queryParams?: Record<string, any>;
|
|
|
|
|
headers?: Record<string, string>;
|
|
|
|
|
isOldV2server?: boolean; // to remove in a few days
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const FILES_ENDPOINT = 'files';
|
|
|
|
@ -67,7 +73,8 @@ export const uploadFileToFsV2 = async (
|
|
|
|
|
* @returns the data as an Uint8Array or null
|
|
|
|
|
*/
|
|
|
|
|
export const downloadFileFromFSv2 = async (
|
|
|
|
|
fileIdOrCompleteUrl: string
|
|
|
|
|
fileIdOrCompleteUrl: string,
|
|
|
|
|
isOldV2server: boolean
|
|
|
|
|
): Promise<ArrayBuffer | null> => {
|
|
|
|
|
let fileId = fileIdOrCompleteUrl;
|
|
|
|
|
if (!fileIdOrCompleteUrl) {
|
|
|
|
@ -75,13 +82,19 @@ export const downloadFileFromFSv2 = async (
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const completeUrlPrefix = `${fileServerV2URL}/${FILES_ENDPOINT}/`;
|
|
|
|
|
if (fileIdOrCompleteUrl.startsWith(completeUrlPrefix)) {
|
|
|
|
|
fileId = fileId.substr(completeUrlPrefix.length);
|
|
|
|
|
const oldCompleteUrlPrefix = `${oldFileServerV2URL}/${FILES_ENDPOINT}/`;
|
|
|
|
|
const newCompleteUrlPrefix = `${fileServerV2URL}/${FILES_ENDPOINT}/`;
|
|
|
|
|
|
|
|
|
|
if (fileIdOrCompleteUrl.startsWith(newCompleteUrlPrefix)) {
|
|
|
|
|
fileId = fileId.substr(newCompleteUrlPrefix.length);
|
|
|
|
|
} else if (fileIdOrCompleteUrl.startsWith(oldCompleteUrlPrefix)) {
|
|
|
|
|
fileId = fileId.substr(oldCompleteUrlPrefix.length);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const request: FileServerV2Request = {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
endpoint: `${FILES_ENDPOINT}/${fileId}`,
|
|
|
|
|
isOldV2server,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const result = await sendApiV2Request(request);
|
|
|
|
@ -119,7 +132,11 @@ export const buildUrl = (request: FileServerV2Request | OpenGroupV2Request): URL
|
|
|
|
|
if (isOpenGroupV2Request(request)) {
|
|
|
|
|
rawURL = `${request.server}/${request.endpoint}`;
|
|
|
|
|
} else {
|
|
|
|
|
rawURL = `${fileServerV2URL}/${request.endpoint}`;
|
|
|
|
|
if (request.isOldV2server) {
|
|
|
|
|
rawURL = `${oldFileServerV2URL}/${request.endpoint}`;
|
|
|
|
|
} else {
|
|
|
|
|
rawURL = `${fileServerV2URL}/${request.endpoint}`;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (request.method === 'GET') {
|
|
|
|
|