PeerTube/server/controllers/api/search.ts

171 lines
5.4 KiB
TypeScript
Raw Normal View History

2018-07-19 16:17:54 +02:00
import * as express from 'express'
2018-08-24 15:36:50 +02:00
import { buildNSFWFilter, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils'
2020-04-23 09:32:53 +02:00
import { getFormattedObjects } from '../../helpers/utils'
2018-07-19 16:17:54 +02:00
import { VideoModel } from '../../models/video/video'
import {
asyncMiddleware,
2018-07-20 14:35:18 +02:00
commonVideosFiltersValidator,
2018-07-19 16:17:54 +02:00
optionalAuthenticate,
paginationValidator,
setDefaultPagination,
setDefaultSearchSort,
2018-08-23 17:58:39 +02:00
videoChannelsSearchSortValidator,
videoChannelsSearchValidator,
videosSearchSortValidator,
videosSearchValidator
2018-07-19 16:17:54 +02:00
} from '../../middlewares'
2018-08-23 17:58:39 +02:00
import { VideoChannelsSearchQuery, VideosSearchQuery } from '../../../shared/models/search'
2020-04-23 09:32:53 +02:00
import { getOrCreateActorAndServerAndModel } from '../../lib/activitypub/actor'
import { logger } from '../../helpers/logger'
2018-08-23 17:58:39 +02:00
import { VideoChannelModel } from '../../models/video/video-channel'
import { loadActorUrlOrGetFromWebfinger } from '../../helpers/webfinger'
2019-08-20 13:52:49 +02:00
import { MChannelAccountDefault, MVideoAccountLightBlacklistAllFiles } from '../../typings/models'
2020-04-23 09:32:53 +02:00
import { getServerActor } from '@server/models/application/application'
import { getOrCreateVideoAndAccountAndChannel } from '@server/lib/activitypub/videos'
2018-07-19 16:17:54 +02:00
const searchRouter = express.Router()
searchRouter.get('/videos',
paginationValidator,
setDefaultPagination,
videosSearchSortValidator,
setDefaultSearchSort,
optionalAuthenticate,
2018-07-20 14:35:18 +02:00
commonVideosFiltersValidator,
2018-08-23 17:58:39 +02:00
videosSearchValidator,
2018-07-19 16:17:54 +02:00
asyncMiddleware(searchVideos)
)
2018-08-23 17:58:39 +02:00
searchRouter.get('/video-channels',
paginationValidator,
setDefaultPagination,
videoChannelsSearchSortValidator,
setDefaultSearchSort,
optionalAuthenticate,
videoChannelsSearchValidator,
asyncMiddleware(searchVideoChannels)
)
2018-07-19 16:17:54 +02:00
// ---------------------------------------------------------------------------
export { searchRouter }
// ---------------------------------------------------------------------------
2018-08-23 17:58:39 +02:00
function searchVideoChannels (req: express.Request, res: express.Response) {
const query: VideoChannelsSearchQuery = req.query
const search = query.search
const isURISearch = search.startsWith('http://') || search.startsWith('https://')
const parts = search.split('@')
// Handle strings like @toto@example.com
if (parts.length === 3 && parts[0].length === 0) parts.shift()
2020-02-28 16:03:39 +01:00
const isWebfingerSearch = parts.length === 2 && parts.every(p => p && !p.includes(' '))
2018-08-23 17:58:39 +02:00
2018-08-24 11:04:02 +02:00
if (isURISearch || isWebfingerSearch) return searchVideoChannelURI(search, isWebfingerSearch, res)
2018-08-23 17:58:39 +02:00
2019-05-28 10:04:07 +02:00
// @username -> username to search in DB
if (query.search.startsWith('@')) query.search = query.search.replace(/^@/, '')
2018-08-23 17:58:39 +02:00
return searchVideoChannelsDB(query, res)
}
async function searchVideoChannelsDB (query: VideoChannelsSearchQuery, res: express.Response) {
const serverActor = await getServerActor()
const options = {
actorId: serverActor.id,
search: query.search,
start: query.start,
count: query.count,
sort: query.sort
}
const resultList = await VideoChannelModel.searchForApi(options)
return res.json(getFormattedObjects(resultList.data, resultList.total))
}
2018-08-24 11:04:02 +02:00
async function searchVideoChannelURI (search: string, isWebfingerSearch: boolean, res: express.Response) {
2019-08-15 11:53:26 +02:00
let videoChannel: MChannelAccountDefault
2018-08-24 11:04:02 +02:00
let uri = search
2018-08-23 17:58:39 +02:00
2019-05-28 10:04:07 +02:00
if (isWebfingerSearch) {
try {
uri = await loadActorUrlOrGetFromWebfinger(search)
} catch (err) {
logger.warn('Cannot load actor URL or get from webfinger.', { search, err })
return res.json({ total: 0, data: [] })
}
}
2018-08-23 17:58:39 +02:00
2018-08-24 11:04:02 +02:00
if (isUserAbleToSearchRemoteURI(res)) {
try {
const actor = await getOrCreateActorAndServerAndModel(uri, 'all', true, true)
2018-08-24 11:04:02 +02:00
videoChannel = actor.VideoChannel
} catch (err) {
logger.info('Cannot search remote video channel %s.', uri, { err })
}
2018-08-23 17:58:39 +02:00
} else {
2018-08-24 11:04:02 +02:00
videoChannel = await VideoChannelModel.loadByUrlAndPopulateAccount(uri)
2018-08-23 17:58:39 +02:00
}
return res.json({
total: videoChannel ? 1 : 0,
data: videoChannel ? [ videoChannel.toFormattedJSON() ] : []
})
}
function searchVideos (req: express.Request, res: express.Response) {
2018-07-20 14:35:18 +02:00
const query: VideosSearchQuery = req.query
2018-08-23 10:30:53 +02:00
const search = query.search
if (search && (search.startsWith('http://') || search.startsWith('https://'))) {
2018-08-23 17:58:39 +02:00
return searchVideoURI(search, res)
}
2018-07-20 14:35:18 +02:00
return searchVideosDB(query, res)
}
async function searchVideosDB (query: VideosSearchQuery, res: express.Response) {
const options = Object.assign(query, {
includeLocalVideos: true,
2018-10-05 11:15:06 +02:00
nsfw: buildNSFWFilter(res, query.nsfw),
filter: query.filter,
user: res.locals.oauth ? res.locals.oauth.token.User : undefined
})
2018-07-20 14:35:18 +02:00
const resultList = await VideoModel.searchAndPopulateAccountAndServer(options)
2018-07-19 16:17:54 +02:00
return res.json(getFormattedObjects(resultList.data, resultList.total))
}
2018-08-23 17:58:39 +02:00
async function searchVideoURI (url: string, res: express.Response) {
2019-08-20 13:52:49 +02:00
let video: MVideoAccountLightBlacklistAllFiles
2018-08-22 16:15:35 +02:00
// Check if we can fetch a remote video with the URL
2018-08-23 17:58:39 +02:00
if (isUserAbleToSearchRemoteURI(res)) {
2018-08-22 16:15:35 +02:00
try {
const syncParam = {
likes: false,
dislikes: false,
shares: false,
comments: false,
thumbnail: true,
refreshVideo: false
}
2018-09-19 11:16:23 +02:00
const result = await getOrCreateVideoAndAccountAndChannel({ videoObject: url, syncParam })
2018-08-23 17:58:39 +02:00
video = result ? result.video : undefined
2018-08-22 16:15:35 +02:00
} catch (err) {
2018-08-24 11:04:02 +02:00
logger.info('Cannot search remote video %s.', url, { err })
2018-08-22 16:15:35 +02:00
}
} else {
video = await VideoModel.loadByUrlAndPopulateAccount(url)
}
return res.json({
total: video ? 1 : 0,
data: video ? [ video.toFormattedJSON() ] : []
})
}