File size: 1,696 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 67 68 69 70 71 72 73 74 75 |
"use strict";
const utils = require("../utils");
const log = require("npmlog");
function formatData(data) {
const retObj = {};
for (const prop in data) {
// eslint-disable-next-line no-prototype-builtins
if (data.hasOwnProperty(prop)) {
const innerObj = data[prop];
retObj[prop] = {
name: innerObj.name,
firstName: innerObj.firstName,
vanity: innerObj.vanity,
thumbSrc: innerObj.thumbSrc,
profileUrl: innerObj.uri,
gender: innerObj.gender,
type: innerObj.type,
isFriend: innerObj.is_friend,
isBirthday: !!innerObj.is_birthday,
searchTokens: innerObj.searchTokens,
alternateName: innerObj.alternateName
};
}
}
return retObj;
}
module.exports = function (defaultFuncs, api, ctx) {
return function getUserInfo(id, callback) {
let resolveFunc = function () { };
let rejectFunc = function () { };
const returnPromise = new Promise(function (resolve, reject) {
resolveFunc = resolve;
rejectFunc = reject;
});
if (!callback) {
callback = function (err, friendList) {
if (err) {
return rejectFunc(err);
}
resolveFunc(friendList);
};
}
if (utils.getType(id) !== "Array") {
id = [id];
}
const form = {};
id.map(function (v, i) {
form["ids[" + i + "]"] = v;
});
defaultFuncs
.post("https://www.facebook.com/chat/user_info/", ctx.jar, form)
.then(utils.parseAndCheckLogin(ctx, defaultFuncs))
.then(function (resData) {
if (resData.error) {
throw resData;
}
return callback(null, formatData(resData.payload.profiles));
})
.catch(function (err) {
log.error("getUserInfo", err);
return callback(err);
});
return returnPromise;
};
};
|