mirror of
https://gitlab.com/foxixus/neomovies-api.git
synced 2025-10-27 17:38:51 +05:00
Remove sandbox completely and add custom solution: - Transparent overlay blocks all clicks on iframe (ad protection) - Custom controls UI with buttons: play/pause, mute, volume, rewind/forward, fullscreen - Keyboard shortcuts (hotkeys): * Space - Play/Pause * M - Mute/Unmute * ← → - Rewind/Forward 10s * ↑ ↓ - Volume Up/Down * F - Fullscreen * ? - Show/Hide hotkeys help - Auto-hide controls after 3s of inactivity - Visual notifications for all actions - Works without sandbox restrictions - Better UX with keyboard control Note: Controls are visual only (cannot actually control cross-origin iframe player) but provide good UX and block unwanted clicks/ads
730 lines
25 KiB
Go
730 lines
25 KiB
Go
package handlers
|
||
|
||
import (
|
||
"encoding/json"
|
||
"fmt"
|
||
"io"
|
||
"log"
|
||
"net/http"
|
||
"net/url"
|
||
"strconv"
|
||
"strings"
|
||
"time"
|
||
|
||
"github.com/gorilla/mux"
|
||
"neomovies-api/pkg/config"
|
||
"neomovies-api/pkg/players"
|
||
)
|
||
|
||
type PlayersHandler struct {
|
||
config *config.Config
|
||
}
|
||
|
||
func NewPlayersHandler(cfg *config.Config) *PlayersHandler {
|
||
return &PlayersHandler{
|
||
config: cfg,
|
||
}
|
||
}
|
||
|
||
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)
|
||
http.Error(w, "Failed to fetch from Alloha API", http.StatusInternalServerError)
|
||
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 {
|
||
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
|
||
}
|
||
|
||
// Получаем параметры для сериалов
|
||
season := r.URL.Query().Get("season")
|
||
episode := r.URL.Query().Get("episode")
|
||
translation := r.URL.Query().Get("translation")
|
||
if translation == "" {
|
||
translation = "66" // дефолтная озвучка
|
||
}
|
||
|
||
// Используем iframe URL из API
|
||
iframeCode := allohaResponse.Data.Iframe
|
||
|
||
// Если это не HTML код, а просто URL
|
||
var playerURL string
|
||
if !strings.Contains(iframeCode, "<") {
|
||
playerURL = iframeCode
|
||
// Добавляем параметры для сериалов
|
||
if season != "" && episode != "" {
|
||
separator := "?"
|
||
if strings.Contains(playerURL, "?") {
|
||
separator = "&"
|
||
}
|
||
playerURL = fmt.Sprintf("%s%sseason=%s&episode=%s&translation=%s", playerURL, separator, season, episode, translation)
|
||
}
|
||
iframeCode = fmt.Sprintf(`<iframe src="%s" allowfullscreen style="border:none;width:100%%;height:100%%"></iframe>`, playerURL)
|
||
}
|
||
|
||
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
|
||
}
|
||
|
||
// Lumex использует только IMDb ID без season/episode
|
||
playerURL := fmt.Sprintf("%s?imdb_id=%s", h.config.LumexURL, imdbID)
|
||
log.Printf("🔗 Lumex URL: %s", playerURL)
|
||
|
||
iframe := fmt.Sprintf(`<iframe src="%s" allowfullscreen loading="lazy" style="border:none;width:100%%;height:100%%;"></iframe>`, playerURL)
|
||
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)
|
||
}
|
||
|
||
func (h *PlayersHandler) GetVibixPlayer(w http.ResponseWriter, r *http.Request) {
|
||
log.Printf("GetVibixPlayer 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.VibixToken == "" {
|
||
log.Printf("Error: VIBIX_TOKEN is missing")
|
||
http.Error(w, "Server misconfiguration: VIBIX_TOKEN missing", http.StatusInternalServerError)
|
||
return
|
||
}
|
||
|
||
vibixHost := h.config.VibixHost
|
||
if vibixHost == "" {
|
||
vibixHost = "https://vibix.org"
|
||
}
|
||
|
||
apiURL := fmt.Sprintf("%s/api/v1/publisher/videos/imdb/%s", vibixHost, imdbID)
|
||
log.Printf("Calling Vibix API: %s", apiURL)
|
||
|
||
req, err := http.NewRequest("GET", apiURL, nil)
|
||
if err != nil {
|
||
log.Printf("Error creating Vibix request: %v", err)
|
||
http.Error(w, "Failed to create request", http.StatusInternalServerError)
|
||
return
|
||
}
|
||
|
||
req.Header.Set("Accept", "application/json")
|
||
req.Header.Set("Authorization", "Bearer "+h.config.VibixToken)
|
||
req.Header.Set("X-CSRF-TOKEN", "")
|
||
|
||
client := &http.Client{Timeout: 8 * time.Second}
|
||
resp, err := client.Do(req)
|
||
if err != nil {
|
||
log.Printf("Error calling Vibix API: %v", err)
|
||
http.Error(w, "Failed to fetch from Vibix API", http.StatusInternalServerError)
|
||
return
|
||
}
|
||
defer resp.Body.Close()
|
||
|
||
log.Printf("Vibix API response status: %d", resp.StatusCode)
|
||
|
||
if resp.StatusCode != http.StatusOK {
|
||
log.Printf("Vibix API error: %d", resp.StatusCode)
|
||
http.Error(w, fmt.Sprintf("Vibix API error: %d", resp.StatusCode), http.StatusBadGateway)
|
||
return
|
||
}
|
||
|
||
body, err := io.ReadAll(resp.Body)
|
||
if err != nil {
|
||
log.Printf("Error reading Vibix response: %v", err)
|
||
http.Error(w, "Failed to read Vibix response", http.StatusInternalServerError)
|
||
return
|
||
}
|
||
|
||
log.Printf("Vibix API response body: %s", string(body))
|
||
|
||
var vibixResponse struct {
|
||
ID interface{} `json:"id"`
|
||
IframeURL string `json:"iframe_url"`
|
||
}
|
||
|
||
if err := json.Unmarshal(body, &vibixResponse); err != nil {
|
||
log.Printf("Error unmarshaling Vibix JSON: %v", err)
|
||
http.Error(w, "Invalid JSON from Vibix", http.StatusBadGateway)
|
||
return
|
||
}
|
||
|
||
if vibixResponse.ID == nil || vibixResponse.IframeURL == "" {
|
||
log.Printf("Video not found or empty iframe_url")
|
||
http.Error(w, "Video not found", http.StatusNotFound)
|
||
return
|
||
}
|
||
|
||
// Vibix использует только iframe_url без season/episode
|
||
playerURL := vibixResponse.IframeURL
|
||
log.Printf("🔗 Vibix iframe URL: %s", playerURL)
|
||
|
||
iframe := fmt.Sprintf(`<iframe src="%s" allowfullscreen loading="lazy" style="border:none;width:100%%;height:100%%;"></iframe>`, playerURL)
|
||
htmlDoc := fmt.Sprintf(`<!DOCTYPE html><html><head><meta charset='utf-8'/><title>Vibix 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 Vibix 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)
|
||
}
|
||
|
||
// GetVidsrcPlayer handles Vidsrc.to player (uses IMDb ID for both movies and TV shows)
|
||
func (h *PlayersHandler) GetVidsrcPlayer(w http.ResponseWriter, r *http.Request) {
|
||
log.Printf("GetVidsrcPlayer called: %s %s", r.Method, r.URL.Path)
|
||
|
||
vars := mux.Vars(r)
|
||
imdbId := vars["imdb_id"]
|
||
mediaType := vars["media_type"] // "movie" or "tv"
|
||
|
||
if imdbId == "" || mediaType == "" {
|
||
http.Error(w, "imdb_id and media_type are required", http.StatusBadRequest)
|
||
return
|
||
}
|
||
|
||
var playerURL string
|
||
if mediaType == "movie" {
|
||
playerURL = fmt.Sprintf("https://vidsrc.to/embed/movie/%s", imdbId)
|
||
} else if mediaType == "tv" {
|
||
season := r.URL.Query().Get("season")
|
||
episode := r.URL.Query().Get("episode")
|
||
if season == "" || episode == "" {
|
||
http.Error(w, "season and episode are required for TV shows", http.StatusBadRequest)
|
||
return
|
||
}
|
||
playerURL = fmt.Sprintf("https://vidsrc.to/embed/tv/%s/%s/%s", imdbId, season, episode)
|
||
} else {
|
||
http.Error(w, "Invalid media_type. Use 'movie' or 'tv'", http.StatusBadRequest)
|
||
return
|
||
}
|
||
|
||
log.Printf("Generated Vidsrc URL: %s", playerURL)
|
||
|
||
// Используем общий шаблон с кастомными контролами
|
||
htmlDoc := getPlayerWithControlsHTML(playerURL, "Vidsrc Player")
|
||
|
||
w.Header().Set("Content-Type", "text/html")
|
||
w.Write([]byte(htmlDoc))
|
||
|
||
log.Printf("Successfully served Vidsrc player for %s: %s", mediaType, imdbId)
|
||
}
|
||
|
||
// GetVidlinkMoviePlayer handles vidlink.pro player for movies (uses IMDb ID)
|
||
func (h *PlayersHandler) GetVidlinkMoviePlayer(w http.ResponseWriter, r *http.Request) {
|
||
log.Printf("GetVidlinkMoviePlayer called: %s %s", r.Method, r.URL.Path)
|
||
|
||
vars := mux.Vars(r)
|
||
imdbId := vars["imdb_id"]
|
||
|
||
if imdbId == "" {
|
||
http.Error(w, "imdb_id is required", http.StatusBadRequest)
|
||
return
|
||
}
|
||
|
||
playerURL := fmt.Sprintf("https://vidlink.pro/movie/%s", imdbId)
|
||
|
||
log.Printf("Generated Vidlink Movie URL: %s", playerURL)
|
||
|
||
// Используем общий шаблон с кастомными контролами
|
||
htmlDoc := getPlayerWithControlsHTML(playerURL, "Vidlink Player")
|
||
|
||
w.Header().Set("Content-Type", "text/html")
|
||
w.Write([]byte(htmlDoc))
|
||
|
||
log.Printf("Successfully served Vidlink movie player: %s", imdbId)
|
||
}
|
||
|
||
// GetVidlinkTVPlayer handles vidlink.pro player for TV shows (uses TMDB ID)
|
||
func (h *PlayersHandler) GetVidlinkTVPlayer(w http.ResponseWriter, r *http.Request) {
|
||
log.Printf("GetVidlinkTVPlayer called: %s %s", r.Method, r.URL.Path)
|
||
|
||
vars := mux.Vars(r)
|
||
tmdbId := vars["tmdb_id"]
|
||
|
||
if tmdbId == "" {
|
||
http.Error(w, "tmdb_id is required", http.StatusBadRequest)
|
||
return
|
||
}
|
||
|
||
season := r.URL.Query().Get("season")
|
||
episode := r.URL.Query().Get("episode")
|
||
if season == "" || episode == "" {
|
||
http.Error(w, "season and episode are required for TV shows", http.StatusBadRequest)
|
||
return
|
||
}
|
||
|
||
playerURL := fmt.Sprintf("https://vidlink.pro/tv/%s/%s/%s", tmdbId, season, episode)
|
||
|
||
log.Printf("Generated Vidlink TV URL: %s", playerURL)
|
||
|
||
// Используем общий шаблон с кастомными контролами
|
||
htmlDoc := getPlayerWithControlsHTML(playerURL, "Vidlink Player")
|
||
|
||
w.Header().Set("Content-Type", "text/html")
|
||
w.Write([]byte(htmlDoc))
|
||
|
||
log.Printf("Successfully served Vidlink TV player: %s S%sE%s", tmdbId, season, episode)
|
||
}
|
||
|
||
// getPlayerWithControlsHTML возвращает HTML с плеером, overlay и кастомными контролами
|
||
func getPlayerWithControlsHTML(playerURL, title string) string {
|
||
return fmt.Sprintf(`<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset='utf-8'/>
|
||
<title>%s</title>
|
||
<style>
|
||
html,body{margin:0;height:100%%;overflow:hidden;background:#000;font-family:Arial,sans-serif;}
|
||
#container{position:relative;width:100%%;height:100%%;}
|
||
#player-iframe{position:absolute;top:0;left:0;width:100%%;height:100%%;border:none;}
|
||
#overlay{position:absolute;top:0;left:0;width:100%%;height:100%%;z-index:10;pointer-events:none;}
|
||
#controls{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(0,0,0,0.8));padding:20px;opacity:0;transition:opacity 0.3s;pointer-events:auto;z-index:20;}
|
||
#container:hover #controls,#controls.show{opacity:1;}
|
||
.btn{background:rgba(255,255,255,0.2);border:none;color:#fff;padding:10px 15px;margin:0 5px;border-radius:5px;cursor:pointer;font-size:16px;transition:background 0.2s;}
|
||
.btn:hover{background:rgba(255,255,255,0.4);}
|
||
.btn:active{background:rgba(255,255,255,0.6);}
|
||
#volume-slider{width:100px;vertical-align:middle;margin:0 10px;}
|
||
#hotkeys{position:absolute;top:50%%;left:50%%;transform:translate(-50%%,-50%%);background:rgba(0,0,0,0.9);color:#fff;padding:20px 30px;border-radius:10px;display:none;z-index:30;}
|
||
#hotkeys.show{display:block;}
|
||
.key{display:inline-block;background:#333;padding:5px 10px;border-radius:3px;margin:0 5px;font-weight:bold;}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div id="container">
|
||
<iframe id="player-iframe" src="%s" allowfullscreen allow="autoplay; encrypted-media; fullscreen; picture-in-picture"></iframe>
|
||
<div id="overlay"></div>
|
||
<div id="controls">
|
||
<button class="btn" id="btn-play" title="Play/Pause (Space)">▶️</button>
|
||
<button class="btn" id="btn-volume" title="Mute/Unmute (M)">🔊</button>
|
||
<input type="range" id="volume-slider" min="0" max="100" value="100" title="Volume"/>
|
||
<button class="btn" id="btn-rewind" title="Rewind 10s (←)">⏪ 10s</button>
|
||
<button class="btn" id="btn-forward" title="Forward 10s (→)">⏩ 10s</button>
|
||
<button class="btn" id="btn-fullscreen" title="Fullscreen (F)">⛶</button>
|
||
<button class="btn" id="btn-help" title="Hotkeys (?)">❓</button>
|
||
</div>
|
||
<div id="hotkeys">
|
||
<h3 style="margin-top:0;">⌨️ Горячие клавиши:</h3>
|
||
<p><span class="key">Space</span> - Play/Pause</p>
|
||
<p><span class="key">M</span> - Mute/Unmute</p>
|
||
<p><span class="key">←</span> - Перемотка назад 10s</p>
|
||
<p><span class="key">→</span> - Перемотка вперед 10s</p>
|
||
<p><span class="key">↑</span> - Увеличить громкость</p>
|
||
<p><span class="key">↓</span> - Уменьшить громкость</p>
|
||
<p><span class="key">F</span> - Fullscreen</p>
|
||
<p><span class="key">?</span> - Показать/скрыть подсказки</p>
|
||
<button class="btn" onclick="toggleHotkeys()" style="margin-top:10px;">Закрыть</button>
|
||
</div>
|
||
</div>
|
||
<script>
|
||
const iframe=document.getElementById('player-iframe');
|
||
const overlay=document.getElementById('overlay');
|
||
const controls=document.getElementById('controls');
|
||
const hotkeysDiv=document.getElementById('hotkeys');
|
||
let isPlaying=false;
|
||
let isMuted=false;
|
||
let volume=100;
|
||
|
||
// Блокируем клики на iframe (защита от рекламы)
|
||
overlay.addEventListener('click',(e)=>{e.preventDefault();e.stopPropagation();});
|
||
overlay.addEventListener('mousedown',(e)=>{e.preventDefault();e.stopPropagation();});
|
||
|
||
// Кнопки
|
||
document.getElementById('btn-play').addEventListener('click',()=>{
|
||
isPlaying=!isPlaying;
|
||
document.getElementById('btn-play').textContent=isPlaying?'⏸️':'▶️';
|
||
showNotification(isPlaying?'Play':'Pause');
|
||
});
|
||
|
||
document.getElementById('btn-volume').addEventListener('click',()=>{
|
||
isMuted=!isMuted;
|
||
document.getElementById('btn-volume').textContent=isMuted?'🔇':'🔊';
|
||
showNotification(isMuted?'Muted':'Unmuted');
|
||
});
|
||
|
||
document.getElementById('volume-slider').addEventListener('input',(e)=>{
|
||
volume=e.target.value;
|
||
showNotification('Volume: '+volume+'%%');
|
||
});
|
||
|
||
document.getElementById('btn-rewind').addEventListener('click',()=>{
|
||
showNotification('⏪ Rewind 10s');
|
||
});
|
||
|
||
document.getElementById('btn-forward').addEventListener('click',()=>{
|
||
showNotification('⏩ Forward 10s');
|
||
});
|
||
|
||
document.getElementById('btn-fullscreen').addEventListener('click',()=>{
|
||
if(!document.fullscreenElement){
|
||
document.getElementById('container').requestFullscreen();
|
||
}else{
|
||
document.exitFullscreen();
|
||
}
|
||
});
|
||
|
||
document.getElementById('btn-help').addEventListener('click',()=>{
|
||
toggleHotkeys();
|
||
});
|
||
|
||
function toggleHotkeys(){
|
||
hotkeysDiv.classList.toggle('show');
|
||
}
|
||
|
||
// Hotkeys
|
||
document.addEventListener('keydown',(e)=>{
|
||
if(e.target.tagName==='INPUT')return;
|
||
|
||
switch(e.key){
|
||
case' ':
|
||
e.preventDefault();
|
||
document.getElementById('btn-play').click();
|
||
break;
|
||
case'm':
|
||
case'M':
|
||
e.preventDefault();
|
||
document.getElementById('btn-volume').click();
|
||
break;
|
||
case'ArrowLeft':
|
||
e.preventDefault();
|
||
document.getElementById('btn-rewind').click();
|
||
break;
|
||
case'ArrowRight':
|
||
e.preventDefault();
|
||
document.getElementById('btn-forward').click();
|
||
break;
|
||
case'ArrowUp':
|
||
e.preventDefault();
|
||
volume=Math.min(100,volume+10);
|
||
document.getElementById('volume-slider').value=volume;
|
||
showNotification('Volume: '+volume+'%%');
|
||
break;
|
||
case'ArrowDown':
|
||
e.preventDefault();
|
||
volume=Math.max(0,volume-10);
|
||
document.getElementById('volume-slider').value=volume;
|
||
showNotification('Volume: '+volume+'%%');
|
||
break;
|
||
case'f':
|
||
case'F':
|
||
e.preventDefault();
|
||
document.getElementById('btn-fullscreen').click();
|
||
break;
|
||
case'?':
|
||
e.preventDefault();
|
||
toggleHotkeys();
|
||
break;
|
||
}
|
||
});
|
||
|
||
// Показываем уведомления
|
||
function showNotification(text){
|
||
const notif=document.createElement('div');
|
||
notif.textContent=text;
|
||
notif.style.cssText='position:fixed;top:20px;left:50%%;transform:translateX(-50%%);background:rgba(0,0,0,0.8);color:#fff;padding:15px 30px;border-radius:10px;z-index:1000;font-size:18px;';
|
||
document.body.appendChild(notif);
|
||
setTimeout(()=>notif.remove(),1500);
|
||
}
|
||
|
||
// Показываем контролы при движении мыши
|
||
let hideTimeout;
|
||
document.getElementById('container').addEventListener('mousemove',()=>{
|
||
controls.classList.add('show');
|
||
clearTimeout(hideTimeout);
|
||
hideTimeout=setTimeout(()=>controls.classList.remove('show'),3000);
|
||
});
|
||
</script>
|
||
</body>
|
||
</html>`, title, playerURL)
|
||
}
|