twitter.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. "use strict";
  2. var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
  3. function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
  4. return new (P || (P = Promise))(function (resolve, reject) {
  5. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  6. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  7. function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
  8. step((generator = generator.apply(thisArg, _arguments || [])).next());
  9. });
  10. };
  11. Object.defineProperty(exports, "__esModule", { value: true });
  12. exports.sendTimeline = exports.sendTweet = exports.ScreenNameNormalizer = void 0;
  13. const fs = require("fs");
  14. const path = require("path");
  15. const Twitter = require("twitter");
  16. const loggers_1 = require("./loggers");
  17. const redis_1 = require("./redis");
  18. const utils_1 = require("./utils");
  19. const webshot_1 = require("./webshot");
  20. class ScreenNameNormalizer {
  21. static normalizeLive(username) {
  22. return __awaiter(this, void 0, void 0, function* () {
  23. if (this._queryUser) {
  24. return yield this._queryUser(username)
  25. .catch((err) => {
  26. if (err[0].code !== 50) {
  27. logger.warn(`error looking up user: ${err[0].message}`);
  28. return username;
  29. }
  30. return null;
  31. });
  32. }
  33. return this.normalize(username);
  34. });
  35. }
  36. }
  37. exports.ScreenNameNormalizer = ScreenNameNormalizer;
  38. ScreenNameNormalizer.normalize = (username) => username.toLowerCase().replace(/^@/, '');
  39. let sendTweet = (id, receiver, forceRefresh) => {
  40. throw Error();
  41. };
  42. exports.sendTweet = sendTweet;
  43. let sendTimeline = (conf, receiver) => {
  44. throw Error();
  45. };
  46. exports.sendTimeline = sendTimeline;
  47. const TWITTER_EPOCH = 1288834974657;
  48. const snowflake = (epoch) => Number.isNaN(epoch) ? undefined :
  49. utils_1.BigNumOps.lShift(String(epoch - 1 - TWITTER_EPOCH), 22);
  50. const logger = (0, loggers_1.getLogger)('twitter');
  51. const maxTrials = 3;
  52. const retryInterval = 1500;
  53. const ordinal = (n) => {
  54. switch ((Math.trunc(n / 10) % 10 === 1) ? 0 : n % 10) {
  55. case 1:
  56. return `${n}st`;
  57. case 2:
  58. return `${n}nd`;
  59. case 3:
  60. return `${n}rd`;
  61. default:
  62. return `${n}th`;
  63. }
  64. };
  65. const retryOnError = (doWork, onRetry) => new Promise(resolve => {
  66. const retry = (reason, count) => {
  67. setTimeout(() => {
  68. let terminate = false;
  69. onRetry(reason, count, defaultValue => { terminate = true; resolve(defaultValue); });
  70. if (!terminate)
  71. doWork().then(resolve).catch(error => retry(error, count + 1));
  72. }, retryInterval);
  73. };
  74. doWork().then(resolve).catch(error => retry(error, 1));
  75. });
  76. class default_1 {
  77. constructor(opt) {
  78. this.launch = () => {
  79. this.webshot = new webshot_1.default(this.wsUrl, this.mode, () => setTimeout(this.work, this.workInterval * 1000));
  80. };
  81. this.queryUser = (username) => this.client.get('users/show', { screen_name: username })
  82. .then((user) => user.screen_name);
  83. this.queryTimelineReverse = (conf) => {
  84. if (!conf.since)
  85. return this.queryTimeline(conf);
  86. const count = conf.count;
  87. const maxID = conf.until;
  88. conf.count = undefined;
  89. const until = () => utils_1.BigNumOps.min(maxID, utils_1.BigNumOps.plus(conf.since, String(7 * 24 * 3600 * 1000 * Math.pow(2, 22))));
  90. conf.until = until();
  91. const promise = (tweets) => this.queryTimeline(conf).then(newTweets => {
  92. tweets = newTweets.concat(tweets);
  93. conf.since = conf.until;
  94. conf.until = until();
  95. if (tweets.length >= count ||
  96. utils_1.BigNumOps.compare(conf.since, conf.until) >= 0) {
  97. return tweets.slice(-count);
  98. }
  99. return promise(tweets);
  100. });
  101. return promise([]);
  102. };
  103. this.queryTimeline = ({ username, count, since, until, noreps, norts }) => {
  104. username = username.replace(/^@?(.*)$/, '@$1');
  105. logger.info(`querying timeline of ${username} with config: ${JSON.stringify(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, (count && { count })), (since && { since })), (until && { until })), (noreps && { noreps })), (norts && { norts })))}`);
  106. const fetchTimeline = (config = {
  107. screen_name: username.slice(1),
  108. trim_user: true,
  109. exclude_replies: noreps !== null && noreps !== void 0 ? noreps : true,
  110. include_rts: !(norts !== null && norts !== void 0 ? norts : false),
  111. since_id: since,
  112. max_id: until,
  113. tweet_mode: 'extended',
  114. }, tweets = []) => this.client.get('statuses/user_timeline', config)
  115. .then((newTweets) => {
  116. if (newTweets.length) {
  117. logger.debug(`fetched tweets: ${JSON.stringify(newTweets)}`);
  118. config.max_id = utils_1.BigNumOps.plus('-1', newTweets[newTweets.length - 1].id_str);
  119. logger.info(`timeline query of ${username} yielded ${newTweets.length} new tweets, next query will start at offset ${config.max_id}`);
  120. tweets.push(...newTweets.filter(tweet => tweet.extended_entities));
  121. }
  122. if (!newTweets.length || tweets.length >= count) {
  123. logger.info(`timeline query of ${username} finished successfully, ${tweets.length} tweets with extended entities have been fetched`);
  124. return tweets.slice(0, count);
  125. }
  126. return fetchTimeline(config, tweets);
  127. });
  128. return fetchTimeline();
  129. };
  130. this.workOnTweets = (tweets, sendTweets, refresh = false) => Promise.all(tweets.map(tweet => ((this.redis && !refresh) ?
  131. this.redis.waitForProcess(`webshot/${tweet.id_str}`, this.webshotDelay * 4)
  132. .then(() => this.redis.getContent(`webshot/${tweet.id_str}`)) :
  133. Promise.reject())
  134. .then(content => {
  135. if (content === null)
  136. throw Error();
  137. logger.info(`retrieved cached webshot of tweet ${tweet.id_str} from redis database`);
  138. const { msg, text, author } = JSON.parse(content);
  139. let cacheId = tweet.id_str;
  140. if (tweet.retweeted_status)
  141. cacheId += `,rt:${tweet.retweeted_status.id_str}`;
  142. sendTweets(cacheId, msg, text, author);
  143. return null;
  144. })
  145. .catch(() => {
  146. this.redis.startProcess(`webshot/${tweet.id_str}`);
  147. return tweet;
  148. }))).then(tweets => this.webshot(tweets.filter(t => t), (cacheId, msg, text, author) => {
  149. Promise.resolve()
  150. .then(() => {
  151. if (!this.redis)
  152. return;
  153. const [twid, rtid] = cacheId.split(',rt:');
  154. logger.info(`caching webshot of tweet ${twid} to redis database`);
  155. this.redis.cacheContent(`webshot/${twid}`, JSON.stringify({ msg, text, author, rtid }))
  156. .then(() => this.redis.finishProcess(`webshot/${twid}`));
  157. })
  158. .then(() => sendTweets(cacheId, msg, text, author));
  159. }, this.webshotDelay));
  160. this.getTweet = (id, sender, refresh = false) => {
  161. const endpoint = 'statuses/show';
  162. const config = {
  163. id,
  164. tweet_mode: 'extended',
  165. };
  166. return ((this.redis && !refresh) ?
  167. this.redis.waitForProcess(`webshot/${id}`, this.webshotDelay * 4)
  168. .then(() => this.redis.getContent(`webshot/${id}`))
  169. .then(content => {
  170. if (content === null)
  171. throw Error();
  172. const { rtid } = JSON.parse(content);
  173. return { id_str: id, retweeted_status: rtid ? { id_str: rtid } : undefined };
  174. }) :
  175. Promise.reject())
  176. .catch(() => this.client.get(endpoint, config))
  177. .then((tweet) => {
  178. if (tweet.id) {
  179. logger.debug(`api returned tweet ${JSON.stringify(tweet)} for query id=${id}`);
  180. }
  181. else {
  182. logger.debug(`skipped querying api as this tweet has been cached`);
  183. }
  184. return this.workOnTweets([tweet], sender, refresh);
  185. });
  186. };
  187. this.sendTweets = (config = { reportOnSkip: false, force: false }, ...to) => (id, msg, text, author) => {
  188. to.forEach(subscriber => {
  189. const [twid, rtid] = id.split(',rt:');
  190. const { sourceInfo: source, reportOnSkip, force } = config;
  191. const targetStr = JSON.stringify(subscriber);
  192. const send = () => retryOnError(() => this.bot.sendTo(subscriber, msg), (_, count, terminate) => {
  193. if (count <= maxTrials) {
  194. logger.warn(`retry sending to ${subscriber.chatID} for the ${ordinal(count)} time...`);
  195. }
  196. else {
  197. logger.warn(`${count - 1} consecutive failures while sending message chain, trying plain text instead...`);
  198. terminate(this.bot.sendTo(subscriber, author + text, true));
  199. }
  200. }).then(() => {
  201. if (this.redis) {
  202. logger.info(`caching push status of tweet ${rtid ? `${rtid} (RTed as ${twid})` : twid} for ${targetStr}...`);
  203. return this.redis.cacheForChat(rtid || twid, subscriber);
  204. }
  205. });
  206. ((this.redis && !force) ? this.redis.isCachedForChat(rtid || twid, subscriber) : Promise.resolve(false))
  207. .then(isCached => {
  208. if (isCached) {
  209. logger.info(`skipped subscriber ${targetStr} as tweet ${rtid ? `${rtid} (or its RT)` : twid} has been sent already`);
  210. if (!reportOnSkip)
  211. return;
  212. text = `[最近发送过的推文:${rtid || twid}]`;
  213. msg = author + text;
  214. }
  215. logger.info(`pushing data${source ? ` of ${source}` : ''} to ${targetStr}`);
  216. return send();
  217. });
  218. });
  219. };
  220. this.work = () => {
  221. const lock = this.lock;
  222. if (this.workInterval < 1)
  223. this.workInterval = 1;
  224. if (lock.feed.length === 0) {
  225. setTimeout(() => {
  226. this.work();
  227. }, this.workInterval * 1000);
  228. return;
  229. }
  230. if (lock.workon >= lock.feed.length)
  231. lock.workon = 0;
  232. if (!lock.threads[lock.feed[lock.workon]] ||
  233. !lock.threads[lock.feed[lock.workon]].subscribers ||
  234. lock.threads[lock.feed[lock.workon]].subscribers.length === 0) {
  235. logger.warn(`nobody subscribes thread ${lock.feed[lock.workon]}, removing from feed`);
  236. delete lock.threads[lock.feed[lock.workon]];
  237. lock.feed.splice(lock.workon, 1);
  238. fs.writeFileSync(path.resolve(this.lockfile), JSON.stringify(lock));
  239. this.work();
  240. return;
  241. }
  242. const currentFeed = lock.feed[lock.workon];
  243. logger.debug(`pulling feed ${currentFeed}`);
  244. const promise = new Promise(resolve => {
  245. let match = /https:\/\/twitter.com\/([^\/]+)\/lists\/([^\/]+)/.exec(currentFeed);
  246. let config;
  247. let endpoint;
  248. if (match) {
  249. if (match[1] === 'i') {
  250. config = {
  251. list_id: match[2],
  252. tweet_mode: 'extended',
  253. };
  254. }
  255. else {
  256. config = {
  257. owner_screen_name: match[1],
  258. slug: match[2],
  259. tweet_mode: 'extended',
  260. };
  261. }
  262. endpoint = 'lists/statuses';
  263. }
  264. else {
  265. match = /https:\/\/twitter.com\/([^\/]+)/.exec(currentFeed);
  266. if (match) {
  267. config = {
  268. screen_name: match[1],
  269. exclude_replies: false,
  270. tweet_mode: 'extended',
  271. };
  272. endpoint = 'statuses/user_timeline';
  273. }
  274. }
  275. if (endpoint) {
  276. const offset = lock.threads[currentFeed].offset;
  277. config.include_rts = false;
  278. if (offset > 0)
  279. config.since_id = offset;
  280. if (offset < -1)
  281. config.max_id = offset.slice(1);
  282. const getMore = (lastTweets = []) => this.client.get(endpoint, config, (error, tweets) => {
  283. if (error) {
  284. if (error instanceof Array && error.length > 0 && error[0].code === 34) {
  285. logger.warn(`error on fetching tweets for ${currentFeed}: ${JSON.stringify(error)}`);
  286. lock.threads[currentFeed].subscribers.forEach(subscriber => {
  287. logger.info(`sending notfound message of ${currentFeed} to ${JSON.stringify(subscriber)}`);
  288. this.bot.sendTo(subscriber, `链接 ${currentFeed} 指向的用户或列表不存在,请退订。`).catch();
  289. });
  290. }
  291. else {
  292. logger.error(`unhandled error on fetching tweets for ${currentFeed}: ${JSON.stringify(error)}`);
  293. }
  294. }
  295. if (!(tweets instanceof Array) || tweets.length === 0)
  296. return resolve(lastTweets);
  297. if (offset <= 0)
  298. return resolve(lastTweets.concat(tweets));
  299. config.max_id = utils_1.BigNumOps.plus(tweets.slice(-1)[0].id_str, '-1');
  300. getMore(lastTweets.concat(tweets));
  301. });
  302. getMore();
  303. }
  304. });
  305. promise.then((tweets) => {
  306. logger.debug(`api returned ${JSON.stringify(tweets)} for feed ${currentFeed}`);
  307. const currentThread = lock.threads[currentFeed];
  308. const setOffset = (offset) => currentThread.offset = offset;
  309. const updateDate = () => currentThread.updatedAt = new Date().toString();
  310. if (tweets.length === 0) {
  311. if (currentThread.offset < -1) {
  312. setOffset(utils_1.BigNumOps.plus('1', currentThread.offset));
  313. }
  314. updateDate();
  315. return;
  316. }
  317. const topOfFeed = tweets[0].id_str;
  318. logger.info(`current offset: ${currentThread.offset}, current top of feed: ${topOfFeed}`);
  319. const bottomOfFeed = tweets[tweets.length - 1].id_str;
  320. const updateOffset = () => setOffset(topOfFeed);
  321. tweets = tweets.filter(twi => twi.extended_entities);
  322. logger.info(`found ${tweets.length} tweets with extended entities`);
  323. if (currentThread.offset === '-1') {
  324. updateOffset();
  325. return;
  326. }
  327. if (currentThread.offset <= 0) {
  328. if (tweets.length === 0) {
  329. setOffset(utils_1.BigNumOps.plus('1', '-' + bottomOfFeed));
  330. lock.workon--;
  331. return;
  332. }
  333. tweets.splice(1);
  334. }
  335. if (tweets.length === 0) {
  336. updateDate();
  337. updateOffset();
  338. return;
  339. }
  340. return this.workOnTweets(tweets, this.sendTweets({ sourceInfo: `thread ${currentFeed}` }, ...currentThread.subscribers))
  341. .then(updateDate).then(updateOffset);
  342. })
  343. .then(() => {
  344. lock.workon++;
  345. let timeout = this.workInterval * 1000 / lock.feed.length;
  346. if (timeout < 1000)
  347. timeout = 1000;
  348. fs.writeFileSync(path.resolve(this.lockfile), JSON.stringify(lock));
  349. setTimeout(() => {
  350. this.work();
  351. }, timeout);
  352. });
  353. };
  354. this.client = new Twitter({
  355. consumer_key: opt.consumerKey,
  356. consumer_secret: opt.consumerSecret,
  357. access_token_key: opt.accessTokenKey,
  358. access_token_secret: opt.accessTokenSecret,
  359. });
  360. this.lockfile = opt.lockfile;
  361. this.lock = opt.lock;
  362. this.workInterval = opt.workInterval;
  363. this.bot = opt.bot;
  364. this.webshotDelay = opt.webshotDelay;
  365. this.mode = opt.mode;
  366. this.wsUrl = opt.wsUrl;
  367. if (opt.redis)
  368. this.redis = new redis_1.default(opt.redis);
  369. ScreenNameNormalizer._queryUser = this.queryUser;
  370. exports.sendTweet = (idOrQuery, receiver, forceRefresh) => {
  371. const match = /^last(|-\d+)@([^\/?#,]+)((?:,no.*?=[^,]*)*)$/.exec(idOrQuery);
  372. const query = () => this.queryTimeline({
  373. username: match[2],
  374. count: 1 - Number(match[1]),
  375. noreps: { on: true, off: false }[match[3].replace(/.*,noreps=([^,]*).*/, '$1')],
  376. norts: { on: true, off: false }[match[3].replace(/.*,norts=([^,]*).*/, '$1')],
  377. }).then(tweets => tweets.slice(-1)[0].id_str);
  378. (match ? query() : Promise.resolve(idOrQuery))
  379. .then((id) => this.getTweet(id, this.sendTweets({ sourceInfo: `tweet ${id}`, reportOnSkip: true, force: forceRefresh }, receiver), forceRefresh))
  380. .catch((err) => {
  381. var _a;
  382. if (((_a = err[0]) === null || _a === void 0 ? void 0 : _a.code) === 34)
  383. return this.bot.sendTo(receiver, `找不到用户 ${match[2].replace(/^@?(.*)$/, '@$1')}。`);
  384. if (err[0].code !== 144) {
  385. logger.warn(`error retrieving tweet: ${err[0].message}`);
  386. this.bot.sendTo(receiver, `获取推文时出现错误:${err[0].message}`);
  387. }
  388. this.bot.sendTo(receiver, '找不到请求的推文,它可能已被删除。');
  389. });
  390. };
  391. exports.sendTimeline = ({ username, count, since, until, noreps, norts }, receiver) => {
  392. const countNum = Number(count) || 10;
  393. (countNum > 0 ? this.queryTimeline : this.queryTimelineReverse)({
  394. username,
  395. count: Math.abs(countNum),
  396. since: utils_1.BigNumOps.parse(since) || snowflake(new Date(since).getTime()),
  397. until: utils_1.BigNumOps.parse(until) || snowflake(new Date(until).getTime()),
  398. noreps: { on: true, off: false }[noreps],
  399. norts: { on: true, off: false }[norts],
  400. })
  401. .then(tweets => (0, utils_1.chainPromises)(tweets.map(tweet => () => this.bot.sendTo(receiver, `\
  402. 编号:${tweet.id_str}
  403. 时间:${tweet.created_at}
  404. 媒体:${tweet.extended_entities ? '有' : '无'}
  405. 正文:\n${tweet.full_text.replace(/^([\s\S\n]{50})[\s\S\n]+?( https:\/\/t.co\/.*)?$/, '$1…$2')}`))
  406. .concat(() => this.bot.sendTo(receiver, tweets.length ?
  407. '时间线查询完毕,使用 /twitterpic_view <编号> 查看媒体推文详细内容。' :
  408. '时间线查询完毕,没有找到符合条件的媒体推文。'))))
  409. .catch((err) => {
  410. var _a, _b, _c;
  411. if (((_a = err[0]) === null || _a === void 0 ? void 0 : _a.code) !== 34) {
  412. logger.warn(`error retrieving timeline: ${((_b = err[0]) === null || _b === void 0 ? void 0 : _b.message) || err}`);
  413. return this.bot.sendTo(receiver, `获取时间线时出现错误:${((_c = err[0]) === null || _c === void 0 ? void 0 : _c.message) || err}`);
  414. }
  415. this.bot.sendTo(receiver, `找不到用户 ${username.replace(/^@?(.*)$/, '@$1')}。`);
  416. });
  417. };
  418. }
  419. }
  420. exports.default = default_1;