]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/controllers/feeds.ts
Share playlists state
[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.videoAll
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 let title = comment.Video.name
60 const author: { name: string, link: string }[] = []
61
62 if (comment.Account) {
63 title += ` - ${comment.Account.getDisplayName()}`
64 author.push({
65 name: comment.Account.getDisplayName(),
66 link: comment.Account.Actor.url
67 })
68 }
69
70 feed.addItem({
71 title,
72 id: comment.url,
73 link,
74 content: comment.text,
75 author,
76 date: comment.createdAt
77 })
78 })
79
80 // Now the feed generation is done, let's send it!
81 return sendFeed(feed, req, res)
82 }
83
84 async function generateVideoFeed (req: express.Request, res: express.Response) {
85 const start = 0
86
87 const account = res.locals.account
88 const videoChannel = res.locals.videoChannel
89 const nsfw = buildNSFWFilter(res, req.query.nsfw)
90
91 let name: string
92 let description: string
93
94 if (videoChannel) {
95 name = videoChannel.getDisplayName()
96 description = videoChannel.description
97 } else if (account) {
98 name = account.getDisplayName()
99 description = account.description
100 } else {
101 name = CONFIG.INSTANCE.NAME
102 description = CONFIG.INSTANCE.DESCRIPTION
103 }
104
105 const feed = initFeed(name, description)
106
107 const resultList = await VideoModel.listForApi({
108 start,
109 count: FEEDS.COUNT,
110 sort: req.query.sort,
111 includeLocalVideos: true,
112 nsfw,
113 filter: req.query.filter,
114 withFiles: true,
115 accountId: account ? account.id : null,
116 videoChannelId: videoChannel ? videoChannel.id : null
117 })
118
119 // Adding video items to the feed, one at a time
120 resultList.data.forEach(video => {
121 const formattedVideoFiles = video.getFormattedVideoFilesJSON()
122
123 const torrents = formattedVideoFiles.map(videoFile => ({
124 title: video.name,
125 url: videoFile.torrentUrl,
126 size_in_bytes: videoFile.size
127 }))
128
129 const videos = formattedVideoFiles.map(videoFile => {
130 const result = {
131 type: 'video/mp4',
132 medium: 'video',
133 height: videoFile.resolution.label.replace('p', ''),
134 fileSize: videoFile.size,
135 url: videoFile.fileUrl,
136 framerate: videoFile.fps,
137 duration: video.duration
138 }
139
140 if (video.language) Object.assign(result, { lang: video.language })
141
142 return result
143 })
144
145 const categories: { value: number, label: string }[] = []
146 if (video.category) {
147 categories.push({
148 value: video.category,
149 label: VideoModel.getCategoryLabel(video.category)
150 })
151 }
152
153 feed.addItem({
154 title: video.name,
155 id: video.url,
156 link: WEBSERVER.URL + '/videos/watch/' + video.uuid,
157 description: video.getTruncatedDescription(),
158 content: video.description,
159 author: [
160 {
161 name: video.VideoChannel.Account.getDisplayName(),
162 link: video.VideoChannel.Account.Actor.url
163 }
164 ],
165 date: video.publishedAt,
166 nsfw: video.nsfw,
167 torrent: torrents,
168 videos,
169 embed: {
170 url: video.getEmbedStaticPath(),
171 allowFullscreen: true
172 },
173 player: {
174 url: video.getWatchStaticPath()
175 },
176 categories,
177 community: {
178 statistics: {
179 views: video.views
180 }
181 },
182 thumbnail: [
183 {
184 url: WEBSERVER.URL + video.getMiniatureStaticPath(),
185 height: THUMBNAILS_SIZE.height,
186 width: THUMBNAILS_SIZE.width
187 }
188 ]
189 })
190 })
191
192 // Now the feed generation is done, let's send it!
193 return sendFeed(feed, req, res)
194 }
195
196 function initFeed (name: string, description: string) {
197 const webserverUrl = WEBSERVER.URL
198
199 return new Feed({
200 title: name,
201 description,
202 // updated: TODO: somehowGetLatestUpdate, // optional, default = today
203 id: webserverUrl,
204 link: webserverUrl,
205 image: webserverUrl + '/client/assets/images/icons/icon-96x96.png',
206 favicon: webserverUrl + '/client/assets/images/favicon.png',
207 copyright: `All rights reserved, unless otherwise specified in the terms specified at ${webserverUrl}/about` +
208 ` and potential licenses granted by each content's rightholder.`,
209 generator: `Toraifōsu`, // ^.~
210 feedLinks: {
211 json: `${webserverUrl}/feeds/videos.json`,
212 atom: `${webserverUrl}/feeds/videos.atom`,
213 rss: `${webserverUrl}/feeds/videos.xml`
214 },
215 author: {
216 name: 'Instance admin of ' + CONFIG.INSTANCE.NAME,
217 email: CONFIG.ADMIN.EMAIL,
218 link: `${webserverUrl}/about`
219 }
220 })
221 }
222
223 function sendFeed (feed, req: express.Request, res: express.Response) {
224 const format = req.params.format
225
226 if (format === 'atom' || format === 'atom1') {
227 res.set('Content-Type', 'application/atom+xml')
228 return res.send(feed.atom1()).end()
229 }
230
231 if (format === 'json' || format === 'json1') {
232 res.set('Content-Type', 'application/json')
233 return res.send(feed.json1()).end()
234 }
235
236 if (format === 'rss' || format === 'rss2') {
237 res.set('Content-Type', 'application/rss+xml')
238 return res.send(feed.rss2()).end()
239 }
240
241 // We're in the ambiguous '.xml' case and we look at the format query parameter
242 if (req.query.format === 'atom' || req.query.format === 'atom1') {
243 res.set('Content-Type', 'application/atom+xml')
244 return res.send(feed.atom1()).end()
245 }
246
247 res.set('Content-Type', 'application/rss+xml')
248 return res.send(feed.rss2()).end()
249 }