mirror of
https://gitlab.com/foxixus/neomovies-api.git
synced 2025-10-28 01:48:51 +05:00
feat: add RgShows and IframeVideo streaming players
🎬 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 stable commit 7f6ff5f (Rewrite api to Go)
Ready for production deployment! 🚀
This commit is contained in:
@@ -7,10 +7,12 @@ import (
|
||||
"log"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"neomovies-api/pkg/config"
|
||||
"github.com/gorilla/mux"
|
||||
"neomovies-api/pkg/config"
|
||||
"neomovies-api/pkg/players"
|
||||
)
|
||||
|
||||
type PlayersHandler struct {
|
||||
@@ -25,29 +27,29 @@ func NewPlayersHandler(cfg *config.Config) *PlayersHandler {
|
||||
|
||||
func (h *PlayersHandler) GetAllohaPlayer(w http.ResponseWriter, r *http.Request) {
|
||||
log.Printf("GetAllohaPlayer called: %s %s", r.Method, r.URL.Path)
|
||||
|
||||
|
||||
vars := mux.Vars(r)
|
||||
log.Printf("Route vars: %+v", vars)
|
||||
|
||||
|
||||
imdbID := vars["imdb_id"]
|
||||
if imdbID == "" {
|
||||
log.Printf("Error: imdb_id is empty")
|
||||
http.Error(w, "imdb_id path param is required", http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
log.Printf("Processing imdb_id: %s", imdbID)
|
||||
|
||||
|
||||
if h.config.AllohaToken == "" {
|
||||
log.Printf("Error: ALLOHA_TOKEN is missing")
|
||||
http.Error(w, "Server misconfiguration: ALLOHA_TOKEN missing", http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
idParam := fmt.Sprintf("imdb=%s", url.QueryEscape(imdbID))
|
||||
apiURL := fmt.Sprintf("https://api.alloha.tv/?token=%s&%s", h.config.AllohaToken, idParam)
|
||||
log.Printf("Calling Alloha API: %s", apiURL)
|
||||
|
||||
|
||||
resp, err := http.Get(apiURL)
|
||||
if err != nil {
|
||||
log.Printf("Error calling Alloha API: %v", err)
|
||||
@@ -55,88 +57,286 @@ func (h *PlayersHandler) GetAllohaPlayer(w http.ResponseWriter, r *http.Request)
|
||||
return
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
|
||||
|
||||
log.Printf("Alloha API response status: %d", resp.StatusCode)
|
||||
|
||||
|
||||
if resp.StatusCode != http.StatusOK {
|
||||
http.Error(w, fmt.Sprintf("Alloha API error: %d", resp.StatusCode), http.StatusBadGateway)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
body, err := io.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
log.Printf("Error reading Alloha response: %v", err)
|
||||
http.Error(w, "Failed to read Alloha response", http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
log.Printf("Alloha API response body: %s", string(body))
|
||||
|
||||
|
||||
var allohaResponse struct {
|
||||
Status string `json:"status"`
|
||||
Data struct {
|
||||
Data struct {
|
||||
Iframe string `json:"iframe"`
|
||||
} `json:"data"`
|
||||
}
|
||||
|
||||
|
||||
if err := json.Unmarshal(body, &allohaResponse); err != nil {
|
||||
log.Printf("Error unmarshaling JSON: %v", err)
|
||||
http.Error(w, "Invalid JSON from Alloha", http.StatusBadGateway)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
if allohaResponse.Status != "success" || allohaResponse.Data.Iframe == "" {
|
||||
log.Printf("Video not found or empty iframe")
|
||||
http.Error(w, "Video not found", http.StatusNotFound)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
iframeCode := allohaResponse.Data.Iframe
|
||||
if !strings.Contains(iframeCode, "<") {
|
||||
iframeCode = fmt.Sprintf(`<iframe src="%s" allowfullscreen style="border:none;width:100%%;height:100%%"></iframe>`, iframeCode)
|
||||
}
|
||||
|
||||
|
||||
htmlDoc := fmt.Sprintf(`<!DOCTYPE html><html><head><meta charset='utf-8'/><title>Alloha Player</title><style>html,body{margin:0;height:100%%;}</style></head><body>%s</body></html>`, iframeCode)
|
||||
|
||||
|
||||
// Авто-исправление экранированных кавычек
|
||||
htmlDoc = strings.ReplaceAll(htmlDoc, `\"`, `"`)
|
||||
htmlDoc = strings.ReplaceAll(htmlDoc, `\'`, `'`)
|
||||
|
||||
|
||||
w.Header().Set("Content-Type", "text/html")
|
||||
w.Write([]byte(htmlDoc))
|
||||
|
||||
|
||||
log.Printf("Successfully served Alloha player for imdb_id: %s", imdbID)
|
||||
}
|
||||
|
||||
func (h *PlayersHandler) GetLumexPlayer(w http.ResponseWriter, r *http.Request) {
|
||||
log.Printf("GetLumexPlayer called: %s %s", r.Method, r.URL.Path)
|
||||
|
||||
|
||||
vars := mux.Vars(r)
|
||||
log.Printf("Route vars: %+v", vars)
|
||||
|
||||
|
||||
imdbID := vars["imdb_id"]
|
||||
if imdbID == "" {
|
||||
log.Printf("Error: imdb_id is empty")
|
||||
http.Error(w, "imdb_id path param is required", http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
log.Printf("Processing imdb_id: %s", imdbID)
|
||||
|
||||
|
||||
if h.config.LumexURL == "" {
|
||||
log.Printf("Error: LUMEX_URL is missing")
|
||||
http.Error(w, "Server misconfiguration: LUMEX_URL missing", http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
url := fmt.Sprintf("%s?imdb_id=%s", h.config.LumexURL, url.QueryEscape(imdbID))
|
||||
log.Printf("Generated Lumex URL: %s", url)
|
||||
|
||||
|
||||
iframe := fmt.Sprintf(`<iframe src="%s" allowfullscreen loading="lazy" style="border:none;width:100%%;height:100%%;"></iframe>`, url)
|
||||
htmlDoc := fmt.Sprintf(`<!DOCTYPE html><html><head><meta charset='utf-8'/><title>Lumex Player</title><style>html,body{margin:0;height:100%%;}</style></head><body>%s</body></html>`, iframe)
|
||||
|
||||
|
||||
w.Header().Set("Content-Type", "text/html")
|
||||
w.Write([]byte(htmlDoc))
|
||||
|
||||
|
||||
log.Printf("Successfully served Lumex player for imdb_id: %s", imdbID)
|
||||
}
|
||||
}
|
||||
|
||||
// GetRgShowsPlayer handles RgShows streaming requests
|
||||
func (h *PlayersHandler) GetRgShowsPlayer(w http.ResponseWriter, r *http.Request) {
|
||||
log.Printf("GetRgShowsPlayer called: %s %s", r.Method, r.URL.Path)
|
||||
|
||||
vars := mux.Vars(r)
|
||||
tmdbID := vars["tmdb_id"]
|
||||
if tmdbID == "" {
|
||||
log.Printf("Error: tmdb_id is empty")
|
||||
http.Error(w, "tmdb_id path param is required", http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
|
||||
log.Printf("Processing tmdb_id: %s", tmdbID)
|
||||
|
||||
pm := players.NewPlayersManager()
|
||||
result, err := pm.GetMovieStreamByProvider("rgshows", tmdbID)
|
||||
if err != nil {
|
||||
log.Printf("Error getting RgShows stream: %v", err)
|
||||
http.Error(w, "Failed to get stream", http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
if !result.Success {
|
||||
log.Printf("RgShows stream not found: %s", result.Error)
|
||||
http.Error(w, "Stream not found", http.StatusNotFound)
|
||||
return
|
||||
}
|
||||
|
||||
// Create iframe with the stream URL
|
||||
iframe := fmt.Sprintf(`<iframe src="%s" allowfullscreen loading="lazy" style="border:none;width:100%%;height:100%%;"></iframe>`, result.StreamURL)
|
||||
htmlDoc := fmt.Sprintf(`<!DOCTYPE html><html><head><meta charset='utf-8'/><title>RgShows Player</title><style>html,body{margin:0;height:100%%;}</style></head><body>%s</body></html>`, iframe)
|
||||
|
||||
w.Header().Set("Content-Type", "text/html")
|
||||
w.Write([]byte(htmlDoc))
|
||||
|
||||
log.Printf("Successfully served RgShows player for tmdb_id: %s", tmdbID)
|
||||
}
|
||||
|
||||
// GetRgShowsTVPlayer handles RgShows TV show streaming requests
|
||||
func (h *PlayersHandler) GetRgShowsTVPlayer(w http.ResponseWriter, r *http.Request) {
|
||||
log.Printf("GetRgShowsTVPlayer called: %s %s", r.Method, r.URL.Path)
|
||||
|
||||
vars := mux.Vars(r)
|
||||
tmdbID := vars["tmdb_id"]
|
||||
seasonStr := vars["season"]
|
||||
episodeStr := vars["episode"]
|
||||
|
||||
if tmdbID == "" || seasonStr == "" || episodeStr == "" {
|
||||
log.Printf("Error: missing required parameters")
|
||||
http.Error(w, "tmdb_id, season, and episode path params are required", http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
|
||||
season, err := strconv.Atoi(seasonStr)
|
||||
if err != nil {
|
||||
log.Printf("Error parsing season: %v", err)
|
||||
http.Error(w, "Invalid season number", http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
|
||||
episode, err := strconv.Atoi(episodeStr)
|
||||
if err != nil {
|
||||
log.Printf("Error parsing episode: %v", err)
|
||||
http.Error(w, "Invalid episode number", http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
|
||||
log.Printf("Processing tmdb_id: %s, season: %d, episode: %d", tmdbID, season, episode)
|
||||
|
||||
pm := players.NewPlayersManager()
|
||||
result, err := pm.GetTVStreamByProvider("rgshows", tmdbID, season, episode)
|
||||
if err != nil {
|
||||
log.Printf("Error getting RgShows TV stream: %v", err)
|
||||
http.Error(w, "Failed to get stream", http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
if !result.Success {
|
||||
log.Printf("RgShows TV stream not found: %s", result.Error)
|
||||
http.Error(w, "Stream not found", http.StatusNotFound)
|
||||
return
|
||||
}
|
||||
|
||||
// Create iframe with the stream URL
|
||||
iframe := fmt.Sprintf(`<iframe src="%s" allowfullscreen loading="lazy" style="border:none;width:100%%;height:100%%;"></iframe>`, result.StreamURL)
|
||||
htmlDoc := fmt.Sprintf(`<!DOCTYPE html><html><head><meta charset='utf-8'/><title>RgShows TV Player</title><style>html,body{margin:0;height:100%%;}</style></head><body>%s</body></html>`, iframe)
|
||||
|
||||
w.Header().Set("Content-Type", "text/html")
|
||||
w.Write([]byte(htmlDoc))
|
||||
|
||||
log.Printf("Successfully served RgShows TV player for tmdb_id: %s, S%dE%d", tmdbID, season, episode)
|
||||
}
|
||||
|
||||
// GetIframeVideoPlayer handles IframeVideo streaming requests
|
||||
func (h *PlayersHandler) GetIframeVideoPlayer(w http.ResponseWriter, r *http.Request) {
|
||||
log.Printf("GetIframeVideoPlayer called: %s %s", r.Method, r.URL.Path)
|
||||
|
||||
vars := mux.Vars(r)
|
||||
kinopoiskID := vars["kinopoisk_id"]
|
||||
imdbID := vars["imdb_id"]
|
||||
|
||||
if kinopoiskID == "" && imdbID == "" {
|
||||
log.Printf("Error: both kinopoisk_id and imdb_id are empty")
|
||||
http.Error(w, "Either kinopoisk_id or imdb_id path param is required", http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
|
||||
log.Printf("Processing kinopoisk_id: %s, imdb_id: %s", kinopoiskID, imdbID)
|
||||
|
||||
pm := players.NewPlayersManager()
|
||||
result, err := pm.GetStreamWithKinopoisk(kinopoiskID, imdbID)
|
||||
if err != nil {
|
||||
log.Printf("Error getting IframeVideo stream: %v", err)
|
||||
http.Error(w, "Failed to get stream", http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
if !result.Success {
|
||||
log.Printf("IframeVideo stream not found: %s", result.Error)
|
||||
http.Error(w, "Stream not found", http.StatusNotFound)
|
||||
return
|
||||
}
|
||||
|
||||
// Create iframe with the stream URL
|
||||
iframe := fmt.Sprintf(`<iframe src="%s" allowfullscreen loading="lazy" style="border:none;width:100%%;height:100%%;"></iframe>`, result.StreamURL)
|
||||
htmlDoc := fmt.Sprintf(`<!DOCTYPE html><html><head><meta charset='utf-8'/><title>IframeVideo Player</title><style>html,body{margin:0;height:100%%;}</style></head><body>%s</body></html>`, iframe)
|
||||
|
||||
w.Header().Set("Content-Type", "text/html")
|
||||
w.Write([]byte(htmlDoc))
|
||||
|
||||
log.Printf("Successfully served IframeVideo player for kinopoisk_id: %s, imdb_id: %s", kinopoiskID, imdbID)
|
||||
}
|
||||
|
||||
// GetStreamAPI returns stream information as JSON API
|
||||
func (h *PlayersHandler) GetStreamAPI(w http.ResponseWriter, r *http.Request) {
|
||||
log.Printf("GetStreamAPI called: %s %s", r.Method, r.URL.Path)
|
||||
|
||||
vars := mux.Vars(r)
|
||||
provider := vars["provider"]
|
||||
tmdbID := vars["tmdb_id"]
|
||||
|
||||
if provider == "" || tmdbID == "" {
|
||||
log.Printf("Error: missing required parameters")
|
||||
http.Error(w, "provider and tmdb_id path params are required", http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
|
||||
// Check for TV show parameters
|
||||
seasonStr := r.URL.Query().Get("season")
|
||||
episodeStr := r.URL.Query().Get("episode")
|
||||
kinopoiskID := r.URL.Query().Get("kinopoisk_id")
|
||||
imdbID := r.URL.Query().Get("imdb_id")
|
||||
|
||||
log.Printf("Processing provider: %s, tmdb_id: %s", provider, tmdbID)
|
||||
|
||||
pm := players.NewPlayersManager()
|
||||
var result *players.StreamResult
|
||||
var err error
|
||||
|
||||
switch provider {
|
||||
case "iframevideo":
|
||||
if kinopoiskID == "" && imdbID == "" {
|
||||
http.Error(w, "kinopoisk_id or imdb_id query param is required for IframeVideo", http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
result, err = pm.GetStreamWithKinopoisk(kinopoiskID, imdbID)
|
||||
case "rgshows":
|
||||
if seasonStr != "" && episodeStr != "" {
|
||||
season, err1 := strconv.Atoi(seasonStr)
|
||||
episode, err2 := strconv.Atoi(episodeStr)
|
||||
if err1 != nil || err2 != nil {
|
||||
http.Error(w, "Invalid season or episode number", http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
result, err = pm.GetTVStreamByProvider("rgshows", tmdbID, season, episode)
|
||||
} else {
|
||||
result, err = pm.GetMovieStreamByProvider("rgshows", tmdbID)
|
||||
}
|
||||
default:
|
||||
http.Error(w, "Unsupported provider", http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
log.Printf("Error getting stream from %s: %v", provider, err)
|
||||
result = &players.StreamResult{
|
||||
Success: false,
|
||||
Provider: provider,
|
||||
Error: err.Error(),
|
||||
}
|
||||
}
|
||||
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
json.NewEncoder(w).Encode(result)
|
||||
|
||||
log.Printf("Successfully served stream API for provider: %s, tmdb_id: %s", provider, tmdbID)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user