]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/bots.ts
Translated using Weblate (Hungarian)
[github/Chocobozzz/PeerTube.git] / server / controllers / bots.ts
CommitLineData
41fb13c3 1import express from 'express'
15a7eafb 2import { truncate } from 'lodash'
d9699428 3import { SitemapStream, streamToPromise } from 'sitemap'
15a7eafb
C
4import { buildNSFWFilter } from '../helpers/express-utils'
5import { ROUTE_CACHE_LIFETIME, WEBSERVER } from '../initializers/constants'
6import { asyncMiddleware } from '../middlewares'
7import { cacheRoute } from '../middlewares/cache/cache'
8import { AccountModel } from '../models/account/account'
2feebf3e
C
9import { VideoModel } from '../models/video/video'
10import { VideoChannelModel } from '../models/video/video-channel'
2feebf3e
C
11
12const botsRouter = express.Router()
13
14// Special route that add OpenGraph and oEmbed tags
15// Do not use a template engine for a so little thing
16botsRouter.use('/sitemap.xml',
20bafcb6 17 cacheRoute(ROUTE_CACHE_LIFETIME.SITEMAP),
2feebf3e
C
18 asyncMiddleware(getSitemap)
19)
20
21// ---------------------------------------------------------------------------
22
23export {
24 botsRouter
25}
26
27// ---------------------------------------------------------------------------
28
29async function getSitemap (req: express.Request, res: express.Response) {
30 let urls = getSitemapBasicUrls()
31
32 urls = urls.concat(await getSitemapLocalVideoUrls())
33 urls = urls.concat(await getSitemapVideoChannelUrls())
34 urls = urls.concat(await getSitemapAccountUrls())
35
d9699428 36 const sitemapStream = new SitemapStream({ hostname: WEBSERVER.URL })
2feebf3e 37
93708d4e
C
38 for (const urlObj of urls) {
39 sitemapStream.write(urlObj)
d9699428
C
40 }
41 sitemapStream.end()
42
43 const xml = await streamToPromise(sitemapStream)
2feebf3e 44
d5d9b6d7
C
45 res.header('Content-Type', 'application/xml')
46 res.send(xml)
2feebf3e
C
47}
48
49async function getSitemapVideoChannelUrls () {
50 const rows = await VideoChannelModel.listLocalsForSitemap('createdAt')
51
52 return rows.map(channel => ({
6dd9de95 53 url: WEBSERVER.URL + '/video-channels/' + channel.Actor.preferredUsername
2feebf3e
C
54 }))
55}
56
57async function getSitemapAccountUrls () {
58 const rows = await AccountModel.listLocalsForSitemap('createdAt')
59
60 return rows.map(channel => ({
6dd9de95 61 url: WEBSERVER.URL + '/accounts/' + channel.Actor.preferredUsername
2feebf3e
C
62 }))
63}
64
65async function getSitemapLocalVideoUrls () {
fe987656 66 const { data } = await VideoModel.listForApi({
2feebf3e
C
67 start: 0,
68 count: undefined,
69 sort: 'createdAt',
70 includeLocalVideos: true,
71 nsfw: buildNSFWFilter(),
72 filter: 'local',
fe987656
C
73 withFiles: false,
74 countVideos: false
2feebf3e
C
75 })
76
fe987656 77 return data.map(v => ({
15a7eafb 78 url: WEBSERVER.URL + v.getWatchStaticPath(),
2feebf3e
C
79 video: [
80 {
81 title: v.name,
82 // Sitemap description should be < 2000 characters
83 description: truncate(v.description || v.name, { length: 2000, omission: '...' }),
15a7eafb 84 player_loc: WEBSERVER.URL + v.getEmbedStaticPath(),
3acc5084 85 thumbnail_loc: WEBSERVER.URL + v.getMiniatureStaticPath()
2feebf3e
C
86 }
87 ]
88 }))
89}
90
91function getSitemapBasicUrls () {
92 const paths = [
93 '/about/instance',
94 '/videos/local'
95 ]
96
6dd9de95 97 return paths.map(p => ({ url: WEBSERVER.URL + p }))
2feebf3e 98}