File size: 1,541 Bytes
e192d16 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
"use strict";
const utils = require("../utils");
const log = require("npmlog");
module.exports = function (defaultFuncs, api, ctx) {
return function changeThreadColor(color, threadID, callback) {
let resolveFunc = function () { };
let rejectFunc = function () { };
const returnPromise = new Promise(function (resolve, reject) {
resolveFunc = resolve;
rejectFunc = reject;
});
if (!callback) {
callback = function (err) {
if (err) {
return rejectFunc(err);
}
resolveFunc(err);
};
}
if (!isNaN(color)) {
color = color.toString();
}
const validatedColor = color !== null ? color.toLowerCase() : color; // API only accepts lowercase letters in hex string
const form = {
dpr: 1,
queries: JSON.stringify({
o0: {
//This doc_id is valid as of January 31, 2020
doc_id: "1727493033983591",
query_params: {
data: {
actor_id: ctx.i_userID || ctx.userID,
client_mutation_id: "0",
source: "SETTINGS",
theme_id: validatedColor,
thread_id: threadID
}
}
}
})
};
defaultFuncs
.post("https://www.facebook.com/api/graphqlbatch/", ctx.jar, form)
.then(utils.parseAndCheckLogin(ctx, defaultFuncs))
.then(function (resData) {
if (resData[resData.length - 1].error_results > 0) {
throw new utils.CustomError(resData[0].o0.errors);
}
return callback();
})
.catch(function (err) {
log.error("changeThreadColor", err);
return callback(err);
});
return returnPromise;
};
};
|