]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/feeds.ts
Stronger model typings
[github/Chocobozzz/PeerTube.git] / server / controllers / feeds.ts
CommitLineData
244e76a5 1import * as express from 'express'
74dc3bca 2import { FEEDS, ROUTE_CACHE_LIFETIME, THUMBNAILS_SIZE, WEBSERVER } from '../initializers/constants'
1cd3facc
C
3import {
4 asyncMiddleware,
5 commonVideosFiltersValidator,
6 setDefaultSort,
7 videoCommentsFeedsValidator,
8 videoFeedsValidator,
9 videosSortValidator
10} from '../middlewares'
244e76a5
RK
11import { VideoModel } from '../models/video/video'
12import * as Feed from 'pfeed'
98d3324d 13import { cacheRoute } from '../middlewares/cache'
fe3a55b0 14import { VideoCommentModel } from '../models/video/video-comment'
d525fc39 15import { buildNSFWFilter } from '../helpers/express-utils'
6dd9de95 16import { CONFIG } from '../initializers/config'
244e76a5
RK
17
18const feedsRouter = express.Router()
19
fe3a55b0 20feedsRouter.get('/feeds/video-comments.:format',
98d3324d 21 asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.FEEDS)),
fe3a55b0
C
22 asyncMiddleware(videoCommentsFeedsValidator),
23 asyncMiddleware(generateVideoCommentsFeed)
24)
25
244e76a5 26feedsRouter.get('/feeds/videos.:format',
7b87d2d5
C
27 videosSortValidator,
28 setDefaultSort,
98d3324d 29 asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.FEEDS)),
1cd3facc 30 commonVideosFiltersValidator,
fe3a55b0
C
31 asyncMiddleware(videoFeedsValidator),
32 asyncMiddleware(generateVideoFeed)
244e76a5
RK
33)
34
35// ---------------------------------------------------------------------------
36
37export {
38 feedsRouter
39}
40
41// ---------------------------------------------------------------------------
42
dae86118 43async function generateVideoCommentsFeed (req: express.Request, res: express.Response) {
fe3a55b0
C
44 const start = 0
45
453e83ea 46 const video = res.locals.videoAll
749c7247 47 const videoId: number = video ? video.id : undefined
fe3a55b0
C
48
49 const comments = await VideoCommentModel.listForFeed(start, FEEDS.COUNT, videoId)
50
749c7247
C
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
fe3a55b0
C
55 // Adding video items to the feed, one at a time
56 comments.forEach(comment => {
6dd9de95 57 const link = WEBSERVER.URL + comment.getCommentStaticPath()
4dae00e6 58
fe3a55b0
C
59 feed.addItem({
60 title: `${comment.Video.name} - ${comment.Account.getDisplayName()}`,
61 id: comment.url,
4dae00e6 62 link,
fe3a55b0
C
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
dae86118 78async function generateVideoFeed (req: express.Request, res: express.Response) {
4195cd2b 79 const start = 0
244e76a5 80
dae86118
C
81 const account = res.locals.account
82 const videoChannel = res.locals.videoChannel
d525fc39 83 const nsfw = buildNSFWFilter(res, req.query.nsfw)
244e76a5 84
749c7247
C
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
48dce1c9 101 const resultList = await VideoModel.listForApi({
0626e7af 102 start,
48dce1c9
C
103 count: FEEDS.COUNT,
104 sort: req.query.sort,
06a05d5f 105 includeLocalVideos: true,
d525fc39 106 nsfw,
48dce1c9
C
107 filter: req.query.filter,
108 withFiles: true,
e0ea4b1d
C
109 accountId: account ? account.id : null,
110 videoChannelId: videoChannel ? videoChannel.id : null
48dce1c9 111 })
244e76a5
RK
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,
6dd9de95 125 link: WEBSERVER.URL + '/videos/watch/' + video.uuid,
244e76a5
RK
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,
b81eb8fd
RK
137 torrent: torrents,
138 thumbnail: [
139 {
3acc5084 140 url: WEBSERVER.URL + video.getMiniatureStaticPath(),
b81eb8fd
RK
141 height: THUMBNAILS_SIZE.height,
142 width: THUMBNAILS_SIZE.width
143 }
144 ]
244e76a5
RK
145 })
146 })
147
148 // Now the feed generation is done, let's send it!
149 return sendFeed(feed, req, res)
150}
151
749c7247 152function initFeed (name: string, description: string) {
6dd9de95 153 const webserverUrl = WEBSERVER.URL
244e76a5
RK
154
155 return new Feed({
749c7247
C
156 title: name,
157 description,
244e76a5
RK
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: {
7b87d2d5 172 name: 'Instance admin of ' + CONFIG.INSTANCE.NAME,
244e76a5
RK
173 email: CONFIG.ADMIN.EMAIL,
174 link: `${webserverUrl}/about`
175 }
176 })
177}
178
179function 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}