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