Skip to content

Commit 78c7a38

Browse files
committed
update filmix
1 parent fd37665 commit 78c7a38

File tree

7 files changed

+138
-68
lines changed

7 files changed

+138
-68
lines changed

AppInit.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public class AppInit
7878

7979
public CollapsSettings Collaps = new CollapsSettings("https://api.delivembd.ws", false);
8080

81-
public FilmixSettings Filmix = new FilmixSettings("https://filmix.ac", false);
81+
public FilmixSettings Filmix = new FilmixSettings("http://filmixapp.cyou", false);
8282

8383

8484
public ProxySettings proxy = new ProxySettings();

Controllers/JAC/JackettController.cs

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public ActionResult Jackett(string apikey, string query, string title, string ti
3838
title = g[1].Value;
3939
title_original = g[2].Value;
4040
year = int.Parse(g[3].Value);
41+
search = title_original ?? title;
4142
}
4243
}
4344
#endregion

Controllers/LITE/Filmix.cs

+105-63
Original file line numberDiff line numberDiff line change
@@ -3,108 +3,150 @@
33
using System;
44
using System.Web;
55
using System.Collections.Generic;
6-
using System.Text;
76
using System.Text.RegularExpressions;
87
using Lampac.Engine;
98
using Lampac.Engine.CORE;
109
using Lampac.Models.LITE.Filmix;
10+
using Newtonsoft.Json.Linq;
11+
using System.Linq;
12+
using Microsoft.Extensions.Caching.Memory;
1113

1214
namespace Lampac.Controllers.LITE
1315
{
1416
public class Filmix : BaseController
1517
{
1618
[HttpGet]
1719
[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)
1921
{
20-
if (serial != 0 || year == 0)
22+
postid = postid == 0 ? await search(title ?? original_title, year) : postid;
23+
if (postid == 0)
2124
return Content(string.Empty);
2225

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))
2928
{
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+
}
4335

4436
bool firstjson = true;
4537
string html = "<div class=\"videos__line\">";
4638

47-
#region Фильм
48-
foreach (var v in root.message.translations.video)
39+
if (root.player_links.movie != null && root.player_links.movie.Count > 0)
4940
{
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;
5252

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;
5656

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)
5874
{
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)
6177
{
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}";
6479

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;
6782
}
83+
#endregion
6884
}
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)>();
69107

70-
streansquality = "\"quality\": {" + Regex.Replace(streansquality, ",$", "") + "}";
108+
foreach (int lq in episode.Value.qualities.OrderByDescending(i => i))
109+
{
110+
if (lq > 720)
111+
continue;
71112

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
74127
}
75-
#endregion
76128

77129
return Content(html + "</div>", "text/html; charset=utf-8");
78130
}
79131

80132

81133
#region search
82-
async static ValueTask<string> search(string title, int serial, int year)
134+
async static ValueTask<int> search(string title, int year)
83135
{
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;
86142

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)
89144
{
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;
108150
}
109151
#endregion
110152
}

Models/LITE/Filmix/FilmixSettings.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
{
33
public class FilmixSettings
44
{
5-
public FilmixSettings(string host, bool useproxy)
5+
public FilmixSettings(string apihost, bool useproxy)
66
{
7-
this.host = host;
7+
this.apihost = apihost;
88
this.useproxy = useproxy;
99
}
1010

1111

12-
public string host { get; set; }
12+
public string apihost { get; set; }
1313

1414
public bool useproxy { get; set; }
1515
}

Models/LITE/Filmix/Movie.cs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using System.Collections.Generic;
2+
3+
namespace Lampac.Models.LITE.Filmix
4+
{
5+
public class Movie
6+
{
7+
public string link { get; set; }
8+
9+
public string translation { get; set; }
10+
11+
public List<int> qualities { get; set; }
12+
}
13+
}

Models/LITE/Filmix/PlayerLinks.cs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System.Collections.Generic;
2+
3+
namespace Lampac.Models.LITE.Filmix
4+
{
5+
public class PlayerLinks
6+
{
7+
public List<Movie> movie { get; set; }
8+
9+
/// <summary>
10+
/// сезон, (озвучка, (серия, item))
11+
/// </summary>
12+
public Dictionary<string, Dictionary<string, Dictionary<string, Movie>>> playlist { get; set; }
13+
}
14+
}

Models/LITE/Filmix/RootObject.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
{
33
public class RootObject
44
{
5-
public Message message { get; set; }
5+
public PlayerLinks player_links { get; set; }
66
}
77
}

0 commit comments

Comments
 (0)