File size: 8,904 Bytes
2821330 | 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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 | module.exports.config = {
name: "post",
version: "1.0.0",
permission: 3,
credits: "ryuko",
usePrefix: true,
premium: false,
description: "create a new post in acc bot",
commandCategory: "Facebook",
cooldowns: 5
};
module.exports.run = async ({ event, api, getText, args }) => {
const { threadID, messageID, senderID } = event;
const uuid = getGUID();
const formData = {
"input": {
"composer_entry_point": "inline_composer",
"composer_source_surface": "timeline",
"idempotence_token": uuid + "_FEED",
"source": "WWW",
"attachments": [],
"audience": {
"privacy": {
"allow": [],
"base_state": "FRIENDS", // SELF EVERYONE
"deny": [],
"tag_expansion_state": "UNSPECIFIED"
}
},
"message": {
"ranges": [],
"text": ""
},
"with_tags_ids": [],
"inline_activities": [],
"explicit_place_id": "0",
"text_format_preset_id": "0",
"logging": {
"composer_session_id": uuid
},
"tracking": [
null
],
"actor_id": api.getCurrentUserID(),
"client_mutation_id": Math.floor(Math.random()*17)
},
"displayCommentsFeedbackContext": null,
"displayCommentsContextEnableComment": null,
"displayCommentsContextIsAdPreview": null,
"displayCommentsContextIsAggregatedShare": null,
"displayCommentsContextIsStorySet": null,
"feedLocation": "TIMELINE",
"feedbackSource": 0,
"focusCommentID": null,
"gridMediaWidth": 230,
"groupID": null,
"scale": 3,
"privacySelectorRenderLocation": "COMET_STREAM",
"renderLocation": "timeline",
"useDefaultActor": false,
"inviteShortLinkKey": null,
"isFeed": false,
"isFundraiser": false,
"isFunFactPost": false,
"isGroup": false,
"isTimeline": true,
"isSocialLearning": false,
"isPageNewsFeed": false,
"isProfileReviews": false,
"isWorkSharedDraft": false,
"UFI2CommentsProvider_commentsKey": "ProfileCometTimelineRoute",
"hashtag": null,
"canUserManageOffers": false
};
return api.sendMessage(`choose an audience that can see this article of yours\n1. everyone\n2. friend\n3. Only me`, threadID, (e, info) => {
global.client.handleReply.push({
name: this.config.name,
messageID: info.messageID,
author: senderID,
formData,
type: "whoSee"
});
}, messageID);
};
module.exports.handleReply = async ({ event, api, handleReply }) => {
const { type, author, formData } = handleReply;
if (event.senderID != author) return;
const axios = require("axios");
const fs = require("fs-extra");
const { threadID, messageID, senderID, attachments, body } = event;
const botID = api.getCurrentUserID();
async function uploadAttachments(attachments) {
let uploads = [];
for (const attachment of attachments) {
const form = {
file: attachment
};
uploads.push(api.httpPostFormData(`https://www.facebook.com/profile/picture/upload/?profile_id=${botID}&photo_source=57&av=${botID}`, form));
}
uploads = await Promise.all(uploads);
return uploads;
}
if (type == "whoSee") {
if (!["1", "2", "3"].includes(body)) return api.sendMessage('please choose 1 of the 3 items above', threadID, messageID);
formData.input.audience.privacy.base_state = body == 1 ? "EVERYONE" : body == 2 ? "FRIENDS" : "SELF";
api.unsendMessage(handleReply.messageID, () => {
api.sendMessage(`reply to this message with the content of the article, if you want to leave it blank, please reply 0`, threadID, (e, info) => {
global.client.handleReply.push({
name: this.config.name,
messageID: info.messageID,
author: senderID,
formData,
type: "content"
});
}, messageID);
});
}
else if (type == "content") {
if (event.body != "0") formData.input.message.text = event.body;
api.unsendMessage(handleReply.messageID, () => {
api.sendMessage(`reply to this message with a photo (you can send multiple photos, if you don't want to post pictures, please reply 0`, threadID, (e, info) => {
global.client.handleReply.push({
name: this.config.name,
messageID: info.messageID,
author: senderID,
formData,
type: "image"
});
}, messageID);
});
}
else if (type == "image") {
if (event.body != "0") {
const allStreamFile = [];
const pathImage = __dirname + `/cache/imagePost.png`;
for (const attach of attachments) {
if (attach.type != "photo") continue;
const getFile = (await axios.get(attach.url, { responseType: "arraybuffer" })).data;
fs.writeFileSync(pathImage, Buffer.from(getFile));
allStreamFile.push(fs.createReadStream(pathImage));
}
const uploadFiles = await uploadAttachments(allStreamFile);
for (let result of uploadFiles) {
if (typeof result == "string") result = JSON.parse(result.replace("for (;;);", ""));
formData.input.attachments.push({
"photo": {
"id": result.payload.fbid.toString(),
}
});
}
/*
for (const path of paths) {
try {
fs.unlinkSync(path);
}
catch(e) {}
}
*/
}
/*
api.unsendMessage(handleReply.messageID, () => {
api.sendMessage(`Bắt đầu tạo bài viết....`, threadID, (e, info) => {
global.client.handleReply.push({
name: this.config.name,
messageID: info.messageID,
author: senderID,
formData,
type: "video"
});
}, messageID);
});
}
else if (type == "video") {
if (event.body != "0") {
if (!handleReply.uploadVideos) handleReply.uploadVideos = [];
const { uploadVideos } = handleReply;
if (attachments[0].type != "video") return;
const getFile = (await axios.get(attachments[0].url, { responseType: "arraybuffer" })).data;
const pathVideo = __dirname + "/cache/videoPost.mp4";
fs.writeFileSync(pathVideo, Buffer.from(getFile));
uploadVideos.push(fs.createReadStream(pathVideo));
return api.unsendMessage(handleReply.messageID, () => {
api.sendMessage(`Phản hồi tin nhắn này kèm video hoặc reply 0 để kết thúc`, threadID, (e, info) => {
global.client.handleReply.push({
name: this.config.name,
messageID: info.messageID,
author: senderID,
formData,
uploadVideos,
type: "video"
});
}, messageID);
});
}
if (handleReply.uploadVideos) {
let uploads = [];
for (const attachment of handleReply.uploadVideos) {
const form = {
upload_1024: attachment,
voice_clip: "true"
};
uploads.push(api.httpPostFormData("https://upload.facebook.com/ajax/mercury/upload.php", form));
}
uploads = await Promise.all(uploads);
for (let result of uploads) {
if (typeof result == "string") result = JSON.parse(result.replace("for (;;);", ""));
formData.input.attachments.push({
"video": {
"id": result.payload.metadata[0].video_id.toString(),
"notify_when_processed": true
}
});
}
}
*/
const form = {
av: botID,
fb_api_req_friendly_name: "ComposerStoryCreateMutation",
fb_api_caller_class: "RelayModern",
doc_id: "7711610262190099",
variables: JSON.stringify(formData)
};
api.httpPost('https://www.facebook.com/api/graphql/', form, (e, info) => {
api.unsendMessage(handleReply.messageID);
try {
if (e) throw e;
if (typeof info == "string") info = JSON.parse(info.replace("for (;;);", ""));
const postID = info.data.story_create.story.legacy_story_hideable_id;
const urlPost = info.data.story_create.story.url;
if (!postID) throw info.errors;
try {
fs.unlinkSync(__dirname + "/cache/imagePost.png");
//fs.unlinkSync(__dirname + "/cache/videoPost.mp4");
}
catch(e) {}
return api.sendMessage(`post created successfully\n\npost id : ${postID}\nlink : ${urlPost}`, threadID, messageID);
}
catch (e) {
//console.log(e)
return api.sendMessage(`Post creation failed, please try again later`, threadID, messageID);
}
});
}
};
function getGUID() {
var sectionLength = Date.now();
var id = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function (c) {
var r = Math.floor((sectionLength + Math.random() * 16) % 16);
sectionLength = Math.floor(sectionLength / 16);
var _guid = (c == "x" ? r : (r & 7) | 8).toString(16);
return _guid;
});
return id;
} |