2018-04-16 18:49:04 -04:00
|
|
|
import * as express from 'express'
|
2018-04-17 08:01:06 -04:00
|
|
|
import { CONFIG, FEEDS } from '../initializers/constants'
|
|
|
|
import { asyncMiddleware, feedsValidator, setDefaultSort, videosSortValidator } from '../middlewares'
|
2018-04-16 18:49:04 -04:00
|
|
|
import { VideoModel } from '../models/video/video'
|
|
|
|
import * as Feed from 'pfeed'
|
|
|
|
import { ResultList } from '../../shared/models'
|
|
|
|
import { AccountModel } from '../models/account/account'
|
2018-04-17 08:01:06 -04:00
|
|
|
import { cacheRoute } from '../middlewares/cache'
|
2018-04-19 05:01:34 -04:00
|
|
|
import { VideoSortField } from '../../client/src/app/shared/video/sort-field.type'
|
2018-04-16 18:49:04 -04:00
|
|
|
|
|
|
|
const feedsRouter = express.Router()
|
|
|
|
|
|
|
|
feedsRouter.get('/feeds/videos.:format',
|
2018-04-17 04:56:27 -04:00
|
|
|
videosSortValidator,
|
|
|
|
setDefaultSort,
|
2018-04-16 18:49:04 -04:00
|
|
|
asyncMiddleware(feedsValidator),
|
2018-04-17 08:01:06 -04:00
|
|
|
asyncMiddleware(cacheRoute),
|
2018-04-16 18:49:04 -04:00
|
|
|
asyncMiddleware(generateFeed)
|
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
feedsRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function generateFeed (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
let feed = initFeed()
|
2018-04-17 08:01:06 -04:00
|
|
|
const start = 0
|
2018-04-16 18:49:04 -04:00
|
|
|
|
|
|
|
const account: AccountModel = res.locals.account
|
2018-04-19 05:01:34 -04:00
|
|
|
const hideNSFW = CONFIG.INSTANCE.DEFAULT_NSFW_POLICY === 'do_not_list'
|
2018-04-16 18:49:04 -04:00
|
|
|
|
2018-04-24 09:10:54 -04:00
|
|
|
const resultList = await VideoModel.listForApi(
|
|
|
|
start,
|
|
|
|
FEEDS.COUNT,
|
|
|
|
req.query.sort as VideoSortField,
|
|
|
|
hideNSFW,
|
|
|
|
req.query.filter,
|
|
|
|
true,
|
|
|
|
account ? account.id : null
|
|
|
|
)
|
2018-04-16 18:49:04 -04:00
|
|
|
|
|
|
|
// Adding video items to the feed, one at a time
|
|
|
|
resultList.data.forEach(video => {
|
|
|
|
const formattedVideoFiles = video.getFormattedVideoFilesJSON()
|
|
|
|
const torrents = formattedVideoFiles.map(videoFile => ({
|
|
|
|
title: video.name,
|
|
|
|
url: videoFile.torrentUrl,
|
|
|
|
size_in_bytes: videoFile.size
|
|
|
|
}))
|
|
|
|
|
|
|
|
feed.addItem({
|
|
|
|
title: video.name,
|
|
|
|
id: video.url,
|
|
|
|
link: video.url,
|
|
|
|
description: video.getTruncatedDescription(),
|
|
|
|
content: video.description,
|
|
|
|
author: [
|
|
|
|
{
|
|
|
|
name: video.VideoChannel.Account.getDisplayName(),
|
|
|
|
link: video.VideoChannel.Account.Actor.url
|
|
|
|
}
|
|
|
|
],
|
|
|
|
date: video.publishedAt,
|
|
|
|
language: video.language,
|
|
|
|
nsfw: video.nsfw,
|
|
|
|
torrent: torrents
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
// Now the feed generation is done, let's send it!
|
|
|
|
return sendFeed(feed, req, res)
|
|
|
|
}
|
|
|
|
|
|
|
|
function initFeed () {
|
|
|
|
const webserverUrl = CONFIG.WEBSERVER.URL
|
|
|
|
|
|
|
|
return new Feed({
|
|
|
|
title: CONFIG.INSTANCE.NAME,
|
|
|
|
description: CONFIG.INSTANCE.SHORT_DESCRIPTION,
|
|
|
|
// updated: TODO: somehowGetLatestUpdate, // optional, default = today
|
|
|
|
id: webserverUrl,
|
|
|
|
link: webserverUrl,
|
|
|
|
image: webserverUrl + '/client/assets/images/icons/icon-96x96.png',
|
|
|
|
favicon: webserverUrl + '/client/assets/images/favicon.png',
|
|
|
|
copyright: `All rights reserved, unless otherwise specified in the terms specified at ${webserverUrl}/about` +
|
|
|
|
` and potential licenses granted by each content's rightholder.`,
|
|
|
|
generator: `Toraifōsu`, // ^.~
|
|
|
|
feedLinks: {
|
|
|
|
json: `${webserverUrl}/feeds/videos.json`,
|
|
|
|
atom: `${webserverUrl}/feeds/videos.atom`,
|
|
|
|
rss: `${webserverUrl}/feeds/videos.xml`
|
|
|
|
},
|
|
|
|
author: {
|
2018-04-17 04:56:27 -04:00
|
|
|
name: 'Instance admin of ' + CONFIG.INSTANCE.NAME,
|
2018-04-16 18:49:04 -04:00
|
|
|
email: CONFIG.ADMIN.EMAIL,
|
|
|
|
link: `${webserverUrl}/about`
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function sendFeed (feed, req: express.Request, res: express.Response) {
|
|
|
|
const format = req.params.format
|
|
|
|
|
|
|
|
if (format === 'atom' || format === 'atom1') {
|
|
|
|
res.set('Content-Type', 'application/atom+xml')
|
|
|
|
return res.send(feed.atom1()).end()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (format === 'json' || format === 'json1') {
|
|
|
|
res.set('Content-Type', 'application/json')
|
|
|
|
return res.send(feed.json1()).end()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (format === 'rss' || format === 'rss2') {
|
|
|
|
res.set('Content-Type', 'application/rss+xml')
|
|
|
|
return res.send(feed.rss2()).end()
|
|
|
|
}
|
|
|
|
|
|
|
|
// We're in the ambiguous '.xml' case and we look at the format query parameter
|
|
|
|
if (req.query.format === 'atom' || req.query.format === 'atom1') {
|
|
|
|
res.set('Content-Type', 'application/atom+xml')
|
|
|
|
return res.send(feed.atom1()).end()
|
|
|
|
}
|
|
|
|
|
|
|
|
res.set('Content-Type', 'application/rss+xml')
|
|
|
|
return res.send(feed.rss2()).end()
|
|
|
|
}
|