mirror of
				https://gitea.invidious.io/iv-org/invidious-copy-2023-06-08.git
				synced 2024-08-15 00:53:38 +00:00 
			
		
		
		
	Add subscriptions search filter
This commit is contained in:
		
							parent
							
								
									f38aac851e
								
							
						
					
					
						commit
						f39ed3d145
					
				
					 1 changed files with 12 additions and 0 deletions
				
			
		|  | @ -435,6 +435,7 @@ get "/search" do |env| | |||
|   duration = "" | ||||
|   features = [] of String | ||||
|   sort = "relevance" | ||||
|   subscriptions = nil | ||||
| 
 | ||||
|   operators = query.split(" ").select { |a| a.match(/\w+:[\w,]+/) } | ||||
|   operators.each do |operator| | ||||
|  | @ -451,6 +452,8 @@ get "/search" do |env| | |||
|       features = value.split(",") | ||||
|     when "sort" | ||||
|       sort = value | ||||
|     when "subscriptions" | ||||
|       subscriptions = value == "true" | ||||
|     end | ||||
|   end | ||||
| 
 | ||||
|  | @ -458,6 +461,15 @@ get "/search" do |env| | |||
| 
 | ||||
|   if channel | ||||
|     count, videos = channel_search(search_query, page, channel) | ||||
|   elsif subscriptions | ||||
|     videos = PG_DB.query_all("SELECT id,title,published,updated,ucid,author FROM ( | ||||
|       SELECT *, | ||||
|         to_tsvector(channel_videos.title) || | ||||
|         to_tsvector(channel_videos.author) | ||||
|           as document | ||||
|       FROM channel_videos | ||||
|     ) v_search WHERE v_search.document @@ plainto_tsquery($1) LIMIT 20 OFFSET $2;", search_query, (page - 1) * 20, as: ChannelVideo) | ||||
|     count = videos.size | ||||
|   else | ||||
|     search_params = build_search_params(sort: sort, date: date, content_type: "video", | ||||
|       duration: duration, features: features) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue