Skip to content

Commit

Permalink
fix(route): creative-comic update image host (#13705)
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyRL authored Nov 6, 2023
1 parent e594309 commit 52cb5e0
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 36 deletions.
74 changes: 40 additions & 34 deletions lib/v2/creative-comic/book.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,47 +6,53 @@ const { getUuid, getBook, getChapter, getChapters, getImgEncrypted, getImgKey, d
module.exports = async (ctx) => {
const { id, coverOnly = 'true', quality = '1' } = ctx.params;
const uuid = await getUuid(ctx.cache.tryGet);
let { data: book } = await getBook(id, uuid);
let { data: chapters } = await getChapters(id, uuid);
book = book.data;
chapters = chapters.data;
const {
data: { data: book },
} = await getBook(id, uuid);
const {
data: { data: chapters },
} = await getChapters(id, uuid);

const items = await Promise.all(
chapters.chapters.map(async (c) => {
let pages;
if (coverOnly !== 'true' && coverOnly !== '1') {
let { data: chapter } = await getChapter(c.id, uuid);
chapter = chapter.data;
chapters.chapters
.sort((a, b) => b.idx - a.idx)
.slice(0, ctx.query.limit ? parseInt(ctx.query.limit, 10) : 3)
.map(async (c) => {
let pages;
if (coverOnly !== 'true' && coverOnly !== '1') {
const {
data: { data: chapter },
} = await getChapter(c.id, uuid);

if (chapter.chapter.free_day === null || chapter.chapter.free_day === 0) {
pages = await Promise.all(
chapter.chapter.proportion.map(async (p) => {
let { data: imgKey } = await getImgKey(p.id, uuid);
imgKey = imgKey.data.key;
if (chapter.chapter.free_day === null || chapter.chapter.free_day === 0) {
pages = await Promise.all(
chapter.chapter.proportion.map(async (p) => {
let { data: imgKey } = await getImgKey(p.id, uuid);
imgKey = imgKey.data.key;

const realKey = getRealKey(imgKey);
const encrypted = await getImgEncrypted(p.id, quality);
const realKey = getRealKey(imgKey);
const encrypted = await getImgEncrypted(p.id, quality);

return ctx.cache.tryGet(`${siteHost}/fs/chapter_content/encrypt/${p.id}/${quality}`, () => decrypt(encrypted, realKey));
})
);
return ctx.cache.tryGet(`${siteHost}/fs/chapter_content/encrypt/${p.id}/${quality}`, () => decrypt(encrypted, realKey));
})
);
}
}
}

return {
title: c.vol_name,
description: art(path.join(__dirname, 'templates/chapter.art'), {
chapter: c,
pages,
cover: c.image1,
}),
pubDate: parseDate(c.online_at),
updated: parseDate(c.updated_at),
link: `https://www.creative-comic.tw/reader_comic/${c.id}`,
author: book.author.map((author) => author.name).join(', '),
category: book.tags.map((tag) => tag.name),
};
})
return {
title: c.vol_name,
description: art(path.join(__dirname, 'templates/chapter.art'), {
chapter: c,
pages,
cover: c.image1,
}),
pubDate: parseDate(c.online_at),
updated: parseDate(c.updated_at),
link: `https://www.creative-comic.tw/reader_comic/${c.id}`,
author: book.author.map((author) => author.name).join(', '),
category: book.tags.map((tag) => tag.name),
};
})
);

ctx.state.data = {
Expand Down
3 changes: 1 addition & 2 deletions lib/v2/creative-comic/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ const got = require('@/utils/got');
const CryptoJS = require('crypto-js');

const apiHost = 'https://api.creative-comic.tw';
const siteHost = 'https://www.creative-comic.tw';
const device = 'web_desktop';
const DEFAULT_TOKEN = 'freeforccc2020reading';

Expand Down Expand Up @@ -31,7 +30,7 @@ const getChapters = (bookId, uuid) =>
});

const getImgEncrypted = async (pageId, quality) => {
const { data: res } = await got(`${siteHost}/fs/chapter_content/encrypt/${pageId}/${quality}`, {
const { data: res } = await got(`https://storage.googleapis.com/ccc-www/fs/chapter_content/encrypt/${pageId}/${quality}`, {
headers: {
device,
},
Expand Down

0 comments on commit 52cb5e0

Please sign in to comment.