mirror of
https://gitlab.com/foxixus/neomovies-api.git
synced 2025-10-27 17:38:51 +05:00
🎬 New Streaming Players Added:
- RgShows player for movies and TV shows via TMDB ID
- IframeVideo player using Kinopoisk ID and IMDB ID
- Unified players manager for multiple streaming providers
- JSON API endpoints for programmatic access
📡 RgShows Player Features:
- Direct movie streaming: /api/v1/players/rgshows/{tmdb_id}
- TV show episodes: /api/v1/players/rgshows/{tmdb_id}/{season}/{episode}
- HTTP API integration with rgshows.com
- 40-second timeout for reliability
- Proper error handling and logging
🎯 IframeVideo Player Features:
- Two-step authentication process (search + token extraction)
- Support for both Kinopoisk and IMDB IDs
- HTML iframe parsing for token extraction
- Multipart form data for video URL requests
- Endpoint: /api/v1/players/iframevideo/{kinopoisk_id}/{imdb_id}
🔧 Technical Implementation:
- Clean Go architecture with pkg/players package
- StreamResult interface for consistent responses
- Proper HTTP headers mimicking browser requests
- Comprehensive error handling and logging
- RESTful API design following existing patterns
🌐 New API Endpoints:
- /api/v1/players/rgshows/{tmdb_id} - RgShows movie player
- /api/v1/players/rgshows/{tmdb_id}/{season}/{episode} - RgShows TV player
- /api/v1/players/iframevideo/{kinopoisk_id}/{imdb_id} - IframeVideo player
- /api/v1/stream/{provider}/{tmdb_id} - JSON API for stream info
✅ Quality Assurance:
- All code passes go vet without issues
- Proper Go formatting applied
- Modular design for easy extension
- Built from commit 70febe5 'Merge branch feature/jwt-refresh-and-favorites-fix'
Ready for production deployment! 🚀
163 lines
7.7 KiB
Go
163 lines
7.7 KiB
Go
package handler
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
"sync"
|
|
|
|
"github.com/gorilla/handlers"
|
|
"github.com/gorilla/mux"
|
|
"github.com/joho/godotenv"
|
|
"go.mongodb.org/mongo-driver/mongo"
|
|
|
|
"neomovies-api/pkg/config"
|
|
"neomovies-api/pkg/database"
|
|
handlersPkg "neomovies-api/pkg/handlers"
|
|
"neomovies-api/pkg/middleware"
|
|
"neomovies-api/pkg/services"
|
|
)
|
|
|
|
var (
|
|
globalDB *mongo.Database
|
|
globalCfg *config.Config
|
|
initOnce sync.Once
|
|
initError error
|
|
)
|
|
|
|
func initializeApp() {
|
|
if err := godotenv.Load(); err != nil {
|
|
_ = err
|
|
}
|
|
|
|
globalCfg = config.New()
|
|
|
|
var err error
|
|
globalDB, err = database.Connect(globalCfg.MongoURI, globalCfg.MongoDBName)
|
|
if err != nil {
|
|
log.Printf("Failed to connect to database: %v", err)
|
|
initError = err
|
|
return
|
|
}
|
|
|
|
log.Println("Successfully connected to database")
|
|
}
|
|
|
|
func Handler(w http.ResponseWriter, r *http.Request) {
|
|
initOnce.Do(initializeApp)
|
|
|
|
if initError != nil {
|
|
log.Printf("Initialization error: %v", initError)
|
|
http.Error(w, "Application initialization failed: "+initError.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
tmdbService := services.NewTMDBService(globalCfg.TMDBAccessToken)
|
|
emailService := services.NewEmailService(globalCfg)
|
|
authService := services.NewAuthService(globalDB, globalCfg.JWTSecret, emailService, globalCfg.BaseURL, globalCfg.GoogleClientID, globalCfg.GoogleClientSecret, globalCfg.GoogleRedirectURL, globalCfg.FrontendURL)
|
|
|
|
movieService := services.NewMovieService(globalDB, tmdbService)
|
|
tvService := services.NewTVService(globalDB, tmdbService)
|
|
favoritesService := services.NewFavoritesService(globalDB, tmdbService)
|
|
torrentService := services.NewTorrentServiceWithConfig(globalCfg.RedAPIBaseURL, globalCfg.RedAPIKey)
|
|
reactionsService := services.NewReactionsService(globalDB)
|
|
|
|
authHandler := handlersPkg.NewAuthHandler(authService)
|
|
movieHandler := handlersPkg.NewMovieHandler(movieService)
|
|
tvHandler := handlersPkg.NewTVHandler(tvService)
|
|
favoritesHandler := handlersPkg.NewFavoritesHandler(favoritesService, globalCfg)
|
|
docsHandler := handlersPkg.NewDocsHandler()
|
|
searchHandler := handlersPkg.NewSearchHandler(tmdbService)
|
|
categoriesHandler := handlersPkg.NewCategoriesHandler(tmdbService)
|
|
playersHandler := handlersPkg.NewPlayersHandler(globalCfg)
|
|
torrentsHandler := handlersPkg.NewTorrentsHandler(torrentService, tmdbService)
|
|
reactionsHandler := handlersPkg.NewReactionsHandler(reactionsService)
|
|
imagesHandler := handlersPkg.NewImagesHandler()
|
|
|
|
router := mux.NewRouter()
|
|
|
|
router.HandleFunc("/", docsHandler.ServeDocs).Methods("GET")
|
|
router.HandleFunc("/openapi.json", docsHandler.GetOpenAPISpec).Methods("GET")
|
|
|
|
api := router.PathPrefix("/api/v1").Subrouter()
|
|
|
|
api.HandleFunc("/health", handlersPkg.HealthCheck).Methods("GET")
|
|
api.HandleFunc("/auth/register", authHandler.Register).Methods("POST")
|
|
api.HandleFunc("/auth/login", authHandler.Login).Methods("POST")
|
|
api.HandleFunc("/auth/verify", authHandler.VerifyEmail).Methods("POST")
|
|
api.HandleFunc("/auth/resend-code", authHandler.ResendVerificationCode).Methods("POST")
|
|
api.HandleFunc("/auth/google/login", authHandler.GoogleLogin).Methods("GET")
|
|
api.HandleFunc("/auth/google/callback", authHandler.GoogleCallback).Methods("GET")
|
|
|
|
api.HandleFunc("/search/multi", searchHandler.MultiSearch).Methods("GET")
|
|
|
|
api.HandleFunc("/categories", categoriesHandler.GetCategories).Methods("GET")
|
|
api.HandleFunc("/categories/{id}/movies", categoriesHandler.GetMoviesByCategory).Methods("GET")
|
|
api.HandleFunc("/categories/{id}/media", categoriesHandler.GetMediaByCategory).Methods("GET")
|
|
|
|
api.HandleFunc("/players/alloha/{imdb_id}", playersHandler.GetAllohaPlayer).Methods("GET")
|
|
api.HandleFunc("/players/lumex/{imdb_id}", playersHandler.GetLumexPlayer).Methods("GET")
|
|
api.HandleFunc("/players/vibix/{imdb_id}", playersHandler.GetVibixPlayer).Methods("GET")
|
|
api.HandleFunc("/players/rgshows/{tmdb_id}", playersHandler.GetRgShowsPlayer).Methods("GET")
|
|
api.HandleFunc("/players/rgshows/{tmdb_id}/{season}/{episode}", playersHandler.GetRgShowsTVPlayer).Methods("GET")
|
|
api.HandleFunc("/players/iframevideo/{kinopoisk_id}/{imdb_id}", playersHandler.GetIframeVideoPlayer).Methods("GET")
|
|
api.HandleFunc("/stream/{provider}/{tmdb_id}", playersHandler.GetStreamAPI).Methods("GET")
|
|
|
|
api.HandleFunc("/torrents/search/{imdbId}", torrentsHandler.SearchTorrents).Methods("GET")
|
|
api.HandleFunc("/torrents/movies", torrentsHandler.SearchMovies).Methods("GET")
|
|
api.HandleFunc("/torrents/series", torrentsHandler.SearchSeries).Methods("GET")
|
|
api.HandleFunc("/torrents/anime", torrentsHandler.SearchAnime).Methods("GET")
|
|
api.HandleFunc("/torrents/seasons", torrentsHandler.GetAvailableSeasons).Methods("GET")
|
|
api.HandleFunc("/torrents/search", torrentsHandler.SearchByQuery).Methods("GET")
|
|
|
|
api.HandleFunc("/reactions/{mediaType}/{mediaId}/counts", reactionsHandler.GetReactionCounts).Methods("GET")
|
|
|
|
api.HandleFunc("/images/{size}/{path:.*}", imagesHandler.GetImage).Methods("GET")
|
|
|
|
api.HandleFunc("/movies/search", movieHandler.Search).Methods("GET")
|
|
api.HandleFunc("/movies/popular", movieHandler.Popular).Methods("GET")
|
|
api.HandleFunc("/movies/top-rated", movieHandler.TopRated).Methods("GET")
|
|
api.HandleFunc("/movies/upcoming", movieHandler.Upcoming).Methods("GET")
|
|
api.HandleFunc("/movies/now-playing", movieHandler.NowPlaying).Methods("GET")
|
|
api.HandleFunc("/movies/{id}", movieHandler.GetByID).Methods("GET")
|
|
api.HandleFunc("/movies/{id}/recommendations", movieHandler.GetRecommendations).Methods("GET")
|
|
api.HandleFunc("/movies/{id}/similar", movieHandler.GetSimilar).Methods("GET")
|
|
api.HandleFunc("/movies/{id}/external-ids", movieHandler.GetExternalIDs).Methods("GET")
|
|
|
|
api.HandleFunc("/tv/search", tvHandler.Search).Methods("GET")
|
|
api.HandleFunc("/tv/popular", tvHandler.Popular).Methods("GET")
|
|
api.HandleFunc("/tv/top-rated", tvHandler.TopRated).Methods("GET")
|
|
api.HandleFunc("/tv/on-the-air", tvHandler.OnTheAir).Methods("GET")
|
|
api.HandleFunc("/tv/airing-today", tvHandler.AiringToday).Methods("GET")
|
|
api.HandleFunc("/tv/{id}", tvHandler.GetByID).Methods("GET")
|
|
api.HandleFunc("/tv/{id}/recommendations", tvHandler.GetRecommendations).Methods("GET")
|
|
api.HandleFunc("/tv/{id}/similar", tvHandler.GetSimilar).Methods("GET")
|
|
api.HandleFunc("/tv/{id}/external-ids", tvHandler.GetExternalIDs).Methods("GET")
|
|
|
|
protected := api.PathPrefix("").Subrouter()
|
|
protected.Use(middleware.JWTAuth(globalCfg.JWTSecret))
|
|
|
|
protected.HandleFunc("/favorites", favoritesHandler.GetFavorites).Methods("GET")
|
|
protected.HandleFunc("/favorites/{id}", favoritesHandler.AddToFavorites).Methods("POST")
|
|
protected.HandleFunc("/favorites/{id}", favoritesHandler.RemoveFromFavorites).Methods("DELETE")
|
|
protected.HandleFunc("/favorites/{id}/check", favoritesHandler.CheckIsFavorite).Methods("GET")
|
|
|
|
protected.HandleFunc("/auth/profile", authHandler.GetProfile).Methods("GET")
|
|
protected.HandleFunc("/auth/profile", authHandler.UpdateProfile).Methods("PUT")
|
|
protected.HandleFunc("/auth/profile", authHandler.DeleteAccount).Methods("DELETE")
|
|
|
|
protected.HandleFunc("/reactions/{mediaType}/{mediaId}/my-reaction", reactionsHandler.GetMyReaction).Methods("GET")
|
|
protected.HandleFunc("/reactions/{mediaType}/{mediaId}", reactionsHandler.SetReaction).Methods("POST")
|
|
protected.HandleFunc("/reactions/{mediaType}/{mediaId}", reactionsHandler.RemoveReaction).Methods("DELETE")
|
|
protected.HandleFunc("/reactions/my", reactionsHandler.GetMyReactions).Methods("GET")
|
|
|
|
corsHandler := handlers.CORS(
|
|
handlers.AllowedOrigins([]string{"*"}),
|
|
handlers.AllowedMethods([]string{"GET", "POST", "PUT", "DELETE", "OPTIONS"}),
|
|
handlers.AllowedHeaders([]string{"Authorization", "Content-Type", "Accept", "Origin", "X-Requested-With", "X-CSRF-Token"}),
|
|
handlers.AllowCredentials(),
|
|
handlers.ExposedHeaders([]string{"Authorization", "Content-Type"}),
|
|
)
|
|
|
|
corsHandler(router).ServeHTTP(w, r)
|
|
}
|