PeerTube/server/controllers/feeds.ts

200 lines
6.2 KiB
TypeScript
Raw Normal View History

import * as express from 'express'
2018-05-11 09:44:04 +02:00
import { CONFIG, FEEDS, ROUTE_CACHE_LIFETIME } from '../initializers/constants'
import { THUMBNAILS_SIZE } from '../initializers'
import { asyncMiddleware, setDefaultSort, videoCommentsFeedsValidator, videoFeedsValidator, videosSortValidator } from '../middlewares'
import { VideoModel } from '../models/video/video'
import * as Feed from 'pfeed'
import { AccountModel } from '../models/account/account'
2018-07-24 14:35:11 +02:00
import { cacheRoute } from '../middlewares/cache'
2018-04-25 17:30:46 +02:00
import { VideoChannelModel } from '../models/video/video-channel'
2018-06-08 20:34:37 +02:00
import { VideoCommentModel } from '../models/video/video-comment'
2018-07-20 14:35:18 +02:00
import { buildNSFWFilter } from '../helpers/express-utils'
const feedsRouter = express.Router()
2018-06-08 20:34:37 +02:00
feedsRouter.get('/feeds/video-comments.:format',
2018-07-24 14:35:11 +02:00
asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.FEEDS)),
2018-06-08 20:34:37 +02:00
asyncMiddleware(videoCommentsFeedsValidator),
asyncMiddleware(generateVideoCommentsFeed)
)
feedsRouter.get('/feeds/videos.:format',
2018-04-17 10:56:27 +02:00
videosSortValidator,
setDefaultSort,
2018-07-24 14:35:11 +02:00
asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.FEEDS)),
2018-06-08 20:34:37 +02:00
asyncMiddleware(videoFeedsValidator),
asyncMiddleware(generateVideoFeed)
)
// ---------------------------------------------------------------------------
export {
feedsRouter
}
// ---------------------------------------------------------------------------
2018-06-08 20:34:37 +02:00
async function generateVideoCommentsFeed (req: express.Request, res: express.Response, next: express.NextFunction) {
const start = 0
const video = res.locals.video as VideoModel
const videoId: number = video ? video.id : undefined
2018-06-08 20:34:37 +02:00
const comments = await VideoCommentModel.listForFeed(start, FEEDS.COUNT, videoId)
const name = video ? video.name : CONFIG.INSTANCE.NAME
const description = video ? video.description : CONFIG.INSTANCE.DESCRIPTION
const feed = initFeed(name, description)
2018-06-08 20:34:37 +02:00
// Adding video items to the feed, one at a time
comments.forEach(comment => {
2018-06-14 11:25:19 +02:00
const link = CONFIG.WEBSERVER.URL + '/videos/watch/' + comment.Video.uuid + ';threadId=' + comment.getThreadId()
2018-06-08 20:34:37 +02:00
feed.addItem({
title: `${comment.Video.name} - ${comment.Account.getDisplayName()}`,
id: comment.url,
2018-06-14 11:25:19 +02:00
link,
2018-06-08 20:34:37 +02:00
content: comment.text,
author: [
{
name: comment.Account.getDisplayName(),
link: comment.Account.Actor.url
}
],
date: comment.createdAt
})
})
// Now the feed generation is done, let's send it!
return sendFeed(feed, req, res)
}
async function generateVideoFeed (req: express.Request, res: express.Response, next: express.NextFunction) {
2018-04-17 14:01:06 +02:00
const start = 0
const account: AccountModel = res.locals.account
2018-04-25 17:30:46 +02:00
const videoChannel: VideoChannelModel = res.locals.videoChannel
2018-07-20 14:35:18 +02:00
const nsfw = buildNSFWFilter(res, req.query.nsfw)
let name: string
let description: string
if (videoChannel) {
name = videoChannel.getDisplayName()
description = videoChannel.description
} else if (account) {
name = account.getDisplayName()
description = account.description
} else {
name = CONFIG.INSTANCE.NAME
description = CONFIG.INSTANCE.DESCRIPTION
}
const feed = initFeed(name, description)
2018-04-24 17:05:32 +02:00
const resultList = await VideoModel.listForApi({
2018-04-24 15:10:54 +02:00
start,
2018-04-24 17:05:32 +02:00
count: FEEDS.COUNT,
sort: req.query.sort,
includeLocalVideos: true,
2018-07-20 14:35:18 +02:00
nsfw,
2018-04-24 17:05:32 +02:00
filter: req.query.filter,
withFiles: true,
2018-04-25 17:30:46 +02:00
accountId: account ? account.id : null,
videoChannelId: videoChannel ? videoChannel.id : null
2018-04-24 17:05:32 +02: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,
2018-06-14 11:25:19 +02:00
link: CONFIG.WEBSERVER.URL + '/videos/watch/' + video.uuid,
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,
thumbnail: [
{
2018-07-12 19:02:00 +02:00
url: CONFIG.WEBSERVER.URL + video.getThumbnailStaticPath(),
height: THUMBNAILS_SIZE.height,
width: THUMBNAILS_SIZE.width
}
]
})
})
// Now the feed generation is done, let's send it!
return sendFeed(feed, req, res)
}
function initFeed (name: string, description: string) {
const webserverUrl = CONFIG.WEBSERVER.URL
return new Feed({
title: name,
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 10:56:27 +02:00
name: 'Instance admin of ' + CONFIG.INSTANCE.NAME,
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()
}