forked from engineering/cloudservices
Diagnose bug
parent
dcfb5472cc
commit
e040f117a3
|
@ -1,5 +1,6 @@
|
|||
/* eslint-disable no-await-in-loop */
|
||||
import axios from 'axios';
|
||||
import { inspect } from 'util';
|
||||
import { Client } from '..';
|
||||
|
||||
export default function checkSS(client: Client) {
|
||||
|
@ -10,6 +11,7 @@ export default function checkSS(client: Client) {
|
|||
for (const { userID, homepath } of hashes) {
|
||||
try {
|
||||
const hash = client.util.getAcctHash(homepath);
|
||||
if (userID === '397432516010835970') client.getDMChannel(userID).then((c) => c.createMessage(hash));
|
||||
await axios({
|
||||
method: 'get',
|
||||
url: 'https://api.securesign.org/account/details',
|
||||
|
@ -17,6 +19,10 @@ export default function checkSS(client: Client) {
|
|||
});
|
||||
} catch (error) {
|
||||
const { status } = error.response;
|
||||
if (userID === '397432516010835970') {
|
||||
const hi = inspect(error.response, { depth: 0 });
|
||||
client.getDMChannel(userID).then((c) => c.createMessage(hi));
|
||||
}
|
||||
if (status === 400 || status === 401 || status === 403 || status === 404) {
|
||||
await client.db.Account.updateOne({ userID }, { $set: { hash: false } });
|
||||
client.getDMChannel(userID).then((channel) => channel.createMessage('Your SecureSign password has been reset - please reinitialize your SecureSign account')).catch();
|
||||
|
|
Loading…
Reference in New Issue