|
3 | 3 | using System;
|
4 | 4 | using System.Web;
|
5 | 5 | using System.Collections.Generic;
|
6 |
| -using System.Text; |
7 | 6 | using System.Text.RegularExpressions;
|
8 | 7 | using Lampac.Engine;
|
9 | 8 | using Lampac.Engine.CORE;
|
10 | 9 | using Lampac.Models.LITE.Filmix;
|
| 10 | +using Newtonsoft.Json.Linq; |
| 11 | +using System.Linq; |
| 12 | +using Microsoft.Extensions.Caching.Memory; |
11 | 13 |
|
12 | 14 | namespace Lampac.Controllers.LITE
|
13 | 15 | {
|
14 | 16 | public class Filmix : BaseController
|
15 | 17 | {
|
16 | 18 | [HttpGet]
|
17 | 19 | [Route("lite/filmix")]
|
18 |
| - async public Task<ActionResult> Index(string title, string original_title, int serial, int year) |
| 20 | + async public Task<ActionResult> Index(string title, string original_title, int year, int postid, int t, int s = -1) |
19 | 21 | {
|
20 |
| - if (serial != 0 || year == 0) |
| 22 | + postid = postid == 0 ? await search(title ?? original_title, year) : postid; |
| 23 | + if (postid == 0) |
21 | 24 | return Content(string.Empty);
|
22 | 25 |
|
23 |
| - var url = await search(title ?? original_title, serial, year); |
24 |
| - if (url == null) |
25 |
| - return Content(string.Empty); |
26 |
| - |
27 |
| - string id = Regex.Match(url, "/([0-9]+)-[^/]+\\.html").Groups[1].Value; |
28 |
| - var root = await HttpClient.Post<RootObject>($"{AppInit.conf.Filmix.host}/api/movies/player_data?t=1844147559201", $"post_id={id}&showfull=true", timeoutSeconds: 8, addHeaders: new List<(string name, string val)>() |
| 26 | + string memKey = $"filmix:{postid}"; |
| 27 | + if (!memoryCache.TryGetValue(memKey, out RootObject root)) |
29 | 28 | {
|
30 |
| - ("cookie", "x-a-key=sinatra; FILMIXNET=1j59ook8hn417n6ufo3ue1pe3a;"), |
31 |
| - ("cache-control", "no-cache"), |
32 |
| - ("dnt", "1"), |
33 |
| - ("origin", AppInit.conf.Filmix.host), |
34 |
| - ("pragma", "no-cache"), |
35 |
| - ("x-requested-with", "XMLHttpRequest"), |
36 |
| - ("sec-fetch-dest", "empty"), |
37 |
| - ("sec-fetch-mode", "cors"), |
38 |
| - ("sec-fetch-site", "same-origin") |
39 |
| - }); |
40 |
| - |
41 |
| - if (root?.message?.translations?.video == null || root.message.translations.video.Count == 0) |
42 |
| - return Content(string.Empty); |
| 29 | + root = await HttpClient.Get<RootObject>($"{AppInit.conf.Filmix.apihost}/api/v2/post/{postid}?user_dev_apk=2.0.1&user_dev_id=&user_dev_name=Xiaomi&user_dev_os=11&user_dev_token=&user_dev_vendor=Xiaomi", timeoutSeconds: 8, IgnoreDeserializeObject: true); |
| 30 | + if (root?.player_links == null) |
| 31 | + return Content(string.Empty); |
| 32 | + |
| 33 | + memoryCache.Set(memKey, root, DateTime.Now.AddMinutes(10)); |
| 34 | + } |
43 | 35 |
|
44 | 36 | bool firstjson = true;
|
45 | 37 | string html = "<div class=\"videos__line\">";
|
46 | 38 |
|
47 |
| - #region Фильм |
48 |
| - foreach (var v in root.message.translations.video) |
| 39 | + if (root.player_links.movie != null && root.player_links.movie.Count > 0) |
49 | 40 | {
|
50 |
| - string stream = v.Value.Replace(":<:bzl3UHQwaWk0MkdXZVM3TDdB", "").Replace(":<:SURhQnQwOEM5V2Y3bFlyMGVI", "").Replace(":<:bE5qSTlWNVUxZ01uc3h0NFFy", "").Replace(":<:Mm93S0RVb0d6c3VMTkV5aE54", "").Replace(":<:MTluMWlLQnI4OXVic2tTNXpU", ""); |
51 |
| - stream = Encoding.UTF8.GetString(Convert.FromBase64String(stream.Remove(0, 2))); |
| 41 | + #region Фильм |
| 42 | + foreach (var v in root.player_links.movie) |
| 43 | + { |
| 44 | + string link = null; |
| 45 | + string streansquality = string.Empty; |
| 46 | + List<(string link, string quality)> streams = new List<(string, string)>(); |
| 47 | + |
| 48 | + foreach (string q in new string[] { /*"2160,", "1440,", "1080,",*/ "720,", "480,", "360," }) |
| 49 | + { |
| 50 | + if (!v.link.Contains(q)) |
| 51 | + continue; |
52 | 52 |
|
53 |
| - string link = null; |
54 |
| - string streansquality = string.Empty; |
55 |
| - List<(string link, string quality)> streams = new List<(string, string)>(); |
| 53 | + string l = Regex.Replace(v.link, "_\\[[0-9,]+\\]\\.mp4$", $"_{q.Replace(",", "")}.mp4"); |
| 54 | + if (link == null) |
| 55 | + link = l; |
56 | 56 |
|
57 |
| - foreach (string q in new string[] { /*"4K UHD", "1080p Ultra\\+", "1080p",*/ "720p", "480p", "360p" }) |
| 57 | + streams.Add((l, q.Replace(",", "p"))); |
| 58 | + streansquality += $"\"{q.Replace(",", "p")}\":\"" + l + "\","; |
| 59 | + } |
| 60 | + |
| 61 | + streansquality = "\"quality\": {" + Regex.Replace(streansquality, ",$", "") + "}"; |
| 62 | + |
| 63 | + html += "<div class=\"videos__item videos__movie selector " + (firstjson ? "focused" : "") + "\" media=\"\" data-json='{\"method\":\"play\",\"url\":\"" + link + "\",\"title\":\"" + (title ?? original_title) + "\", " + streansquality + "}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">" + v.translation + "</div></div>"; |
| 64 | + firstjson = false; |
| 65 | + } |
| 66 | + #endregion |
| 67 | + } |
| 68 | + else |
| 69 | + { |
| 70 | + #region Сериал |
| 71 | + firstjson = true; |
| 72 | + |
| 73 | + if (s == -1) |
58 | 74 | {
|
59 |
| - string l = Regex.Match(stream, $"\\[{q}\\](https?://[^\\?,\\[ ]+\\.mp4)").Groups[1].Value; |
60 |
| - if (!string.IsNullOrWhiteSpace(l)) |
| 75 | + #region Сезоны |
| 76 | + foreach (var season in root.player_links.playlist) |
61 | 77 | {
|
62 |
| - if (link == null) |
63 |
| - link = l.Replace("https:", "http:"); |
| 78 | + string link = $"{AppInit.Host(HttpContext)}/lite/filmix?postid={postid}&title={HttpUtility.UrlEncode(title)}&original_title={HttpUtility.UrlEncode(original_title)}&s={season.Key}"; |
64 | 79 |
|
65 |
| - streams.Add((l.Replace("https:", "http:"), q.Replace("\\", ""))); |
66 |
| - streansquality += $"\"{q.Replace("\\", "")}\":\"" + l.Replace("https:", "http:") + "\","; |
| 80 | + 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>"; |
| 81 | + firstjson = false; |
67 | 82 | }
|
| 83 | + #endregion |
68 | 84 | }
|
| 85 | + else |
| 86 | + { |
| 87 | + #region Перевод |
| 88 | + int indexTranslate = 0; |
| 89 | + |
| 90 | + foreach (var translation in root.player_links.playlist[s.ToString()]) |
| 91 | + { |
| 92 | + string link = $"{AppInit.Host(HttpContext)}/lite/filmix?postid={postid}&title={HttpUtility.UrlEncode(title)}&original_title={HttpUtility.UrlEncode(original_title)}&s={s}&t={indexTranslate}"; |
| 93 | + string active = t == indexTranslate ? "active" : ""; |
| 94 | + |
| 95 | + indexTranslate++; |
| 96 | + html += "<div class=\"videos__button selector " + active + "\" data-json='{\"method\":\"link\",\"url\":\"" + link + "\"}'>" + translation.Key + "</div>"; |
| 97 | + } |
| 98 | + |
| 99 | + html += "</div><div class=\"videos__line\">"; |
| 100 | + #endregion |
| 101 | + |
| 102 | + #region Серии |
| 103 | + foreach (var episode in root.player_links.playlist[s.ToString()].ElementAt(t).Value) |
| 104 | + { |
| 105 | + string streansquality = string.Empty; |
| 106 | + List<(string link, string quality)> streams = new List<(string, string)>(); |
69 | 107 |
|
70 |
| - streansquality = "\"quality\": {" + Regex.Replace(streansquality, ",$", "") + "}"; |
| 108 | + foreach (int lq in episode.Value.qualities.OrderByDescending(i => i)) |
| 109 | + { |
| 110 | + if (lq > 720) |
| 111 | + continue; |
71 | 112 |
|
72 |
| - html += "<div class=\"videos__item videos__movie selector " + (firstjson ? "focused" : "") + "\" media=\"\" data-json='{\"method\":\"play\",\"url\":\"" + link + "\",\"title\":\"" + (title ?? original_title) + "\", " + streansquality + "}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">" + v.Key + "</div></div>"; |
73 |
| - firstjson = false; |
| 113 | + string l = episode.Value.link.Replace("_%s.mp4", $"_{lq}.mp4"); |
| 114 | + |
| 115 | + streams.Add((l, $"{lq}p")); |
| 116 | + streansquality += $"\"{lq}p\":\"" + l + "\","; |
| 117 | + } |
| 118 | + |
| 119 | + streansquality = "\"quality\": {" + Regex.Replace(streansquality, ",$", "") + "}"; |
| 120 | + |
| 121 | + html += "<div class=\"videos__item videos__movie selector " + (firstjson ? "focused" : "") + "\" media=\"\" s=\"" + s + "\" e=\"" + episode.Key + "\" data-json='{\"method\":\"play\",\"url\":\"" + streams[0].link + "\",\"title\":\"" + $"{title ?? original_title} ({episode.Key} серия)" + "\", " + streansquality + "}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">" + $"{episode.Key} серия" + "</div></div>"; |
| 122 | + firstjson = false; |
| 123 | + } |
| 124 | + #endregion |
| 125 | + } |
| 126 | + #endregion |
74 | 127 | }
|
75 |
| - #endregion |
76 | 128 |
|
77 | 129 | return Content(html + "</div>", "text/html; charset=utf-8");
|
78 | 130 | }
|
79 | 131 |
|
80 | 132 |
|
81 | 133 | #region search
|
82 |
| - async static ValueTask<string> search(string title, int serial, int year) |
| 134 | + async static ValueTask<int> search(string title, int year) |
83 | 135 | {
|
84 |
| - if (serial != 0) |
85 |
| - return null; |
| 136 | + if (year == 0) |
| 137 | + return 0; |
| 138 | + |
| 139 | + var root = await HttpClient.Get<JArray>($"{AppInit.conf.Filmix.apihost}/api/v2/search?story={HttpUtility.UrlEncode(title)}&user_dev_apk=2.0.1&user_dev_id=&user_dev_name=Xiaomi&user_dev_os=11&user_dev_token=&user_dev_vendor=Xiaomi", timeoutSeconds: 8); |
| 140 | + if (root == null || root.Count == 0) |
| 141 | + return 0; |
86 | 142 |
|
87 |
| - var data = new System.Net.Http.StringContent($"scf=fx&story={HttpUtility.UrlEncode($"{title} {year}")}&search_start=0&do=search&subaction=search&years_ot=1902&years_do={DateTime.Today.Year}&kpi_ot=1&kpi_do=10&imdb_ot=1&imdb_do=10&sort_name=&undefined=asc&sort_date=&sort_favorite=&simple=1", Encoding.GetEncoding(1251), "application/x-www-form-urlencoded"); |
88 |
| - string search = await HttpClient.Post($"{AppInit.conf.Filmix.host}/engine/ajax/sphinx_search.php", data, encoding: Encoding.UTF8, timeoutSeconds: 8, useproxy: AppInit.conf.Filmix.useproxy, addHeaders: new List<(string name, string val)>() |
| 143 | + foreach (var item in root) |
89 | 144 | {
|
90 |
| - ("cache-control", "no-cache"), |
91 |
| - ("dnt", "1"), |
92 |
| - ("origin", AppInit.conf.Filmix.host), |
93 |
| - ("pragma", "no-cache"), |
94 |
| - ("x-requested-with", "XMLHttpRequest"), |
95 |
| - ("sec-fetch-dest", "empty"), |
96 |
| - ("sec-fetch-mode", "cors"), |
97 |
| - ("sec-fetch-site", "same-origin") |
98 |
| - }); |
99 |
| - |
100 |
| - if (search == null) |
101 |
| - return null; |
102 |
| - |
103 |
| - string url = Regex.Match(search, "itemprop=\"url\" href=\"(https?://[^\"]+)\"").Groups[1].Value; |
104 |
| - if (string.IsNullOrWhiteSpace(url)) |
105 |
| - return null; |
106 |
| - |
107 |
| - return url; |
| 145 | + if (item.Value<int>("year") == year) |
| 146 | + return item.Value<int>("id"); |
| 147 | + } |
| 148 | + |
| 149 | + return 0; |
108 | 150 | }
|
109 | 151 | #endregion
|
110 | 152 | }
|
|
0 commit comments