]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/controllers/feeds.ts
Add ability to limit videos history size
[github/Chocobozzz/PeerTube.git] / server / controllers / feeds.ts
1 import * as express from 'express'
2 import { FEEDS, ROUTE_CACHE_LIFETIME, THUMBNAILS_SIZE, WEBSERVER } from '../initializers/constants'
3 import {
4 asyncMiddleware,
5 commonVideosFiltersValidator,
6 setDefaultSort,
7 videoCommentsFeedsValidator,
8 videoFeedsValidator,
9 videosSortValidator
10 } from '../middlewares'
11 import { VideoModel } from '../models/video/video'
12 import * as Feed from 'pfeed'
13 import { cacheRoute } from '../middlewares/cache'
14 import { VideoCommentModel } from '../models/video/video-comment'
15 import { buildNSFWFilter } from '../helpers/express-utils'
16 import { CONFIG } from '../initializers/config'
17
18 const feedsRouter = express.Router()
19
20 feedsRouter.get('/feeds/video-comments.:format',
21 asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.FEEDS)),
22 asyncMiddleware(videoCommentsFeedsValidator),
23 asyncMiddleware(generateVideoCommentsFeed)
24 )
25
26 feedsRouter.get('/feeds/videos.:format',
27 videosSortValidator,
28 setDefaultSort,
29 asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.FEEDS)),
30 commonVideosFiltersValidator,
31 asyncMiddleware(videoFeedsValidator),
32 asyncMiddleware(generateVideoFeed)
33 )
34
35 // ---------------------------------------------------------------------------
36
37 export {
38 feedsRouter
39 }
40
41 // ---------------------------------------------------------------------------
42
43 async function generateVideoCommentsFeed (req: express.Request, res: express.Response) {
44 const start = 0
45
46 const video = res.locals.video
47 const videoId: number = video ? video.id : undefined
48
49 const comments = await VideoCommentModel.listForFeed(start, FEEDS.COUNT, videoId)
50
51 const name = video ? video.name : CONFIG.INSTANCE.NAME
52 const description = video ? video.description : CONFIG.INSTANCE.DESCRIPTION
53 const feed = initFeed(name, description)
54
55 // Adding video items to the feed, one at a time
56 comments.forEach(comment => {
57 const link = WEBSERVER.URL + comment.getCommentStaticPath()
58
59 feed.addItem({
60 title: `${comment.Video.name} - ${comment.Account.getDisplayName()}`,
61 id: comment.url,
62 link,
63 content: comment.text,
64 author: [
65 {
66 name: comment.Account.getDisplayName(),
67 link: comment.Account.Actor.url
68 }
69 ],
70 date: comment.createdAt
71 })
72 })
73
74 // Now the feed generation is done, let's send it!
75 return sendFeed(feed, req, res)
76 }
77
78 async function generateVideoFeed (req: express.Request, res: express.Response) {
79 const start = 0
80
81 const account = res.locals.account
82 const videoChannel = res.locals.videoChannel
83 const nsfw = buildNSFWFilter(res, req.query.nsfw)
84
85 let name: string
86 let description: string
87
88 if (videoChannel) {
89 name = videoChannel.getDisplayName()
90 description = videoChannel.description
91 } else if (account) {
92 name = account.getDisplayName()
93 description = account.description
94 } else {
95 name = CONFIG.INSTANCE.NAME
96 description = CONFIG.INSTANCE.DESCRIPTION
97 }
98
99 const feed = initFeed(name, description)
100
101 const resultList = await VideoModel.listForApi({
102 start,
103 count: FEEDS.COUNT,
104 sort: req.query.sort,
105 includeLocalVideos: true,
106 nsfw,
107 filter: req.query.filter,
108 withFiles: true,
109 accountId: account ? account.id : null,
110 videoChannelId: videoChannel ? videoChannel.id : null
111 })
112
113 // Adding video items to the feed, one at a time
114 resultList.data.forEach(video => {
115 const formattedVideoFiles = video.getFormattedVideoFilesJSON()
116 const torrents = formattedVideoFiles.map(videoFile => ({
117 title: video.name,
118 url: videoFile.torrentUrl,
119 size_in_bytes: videoFile.size
120 }))
121
122 feed.addItem({
123 title: video.name,
124 id: video.url,
125 link: WEBSERVER.URL + '/videos/watch/' + video.uuid,
126 description: video.getTruncatedDescription(),
127 content: video.description,
128 author: [
129 {
130 name: video.VideoChannel.Account.getDisplayName(),
131 link: video.VideoChannel.Account.Actor.url
132 }
133 ],
134 date: video.publishedAt,
135 language: video.language,
136 nsfw: video.nsfw,
137 torrent: torrents,
138 thumbnail: [
139 {
140 url: WEBSERVER.URL + video.getThumbnailStaticPath(),
141 height: THUMBNAILS_SIZE.height,
142 width: THUMBNAILS_SIZE.width
143 }
144 ]
145 })
146 })
147
148 // Now the feed generation is done, let's send it!
149 return sendFeed(feed, req, res)
150 }
151
152 function initFeed (name: string, description: string) {
153 const webserverUrl = WEBSERVER.URL
154
155 return new Feed({
156 title: name,
157 description,
158 // updated: TODO: somehowGetLatestUpdate, // optional, default = today
159 id: webserverUrl,
160 link: webserverUrl,
161 image: webserverUrl + '/client/assets/images/icons/icon-96x96.png',
162 favicon: webserverUrl + '/client/assets/images/favicon.png',
163 copyright: `All rights reserved, unless otherwise specified in the terms specified at ${webserverUrl}/about` +
164 ` and potential licenses granted by each content's rightholder.`,
165 generator: `Toraifōsu`, // ^.~
166 feedLinks: {
167 json: `${webserverUrl}/feeds/videos.json`,
168 atom: `${webserverUrl}/feeds/videos.atom`,
169 rss: `${webserverUrl}/feeds/videos.xml`
170 },
171 author: {
172 name: 'Instance admin of ' + CONFIG.INSTANCE.NAME,
173 email: CONFIG.ADMIN.EMAIL,
174 link: `${webserverUrl}/about`
175 }
176 })
177 }
178
179 function sendFeed (feed, req: express.Request, res: express.Response) {
180 const format = req.params.format
181
182 if (format === 'atom' || format === 'atom1') {
183 res.set('Content-Type', 'application/atom+xml')
184 return res.send(feed.atom1()).end()
185 }
186
187 if (format === 'json' || format === 'json1') {
188 res.set('Content-Type', 'application/json')
189 return res.send(feed.json1()).end()
190 }
191
192 if (format === 'rss' || format === 'rss2') {
193 res.set('Content-Type', 'application/rss+xml')
194 return res.send(feed.rss2()).end()
195 }
196
197 // We're in the ambiguous '.xml' case and we look at the format query parameter
198 if (req.query.format === 'atom' || req.query.format === 'atom1') {
199 res.set('Content-Type', 'application/atom+xml')
200 return res.send(feed.atom1()).end()
201 }
202
203 res.set('Content-Type', 'application/rss+xml')
204 return res.send(feed.rss2()).end()
205 }