diff --git a/_redirects b/_redirects index 8a7145c3..cd203099 100644 --- a/_redirects +++ b/_redirects @@ -12,6 +12,11 @@ /feeds/books.xml /feeds/books 301 /feeds/movies.xml /feeds/movies 301 /feeds/all.xml /feeds/all 301 +/feeds/posts/ /feeds/posts 301 +/feeds/links/ /feeds/links 301 +/feeds/books/ /feeds/books 301 +/feeds/movies/ /feeds/movies 301 +/feeds/all/ /feeds/all 301 # general /articles/ /posts/ 301 diff --git a/queries/functions/search.psql b/queries/functions/search.psql index e08e4b62..c1ed9955 100644 --- a/queries/functions/search.psql +++ b/queries/functions/search.psql @@ -8,7 +8,7 @@ CREATE OR REPLACE FUNCTION public.search_optimized_index(search_query text, page genre_name text, genre_url text, type text, - total_plays text, -- Changed to text + total_plays text, rank real, total_count bigint ) diff --git a/queries/views/feeds/search.psql b/queries/views/feeds/search.psql index 12cf8afa..9a4a108b 100644 --- a/queries/views/feeds/search.psql +++ b/queries/views/feeds/search.psql @@ -89,6 +89,21 @@ WITH search_data AS ( optimized_shows s WHERE s.last_watched_at IS NOT NULL + UNION ALL + SELECT + 'movie' AS type, + CONCAT('🎬 ', m.title, ' (', m.rating, ')') AS title, + CONCAT('https://coryd.dev', m.url) AS url, + m.description AS description, + m.tags, + NULL AS genre_name, + NULL AS genre_url, + NULL::text AS total_plays, + m.last_watched AS content_date + FROM + optimized_movies m + WHERE + m.rating IS NOT NULL ) SELECT ROW_NUMBER() OVER (ORDER BY url) AS id,