slate/node_common/utilities.js

167 lines
4.1 KiB
JavaScript
Raw Normal View History

import * as Environment from "~/node_common/environment";
import * as Strings from "~/common/strings";
import * as Powergate from "~/node_common/powergate";
import * as Constants from "~/node_common/constants";
2020-06-17 21:05:13 +03:00
import JWT from "jsonwebtoken";
2020-08-11 08:15:39 +03:00
import BCrypt from "bcrypt";
import { Buckets, PrivateKey } from "@textile/hub";
import { ffsOptions } from "@textile/powergate-client";
const BUCKET_NAME = "data";
const TEXTILE_KEY_INFO = {
key: Environment.TEXTILE_HUB_KEY,
secret: Environment.TEXTILE_HUB_SECRET,
};
export const checkTextile = async () => {
try {
const response = await fetch("https://hub.textile.io/health", {
headers: {
Accept: "application/json",
"Content-Type": "application/json",
},
});
if (response.status === 204) {
return true;
}
} catch (e) {
console.log(e);
}
return false;
};
export const getIdFromCookie = (req) => {
let id;
if (!Strings.isEmpty(req.headers.cookie)) {
const token = req.headers.cookie.replace(
/(?:(?:^|.*;\s*)WEB_SERVICE_SESSION_KEY\s*\=\s*([^;]*).*$)|^.*$/,
"$1"
);
if (!Strings.isEmpty(token)) {
try {
const decoded = JWT.verify(token, Environment.JWT_SECRET);
id = decoded.id;
} catch (e) {
console.log(e);
}
}
}
return id;
};
export const encryptPassword = async (text, salt) => {
2020-08-11 08:15:39 +03:00
if (!text) {
return null;
}
let hash = text;
for (let i = 0; i < Environment.LOCAL_PASSWORD_ROUNDS_MANUAL; i++) {
hash = await BCrypt.hash(hash, salt);
}
hash = await BCrypt.hash(hash, Environment.LOCAL_PASSWORD_SECRET);
return hash;
};
export const parseAuthHeader = (value) => {
if (typeof value !== "string") {
return null;
}
var matches = value.match(/(\S+)\s+(\S+)/);
return matches && { scheme: matches[1], value: matches[2] };
};
2020-07-22 14:16:30 +03:00
export const getBucketAPI = async () => {
const buckets = await Buckets.withKeyInfo(TEXTILE_KEY_INFO);
return { buckets };
};
// NOTE(jim): Requires @textile/hub
export const getBucketAPIFromUserToken = async (token) => {
const identity = await PrivateKey.fromString(token);
const buckets = await Buckets.withKeyInfo(TEXTILE_KEY_INFO);
await buckets.getToken(identity);
const target = await buckets.getOrInit(BUCKET_NAME);
return { buckets, bucketKey: target.root.key, bucketName: BUCKET_NAME };
};
// NOTE(jim): Requires Powergate, does not require token.
export const refresh = async (user) => {
const PG = Powergate.get(user);
2020-06-17 21:05:13 +03:00
const Health = await PG.health.check();
const status = Health.status ? Health.status : null;
const messageList = Health.messageList ? Health.messageList : null;
2020-07-27 04:51:51 +03:00
return { messageList, status };
2020-06-17 21:05:13 +03:00
};
// NOTE(jim): Requires Powergate & authentication
export const refreshWithToken = async (user) => {
const PG = Powergate.get(user);
2020-06-17 21:05:13 +03:00
const Addresses = await PG.ffs.addrs();
const addrsList = Addresses.addrsList ? Addresses.addrsList : null;
const NetworkInfo = await PG.ffs.info();
const info = NetworkInfo.info ? NetworkInfo.info : null;
const includeFinal = ffsOptions.withIncludeFinal(true);
const includePending = ffsOptions.withIncludePending(true);
const fromAddresses = ffsOptions.withFromAddresses(
info.defaultStorageConfig.cold.filecoin.addr
);
const s = await PG.ffs.listStorageDealRecords(
includeFinal,
includePending,
fromAddresses
);
2020-06-17 21:05:13 +03:00
const r = await PG.ffs.listRetrievalDealRecords();
2020-06-17 21:05:13 +03:00
return {
2020-06-17 21:05:13 +03:00
addrsList,
info,
storageList: s.recordsList,
retrievalList: r.recordsList,
};
2020-06-17 21:05:13 +03:00
};
export const getFileName = (s) => {
let target = s;
2020-07-09 06:19:08 +03:00
if (target.endsWith("/")) {
2020-06-17 21:05:13 +03:00
target = target.substring(0, target.length - 1);
}
2020-07-09 06:19:08 +03:00
return target.substr(target.lastIndexOf("/") + 1);
2020-06-17 21:05:13 +03:00
};
export const createFolder = ({ id, name }) => {
2020-06-17 21:05:13 +03:00
return {
2020-07-09 06:19:08 +03:00
decorator: "FOLDER",
2020-06-17 21:05:13 +03:00
id,
folderId: id,
2020-07-09 06:19:08 +03:00
icon: "FOLDER",
name: name ? name : getFileName(id),
pageTitle: `Exploring ${getFileName(id)}`,
2020-06-17 21:05:13 +03:00
date: null,
size: null,
children: [],
};
};
export const updateStateData = async (state, newState) => {
return {
...state,
...newState,
};
};