]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/search.ts
First implem global search
[github/Chocobozzz/PeerTube.git] / server / controllers / api / search.ts
CommitLineData
57c36b27 1import * as express from 'express'
5fb2e288
C
2import { sanitizeUrl } from '@server/helpers/core-utils'
3import { doRequest } from '@server/helpers/requests'
4import { CONFIG } from '@server/initializers/config'
5import { getOrCreateVideoAndAccountAndChannel } from '@server/lib/activitypub/videos'
6import { AccountBlocklistModel } from '@server/models/account/account-blocklist'
7import { getServerActor } from '@server/models/application/application'
8import { ServerBlocklistModel } from '@server/models/server/server-blocklist'
9import { ResultList, Video, VideoChannel } from '@shared/models'
10import { SearchTargetQuery } from '@shared/models/search/search-target-query.model'
11import { VideoChannelsSearchQuery, VideosSearchQuery } from '../../../shared/models/search'
687d638c 12import { buildNSFWFilter, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils'
5fb2e288 13import { logger } from '../../helpers/logger'
8dc8a34e 14import { getFormattedObjects } from '../../helpers/utils'
5fb2e288
C
15import { loadActorUrlOrGetFromWebfinger } from '../../helpers/webfinger'
16import { getOrCreateActorAndServerAndModel } from '../../lib/activitypub/actor'
57c36b27
C
17import {
18 asyncMiddleware,
d525fc39 19 commonVideosFiltersValidator,
57c36b27
C
20 optionalAuthenticate,
21 paginationValidator,
57c36b27
C
22 setDefaultPagination,
23 setDefaultSearchSort,
f37dc0dd
C
24 videoChannelsSearchSortValidator,
25 videoChannelsSearchValidator,
26 videosSearchSortValidator,
27 videosSearchValidator
57c36b27 28} from '../../middlewares'
5fb2e288 29import { VideoModel } from '../../models/video/video'
f37dc0dd 30import { VideoChannelModel } from '../../models/video/video-channel'
0283eaac 31import { MChannelAccountDefault, MVideoAccountLightBlacklistAllFiles } from '../../typings/models'
57c36b27
C
32
33const searchRouter = express.Router()
34
35searchRouter.get('/videos',
36 paginationValidator,
37 setDefaultPagination,
38 videosSearchSortValidator,
39 setDefaultSearchSort,
40 optionalAuthenticate,
d525fc39 41 commonVideosFiltersValidator,
f37dc0dd 42 videosSearchValidator,
57c36b27
C
43 asyncMiddleware(searchVideos)
44)
45
f37dc0dd
C
46searchRouter.get('/video-channels',
47 paginationValidator,
48 setDefaultPagination,
49 videoChannelsSearchSortValidator,
50 setDefaultSearchSort,
51 optionalAuthenticate,
f37dc0dd
C
52 videoChannelsSearchValidator,
53 asyncMiddleware(searchVideoChannels)
54)
55
57c36b27
C
56// ---------------------------------------------------------------------------
57
58export { searchRouter }
59
60// ---------------------------------------------------------------------------
61
f37dc0dd
C
62function searchVideoChannels (req: express.Request, res: express.Response) {
63 const query: VideoChannelsSearchQuery = req.query
64 const search = query.search
65
66 const isURISearch = search.startsWith('http://') || search.startsWith('https://')
67
68 const parts = search.split('@')
2ff83ae2
C
69
70 // Handle strings like @toto@example.com
71 if (parts.length === 3 && parts[0].length === 0) parts.shift()
bdd428a6 72 const isWebfingerSearch = parts.length === 2 && parts.every(p => p && !p.includes(' '))
f37dc0dd 73
f5b0af50 74 if (isURISearch || isWebfingerSearch) return searchVideoChannelURI(search, isWebfingerSearch, res)
f37dc0dd 75
cce1b3df
C
76 // @username -> username to search in DB
77 if (query.search.startsWith('@')) query.search = query.search.replace(/^@/, '')
5fb2e288
C
78
79 if (isSearchIndexEnabled(query)) {
80 return searchVideoChannelsIndex(query, res)
81 }
82
f37dc0dd
C
83 return searchVideoChannelsDB(query, res)
84}
85
5fb2e288
C
86async function searchVideoChannelsIndex (query: VideoChannelsSearchQuery, res: express.Response) {
87 logger.debug('Doing channels search on search index.')
88
89 const result = await buildMutedForSearchIndex(res)
90
91 const body = Object.assign(query, result)
92
93 const url = sanitizeUrl(CONFIG.SEARCH.SEARCH_INDEX.URL) + '/api/v1/search/video-channels'
94
95 try {
96 const searchIndexResult = await doRequest<ResultList<VideoChannel>>({ uri: url, body, json: true })
97
98 return res.json(searchIndexResult.body)
99 } catch (err) {
100 logger.warn('Cannot use search index to make video channels search.', { err })
101
102 return res.sendStatus(500)
103 }
104}
105
f37dc0dd
C
106async function searchVideoChannelsDB (query: VideoChannelsSearchQuery, res: express.Response) {
107 const serverActor = await getServerActor()
108
109 const options = {
110 actorId: serverActor.id,
111 search: query.search,
112 start: query.start,
113 count: query.count,
114 sort: query.sort
115 }
116 const resultList = await VideoChannelModel.searchForApi(options)
117
118 return res.json(getFormattedObjects(resultList.data, resultList.total))
119}
120
f5b0af50 121async function searchVideoChannelURI (search: string, isWebfingerSearch: boolean, res: express.Response) {
453e83ea 122 let videoChannel: MChannelAccountDefault
f5b0af50 123 let uri = search
f37dc0dd 124
cce1b3df
C
125 if (isWebfingerSearch) {
126 try {
127 uri = await loadActorUrlOrGetFromWebfinger(search)
128 } catch (err) {
129 logger.warn('Cannot load actor URL or get from webfinger.', { search, err })
130
131 return res.json({ total: 0, data: [] })
132 }
133 }
f37dc0dd 134
f5b0af50
C
135 if (isUserAbleToSearchRemoteURI(res)) {
136 try {
e587e0ec 137 const actor = await getOrCreateActorAndServerAndModel(uri, 'all', true, true)
f5b0af50
C
138 videoChannel = actor.VideoChannel
139 } catch (err) {
140 logger.info('Cannot search remote video channel %s.', uri, { err })
141 }
f37dc0dd 142 } else {
f5b0af50 143 videoChannel = await VideoChannelModel.loadByUrlAndPopulateAccount(uri)
f37dc0dd
C
144 }
145
146 return res.json({
147 total: videoChannel ? 1 : 0,
148 data: videoChannel ? [ videoChannel.toFormattedJSON() ] : []
149 })
150}
151
f6eebcb3 152function searchVideos (req: express.Request, res: express.Response) {
d525fc39 153 const query: VideosSearchQuery = req.query
240085d0 154 const search = query.search
5fb2e288 155
240085d0 156 if (search && (search.startsWith('http://') || search.startsWith('https://'))) {
f37dc0dd 157 return searchVideoURI(search, res)
f6eebcb3 158 }
d525fc39 159
5fb2e288
C
160 if (isSearchIndexEnabled(query)) {
161 return searchVideosIndex(query, res)
162 }
163
f6eebcb3
C
164 return searchVideosDB(query, res)
165}
166
5fb2e288
C
167async function searchVideosIndex (query: VideosSearchQuery, res: express.Response) {
168 logger.debug('Doing videos search on search index.')
169
170 const result = await buildMutedForSearchIndex(res)
171
172 const body = Object.assign(query, result)
173
174 const url = sanitizeUrl(CONFIG.SEARCH.SEARCH_INDEX.URL) + '/api/v1/search/videos'
175
176 try {
177 const searchIndexResult = await doRequest<ResultList<Video>>({ uri: url, body, json: true })
178
179 return res.json(searchIndexResult.body)
180 } catch (err) {
181 logger.warn('Cannot use search index to make video search.', { err })
182
183 return res.sendStatus(500)
184 }
185}
186
f6eebcb3 187async function searchVideosDB (query: VideosSearchQuery, res: express.Response) {
06a05d5f
C
188 const options = Object.assign(query, {
189 includeLocalVideos: true,
6e46de09 190 nsfw: buildNSFWFilter(res, query.nsfw),
1cd3facc 191 filter: query.filter,
7ad9b984 192 user: res.locals.oauth ? res.locals.oauth.token.User : undefined
06a05d5f 193 })
d525fc39 194 const resultList = await VideoModel.searchAndPopulateAccountAndServer(options)
57c36b27
C
195
196 return res.json(getFormattedObjects(resultList.data, resultList.total))
197}
f6eebcb3 198
f37dc0dd 199async function searchVideoURI (url: string, res: express.Response) {
0283eaac 200 let video: MVideoAccountLightBlacklistAllFiles
f6eebcb3 201
1297eb5d 202 // Check if we can fetch a remote video with the URL
f37dc0dd 203 if (isUserAbleToSearchRemoteURI(res)) {
1297eb5d
C
204 try {
205 const syncParam = {
206 likes: false,
207 dislikes: false,
208 shares: false,
209 comments: false,
210 thumbnail: true,
211 refreshVideo: false
212 }
f6eebcb3 213
4157cdb1 214 const result = await getOrCreateVideoAndAccountAndChannel({ videoObject: url, syncParam })
f37dc0dd 215 video = result ? result.video : undefined
1297eb5d 216 } catch (err) {
f5b0af50 217 logger.info('Cannot search remote video %s.', url, { err })
1297eb5d
C
218 }
219 } else {
220 video = await VideoModel.loadByUrlAndPopulateAccount(url)
f6eebcb3
C
221 }
222
223 return res.json({
224 total: video ? 1 : 0,
225 data: video ? [ video.toFormattedJSON() ] : []
226 })
227}
5fb2e288
C
228
229function isSearchIndexEnabled (query: SearchTargetQuery) {
230 if (query.searchTarget === 'search-index') return true
231
232 const searchIndexConfig = CONFIG.SEARCH.SEARCH_INDEX
233
234 if (searchIndexConfig.ENABLED !== true) return false
235
236 if (searchIndexConfig.DISABLE_LOCAL_SEARCH) return true
237 if (searchIndexConfig.IS_DEFAULT_SEARCH && !query.searchTarget) return true
238
239 return false
240}
241
242async function buildMutedForSearchIndex (res: express.Response) {
243 const serverActor = await getServerActor()
244 const accountIds = [ serverActor.Account.id ]
245
246 if (res.locals.oauth) {
247 accountIds.push(res.locals.oauth.token.User.Account.id)
248 }
249
250 const [ blockedHosts, blockedAccounts ] = await Promise.all([
251 ServerBlocklistModel.listHostsBlockedBy(accountIds),
252 AccountBlocklistModel.listHandlesBlockedBy(accountIds)
253 ])
254
255 return {
256 blockedHosts,
257 blockedAccounts
258 }
259}