mirror of
https://gitlab.com/foxixus/neomovies-api.git
synced 2025-10-27 17:38:51 +05:00
Add Google OAuth
This commit is contained in:
55
main.go
55
main.go
@@ -13,37 +13,31 @@ import (
|
||||
"neomovies-api/pkg/database"
|
||||
appHandlers "neomovies-api/pkg/handlers"
|
||||
"neomovies-api/pkg/middleware"
|
||||
"neomovies-api/pkg/monitor"
|
||||
"neomovies-api/pkg/monitor"
|
||||
"neomovies-api/pkg/services"
|
||||
)
|
||||
|
||||
func main() {
|
||||
// Загружаем переменные окружения
|
||||
if err := godotenv.Load(); err != nil {
|
||||
// Не выводим предупреждение в продакшене
|
||||
}
|
||||
if err := godotenv.Load(); err != nil { _ = err }
|
||||
|
||||
// Инициализируем конфигурацию
|
||||
cfg := config.New()
|
||||
|
||||
// Подключаемся к базе данных
|
||||
db, err := database.Connect(cfg.MongoURI)
|
||||
db, err := database.Connect(cfg.MongoURI, cfg.MongoDBName)
|
||||
if err != nil {
|
||||
fmt.Printf("❌ Failed to connect to database: %v\n", err)
|
||||
os.Exit(1)
|
||||
}
|
||||
defer database.Disconnect()
|
||||
|
||||
// Инициализируем сервисы
|
||||
tmdbService := services.NewTMDBService(cfg.TMDBAccessToken)
|
||||
emailService := services.NewEmailService(cfg)
|
||||
authService := services.NewAuthService(db, cfg.JWTSecret, emailService, cfg.BaseURL)
|
||||
authService := services.NewAuthService(db, cfg.JWTSecret, emailService, cfg.BaseURL, cfg.GoogleClientID, cfg.GoogleClientSecret, cfg.GoogleRedirectURL, cfg.FrontendURL)
|
||||
|
||||
movieService := services.NewMovieService(db, tmdbService)
|
||||
tvService := services.NewTVService(db, tmdbService)
|
||||
torrentService := services.NewTorrentService()
|
||||
torrentService := services.NewTorrentServiceWithConfig(cfg.RedAPIBaseURL, cfg.RedAPIKey)
|
||||
reactionsService := services.NewReactionsService(db)
|
||||
|
||||
// Создаем обработчики
|
||||
authHandler := appHandlers.NewAuthHandler(authService)
|
||||
movieHandler := appHandlers.NewMovieHandler(movieService)
|
||||
tvHandler := appHandlers.NewTVHandler(tvService)
|
||||
@@ -55,35 +49,29 @@ func main() {
|
||||
reactionsHandler := appHandlers.NewReactionsHandler(reactionsService)
|
||||
imagesHandler := appHandlers.NewImagesHandler()
|
||||
|
||||
// Настраиваем маршруты
|
||||
r := mux.NewRouter()
|
||||
|
||||
// Документация API на корневом пути
|
||||
r.HandleFunc("/", docsHandler.ServeDocs).Methods("GET")
|
||||
r.HandleFunc("/openapi.json", docsHandler.GetOpenAPISpec).Methods("GET")
|
||||
|
||||
// API маршруты
|
||||
api := r.PathPrefix("/api/v1").Subrouter()
|
||||
|
||||
// Публичные маршруты
|
||||
api.HandleFunc("/health", appHandlers.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")
|
||||
|
||||
// Поиск
|
||||
r.HandleFunc("/search/multi", searchHandler.MultiSearch).Methods("GET")
|
||||
|
||||
// Категории
|
||||
api.HandleFunc("/categories", categoriesHandler.GetCategories).Methods("GET")
|
||||
api.HandleFunc("/categories/{id}/movies", categoriesHandler.GetMoviesByCategory).Methods("GET")
|
||||
|
||||
// Плееры - ИСПРАВЛЕНО: добавлены параметры {imdb_id}
|
||||
api.HandleFunc("/players/alloha/{imdb_id}", playersHandler.GetAllohaPlayer).Methods("GET")
|
||||
api.HandleFunc("/players/lumex/{imdb_id}", playersHandler.GetLumexPlayer).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")
|
||||
@@ -91,25 +79,20 @@ func main() {
|
||||
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")
|
||||
|
||||
// Изображения (прокси для TMDB)
|
||||
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}/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")
|
||||
@@ -120,44 +103,34 @@ api.HandleFunc("/movies/{id}/recommendations", movieHandler.GetRecommendations).
|
||||
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(cfg.JWTSecret))
|
||||
|
||||
// Избранное
|
||||
protected.HandleFunc("/favorites", movieHandler.GetFavorites).Methods("GET")
|
||||
protected.HandleFunc("/favorites/{id}", movieHandler.AddToFavorites).Methods("POST")
|
||||
protected.HandleFunc("/favorites/{id}", movieHandler.RemoveFromFavorites).Methods("DELETE")
|
||||
|
||||
// Пользовательские данные
|
||||
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")
|
||||
|
||||
// CORS middleware
|
||||
corsHandler := handlers.CORS(
|
||||
|
||||
handlers.AllowedOrigins([]string{"*"}),
|
||||
handlers.AllowedOrigins([]string{"*"}),
|
||||
handlers.AllowedMethods([]string{"GET", "POST", "PUT", "DELETE", "OPTIONS"}),
|
||||
handlers.AllowedHeaders([]string{"Authorization", "Content-Type", "Accept", "Origin", "X-Requested-With"}),
|
||||
handlers.AllowCredentials(),
|
||||
)
|
||||
|
||||
// Применяем мониторинг запросов только в development
|
||||
var finalHandler http.Handler
|
||||
if cfg.NodeEnv == "development" {
|
||||
// Добавляем middleware для мониторинга запросов
|
||||
r.Use(monitor.RequestMonitor())
|
||||
finalHandler = corsHandler(r)
|
||||
|
||||
// Выводим заголовок мониторинга
|
||||
|
||||
fmt.Println("\n🚀 NeoMovies API Server")
|
||||
fmt.Println("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━")
|
||||
fmt.Printf("📡 Server: http://localhost:%s\n", cfg.Port)
|
||||
@@ -170,13 +143,9 @@ handlers.AllowedOrigins([]string{"*"}),
|
||||
fmt.Printf("✅ Server starting on port %s\n", cfg.Port)
|
||||
}
|
||||
|
||||
// Определяем порт
|
||||
port := cfg.Port
|
||||
if port == "" {
|
||||
port = "3000"
|
||||
}
|
||||
if port == "" { port = "3000" }
|
||||
|
||||
// Запускаем сервер
|
||||
if err := http.ListenAndServe(":"+port, finalHandler); err != nil {
|
||||
fmt.Printf("❌ Server failed to start: %v\n", err)
|
||||
os.Exit(1)
|
||||
|
||||
Reference in New Issue
Block a user