2018-04-16 18:49:04 -04:00
|
|
|
import * as express from 'express'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { FEEDS, ROUTE_CACHE_LIFETIME, THUMBNAILS_SIZE, WEBSERVER } from '../initializers/constants'
|
2018-10-10 05:46:50 -04:00
|
|
|
import {
|
|
|
|
asyncMiddleware,
|
|
|
|
commonVideosFiltersValidator,
|
|
|
|
setDefaultSort,
|
|
|
|
videoCommentsFeedsValidator,
|
|
|
|
videoFeedsValidator,
|
2020-01-09 10:51:51 -05:00
|
|
|
videosSortValidator,
|
|
|
|
feedsFormatValidator,
|
|
|
|
setFeedFormatContentType
|
2018-10-10 05:46:50 -04:00
|
|
|
} from '../middlewares'
|
2018-04-16 18:49:04 -04:00
|
|
|
import { VideoModel } from '../models/video/video'
|
|
|
|
import * as Feed from 'pfeed'
|
2018-07-24 08:35:11 -04:00
|
|
|
import { cacheRoute } from '../middlewares/cache'
|
2018-06-08 14:34:37 -04:00
|
|
|
import { VideoCommentModel } from '../models/video/video-comment'
|
2018-07-20 08:35:18 -04:00
|
|
|
import { buildNSFWFilter } from '../helpers/express-utils'
|
2019-04-11 05:33:44 -04:00
|
|
|
import { CONFIG } from '../initializers/config'
|
2018-04-16 18:49:04 -04:00
|
|
|
|
|
|
|
const feedsRouter = express.Router()
|
|
|
|
|
2018-06-08 14:34:37 -04:00
|
|
|
feedsRouter.get('/feeds/video-comments.:format',
|
2020-01-09 10:51:51 -05:00
|
|
|
feedsFormatValidator,
|
|
|
|
setFeedFormatContentType,
|
|
|
|
asyncMiddleware(cacheRoute({
|
|
|
|
headerBlacklist: [
|
|
|
|
'Content-Type'
|
|
|
|
]
|
|
|
|
})(ROUTE_CACHE_LIFETIME.FEEDS)),
|
2018-06-08 14:34:37 -04:00
|
|
|
asyncMiddleware(videoCommentsFeedsValidator),
|
|
|
|
asyncMiddleware(generateVideoCommentsFeed)
|
|
|
|
)
|
|
|
|
|
2018-04-16 18:49:04 -04:00
|
|
|
feedsRouter.get('/feeds/videos.:format',
|
2018-04-17 04:56:27 -04:00
|
|
|
videosSortValidator,
|
|
|
|
setDefaultSort,
|
2020-01-09 10:51:51 -05:00
|
|
|
feedsFormatValidator,
|
|
|
|
setFeedFormatContentType,
|
|
|
|
asyncMiddleware(cacheRoute({
|
|
|
|
headerBlacklist: [
|
|
|
|
'Content-Type'
|
|
|
|
]
|
|
|
|
})(ROUTE_CACHE_LIFETIME.FEEDS)),
|
2018-10-10 05:46:50 -04:00
|
|
|
commonVideosFiltersValidator,
|
2018-06-08 14:34:37 -04:00
|
|
|
asyncMiddleware(videoFeedsValidator),
|
|
|
|
asyncMiddleware(generateVideoFeed)
|
2018-04-16 18:49:04 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
feedsRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
async function generateVideoCommentsFeed (req: express.Request, res: express.Response) {
|
2018-06-08 14:34:37 -04:00
|
|
|
const start = 0
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const video = res.locals.videoAll
|
2018-06-13 09:07:25 -04:00
|
|
|
const videoId: number = video ? video.id : undefined
|
2018-06-08 14:34:37 -04:00
|
|
|
|
|
|
|
const comments = await VideoCommentModel.listForFeed(start, FEEDS.COUNT, videoId)
|
|
|
|
|
2018-06-13 09:07:25 -04:00
|
|
|
const name = video ? video.name : CONFIG.INSTANCE.NAME
|
|
|
|
const description = video ? video.description : CONFIG.INSTANCE.DESCRIPTION
|
|
|
|
const feed = initFeed(name, description)
|
|
|
|
|
2018-06-08 14:34:37 -04:00
|
|
|
// Adding video items to the feed, one at a time
|
2020-04-21 03:01:39 -04:00
|
|
|
for (const comment of comments) {
|
2019-04-11 05:33:44 -04:00
|
|
|
const link = WEBSERVER.URL + comment.getCommentStaticPath()
|
2018-06-14 05:25:19 -04:00
|
|
|
|
2019-12-10 02:45:52 -05:00
|
|
|
let title = comment.Video.name
|
2019-12-11 12:06:41 -05:00
|
|
|
const author: { name: string, link: string }[] = []
|
|
|
|
|
|
|
|
if (comment.Account) {
|
|
|
|
title += ` - ${comment.Account.getDisplayName()}`
|
|
|
|
author.push({
|
|
|
|
name: comment.Account.getDisplayName(),
|
|
|
|
link: comment.Account.Actor.url
|
|
|
|
})
|
|
|
|
}
|
2019-12-10 02:45:52 -05:00
|
|
|
|
2018-06-08 14:34:37 -04:00
|
|
|
feed.addItem({
|
2019-12-10 02:45:52 -05:00
|
|
|
title,
|
2018-06-08 14:34:37 -04:00
|
|
|
id: comment.url,
|
2018-06-14 05:25:19 -04:00
|
|
|
link,
|
2018-06-08 14:34:37 -04:00
|
|
|
content: comment.text,
|
2019-12-11 12:06:41 -05:00
|
|
|
author,
|
2018-06-08 14:34:37 -04:00
|
|
|
date: comment.createdAt
|
|
|
|
})
|
2020-04-21 03:01:39 -04:00
|
|
|
}
|
2018-06-08 14:34:37 -04:00
|
|
|
|
|
|
|
// Now the feed generation is done, let's send it!
|
|
|
|
return sendFeed(feed, req, res)
|
|
|
|
}
|
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
async function generateVideoFeed (req: express.Request, res: express.Response) {
|
2018-04-17 08:01:06 -04:00
|
|
|
const start = 0
|
2018-04-16 18:49:04 -04:00
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
const account = res.locals.account
|
|
|
|
const videoChannel = res.locals.videoChannel
|
2018-07-20 08:35:18 -04:00
|
|
|
const nsfw = buildNSFWFilter(res, req.query.nsfw)
|
2018-04-16 18:49:04 -04:00
|
|
|
|
2018-06-13 09:07:25 -04:00
|
|
|
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 11:05:32 -04:00
|
|
|
const resultList = await VideoModel.listForApi({
|
2018-04-24 09:10:54 -04:00
|
|
|
start,
|
2018-04-24 11:05:32 -04:00
|
|
|
count: FEEDS.COUNT,
|
|
|
|
sort: req.query.sort,
|
2018-08-16 09:25:20 -04:00
|
|
|
includeLocalVideos: true,
|
2018-07-20 08:35:18 -04:00
|
|
|
nsfw,
|
2018-04-24 11:05:32 -04:00
|
|
|
filter: req.query.filter,
|
|
|
|
withFiles: true,
|
2018-04-25 11:30:46 -04:00
|
|
|
accountId: account ? account.id : null,
|
|
|
|
videoChannelId: videoChannel ? videoChannel.id : null
|
2018-04-24 11:05:32 -04:00
|
|
|
})
|
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()
|
2019-12-09 03:40:16 -05:00
|
|
|
|
2018-04-16 18:49:04 -04:00
|
|
|
const torrents = formattedVideoFiles.map(videoFile => ({
|
|
|
|
title: video.name,
|
|
|
|
url: videoFile.torrentUrl,
|
|
|
|
size_in_bytes: videoFile.size
|
|
|
|
}))
|
2019-12-09 03:40:16 -05:00
|
|
|
|
|
|
|
const videos = formattedVideoFiles.map(videoFile => {
|
|
|
|
const result = {
|
|
|
|
type: 'video/mp4',
|
|
|
|
medium: 'video',
|
|
|
|
height: videoFile.resolution.label.replace('p', ''),
|
|
|
|
fileSize: videoFile.size,
|
|
|
|
url: videoFile.fileUrl,
|
|
|
|
framerate: videoFile.fps,
|
|
|
|
duration: video.duration
|
|
|
|
}
|
|
|
|
|
|
|
|
if (video.language) Object.assign(result, { lang: video.language })
|
|
|
|
|
|
|
|
return result
|
|
|
|
})
|
|
|
|
|
|
|
|
const categories: { value: number, label: string }[] = []
|
|
|
|
if (video.category) {
|
|
|
|
categories.push({
|
|
|
|
value: video.category,
|
|
|
|
label: VideoModel.getCategoryLabel(video.category)
|
|
|
|
})
|
|
|
|
}
|
2018-04-16 18:49:04 -04:00
|
|
|
|
|
|
|
feed.addItem({
|
|
|
|
title: video.name,
|
|
|
|
id: video.url,
|
2019-04-11 05:33:44 -04:00
|
|
|
link: WEBSERVER.URL + '/videos/watch/' + video.uuid,
|
2018-04-16 18:49:04 -04:00
|
|
|
description: video.getTruncatedDescription(),
|
|
|
|
content: video.description,
|
|
|
|
author: [
|
|
|
|
{
|
|
|
|
name: video.VideoChannel.Account.getDisplayName(),
|
|
|
|
link: video.VideoChannel.Account.Actor.url
|
|
|
|
}
|
|
|
|
],
|
|
|
|
date: video.publishedAt,
|
|
|
|
nsfw: video.nsfw,
|
2018-06-29 08:40:39 -04:00
|
|
|
torrent: torrents,
|
2019-12-03 10:11:04 -05:00
|
|
|
videos,
|
|
|
|
embed: {
|
|
|
|
url: video.getEmbedStaticPath(),
|
|
|
|
allowFullscreen: true
|
|
|
|
},
|
|
|
|
player: {
|
|
|
|
url: video.getWatchStaticPath()
|
|
|
|
},
|
2019-12-09 03:40:16 -05:00
|
|
|
categories,
|
2019-12-03 10:11:04 -05:00
|
|
|
community: {
|
|
|
|
statistics: {
|
|
|
|
views: video.views
|
|
|
|
}
|
|
|
|
},
|
2018-06-29 08:40:39 -04:00
|
|
|
thumbnail: [
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
url: WEBSERVER.URL + video.getMiniatureStaticPath(),
|
2018-06-29 08:40:39 -04:00
|
|
|
height: THUMBNAILS_SIZE.height,
|
|
|
|
width: THUMBNAILS_SIZE.width
|
|
|
|
}
|
|
|
|
]
|
2018-04-16 18:49:04 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
// Now the feed generation is done, let's send it!
|
|
|
|
return sendFeed(feed, req, res)
|
|
|
|
}
|
|
|
|
|
2018-06-13 09:07:25 -04:00
|
|
|
function initFeed (name: string, description: string) {
|
2019-04-11 05:33:44 -04:00
|
|
|
const webserverUrl = WEBSERVER.URL
|
2018-04-16 18:49:04 -04:00
|
|
|
|
|
|
|
return new Feed({
|
2018-06-13 09:07:25 -04:00
|
|
|
title: name,
|
|
|
|
description,
|
2018-04-16 18:49:04 -04:00
|
|
|
// 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') {
|
|
|
|
return res.send(feed.atom1()).end()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (format === 'json' || format === 'json1') {
|
|
|
|
return res.send(feed.json1()).end()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (format === 'rss' || format === 'rss2') {
|
|
|
|
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') {
|
|
|
|
return res.send(feed.atom1()).end()
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.send(feed.rss2()).end()
|
|
|
|
}
|