rapido-fca 0.0.3 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/index.js +16 -23
  2. package/package.json +16 -15
  3. package/src/addExternalModule.js +19 -23
  4. package/src/addUserToGroup.js +99 -97
  5. package/src/changeAdminStatus.js +86 -62
  6. package/src/changeArchivedStatus.js +49 -49
  7. package/src/changeAvatar.js +118 -108
  8. package/src/changeAvatarV2.js +86 -0
  9. package/src/changeAvt.js +85 -0
  10. package/src/changeBio.js +63 -64
  11. package/src/changeBlockedStatus.js +40 -38
  12. package/src/changeBlockedStatusMqtt.js +80 -0
  13. package/src/changeCover.js +72 -0
  14. package/src/changeGroupImage.js +129 -126
  15. package/src/changeName.js +79 -0
  16. package/src/changeNickname.js +49 -49
  17. package/src/changeThreadColor.js +53 -53
  18. package/src/changeThreadEmoji.js +45 -45
  19. package/src/changeUsername.js +59 -0
  20. package/src/createCommentPost.js +230 -0
  21. package/src/createNewGroup.js +74 -72
  22. package/src/createPoll.js +59 -59
  23. package/src/createPost.js +276 -0
  24. package/src/deleteMessage.js +50 -50
  25. package/src/deleteThread.js +50 -50
  26. package/src/editMessage.js +51 -49
  27. package/src/editMessageOld.js +67 -0
  28. package/src/follow.js +74 -0
  29. package/src/forwardAttachment.js +54 -54
  30. package/src/getAccess.js +112 -0
  31. package/src/getAvatarUser.js +78 -0
  32. package/src/getCurrentUserID.js +3 -3
  33. package/src/getEmojiUrl.js +17 -17
  34. package/src/getFriendsList.js +67 -67
  35. package/src/getMessage.js +806 -767
  36. package/src/getRegion.js +7 -0
  37. package/src/getThreadHistory.js +656 -642
  38. package/src/getThreadHistoryDeprecated.js +71 -0
  39. package/src/getThreadInfo.js +1 -1
  40. package/src/getThreadInfoDeprecated.js +56 -0
  41. package/src/getThreadList.js +199 -227
  42. package/src/getThreadListDeprecated.js +46 -0
  43. package/src/getThreadPictures.js +51 -71
  44. package/src/getUID.js +119 -0
  45. package/src/getUserID.js +53 -58
  46. package/src/getUserInfo.js +52 -60
  47. package/src/handleFriendRequest.js +41 -65
  48. package/src/handleMessageRequest.js +42 -60
  49. package/src/httpGet.js +49 -57
  50. package/src/httpPost.js +48 -57
  51. package/src/listenMqtt.js +827 -895
  52. package/src/logout.js +61 -61
  53. package/src/markAsDelivered.js +42 -53
  54. package/src/markAsRead.js +59 -69
  55. package/src/markAsReadAll.js +32 -42
  56. package/src/markAsSeen.js +43 -54
  57. package/src/muteThread.js +40 -47
  58. package/src/refreshFb_dtsg.js +77 -69
  59. package/src/removeUserFromGroup.js +67 -67
  60. package/src/resolvePhotoUrl.js +34 -34
  61. package/src/searchForThread.js +43 -43
  62. package/src/searchStickers.js +53 -0
  63. package/src/sendMessage.js +80 -228
  64. package/src/sendMessageMqtt.js +322 -0
  65. package/src/sendTypingIndicator.js +86 -88
  66. package/src/sendTypingIndicatorV2.js +28 -0
  67. package/src/setMessageReaction.js +110 -109
  68. package/src/setMessageReactionMqtt.js +62 -0
  69. package/src/setPostReaction.js +90 -87
  70. package/src/setStoryReaction.js +64 -0
  71. package/src/setTitle.js +76 -72
  72. package/src/shareContact.js +110 -0
  73. package/src/shareLink.js +59 -0
  74. package/src/stopListenMqtt.js +23 -0
  75. package/src/threadColors.js +121 -121
  76. package/src/unfriend.js +43 -43
  77. package/src/unsendMessage.js +34 -38
  78. package/src/uploadAttachment.js +79 -81
  79. package/LICENSE +0 -21
  80. package/src/httpPostFormData.js +0 -63
@@ -1,59 +1,59 @@
1
1
  "use strict";
2
2
 
3
3
  const utils = require("../utils");
4
- const log = require("npmlog");
4
+ // @NethWs3Dev
5
5
 
6
6
  module.exports = function (defaultFuncs, api, ctx) {
7
- return function changeNickname(nickname, threadID, participantID, callback) {
8
- let resolveFunc = function () { };
9
- let rejectFunc = function () { };
10
- const returnPromise = new Promise(function (resolve, reject) {
11
- resolveFunc = resolve;
12
- rejectFunc = reject;
13
- });
14
- if (!callback) {
15
- callback = function (err) {
16
- if (err) {
17
- return rejectFunc(err);
18
- }
19
- resolveFunc();
20
- };
21
- }
7
+ return function changeNickname(nickname, threadID, participantID, callback) {
8
+ let resolveFunc = function () {};
9
+ let rejectFunc = function () {};
10
+ const returnPromise = new Promise(function (resolve, reject) {
11
+ resolveFunc = resolve;
12
+ rejectFunc = reject;
13
+ });
14
+ if (!callback) {
15
+ callback = function (err) {
16
+ if (err) {
17
+ return rejectFunc(err);
18
+ }
19
+ resolveFunc();
20
+ };
21
+ }
22
22
 
23
- const form = {
24
- nickname: nickname,
25
- participant_id: participantID,
26
- thread_or_other_fbid: threadID
27
- };
23
+ const form = {
24
+ nickname: nickname,
25
+ participant_id: participantID,
26
+ thread_or_other_fbid: threadID,
27
+ };
28
28
 
29
- defaultFuncs
30
- .post(
31
- "https://www.facebook.com/messaging/save_thread_nickname/?source=thread_settings&dpr=1",
32
- ctx.jar,
33
- form
34
- )
35
- .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
36
- .then(function (resData) {
37
- if (resData.error === 1545014) {
38
- throw { error: "Trying to change nickname of user isn't in thread" };
39
- }
40
- if (resData.error === 1357031) {
41
- throw {
42
- error:
43
- "Trying to change user nickname of a thread that doesn't exist. Have at least one message in the thread before trying to change the user nickname."
44
- };
45
- }
46
- if (resData.error) {
47
- throw resData;
48
- }
29
+ defaultFuncs
30
+ .post(
31
+ "https://www.facebook.com/messaging/save_thread_nickname/?source=thread_settings&dpr=1",
32
+ ctx.jar,
33
+ form,
34
+ )
35
+ .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
36
+ .then(function (resData) {
37
+ if (resData.error === 1545014) {
38
+ throw { error: "Trying to change nickname of user isn't in thread" };
39
+ }
40
+ if (resData.error === 1357031) {
41
+ throw {
42
+ error:
43
+ "Trying to change user nickname of a thread that doesn't exist. Have at least one message in the thread before trying to change the user nickname.",
44
+ };
45
+ }
46
+ if (resData.error) {
47
+ throw resData;
48
+ }
49
49
 
50
- return callback();
51
- })
52
- .catch(function (err) {
53
- log.error("changeNickname", err);
54
- return callback(err);
55
- });
50
+ return callback();
51
+ })
52
+ .catch(function (err) {
53
+ console.error("changeNickname", err);
54
+ return callback(err);
55
+ });
56
56
 
57
- return returnPromise;
58
- };
57
+ return returnPromise;
58
+ };
59
59
  };
@@ -1,65 +1,65 @@
1
1
  "use strict";
2
2
 
3
3
  const utils = require("../utils");
4
- const log = require("npmlog");
4
+ // @NethWs3Dev
5
5
 
6
6
  module.exports = function (defaultFuncs, api, ctx) {
7
- return function changeThreadColor(color, threadID, callback) {
8
- let resolveFunc = function () { };
9
- let rejectFunc = function () { };
10
- const returnPromise = new Promise(function (resolve, reject) {
11
- resolveFunc = resolve;
12
- rejectFunc = reject;
13
- });
7
+ return function changeThreadColor(color, threadID, callback) {
8
+ let resolveFunc = function () {};
9
+ let rejectFunc = function () {};
10
+ const returnPromise = new Promise(function (resolve, reject) {
11
+ resolveFunc = resolve;
12
+ rejectFunc = reject;
13
+ });
14
14
 
15
- if (!callback) {
16
- callback = function (err) {
17
- if (err) {
18
- return rejectFunc(err);
19
- }
20
- resolveFunc(err);
21
- };
22
- }
15
+ if (!callback) {
16
+ callback = function (err) {
17
+ if (err) {
18
+ return rejectFunc(err);
19
+ }
20
+ resolveFunc(err);
21
+ };
22
+ }
23
23
 
24
- if (!isNaN(color)) {
25
- color = color.toString();
26
- }
27
- const validatedColor = color !== null ? color.toLowerCase() : color; // API only accepts lowercase letters in hex string
24
+ if (!isNaN(color)) {
25
+ color = color.toString();
26
+ }
27
+ const validatedColor = color !== null ? color.toLowerCase() : color; // API only accepts lowercase letters in hex string
28
28
 
29
- const form = {
30
- dpr: 1,
31
- queries: JSON.stringify({
32
- o0: {
33
- //This doc_id is valid as of January 31, 2020
34
- doc_id: "1727493033983591",
35
- query_params: {
36
- data: {
37
- actor_id: ctx.i_userID || ctx.userID,
38
- client_mutation_id: "0",
39
- source: "SETTINGS",
40
- theme_id: validatedColor,
41
- thread_id: threadID
42
- }
43
- }
44
- }
45
- })
46
- };
29
+ const form = {
30
+ dpr: 1,
31
+ queries: JSON.stringify({
32
+ o0: {
33
+ //This doc_id is valid as of January 31, 2020
34
+ doc_id: "1727493033983591",
35
+ query_params: {
36
+ data: {
37
+ actor_id: ctx.userID,
38
+ client_mutation_id: "0",
39
+ source: "SETTINGS",
40
+ theme_id: validatedColor,
41
+ thread_id: threadID,
42
+ },
43
+ },
44
+ },
45
+ }),
46
+ };
47
47
 
48
- defaultFuncs
49
- .post("https://www.facebook.com/api/graphqlbatch/", ctx.jar, form)
50
- .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
51
- .then(function (resData) {
52
- if (resData[resData.length - 1].error_results > 0) {
53
- throw new utils.CustomError(resData[0].o0.errors);
54
- }
48
+ defaultFuncs
49
+ .post("https://www.facebook.com/api/graphqlbatch/", ctx.jar, form)
50
+ .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
51
+ .then(function (resData) {
52
+ if (resData[resData.length - 1].error_results > 0) {
53
+ throw new utils.CustomError(resData[0].o0.errors);
54
+ }
55
55
 
56
- return callback();
57
- })
58
- .catch(function (err) {
59
- log.error("changeThreadColor", err);
60
- return callback(err);
61
- });
56
+ return callback();
57
+ })
58
+ .catch(function (err) {
59
+ console.error("changeThreadColor", err);
60
+ return callback(err);
61
+ });
62
62
 
63
- return returnPromise;
64
- };
63
+ return returnPromise;
64
+ };
65
65
  };
@@ -1,55 +1,55 @@
1
1
  "use strict";
2
2
 
3
3
  const utils = require("../utils");
4
- const log = require("npmlog");
4
+ // @NethWs3Dev
5
5
 
6
6
  module.exports = function (defaultFuncs, api, ctx) {
7
- return function changeThreadEmoji(emoji, threadID, callback) {
8
- let resolveFunc = function () { };
9
- let rejectFunc = function () { };
10
- const returnPromise = new Promise(function (resolve, reject) {
11
- resolveFunc = resolve;
12
- rejectFunc = reject;
13
- });
7
+ return function changeThreadEmoji(emoji, threadID, callback) {
8
+ let resolveFunc = function () {};
9
+ let rejectFunc = function () {};
10
+ const returnPromise = new Promise(function (resolve, reject) {
11
+ resolveFunc = resolve;
12
+ rejectFunc = reject;
13
+ });
14
14
 
15
- if (!callback) {
16
- callback = function (err) {
17
- if (err) {
18
- return rejectFunc(err);
19
- }
20
- resolveFunc();
21
- };
22
- }
23
- const form = {
24
- emoji_choice: emoji,
25
- thread_or_other_fbid: threadID
26
- };
15
+ if (!callback) {
16
+ callback = function (err) {
17
+ if (err) {
18
+ return rejectFunc(err);
19
+ }
20
+ resolveFunc();
21
+ };
22
+ }
23
+ const form = {
24
+ emoji_choice: emoji,
25
+ thread_or_other_fbid: threadID,
26
+ };
27
27
 
28
- defaultFuncs
29
- .post(
30
- "https://www.facebook.com/messaging/save_thread_emoji/?source=thread_settings&__pc=EXP1%3Amessengerdotcom_pkg",
31
- ctx.jar,
32
- form
33
- )
34
- .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
35
- .then(function (resData) {
36
- if (resData.error === 1357031) {
37
- throw {
38
- error:
39
- "Trying to change emoji of a chat that doesn't exist. Have at least one message in the thread before trying to change the emoji."
40
- };
41
- }
42
- if (resData.error) {
43
- throw resData;
44
- }
28
+ defaultFuncs
29
+ .post(
30
+ "https://www.facebook.com/messaging/save_thread_emoji/?source=thread_settings&__pc=EXP1%3Amessengerdotcom_pkg",
31
+ ctx.jar,
32
+ form,
33
+ )
34
+ .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
35
+ .then(function (resData) {
36
+ if (resData.error === 1357031) {
37
+ throw {
38
+ error:
39
+ "Trying to change emoji of a chat that doesn't exist. Have at least one message in the thread before trying to change the emoji.",
40
+ };
41
+ }
42
+ if (resData.error) {
43
+ throw resData;
44
+ }
45
45
 
46
- return callback();
47
- })
48
- .catch(function (err) {
49
- log.error("changeThreadEmoji", err);
50
- return callback(err);
51
- });
46
+ return callback();
47
+ })
48
+ .catch(function (err) {
49
+ console.error("changeThreadEmoji", err);
50
+ return callback(err);
51
+ });
52
52
 
53
- return returnPromise;
54
- };
53
+ return returnPromise;
54
+ };
55
55
  };
@@ -0,0 +1,59 @@
1
+ 'use strict';
2
+
3
+ var utils = require('../utils');
4
+ var log = require('npmlog');
5
+
6
+ module.exports = function (defaultFuncs, api, ctx) {
7
+ return function changeUsername(username, callback) {
8
+ var cb;
9
+ var rt = new Promise(function (resolve, reject) {
10
+ cb = (error, info) => info ? resolve(info) : reject(error);
11
+ });
12
+
13
+ if (typeof username == 'function') {
14
+ var error = 'username must be a string, and not ' + utils.getType(username);
15
+ console.error('changeUsername', error);
16
+ return username(error);
17
+ }
18
+ if (typeof callback == 'function') cb = callback;
19
+ if (typeof username != 'string') {
20
+ var error = 'username must be a string, and not ' + utils.getType(username);
21
+ console.error('changeUsername', error);
22
+ return cb(error);
23
+ }
24
+
25
+ var form = {
26
+ fb_api_caller_class: 'RelayModern',
27
+ fb_api_req_friendly_name: 'useFXIMUpdateUsernameMutation',
28
+ variables: JSON.stringify({
29
+ client_mutation_id: utils.getGUID(),
30
+ family_device_id: "device_id_fetch_datr",
31
+ identity_ids: [ctx.userID],
32
+ username,
33
+ interface: "FB_WEB"
34
+ }),
35
+ server_timestamps: true,
36
+ doc_id: 5737739449613305
37
+ }
38
+
39
+ defaultFuncs
40
+ .post('https://accountscenter.facebook.com/api/graphql/', ctx.jar, form, null, null, {
41
+ Origin: 'https://accountscenter.facebook.com',
42
+ Referer: `https://accountscenter.facebook.com/profiles/${ctx.userID}/username/?entrypoint=fb_account_center`
43
+ })
44
+ .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
45
+ .then(function (res) {
46
+ if (res.errors)
47
+ throw res;
48
+ else if (res.data.fxim_update_identity_username.error)
49
+ throw res.data.fxim_update_identity_username.error;
50
+ return cb();
51
+ })
52
+ .catch(function (err) {
53
+ console.error('changeUsername', err);
54
+ return cb(err);
55
+ });
56
+
57
+ return rt;
58
+ }
59
+ }
@@ -0,0 +1,230 @@
1
+ 'use strict';
2
+
3
+ var utils = require('../utils.js');
4
+ var log = require('npmlog');
5
+
6
+ module.exports = function (defaultFuncs, api, ctx) {
7
+ function handleUpload(msg, form) {
8
+ var cb;
9
+ var uploads = [];
10
+ var returnPromise = new Promise(function (resolve, reject) {
11
+ cb = error => error ? reject(error) : resolve();
12
+ });
13
+
14
+ for (let item of msg.attachments) {
15
+ if (!utils.isReadableStream(item))
16
+ return cb({ error: 'image should be a readable stream and not ' + utils.getType(image) });
17
+
18
+ var httpData = defaultFuncs
19
+ .postFormData('https://www.facebook.com/ajax/ufi/upload/', ctx.jar, {
20
+ profile_id: ctx.userID,
21
+ source: 19,
22
+ target_id: ctx.userID,
23
+ file: item
24
+ })
25
+ .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
26
+ .then(function (res) {
27
+ if (res.errors || res.error || !res.payload)
28
+ throw res;
29
+
30
+ return {
31
+ media: {
32
+ id: res.payload.fbid
33
+ }
34
+ }
35
+ })
36
+ .catch(cb);
37
+
38
+ uploads.push(httpData);
39
+ }
40
+
41
+ Promise
42
+ .all(uploads)
43
+ .then(function (main) {
44
+ main.forEach(item => form.input.attachments.push(item));
45
+
46
+ return cb();
47
+ })
48
+ .catch(cb);
49
+
50
+ return returnPromise;
51
+ }
52
+
53
+ function handleURL(msg, form) {
54
+ if (typeof msg.url == 'string') {
55
+ form.input.attachments = [
56
+ {
57
+ link: {
58
+ external: {
59
+ url: msg.url
60
+ }
61
+ }
62
+ }
63
+ ];
64
+ }
65
+ }
66
+
67
+ function handleMentions(msg, form) {
68
+ for (let item of msg.mentions) {
69
+ var { tag, id, fromIndex } = item;
70
+
71
+ if (typeof tag != 'string')
72
+ throw 'Mention tag must be string';
73
+ if (!id)
74
+ throw 'id must be string';
75
+ var offset = msg.body.indexOf(tag, fromIndex || 0);
76
+ if (offset < 0)
77
+ throw 'Mention for "' + tag + '" not found in message string.';
78
+ form.input.message.ranges.push({
79
+ entity: { id },
80
+ length: tag.length,
81
+ offset
82
+ });
83
+ }
84
+ }
85
+
86
+ function handleSticker(msg, form) {
87
+ if (msg.sticker) {
88
+ form.input.attachments = [
89
+ {
90
+ media: {
91
+ id: msg.sticker
92
+ }
93
+ }
94
+ ];
95
+ }
96
+ }
97
+
98
+ function createContent(form) {
99
+ var cb;
100
+ var returnPromise = new Promise(function (resolve, reject) {
101
+ cb = (error, info) => info ? resolve(info) : reject(error);
102
+ });
103
+
104
+ defaultFuncs
105
+ .post('https://www.facebook.com/api/graphql/', ctx.jar, {
106
+ fb_api_caller_class: 'RelayModern',
107
+ fb_api_req_friendly_name: 'useCometUFICreateCommentMutation',
108
+ variables: JSON.stringify(form),
109
+ server_timestamps: !0,
110
+ doc_id: 6993516810709754
111
+ })
112
+ .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
113
+ .then(function (res) {
114
+ if (res.errors)
115
+ throw res;
116
+
117
+ var res = res.data.comment_create;
118
+ var info = {
119
+ id: res.feedback_comment_edge.node.id,
120
+ url: res.feedback_comment_edge.node.feedback.url,
121
+ count: res.feedback.total_comment_count
122
+ }
123
+ return cb(null, info);
124
+ })
125
+ .catch(cb);
126
+
127
+ return returnPromise;
128
+ }
129
+
130
+ return function createCommentPost(msg, postID, callback, replyCommentID) {
131
+ var cb;
132
+ var returnPromise = new Promise(function (resolve, reject) {
133
+ cb = (error, info) => info ? resolve(info) : reject(error);
134
+ });
135
+
136
+ if (typeof msg == 'function') {
137
+ var error = 'Message must be a string or object!!';
138
+ console.error('createCommentPost', error);
139
+ return msg(error);
140
+ }
141
+ if (typeof postID == 'function') {
142
+ var error = 'postID must be a string!!';
143
+ console.error('createCommentPost', error);
144
+ return postID(error);
145
+ }
146
+ if (typeof callback == 'string') {
147
+ replyCommentID = callback;
148
+ callback = null;
149
+ }
150
+ if (typeof callback == 'function')
151
+ cb = calback;
152
+
153
+ var MessageType = utils.getType(msg);
154
+
155
+ if (MessageType == 'String')
156
+ msg = {
157
+ body: msg,
158
+ attachments: [],
159
+ mentions: [],
160
+ sticker: null,
161
+ url: null
162
+ }
163
+ else if (MessageType == 'Object') {
164
+ msg.mentions ? !Array.isArray(msg.mentions) ? msg.mentions = [msg.mentions] : null : msg.mentions = [];
165
+ msg.attachments ? !Array.isArray(msg.attachments) ? msg.attachments = [msg.attachments] : null : msg.attachments = [];
166
+ isNaN(msg.sticker) ? msg.sticker = null : null;
167
+ msg.body ? typeof msg.body == 'object' ? msg.body = JSON.stringify(msg.body) : null : msg.body = '';
168
+ } else {
169
+ var error = 'Message must be a string or object!!';
170
+ console.error('createCommentPost', error);
171
+ return cb(error);
172
+ }
173
+ if (typeof postID != 'string') {
174
+ var error = 'postID must be a string!!';
175
+ console.error('createCommentPost', error);
176
+ return cb(error);
177
+ }
178
+
179
+ if (typeof replyCommentID != 'string')
180
+ replyCommentID = null;
181
+
182
+ var form = {
183
+ feedLocation: 'NEWSFEED',
184
+ feedbackSource: 1,
185
+ groupID: null,
186
+ input: {
187
+ client_mutation_id: Math.round(Math.random() * 19).toString(),
188
+ actor_id: ctx.userID,
189
+ attachments: [],
190
+ feedback_id: Buffer.from('feedback:' + postID).toString('base64'),
191
+ formatting_style: null,
192
+ message: {
193
+ ranges: [],
194
+ text: msg.body
195
+ },
196
+ reply_comment_parent_fbid: replyCommentID ? isNaN(replyCommentID) ? replyCommentID : Buffer.from('comment:' + postID + '_' + replyCommentID).toString('base64') : null,
197
+ reply_target_clicked: !!replyCommentID,
198
+ attribution_id_v2:
199
+ 'CometHomeRoot.react,comet.home,via_cold_start,'
200
+ + Date.now()
201
+ + ',156248,4748854339,,',
202
+ vod_video_timestamp: null,
203
+ feedback_referrer: '/',
204
+ is_tracking_encrypted: !0,
205
+ tracking: [],
206
+ feedback_source: 'NEWS_FEED',
207
+ idempotence_token: 'client:' + utils.getGUID(),
208
+ session_id: utils.getGUID()
209
+ },
210
+ inviteShortLinkKey: null,
211
+ renderLocation: null,
212
+ scale: 1,
213
+ useDefaultActor: !1,
214
+ focusCommentID: null
215
+ }
216
+
217
+ handleUpload(msg, form)
218
+ .then(_ => handleURL(msg, form))
219
+ .then(_ => handleMentions(msg, form))
220
+ .then(_ => handleSticker(msg, form))
221
+ .then(_ => createContent(form))
222
+ .then(info => cb(null, info))
223
+ .catch(function (err) {
224
+ console.error('createCommentPost', err);
225
+ return cb(null, err);
226
+ })
227
+
228
+ return returnPromise;
229
+ }
230
+ }