Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sitemap: Hide empty accounts/channels and add video tags #6633

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions packages/server-commands/src/videos/videos-command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -417,22 +417,25 @@ export class VideosCommand extends AbstractCommand {
mode?: 'legacy' | 'resumable' // default legacy
waitTorrentGeneration?: boolean // default true
completedExpectedStatus?: HttpStatusCodeType
videoChannelId?: number
} = {}) {
const { mode = 'legacy', waitTorrentGeneration = true } = options
const { mode = 'legacy', videoChannelId, waitTorrentGeneration = true } = options
let defaultChannelId = 1

try {
const { videoChannels } = await this.server.users.getMyInfo({ token: options.token })
defaultChannelId = videoChannels[0].id
} catch (e) { /* empty */ }
if (!videoChannelId) {
try {
const { videoChannels } = await this.server.users.getMyInfo({ token: options.token })
defaultChannelId = videoChannels[0].id
} catch (e) { /* empty */ }
}

// Override default attributes
const attributes = {
name: 'my super video',
category: 5,
licence: 4,
language: 'zh',
channelId: defaultChannelId,
channelId: videoChannelId || defaultChannelId,
nsfw: true,
waitTranscoding: false,
description: 'my super description',
Expand Down
46 changes: 39 additions & 7 deletions packages/tests/src/misc-endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,15 +193,33 @@ describe('Test misc endpoints', function () {
it('Should add videos, channel and accounts and get sitemap', async function () {
this.timeout(35000)

await server.videos.upload({ attributes: { name: 'video 1', nsfw: false } })
await server.videos.upload({ attributes: { name: 'video 2', nsfw: false } })
await server.videos.upload({ attributes: { name: 'video 3', privacy: VideoPrivacy.PRIVATE } })
const { token: user1Token } = await server.users.generate('user1')
const { token: user2Token } = await server.users.generate('user2')
const { token: user3Token } = await server.users.generate('user3')

await server.channels.create({ attributes: { name: 'channel1', displayName: 'channel 1' } })
await server.channels.create({ attributes: { name: 'channel2', displayName: 'channel 2' } })
const { id: channel1Id } = await server.channels.create({
attributes: { name: 'channel1', displayName: 'channel 1' },
token: user1Token
})
const { id: channel2Id } = await server.channels.create({
attributes: { name: 'channel2', displayName: 'channel 2' },
token: user2Token
})
const { id: channel3Id } = await server.channels.create({
attributes: { name: 'channel3', displayName: 'channel 3' },
token: user3Token
})

await server.users.create({ username: 'user1', password: 'password' })
await server.users.create({ username: 'user2', password: 'password' })
const { id: video1Id } = await server.videos.upload({ attributes: { name: 'video 1', nsfw: false }, videoChannelId: channel1Id })
await server.videos.upload({ attributes: { name: 'video 2', nsfw: false }, videoChannelId: channel2Id })
await server.videos.upload({ attributes: { name: 'video 3', privacy: VideoPrivacy.PRIVATE }, videoChannelId: channel3Id })

await server.videos.update({
id: video1Id,
attributes: {
tags: [ 'fish', 'chips' ]
}
})

const res = await makeGetRequest({
url: server.url,
Expand All @@ -216,11 +234,25 @@ describe('Test misc endpoints', function () {
expect(res.text).to.contain('<video:title>video 2</video:title>')
expect(res.text).to.not.contain('<video:title>video 3</video:title>')

expect(res.text).to.match(/<video:thumbnail_loc>.*\.jpg<\/video:thumbnail_loc>/)
expect(res.text).to.match(/<video:content_loc>.*\.webm<\/video:content_loc>/)
expect(res.text).to.match(/<video:player_loc>.*\/videos\/embed\/.*<\/video:player_loc>/)
expect(res.text).to.match(/<video:duration>.*<\/video:duration>/)
expect(res.text).to.match(/<video:rating>0<\/video:rating>/)
expect(res.text).to.match(/<video:view_count>0<\/video:view_count>/)
expect(res.text).to.match(/<video:publication_date>.*<\/video:publication_date>/)
expect(res.text).to.match(/<video:tag>fish<\/video:tag>/)
expect(res.text).to.match(/<video:tag>chips<\/video:tag>/)
expect(res.text).to.match(/<video:uploader.*>channel 1<\/video:uploader>/)
expect(res.text).to.match(/<video:live>NO<\/video:live>/)

expect(res.text).to.contain('<url><loc>' + server.url + '/c/channel1/videos</loc></url>')
expect(res.text).to.contain('<url><loc>' + server.url + '/c/channel2/videos</loc></url>')
expect(res.text).to.not.contain('<url><loc>' + server.url + '/c/channel3/videos</loc></url>')

expect(res.text).to.contain('<url><loc>' + server.url + '/a/user1/video-channels</loc></url>')
expect(res.text).to.contain('<url><loc>' + server.url + '/a/user2/video-channels</loc></url>')
expect(res.text).to.not.contain('<url><loc>' + server.url + '/a/user3/video-channels</loc></url>')
})

it('Should not fail with big title/description videos', async function () {
Expand Down
48 changes: 32 additions & 16 deletions server/core/controllers/sitemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import { logger } from '@server/helpers/logger.js'
import { getServerActor } from '@server/models/application/application.js'
import { buildNSFWFilter } from '../helpers/express-utils.js'
import { ROUTE_CACHE_LIFETIME, WEBSERVER } from '../initializers/constants.js'
import { apiRateLimiter, asyncMiddleware } from '../middlewares/index.js'
import { cacheRoute } from '../middlewares/cache/cache.js'
import { apiRateLimiter, asyncMiddleware, cacheRoute } from '../middlewares/index.js'
import { AccountModel } from '../models/account/account.js'
import { VideoModel } from '../models/video/video.js'
import { VideoChannelModel } from '../models/video/video-channel.js'
import { VideoFileStream, VideoInclude } from '@peertube/peertube-models'

const sitemapRouter = express.Router()

Expand Down Expand Up @@ -83,22 +83,38 @@ async function getSitemapLocalVideoUrls () {
},
isLocal: true,
nsfw: buildNSFWFilter(),
countVideos: false
countVideos: false,
includeTags: true,
include: VideoInclude.FILES
})

return data.map(v => ({
url: WEBSERVER.URL + v.getWatchStaticPath(),
video: [
{
// Sitemap title should be < 100 characters
title: truncate(v.name, { length: 100, omission: '...' }),
// Sitemap description should be < 2000 characters
description: truncate(v.description || v.name, { length: 2000, omission: '...' }),
player_loc: WEBSERVER.URL + v.getEmbedStaticPath(),
thumbnail_loc: WEBSERVER.URL + v.getMiniatureStaticPath()
}
]
}))
return data.map(v => {
const contentLoc = v.getHLSPlaylist()?.getMasterPlaylistUrl(v) || v.getMaxQualityFile(VideoFileStream.VIDEO).getFileUrl(v)

return {
url: WEBSERVER.URL + v.getWatchStaticPath(),
video: [
{
// Sitemap title should be < 100 characters
'title': truncate(v.name, { length: 100, omission: '...' }),
// Sitemap description should be < 2000 characters
'description': truncate(v.description || v.name, { length: 2000, omission: '...' }),
'player_loc': WEBSERVER.URL + v.getEmbedStaticPath(),
'thumbnail_loc': WEBSERVER.URL + v.getMiniatureStaticPath(),
'content_loc': contentLoc,
'duration': v.duration,
'view_count': v.views,
'publication_date': v.publishedAt.toISOString(),
'uploader': v.VideoChannel.getDisplayName(),
'uploader:info': WEBSERVER.URL + '/c/' + v.VideoChannel.Actor.preferredUsername,
'live': v.isLive ? 'YES' : 'NO',
'family_friendly': v.nsfw ? 'NO' : 'YES',
'rating': (v.likes * 5) / (v.likes + v.dislikes) || 0,
'tag': v.Tags.map(t => t.name)
}
]
}
})
}

function getSitemapBasicUrls () {
Expand Down
17 changes: 16 additions & 1 deletion server/core/models/account/account.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Account, AccountSummary } from '@peertube/peertube-models'
import { Account, AccountSummary, VideoPrivacy } from '@peertube/peertube-models'
import { ModelCache } from '@server/models/shared/model-cache.js'
import { FindOptions, IncludeOptions, Includeable, Op, Transaction, WhereOptions } from 'sequelize'
import {
Expand Down Expand Up @@ -433,6 +433,21 @@ export class AccountModel extends SequelizeModel<AccountModel> {
where: {
serverId: null
}
},
{
attributes: [ 'id' ],
model: VideoChannelModel.unscoped(),
required: true,
include: [
{
attributes: [ 'id' ],
model: VideoModel.unscoped(),
required: true,
where: {
privacy: VideoPrivacy.PUBLIC
}
}
]
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,9 @@ export class VideoModelBuilder {
this.addStreamingPlaylistFile(row)
}

this.addTag(row, videoModel)

if (this.mode === 'get') {
this.addTag(row, videoModel)
this.addTracker(row, videoModel)
this.setBlacklisted(row, videoModel)
this.setScheduleVideoUpdate(row, videoModel)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ export type BuildVideosListQueryOptions = {
isLive?: boolean
isLocal?: boolean
include?: VideoIncludeType
includeTags?: boolean

categoryOneOf?: number[]
licenceOneOf?: number[]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ export class VideosModelListQueryBuilder extends AbstractVideoQueryBuilder {
this.includeAutomaticTags(serverActor.Account.id)
}

if (options.includeTags) {
this.includeTags()
}

const select = this.buildSelect()

this.query = `${select} FROM (${this.innerQuery}) AS "tmp" ${this.joins} ${this.innerSort}`
Expand Down
10 changes: 9 additions & 1 deletion server/core/models/video/video-channel.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { forceNumber, pick } from '@peertube/peertube-core-utils'
import { ActivityPubActor, VideoChannel, VideoChannelSummary } from '@peertube/peertube-models'
import { ActivityPubActor, VideoChannel, VideoChannelSummary, VideoPrivacy } from '@peertube/peertube-models'
import { CONFIG } from '@server/initializers/config.js'
import { InternalEventEmitter } from '@server/lib/internal-event-emitter.js'
import { MAccountHost } from '@server/types/models/index.js'
Expand Down Expand Up @@ -522,6 +522,14 @@ export class VideoChannelModel extends SequelizeModel<VideoChannelModel> {
where: {
serverId: null
}
},
{
attributes: [ 'id' ],
model: VideoModel.unscoped(),
required: true,
where: {
privacy: VideoPrivacy.PUBLIC
}
}
]
}
Expand Down
2 changes: 2 additions & 0 deletions server/core/models/video/video.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1151,6 +1151,7 @@ export class VideoModel extends SequelizeModel<VideoModel> {
isLive?: boolean
isLocal?: boolean
include?: VideoIncludeType
includeTags?: boolean

hasFiles?: boolean // default false

Expand Down Expand Up @@ -1215,6 +1216,7 @@ export class VideoModel extends SequelizeModel<VideoModel> {
'privacyOneOf',
'isLocal',
'include',
'includeTags',
'displayOnlyForFollower',
'hasFiles',
'accountId',
Expand Down