2021-10-06 09:43:59 +00:00
|
|
|
import Hapi = require('@hapi/hapi');
|
|
|
|
import '@hapi/vision';
|
2021-10-06 17:47:10 +00:00
|
|
|
import { fetchAlbum, fetchAlbumURL, fetchComments, fetchGallery, fetchMedia } from './fetchers';
|
2021-10-06 09:43:59 +00:00
|
|
|
import * as util from './util';
|
|
|
|
|
2021-10-06 15:48:05 +00:00
|
|
|
import CONFIG from './config';
|
|
|
|
|
2021-10-06 09:43:59 +00:00
|
|
|
export const handleMedia = async (request: Hapi.Request, h: Hapi.ResponseToolkit) => {
|
|
|
|
const {
|
|
|
|
baseName,
|
|
|
|
extension,
|
|
|
|
} = request.params;
|
|
|
|
const result = await fetchMedia(`${baseName}.${extension}`);
|
|
|
|
const response = h.response(result.rawBody)
|
|
|
|
.header('Content-Type', result.headers["content-type"] || `image/${extension}`);
|
|
|
|
return response;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const handleAlbum = async (request: Hapi.Request, h: Hapi.ResponseToolkit) => {
|
|
|
|
// https://imgur.com/a/DfEsrAB
|
2021-10-06 17:47:10 +00:00
|
|
|
const albumID = request.params.albumID;
|
|
|
|
if (CONFIG.disable_comments) {
|
|
|
|
const url = await fetchAlbumURL(albumID);
|
|
|
|
return h.view('bare-album', {
|
|
|
|
url,
|
|
|
|
pageTitle: CONFIG.page_title,
|
|
|
|
util,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
const album = await fetchAlbum(albumID);
|
|
|
|
return h.view('gallery', {
|
|
|
|
...album,
|
|
|
|
pageTitle: CONFIG.page_title,
|
|
|
|
util,
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
2021-10-06 09:43:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export const handleUser = (request: Hapi.Request, h: Hapi.ResponseToolkit) => {
|
|
|
|
// https://imgur.com/user/MomBotNumber5
|
|
|
|
throw new Error('not implemented');
|
|
|
|
};
|
|
|
|
|
|
|
|
export const handleTag = (request: Hapi.Request, h: Hapi.ResponseToolkit) => {
|
|
|
|
// https://imgur.com/t/funny
|
|
|
|
throw new Error('not implemented');
|
|
|
|
};
|
|
|
|
|
|
|
|
export const handleGallery = async (request: Hapi.Request, h: Hapi.ResponseToolkit) => {
|
|
|
|
const galleryID = request.params.galleryID;
|
|
|
|
const gallery = await fetchGallery(galleryID);
|
2021-10-06 15:48:05 +00:00
|
|
|
const comments = CONFIG.disable_comments
|
|
|
|
? null
|
|
|
|
: await fetchComments(galleryID);
|
2021-10-06 09:43:59 +00:00
|
|
|
return h.view('gallery', {
|
|
|
|
...gallery,
|
|
|
|
comments,
|
2021-10-06 17:47:10 +00:00
|
|
|
pageTitle: CONFIG.page_title,
|
2021-10-06 09:43:59 +00:00
|
|
|
util,
|
|
|
|
});
|
|
|
|
};
|