This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/server/calendar.js

25 lines
739 B
JavaScript
Raw Normal View History

2021-09-07 10:11:15 -07:00
require('../src/dotenv')();
2021-08-18 05:39:08 -07:00
const Pageres = require('pageres');
const fs = require('fs');
const Suml = require('suml');
const locale = new Suml().parse(fs.readFileSync(`./data/config.suml`).toString()).locale;
2021-08-18 11:19:24 -07:00
const shoot = async (url, filename) => {
2021-08-18 05:39:08 -07:00
const pr = new Pageres({
delay: 3,
2021-08-18 11:19:24 -07:00
scale: 2,
2021-08-18 05:39:08 -07:00
});
2021-08-18 11:19:24 -07:00
pr.src(process.env.BASE_URL + url, ['1500x300']);
2021-08-18 05:39:08 -07:00
for (let buffer of await pr.run()) {
2021-08-18 11:19:24 -07:00
const target = `${__dirname}/../static/calendar/${filename}.png`;
2021-08-18 05:39:08 -07:00
console.log(target);
fs.writeFileSync(target, buffer);
}
2021-08-18 11:19:24 -07:00
}
(async () => {
await shoot('/calendar-wide', `calendar-${locale}-overview`);
await shoot('/calendar-wide?labels=true', `calendar-${locale}-labels`);
2021-08-18 05:39:08 -07:00
})();