X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fcontrollers%2Ffeeds.ts;h=b30ad8e8de63348fe475f7f2a6ecbe38d699f4c5;hb=1d6587aa42ddaa5acdf3a99127797377c7717850;hp=700c50ec8ac9a3260649687bc88614f968c80c5b;hpb=7b87d2d5141d0eb48db2a3fd162208d6a79b2035;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/feeds.ts b/server/controllers/feeds.ts index 700c50ec8..b30ad8e8d 100644 --- a/server/controllers/feeds.ts +++ b/server/controllers/feeds.ts @@ -1,24 +1,29 @@ import * as express from 'express' -import { CONFIG } from '../initializers' -import { - asyncMiddleware, - feedsValidator, - setDefaultPagination, - setDefaultSort, - videosSortValidator -} from '../middlewares' +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 { ResultList } from '../../shared/models' import { AccountModel } from '../models/account/account' +import { cacheRoute } from '../middlewares/cache' +import { VideoChannelModel } from '../models/video/video-channel' +import { VideoCommentModel } from '../models/video/video-comment' +import { buildNSFWFilter } from '../helpers/express-utils' const feedsRouter = express.Router() +feedsRouter.get('/feeds/video-comments.:format', + asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.FEEDS)), + asyncMiddleware(videoCommentsFeedsValidator), + asyncMiddleware(generateVideoCommentsFeed) +) + feedsRouter.get('/feeds/videos.:format', videosSortValidator, setDefaultSort, - asyncMiddleware(feedsValidator), - asyncMiddleware(generateFeed) + asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.FEEDS)), + asyncMiddleware(videoFeedsValidator), + asyncMiddleware(generateVideoFeed) ) // --------------------------------------------------------------------------- @@ -29,32 +34,76 @@ export { // --------------------------------------------------------------------------- -async function generateFeed (req: express.Request, res: express.Response, next: express.NextFunction) { - let feed = initFeed() - const paginationStart = 0 - const paginationCount = 20 +async function generateVideoCommentsFeed (req: express.Request, res: express.Response, next: express.NextFunction) { + const start = 0 - let resultList: ResultList - const account: AccountModel = res.locals.account + const video = res.locals.video as VideoModel + const videoId: number = video ? video.id : undefined + + 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) + + // Adding video items to the feed, one at a time + comments.forEach(comment => { + const link = CONFIG.WEBSERVER.URL + '/videos/watch/' + comment.Video.uuid + ';threadId=' + comment.getThreadId() + + feed.addItem({ + title: `${comment.Video.name} - ${comment.Account.getDisplayName()}`, + id: comment.url, + link, + 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) +} - if (account) { - resultList = await VideoModel.listAccountVideosForApi( - account.id, - paginationStart, - paginationCount, - req.query.sort, - true - ) +async function generateVideoFeed (req: express.Request, res: express.Response, next: express.NextFunction) { + const start = 0 + + const account: AccountModel = res.locals.account + const videoChannel: VideoChannelModel = res.locals.videoChannel + 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 { - resultList = await VideoModel.listForApi( - paginationStart, - paginationCount, - req.query.sort, - req.query.filter, - true - ) + name = CONFIG.INSTANCE.NAME + description = CONFIG.INSTANCE.DESCRIPTION } + const feed = initFeed(name, description) + + const resultList = await VideoModel.listForApi({ + start, + count: FEEDS.COUNT, + sort: req.query.sort, + includeLocalVideos: true, + nsfw, + filter: req.query.filter, + withFiles: true, + accountId: account ? account.id : null, + videoChannelId: videoChannel ? videoChannel.id : null + }) + // Adding video items to the feed, one at a time resultList.data.forEach(video => { const formattedVideoFiles = video.getFormattedVideoFilesJSON() @@ -67,7 +116,7 @@ async function generateFeed (req: express.Request, res: express.Response, next: feed.addItem({ title: video.name, id: video.url, - link: video.url, + link: CONFIG.WEBSERVER.URL + '/videos/watch/' + video.uuid, description: video.getTruncatedDescription(), content: video.description, author: [ @@ -79,7 +128,14 @@ async function generateFeed (req: express.Request, res: express.Response, next: date: video.publishedAt, language: video.language, nsfw: video.nsfw, - torrent: torrents + torrent: torrents, + thumbnail: [ + { + url: CONFIG.WEBSERVER.URL + video.getThumbnailStaticPath(), + height: THUMBNAILS_SIZE.height, + width: THUMBNAILS_SIZE.width + } + ] }) }) @@ -87,12 +143,12 @@ async function generateFeed (req: express.Request, res: express.Response, next: return sendFeed(feed, req, res) } -function initFeed () { +function initFeed (name: string, description: string) { const webserverUrl = CONFIG.WEBSERVER.URL return new Feed({ - title: CONFIG.INSTANCE.NAME, - description: CONFIG.INSTANCE.SHORT_DESCRIPTION, + title: name, + description, // updated: TODO: somehowGetLatestUpdate, // optional, default = today id: webserverUrl, link: webserverUrl,