|
| 1 | +using System; |
| 2 | +using System.Text.RegularExpressions; |
| 3 | +using System.Threading.Tasks; |
| 4 | +using Microsoft.AspNetCore.Mvc; |
| 5 | +using Microsoft.Extensions.Caching.Memory; |
| 6 | +using System.Collections.Generic; |
| 7 | +using System.Web; |
| 8 | +using Newtonsoft.Json.Linq; |
| 9 | +using System.Linq; |
| 10 | +using Lampac.Engine; |
| 11 | +using Lampac.Engine.CORE; |
| 12 | + |
| 13 | +namespace Lampac.Controllers.LITE |
| 14 | +{ |
| 15 | + public class Alloha : BaseController |
| 16 | + { |
| 17 | + [HttpGet] |
| 18 | + [Route("lite/alloha")] |
| 19 | + async public Task<ActionResult> Index(string imdb_id, long kinopoisk_id, string title, string original_title, string t, int s = -1) |
| 20 | + { |
| 21 | + if (kinopoisk_id == 0 && string.IsNullOrWhiteSpace(imdb_id)) |
| 22 | + return Content(string.Empty); |
| 23 | + |
| 24 | + JToken data = await search(memoryCache, imdb_id, kinopoisk_id); |
| 25 | + if (data == null) |
| 26 | + return Content(string.Empty); |
| 27 | + |
| 28 | + bool firstjson = true; |
| 29 | + string html = "<div class=\"videos__line\">"; |
| 30 | + |
| 31 | + if (data.Value<int>("category") is 1 or 3) |
| 32 | + { |
| 33 | + #region Фильм |
| 34 | + foreach (var translation in data.Value<JObject>("translation_iframe").ToObject<Dictionary<string, Dictionary<string, object>>>()) |
| 35 | + { |
| 36 | + string link = $"{AppInit.Host(HttpContext)}/lite/alloha/video?imdb_id={imdb_id}&kinopoisk_id={kinopoisk_id}&title={HttpUtility.UrlEncode(title)}&original_title={HttpUtility.UrlEncode(original_title)}&t={translation.Key}"; |
| 37 | + html += "<div class=\"videos__item videos__movie selector " + (firstjson ? "focused" : "") + "\" media=\"\" data-json='{\"method\":\"call\",\"url\":\"" + link + "\"}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">" + translation.Value["name"].ToString() + "</div></div>"; |
| 38 | + firstjson = false; |
| 39 | + } |
| 40 | + #endregion |
| 41 | + } |
| 42 | + else |
| 43 | + { |
| 44 | + #region Перевод |
| 45 | + string activTranslate = t; |
| 46 | + |
| 47 | + foreach (var translation in data.Value<JObject>("translation_iframe").ToObject<Dictionary<string, Dictionary<string, object>>>()) |
| 48 | + { |
| 49 | + if (string.IsNullOrWhiteSpace(activTranslate)) |
| 50 | + activTranslate = translation.Key; |
| 51 | + |
| 52 | + string link = $"{AppInit.Host(HttpContext)}/lite/alloha?imdb_id={imdb_id}&kinopoisk_id={kinopoisk_id}&title={HttpUtility.UrlEncode(title)}&original_title={HttpUtility.UrlEncode(original_title)}&t={translation.Key}"; |
| 53 | + |
| 54 | + string active = string.IsNullOrWhiteSpace(t) ? (firstjson ? "active" : "") : (t == translation.Key ? "active" : ""); |
| 55 | + |
| 56 | + html += "<div class=\"videos__button selector " + active + "\" data-json='{\"method\":\"link\",\"url\":\"" + link + "\"}'>" + translation.Value["name"].ToString() + "</div>"; |
| 57 | + firstjson = false; |
| 58 | + } |
| 59 | + |
| 60 | + html += "</div>"; |
| 61 | + #endregion |
| 62 | + |
| 63 | + #region Сериал |
| 64 | + firstjson = true; |
| 65 | + html += "<div class=\"videos__line\">"; |
| 66 | + |
| 67 | + if (s == -1) |
| 68 | + { |
| 69 | + foreach (var season in data.Value<JObject>("seasons").ToObject<Dictionary<string, object>>().Reverse()) |
| 70 | + { |
| 71 | + string link = $"{AppInit.Host(HttpContext)}/lite/alloha?imdb_id={imdb_id}&kinopoisk_id={kinopoisk_id}&title={HttpUtility.UrlEncode(title)}&original_title={HttpUtility.UrlEncode(original_title)}&t={activTranslate}&s={season.Key}"; |
| 72 | + |
| 73 | + html += "<div class=\"videos__item videos__season selector " + (firstjson ? "focused" : "") + "\" data-json='{\"method\":\"link\",\"url\":\"" + link + "\"}'><div class=\"videos__season-layers\"></div><div class=\"videos__item-imgbox videos__season-imgbox\"><div class=\"videos__item-title videos__season-title\">" + $"{season.Key} сезон" + "</div></div></div>"; |
| 74 | + firstjson = false; |
| 75 | + } |
| 76 | + } |
| 77 | + else |
| 78 | + { |
| 79 | + foreach (var episode in data.Value<JObject>("seasons").GetValue(s.ToString()).Value<JObject>("episodes").ToObject<Dictionary<string, object>>().Reverse()) |
| 80 | + { |
| 81 | + string link = $"{AppInit.Host(HttpContext)}/lite/alloha/video?imdb_id={imdb_id}&kinopoisk_id={kinopoisk_id}&title={HttpUtility.UrlEncode(title)}&original_title={HttpUtility.UrlEncode(original_title)}&t={t}&s={s}&e={episode.Key}"; |
| 82 | + |
| 83 | + html += "<div class=\"videos__item videos__movie selector " + (firstjson ? "focused" : "") + "\" media=\"\" s=\"" + s + "\" e=\"" + episode.Key + "\" data-json='{\"method\":\"call\",\"url\":\"" + link + "\",\"title\":\"" + $"{title ?? original_title} ({episode.Key} серия)" + "\"}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">" + $"{episode.Key} серия" + "</div></div>"; |
| 84 | + firstjson = false; |
| 85 | + } |
| 86 | + } |
| 87 | + #endregion |
| 88 | + } |
| 89 | + |
| 90 | + return Content(html + "</div>", "text/html; charset=utf-8"); |
| 91 | + } |
| 92 | + |
| 93 | + #region Video |
| 94 | + [HttpGet] |
| 95 | + [Route("lite/alloha/video")] |
| 96 | + async public Task<ActionResult> Video(string imdb_id, long kinopoisk_id, string title, string original_title, string t, int s, int e) |
| 97 | + { |
| 98 | + string memKey = $"alloha:view:stream:{imdb_id}:{kinopoisk_id}:{t}:{s}:{e}"; |
| 99 | + if (!memoryCache.TryGetValue(memKey, out (string m3u8, string subtitle) _cache)) |
| 100 | + { |
| 101 | + string userIp = HttpContext.Connection.RemoteIpAddress.ToString(); |
| 102 | + if (AppInit.conf.Alloha.localip) |
| 103 | + { |
| 104 | + userIp = await mylocalip(); |
| 105 | + if (userIp == null) |
| 106 | + return Content(string.Empty); |
| 107 | + } |
| 108 | + |
| 109 | + #region url запроса |
| 110 | + string uri = $"{AppInit.conf.Alloha.linkhost}/link_file.php?secret_token={AppInit.conf.Alloha.secret_token}&imdb={imdb_id}&kp={kinopoisk_id}"; |
| 111 | + |
| 112 | + uri += $"&ip={userIp}&translation={t}"; |
| 113 | + |
| 114 | + if (s > 0) |
| 115 | + uri += $"&season={s}"; |
| 116 | + |
| 117 | + if (e > 0) |
| 118 | + uri += $"&episode={e}"; |
| 119 | + #endregion |
| 120 | + |
| 121 | + string json = await HttpClient.Get(uri, timeoutSeconds: 8); |
| 122 | + if (json == null || !json.Contains("\"status\":\"success\"")) |
| 123 | + return Content(string.Empty); |
| 124 | + |
| 125 | + _cache.m3u8 = Regex.Match(json.Replace("\\", ""), "\"playlist_file\":\"\\{[^\\}]+\\}(https?://[^;\"]+\\.m3u8)").Groups[1].Value; |
| 126 | + if (string.IsNullOrWhiteSpace(_cache.m3u8)) |
| 127 | + { |
| 128 | + _cache.m3u8 = Regex.Match(json.Replace("\\", ""), "\"playlist_file\":\"(https?://[^;\"]+\\.m3u8)").Groups[1].Value; |
| 129 | + if (string.IsNullOrWhiteSpace(_cache.m3u8)) |
| 130 | + return Content(string.Empty); |
| 131 | + } |
| 132 | + |
| 133 | + _cache.subtitle = Regex.Match(json.Replace("\\", ""), "\"subtitle\":\"(https?://[^;\" ]+)").Groups[1].Value; |
| 134 | + |
| 135 | + memoryCache.Set(memKey, _cache, TimeSpan.FromMinutes(10)); |
| 136 | + } |
| 137 | + |
| 138 | + string subtitles = "{\"label\": \"По умолчанию\",\"url\": \"" + _cache.subtitle + "\"},"; |
| 139 | + |
| 140 | + return Content("{\"method\":\"play\",\"url\":\"" + _cache.m3u8 + "\",\"title\":\"" + (title ?? original_title) + "\", \"subtitles\": [" + Regex.Replace(subtitles, ",$", "") + "]}", "application/json; charset=utf-8"); |
| 141 | + } |
| 142 | + #endregion |
| 143 | + |
| 144 | + |
| 145 | + #region search |
| 146 | + async ValueTask<JToken> search(IMemoryCache memoryCache, string imdb_id, long kinopoisk_id) |
| 147 | + { |
| 148 | + string memKey = $"alloha:view:{kinopoisk_id}:{imdb_id}"; |
| 149 | + |
| 150 | + if (!memoryCache.TryGetValue(memKey, out JToken data)) |
| 151 | + { |
| 152 | + var root = await HttpClient.Get<JObject>($"{AppInit.conf.Alloha.apihost}/?token={AppInit.conf.Alloha.token}&kp={kinopoisk_id}&imdb={imdb_id}", timeoutSeconds: 8); |
| 153 | + if (root == null || !root.ContainsKey("data")) |
| 154 | + return null; |
| 155 | + |
| 156 | + data = root.GetValue("data"); |
| 157 | + memoryCache.Set(memKey, data, TimeSpan.FromMinutes(10)); |
| 158 | + } |
| 159 | + |
| 160 | + return data; |
| 161 | + } |
| 162 | + #endregion |
| 163 | + } |
| 164 | +} |
0 commit comments