1
0
Fork 0
peertube/server/controllers/bots.ts

97 lines
2.7 KiB
TypeScript
Raw Normal View History

2018-12-05 16:27:24 +00:00
import * as express from 'express'
import { asyncMiddleware } from '../middlewares'
import { ROUTE_CACHE_LIFETIME, WEBSERVER } from '../initializers/constants'
2018-12-05 16:27:24 +00:00
import * as sitemapModule from 'sitemap'
import { VideoModel } from '../models/video/video'
import { VideoChannelModel } from '../models/video/video-channel'
import { AccountModel } from '../models/account/account'
import { cacheRoute } from '../middlewares/cache'
import { buildNSFWFilter } from '../helpers/express-utils'
import { truncate } from 'lodash'
const botsRouter = express.Router()
// Special route that add OpenGraph and oEmbed tags
// Do not use a template engine for a so little thing
botsRouter.use('/sitemap.xml',
asyncMiddleware(cacheRoute()(ROUTE_CACHE_LIFETIME.SITEMAP)),
2018-12-05 16:27:24 +00:00
asyncMiddleware(getSitemap)
)
// ---------------------------------------------------------------------------
export {
botsRouter
}
// ---------------------------------------------------------------------------
async function getSitemap (req: express.Request, res: express.Response) {
let urls = getSitemapBasicUrls()
urls = urls.concat(await getSitemapLocalVideoUrls())
urls = urls.concat(await getSitemapVideoChannelUrls())
urls = urls.concat(await getSitemapAccountUrls())
const sitemap = sitemapModule.createSitemap({
2019-04-11 09:33:44 +00:00
hostname: WEBSERVER.URL,
2018-12-05 16:27:24 +00:00
urls: urls
})
2019-10-21 12:50:55 +00:00
const xml = sitemap.toXML()
2018-12-05 16:27:24 +00:00
2019-10-21 12:50:55 +00:00
res.header('Content-Type', 'application/xml')
res.send(xml)
2018-12-05 16:27:24 +00:00
}
async function getSitemapVideoChannelUrls () {
const rows = await VideoChannelModel.listLocalsForSitemap('createdAt')
return rows.map(channel => ({
2019-04-11 09:33:44 +00:00
url: WEBSERVER.URL + '/video-channels/' + channel.Actor.preferredUsername
2018-12-05 16:27:24 +00:00
}))
}
async function getSitemapAccountUrls () {
const rows = await AccountModel.listLocalsForSitemap('createdAt')
return rows.map(channel => ({
2019-04-11 09:33:44 +00:00
url: WEBSERVER.URL + '/accounts/' + channel.Actor.preferredUsername
2018-12-05 16:27:24 +00:00
}))
}
async function getSitemapLocalVideoUrls () {
2020-01-08 13:15:16 +00:00
const { data } = await VideoModel.listForApi({
2018-12-05 16:27:24 +00:00
start: 0,
count: undefined,
sort: 'createdAt',
includeLocalVideos: true,
nsfw: buildNSFWFilter(),
filter: 'local',
2020-01-08 13:15:16 +00:00
withFiles: false,
countVideos: false
2018-12-05 16:27:24 +00:00
})
2020-01-08 13:15:16 +00:00
return data.map(v => ({
2019-04-11 09:33:44 +00:00
url: WEBSERVER.URL + '/videos/watch/' + v.uuid,
2018-12-05 16:27:24 +00:00
video: [
{
title: v.name,
// Sitemap description should be < 2000 characters
description: truncate(v.description || v.name, { length: 2000, omission: '...' }),
2019-04-11 09:33:44 +00:00
player_loc: WEBSERVER.URL + '/videos/embed/' + v.uuid,
2019-04-23 07:50:57 +00:00
thumbnail_loc: WEBSERVER.URL + v.getMiniatureStaticPath()
2018-12-05 16:27:24 +00:00
}
]
}))
}
function getSitemapBasicUrls () {
const paths = [
'/about/instance',
'/videos/local'
]
2019-04-11 09:33:44 +00:00
return paths.map(p => ({ url: WEBSERVER.URL + p }))
2018-12-05 16:27:24 +00:00
}