webshot.js 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. const fs_1 = require("fs");
  4. const util_1 = require("util");
  5. const axios_1 = require("axios");
  6. const CallableInstance = require("callable-instance");
  7. const html_entities_1 = require("html-entities");
  8. const pngjs_1 = require("pngjs");
  9. const puppeteer = require("playwright");
  10. const sharp = require("sharp");
  11. const temp = require("temp");
  12. const loggers_1 = require("./loggers");
  13. const koishi_1 = require("./koishi");
  14. const utils_1 = require("./utils");
  15. const xmlEntities = new html_entities_1.XmlEntities();
  16. const ZHType = (type) => new class extends String {
  17. constructor() {
  18. super(...arguments);
  19. this.type = super.toString();
  20. this.toString = () => `[${super.toString()}]`;
  21. }
  22. }(type);
  23. const typeInZH = {
  24. photo: ZHType('图片'),
  25. video: ZHType('视频'),
  26. animated_gif: ZHType('GIF'),
  27. };
  28. const logger = loggers_1.getLogger('webshot');
  29. class Webshot extends CallableInstance {
  30. constructor(wsUrl, mode, onready) {
  31. super('webshot');
  32. this.connect = (onready) => axios_1.default.get(this.wsUrl)
  33. .then(res => {
  34. logger.info(`received websocket endpoint: ${JSON.stringify(res.data)}`);
  35. const browserType = Object.keys(res.data)[0];
  36. return puppeteer[browserType]
  37. .connect({ wsEndpoint: res.data[browserType] });
  38. })
  39. .then(browser => this.browser = browser)
  40. .then(() => {
  41. logger.info('launched puppeteer browser');
  42. if (onready)
  43. return onready();
  44. })
  45. .catch(error => this.reconnect(error, onready));
  46. this.reconnect = (error, onready) => {
  47. logger.error(`connection error, reason: ${error}`);
  48. logger.warn('trying to reconnect in 2.5s...');
  49. return util_1.promisify(setTimeout)(2500)
  50. .then(() => this.connect(onready));
  51. };
  52. this.extendEntity = (media) => {
  53. logger.info('not working on a tweet');
  54. };
  55. this.renderWebshot = (url, height, webshotDelay) => {
  56. temp.track();
  57. const jpeg = (data) => data.pipe(sharp()).jpeg({ quality: 90, trellisQuantisation: true });
  58. const sharpToFile = (pic) => new Promise(resolve => {
  59. const webshotTempFilePath = temp.path({ suffix: '.jpg' });
  60. pic.toFile(webshotTempFilePath).then(() => resolve(`file://${webshotTempFilePath}`));
  61. });
  62. const promise = new Promise((resolve, reject) => {
  63. const width = 720;
  64. const zoomFactor = 2;
  65. logger.info(`shooting ${width}*${height} webshot for ${url}`);
  66. this.browser.newPage({
  67. bypassCSP: true,
  68. deviceScaleFactor: zoomFactor,
  69. locale: 'ja-JP',
  70. timezoneId: 'Asia/Tokyo',
  71. userAgent: 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',
  72. })
  73. .then(page => {
  74. const startTime = new Date().getTime();
  75. const getTimerTime = () => new Date().getTime() - startTime;
  76. const getTimeout = () => Math.max(500, webshotDelay - getTimerTime());
  77. page.setViewportSize({
  78. width: width / zoomFactor,
  79. height: height / zoomFactor,
  80. })
  81. .then(() => page.goto(url, { waitUntil: 'load', timeout: getTimeout() }))
  82. .then(() => page.addStyleTag({
  83. content: 'header{display:none!important}path[d=\'M20.207 7.043a1 1 0 0 0-1.414 0L12 13.836 5.207 7.043a1 1 0 0 0-1.414 1.414l7.5 7.5a.996.996 0 0 0 1.414 0l7.5-7.5a1 1 0 0 0 0-1.414z\'],div[role=\'button\']{display: none;}',
  84. }))
  85. .then(() => page.addStyleTag({
  86. content: '*{font-family:-apple-system,".Helvetica Neue DeskInterface",Hiragino Sans,Hiragino Sans GB,sans-serif!important}',
  87. }))
  88. .then(() => page.evaluate(() => {
  89. const poll = setInterval(() => {
  90. document.querySelectorAll('div[data-testid="placementTracking"]').forEach(container => {
  91. if (container) {
  92. container.innerHTML = container.innerHTML;
  93. clearInterval(poll);
  94. }
  95. });
  96. }, 250);
  97. }))
  98. .then(() => page.waitForSelector('article', { timeout: getTimeout() }))
  99. .catch((err) => {
  100. if (err.name !== 'TimeoutError')
  101. throw err;
  102. logger.warn(`navigation timed out at ${getTimerTime()} seconds`);
  103. return null;
  104. })
  105. .then(handle => {
  106. if (handle === null)
  107. throw new puppeteer.errors.TimeoutError();
  108. })
  109. .then(() => page.evaluate(() => {
  110. const cardImg = document.querySelector('div[data-testid^="card.layout"][data-testid$=".media"] img');
  111. if (typeof (cardImg === null || cardImg === void 0 ? void 0 : cardImg.getAttribute('src')) === 'string') {
  112. const match = /^(.*\/card_img\/(\d+)\/.+\?format=.*)&name=/.exec(cardImg === null || cardImg === void 0 ? void 0 : cardImg.getAttribute('src'));
  113. if (match) {
  114. const [media_url_https, id_str] = match.slice(1);
  115. return {
  116. media_url: media_url_https.replace(/^https/, 'http'),
  117. media_url_https,
  118. url: '',
  119. display_url: '',
  120. expanded_url: '',
  121. type: 'photo',
  122. id: Number(id_str),
  123. id_str,
  124. sizes: undefined,
  125. };
  126. }
  127. }
  128. }))
  129. .then(cardImg => {
  130. if (cardImg)
  131. this.extendEntity(cardImg);
  132. })
  133. .then(() => page.addScriptTag({
  134. content: 'document.documentElement.scrollTop=0;',
  135. }))
  136. .then(() => util_1.promisify(setTimeout)(getTimeout()))
  137. .then(() => page.screenshot())
  138. .then(screenshot => {
  139. new pngjs_1.PNG({
  140. filterType: 4,
  141. deflateLevel: 0,
  142. }).on('parsed', function () {
  143. const idx = (x, y) => (this.width * y + x) << 2;
  144. let boundary = null;
  145. let x = zoomFactor * 2;
  146. for (let y = 0; y < this.height; y += zoomFactor) {
  147. if (this.data[idx(x, y)] !== 255 &&
  148. this.data[idx(x, y)] === this.data[idx(x + zoomFactor * 10, y)]) {
  149. if (this.data[idx(x, y + 18 * zoomFactor)] !== 255) {
  150. boundary = null;
  151. }
  152. else {
  153. boundary = y;
  154. }
  155. break;
  156. }
  157. }
  158. if (boundary !== null) {
  159. logger.info(`found boundary at ${boundary}, cropping image`);
  160. this.data = this.data.slice(0, idx(this.width, boundary));
  161. this.height = boundary;
  162. boundary = null;
  163. x = Math.floor(16 * zoomFactor);
  164. let flag = false;
  165. let cnt = 0;
  166. for (let y = this.height - 1 - zoomFactor; y >= 0; y -= zoomFactor) {
  167. if ((this.data[idx(x, y)] === 255) === flag) {
  168. cnt++;
  169. flag = !flag;
  170. }
  171. else
  172. continue;
  173. if (cnt === 2) {
  174. boundary = y + 1;
  175. }
  176. if (cnt === 4) {
  177. const b = y + 1;
  178. if (Math.abs(this.height - boundary - (boundary - b)) <= 3 * zoomFactor) {
  179. boundary = b;
  180. }
  181. }
  182. if (cnt === 6) {
  183. const c = y + 1;
  184. if (Math.abs(this.height - boundary - 2 * (boundary - c)) <= 3 * zoomFactor) {
  185. boundary = c;
  186. break;
  187. }
  188. }
  189. }
  190. if (boundary !== null) {
  191. logger.info(`found boundary at ${boundary}, trimming image`);
  192. this.data = this.data.slice(0, idx(this.width, boundary));
  193. this.height = boundary;
  194. }
  195. sharpToFile(jpeg(this.pack())).then(path => {
  196. logger.info(`finished webshot for ${url}`);
  197. resolve({ path, boundary });
  198. });
  199. }
  200. else if (height >= 8 * 1920) {
  201. logger.warn('too large, consider as a bug, returning');
  202. sharpToFile(jpeg(this.pack())).then(path => {
  203. resolve({ path, boundary: 0 });
  204. });
  205. }
  206. else {
  207. logger.info('unable to find boundary, try shooting a larger image');
  208. resolve({ path: '', boundary });
  209. }
  210. }).parse(screenshot);
  211. })
  212. .catch(err => {
  213. if (err instanceof Error && err.name !== 'TimeoutError')
  214. throw err;
  215. logger.error(`error shooting webshot for ${url}, could not load web page of tweet`);
  216. resolve({ path: '', boundary: 0 });
  217. })
  218. .finally(() => { page.close(); });
  219. })
  220. .catch(reject);
  221. });
  222. return promise.then(data => {
  223. if (data.boundary === null)
  224. return this.renderWebshot(url, height + 1920, webshotDelay);
  225. else
  226. return data.path;
  227. }).catch(error => this.reconnect(error)
  228. .then(() => this.renderWebshot(url, height, webshotDelay)));
  229. };
  230. this.fetchMedia = (url) => new Promise((resolve, reject) => {
  231. logger.info(`fetching ${url}`);
  232. axios_1.default({
  233. method: 'get',
  234. url,
  235. responseType: 'stream',
  236. timeout: 150000,
  237. }).then(res => {
  238. if (res.status === 200) {
  239. logger.info(`successfully fetched ${url}`);
  240. resolve(res.data);
  241. }
  242. else {
  243. logger.error(`failed to fetch ${url}: ${res.status}`);
  244. reject();
  245. }
  246. }).catch(err => {
  247. logger.error(`failed to fetch ${url}: ${err instanceof Error ? err.message : err}`);
  248. reject();
  249. });
  250. }).then(data => {
  251. var _a;
  252. return (ext => {
  253. const mediaTempFilePath = temp.path({ suffix: `.${ext}` });
  254. data.pipe(fs_1.createWriteStream(mediaTempFilePath));
  255. const path = `file://${mediaTempFilePath}`;
  256. switch (ext) {
  257. case 'jpg':
  258. case 'png':
  259. return koishi_1.Message.Image(path);
  260. case 'mp4':
  261. return koishi_1.Message.Video(path);
  262. }
  263. logger.warn('unable to find MIME type of fetched media, failing this fetch');
  264. throw Error();
  265. })(((_a = (/\?format=([a-z]+)&/.exec(url))) !== null && _a !== void 0 ? _a : (/.*\/.*\.([^?]+)/.exec(url)))[1]);
  266. });
  267. if (this.mode = mode) {
  268. onready();
  269. }
  270. else {
  271. this.wsUrl = wsUrl;
  272. this.connect(onready);
  273. }
  274. }
  275. webshot(tweets, callback, webshotDelay) {
  276. let promise = new Promise(resolve => {
  277. resolve();
  278. });
  279. tweets.forEach(twi => {
  280. promise = promise.then(() => {
  281. logger.info(`working on ${twi.user.screen_name}/${twi.id_str}`);
  282. });
  283. const originTwi = twi.retweeted_status || twi;
  284. let messageChain = '';
  285. let author = `${twi.user.name} (@${twi.user.screen_name}):\n`;
  286. if (twi.retweeted_status)
  287. author += `RT @${twi.retweeted_status.user.screen_name}: `;
  288. let text = originTwi.full_text;
  289. promise = promise.then(() => {
  290. if (originTwi.entities && originTwi.entities.urls && originTwi.entities.urls.length) {
  291. originTwi.entities.urls.forEach(url => {
  292. text = text.replace(new RegExp(url.url, 'gm'), url.expanded_url);
  293. });
  294. }
  295. if (originTwi.extended_entities) {
  296. originTwi.extended_entities.media.forEach(media => {
  297. text = text.replace(new RegExp(media.url, 'gm'), this.mode === 1 ? typeInZH[media.type] : '');
  298. });
  299. }
  300. if (this.mode > 0)
  301. messageChain += (author + xmlEntities.decode(text));
  302. });
  303. if (this.mode === 0) {
  304. const url = `https://mobile.twitter.com/${twi.user.screen_name}/status/${twi.id_str}`;
  305. this.extendEntity = (cardImg) => {
  306. var _a, _b;
  307. originTwi.extended_entities = Object.assign(Object.assign({}, originTwi.extended_entities), { media: [
  308. ...(_b = (_a = originTwi.extended_entities) === null || _a === void 0 ? void 0 : _a.media) !== null && _b !== void 0 ? _b : [],
  309. cardImg,
  310. ] });
  311. };
  312. promise = promise.then(() => this.renderWebshot(url, 1920, webshotDelay))
  313. .then(fileurl => {
  314. if (fileurl)
  315. return koishi_1.Message.Image(fileurl);
  316. return author + text;
  317. })
  318. .then(msg => {
  319. if (msg)
  320. messageChain += msg;
  321. });
  322. }
  323. if (1 - this.mode % 2)
  324. promise = promise.then(() => {
  325. if (originTwi.extended_entities) {
  326. return utils_1.chainPromises(originTwi.extended_entities.media.map(media => {
  327. let url;
  328. if (media.type === 'photo') {
  329. url = media.media_url_https.replace(/\.([a-z]+)$/, '?format=$1') + '&name=orig';
  330. }
  331. else {
  332. url = media.video_info.variants
  333. .filter(variant => variant.bitrate !== undefined)
  334. .sort((var1, var2) => var2.bitrate - var1.bitrate)
  335. .map(variant => variant.url)[0];
  336. }
  337. const altMessage = `\n[失败的${typeInZH[media.type].type}:${url}]`;
  338. return this.fetchMedia(url)
  339. .catch(error => {
  340. logger.warn('unable to fetch media, sending plain text instead...');
  341. return altMessage;
  342. })
  343. .then(msg => { messageChain += msg; });
  344. }));
  345. }
  346. });
  347. if (this.mode === 0) {
  348. if (originTwi.entities && originTwi.entities.urls && originTwi.entities.urls.length) {
  349. promise = promise.then(() => {
  350. const urls = originTwi.entities.urls
  351. .filter(urlObj => urlObj.indices[0] < originTwi.display_text_range[1])
  352. .map(urlObj => `\n\ud83d\udd17 ${urlObj.expanded_url}`);
  353. if (urls.length) {
  354. messageChain += urls.join('');
  355. }
  356. });
  357. }
  358. }
  359. if (originTwi.is_quote_status) {
  360. promise = promise.then(() => {
  361. messageChain += `\n回复此命令查看引用的推文:\n/twitter_view ${originTwi.quoted_status.id_str}`;
  362. });
  363. }
  364. promise.then(() => {
  365. logger.info(`done working on ${twi.user.screen_name}/${twi.id_str}, message chain:`);
  366. logger.info(JSON.stringify(koishi_1.Message.ellipseBase64(messageChain)));
  367. callback(messageChain, xmlEntities.decode(text), author);
  368. });
  369. });
  370. return promise;
  371. }
  372. }
  373. exports.default = Webshot;