mirror of
https://gitlab.com/foxixus/neomovies-api.git
synced 2025-10-27 17:38:51 +05:00
206 lines
4.9 KiB
Go
206 lines
4.9 KiB
Go
|
|
package handlers
|
||
|
|
|
||
|
|
import (
|
||
|
|
"encoding/json"
|
||
|
|
"net/http"
|
||
|
|
"strconv"
|
||
|
|
|
||
|
|
"github.com/gorilla/mux"
|
||
|
|
|
||
|
|
"neomovies-api/pkg/models"
|
||
|
|
"neomovies-api/pkg/services"
|
||
|
|
)
|
||
|
|
|
||
|
|
type TVHandler struct {
|
||
|
|
tvService *services.TVService
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewTVHandler(tvService *services.TVService) *TVHandler {
|
||
|
|
return &TVHandler{
|
||
|
|
tvService: tvService,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *TVHandler) Search(w http.ResponseWriter, r *http.Request) {
|
||
|
|
query := r.URL.Query().Get("query")
|
||
|
|
if query == "" {
|
||
|
|
http.Error(w, "Query parameter is required", http.StatusBadRequest)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
page := getIntQuery(r, "page", 1)
|
||
|
|
language := r.URL.Query().Get("language")
|
||
|
|
year := getIntQuery(r, "first_air_date_year", 0)
|
||
|
|
|
||
|
|
tvShows, err := h.tvService.Search(query, page, language, year)
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
w.Header().Set("Content-Type", "application/json")
|
||
|
|
json.NewEncoder(w).Encode(models.APIResponse{
|
||
|
|
Success: true,
|
||
|
|
Data: tvShows,
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *TVHandler) GetByID(w http.ResponseWriter, r *http.Request) {
|
||
|
|
vars := mux.Vars(r)
|
||
|
|
id, err := strconv.Atoi(vars["id"])
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, "Invalid TV show ID", http.StatusBadRequest)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
language := r.URL.Query().Get("language")
|
||
|
|
|
||
|
|
tvShow, err := h.tvService.GetByID(id, language)
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
w.Header().Set("Content-Type", "application/json")
|
||
|
|
json.NewEncoder(w).Encode(models.APIResponse{
|
||
|
|
Success: true,
|
||
|
|
Data: tvShow,
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *TVHandler) Popular(w http.ResponseWriter, r *http.Request) {
|
||
|
|
page := getIntQuery(r, "page", 1)
|
||
|
|
language := r.URL.Query().Get("language")
|
||
|
|
|
||
|
|
tvShows, err := h.tvService.GetPopular(page, language)
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
w.Header().Set("Content-Type", "application/json")
|
||
|
|
json.NewEncoder(w).Encode(models.APIResponse{
|
||
|
|
Success: true,
|
||
|
|
Data: tvShows,
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *TVHandler) TopRated(w http.ResponseWriter, r *http.Request) {
|
||
|
|
page := getIntQuery(r, "page", 1)
|
||
|
|
language := r.URL.Query().Get("language")
|
||
|
|
|
||
|
|
tvShows, err := h.tvService.GetTopRated(page, language)
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
w.Header().Set("Content-Type", "application/json")
|
||
|
|
json.NewEncoder(w).Encode(models.APIResponse{
|
||
|
|
Success: true,
|
||
|
|
Data: tvShows,
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *TVHandler) OnTheAir(w http.ResponseWriter, r *http.Request) {
|
||
|
|
page := getIntQuery(r, "page", 1)
|
||
|
|
language := r.URL.Query().Get("language")
|
||
|
|
|
||
|
|
tvShows, err := h.tvService.GetOnTheAir(page, language)
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
w.Header().Set("Content-Type", "application/json")
|
||
|
|
json.NewEncoder(w).Encode(models.APIResponse{
|
||
|
|
Success: true,
|
||
|
|
Data: tvShows,
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *TVHandler) AiringToday(w http.ResponseWriter, r *http.Request) {
|
||
|
|
page := getIntQuery(r, "page", 1)
|
||
|
|
language := r.URL.Query().Get("language")
|
||
|
|
|
||
|
|
tvShows, err := h.tvService.GetAiringToday(page, language)
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
w.Header().Set("Content-Type", "application/json")
|
||
|
|
json.NewEncoder(w).Encode(models.APIResponse{
|
||
|
|
Success: true,
|
||
|
|
Data: tvShows,
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *TVHandler) GetRecommendations(w http.ResponseWriter, r *http.Request) {
|
||
|
|
vars := mux.Vars(r)
|
||
|
|
id, err := strconv.Atoi(vars["id"])
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, "Invalid TV show ID", http.StatusBadRequest)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
page := getIntQuery(r, "page", 1)
|
||
|
|
language := r.URL.Query().Get("language")
|
||
|
|
|
||
|
|
tvShows, err := h.tvService.GetRecommendations(id, page, language)
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
w.Header().Set("Content-Type", "application/json")
|
||
|
|
json.NewEncoder(w).Encode(models.APIResponse{
|
||
|
|
Success: true,
|
||
|
|
Data: tvShows,
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *TVHandler) GetSimilar(w http.ResponseWriter, r *http.Request) {
|
||
|
|
vars := mux.Vars(r)
|
||
|
|
id, err := strconv.Atoi(vars["id"])
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, "Invalid TV show ID", http.StatusBadRequest)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
page := getIntQuery(r, "page", 1)
|
||
|
|
language := r.URL.Query().Get("language")
|
||
|
|
|
||
|
|
tvShows, err := h.tvService.GetSimilar(id, page, language)
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
w.Header().Set("Content-Type", "application/json")
|
||
|
|
json.NewEncoder(w).Encode(models.APIResponse{
|
||
|
|
Success: true,
|
||
|
|
Data: tvShows,
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (h *TVHandler) GetExternalIDs(w http.ResponseWriter, r *http.Request) {
|
||
|
|
vars := mux.Vars(r)
|
||
|
|
id, err := strconv.Atoi(vars["id"])
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, "Invalid TV show ID", http.StatusBadRequest)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
externalIDs, err := h.tvService.GetExternalIDs(id)
|
||
|
|
if err != nil {
|
||
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
w.Header().Set("Content-Type", "application/json")
|
||
|
|
json.NewEncoder(w).Encode(models.APIResponse{
|
||
|
|
Success: true,
|
||
|
|
Data: externalIDs,
|
||
|
|
})
|
||
|
|
}
|