Fetch the repository succeeded.
This action will force synchronization from 进击的皇虫/BookStack, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
'use strict';
// 说明: 这段js是用来进行书籍封面截屏的,请勿随便删除或改动
const puppeteer = require('puppeteer');
const fs = require("fs");
let args = process.argv.splice(2);
let l=args.length;
let url, identify,folder;
for(let i=0;i<l;i++){
switch (args[i]){
case "--url":
url = args[i+1];
if (url==undefined){
url = "";
}
break;
case '--identify':
identify = args[i+1];
break;
}
i++;
}
async function screenshot() {
const browser = await puppeteer.launch({args: ['--no-sandbox', '--disable-setuid-sandbox'], headless: true, ignoreHTTPSErrors: true});
const page = await browser.newPage();
page.setViewport({width: 800, height: 1068}); // A4 宽高
folder="cache/books/"+identify+"/"
page.setExtraHTTPHeaders({
"Accept-Language": "zh-CN,zh;q=0.9,en;q=0.8,co;q=0.7,fr;q=0.6,zh-HK;q=0.5,zh-TW;q=0.4",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3766.2 Safari/537.36"
});
await page.goto(url, {"waitUntil" : ['networkidle2', 'domcontentloaded'], "timeout":5000});
await page.screenshot({path: folder+'cover.png'});
await browser.close();
}
if (url && identify) screenshot();
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。