Skip to content

Commit 0d4ae94

Browse files
committed
Alloha
1 parent 6f56499 commit 0d4ae94

File tree

7 files changed

+220
-6
lines changed

7 files changed

+220
-6
lines changed

AppInit.cs

+2
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ public class AppInit
8383

8484
public BazonSettings Bazon = new BazonSettings("https://bazon.cc", "", true);
8585

86+
public AllohaSettings Alloha = new AllohaSettings("https://api.alloha.tv", "https://torso.as.alloeclub.com", "", "", true);
87+
8688

8789
public ProxySettings proxy = new ProxySettings();
8890
}

Controllers/ApiController.cs

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ public ActionResult Lite()
3434
if (!string.IsNullOrWhiteSpace(AppInit.conf.Bazon.token))
3535
addonline += "{name:'Bazon',url:'{localhost}/bazon'},";
3636

37+
if (!string.IsNullOrWhiteSpace(AppInit.conf.Alloha.token))
38+
addonline += "{name:'Alloha',url:'{localhost}/alloha'},";
39+
3740
file = file.Replace("{addonline}", addonline);
3841
file = file.Replace("{localhost}", $"{AppInit.Host(HttpContext)}/lite");
3942

Controllers/LITE/Alloha.cs

+164
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
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+
}

Controllers/LITE/Bazon.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ namespace Lampac.Controllers.LITE
1414
{
1515
public class Bazon : BaseController
1616
{
17+
[HttpGet]
1718
[Route("lite/bazon")]
1819
async public Task<ActionResult> Index(long kinopoisk_id, string title, string original_title, string t, int s = -1)
1920
{
@@ -27,9 +28,8 @@ async public Task<ActionResult> Index(long kinopoisk_id, string title, string or
2728

2829
if (AppInit.conf.Bazon.localip)
2930
{
30-
string ipinfo = await HttpClient.Get("https://ipinfo.io/", timeoutSeconds: 5);
31-
userIp = Regex.Match(ipinfo ?? string.Empty, "\"userIp\":\"([^\"]+)\"").Groups[1].Value;
32-
if (string.IsNullOrWhiteSpace(userIp))
31+
userIp = await mylocalip();
32+
if (userIp == null)
3333
return Content(string.Empty);
3434
}
3535

Engine/BaseController.cs

+19
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
using System;
2+
using System.Text.RegularExpressions;
3+
using System.Threading.Tasks;
4+
using Lampac.Engine.CORE;
25
using Microsoft.AspNetCore.Mvc;
36
using Microsoft.Extensions.Caching.Memory;
47
using Microsoft.Extensions.DependencyInjection;
@@ -23,6 +26,22 @@ public JsonResult OnError(string msg)
2326
return new JsonResult(new { success = false, msg });
2427
}
2528

29+
async public ValueTask<string> mylocalip()
30+
{
31+
string key = "BaseController:mylocalip";
32+
if (!memoryCache.TryGetValue(key, out string userIp))
33+
{
34+
string ipinfo = await HttpClient.Get("https://ipinfo.io/", timeoutSeconds: 5);
35+
userIp = Regex.Match(ipinfo ?? string.Empty, "\"userIp\":\"([^\"]+)\"").Groups[1].Value;
36+
if (string.IsNullOrWhiteSpace(userIp))
37+
return null;
38+
39+
memoryCache.Set(key, userIp, DateTime.Now.AddHours(1));
40+
}
41+
42+
return userIp;
43+
}
44+
2645
public new void Dispose()
2746
{
2847
serviceScope?.Dispose();

Models/LITE/AllohaSettings.cs

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
namespace Lampac.Models.LITE
2+
{
3+
public class AllohaSettings
4+
{
5+
public AllohaSettings(string apihost, string linkhost, string token, string secret_token, bool localip)
6+
{
7+
this.apihost = apihost;
8+
this.linkhost = linkhost;
9+
this.token = token;
10+
this.secret_token = secret_token;
11+
this.localip = localip;
12+
}
13+
14+
15+
public string apihost { get; set; }
16+
17+
public string linkhost { get; set; }
18+
19+
public string token { get; set; }
20+
21+
public string secret_token { get; set; }
22+
23+
public bool localip { get; set; }
24+
}
25+
}

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@
1515

1616
***
1717

18-
* Онлайн Videocdn, Rezka, Kinobase, Collaps, Cdnmovies, Filmix
19-
* Клубничка bongacams.com, chaturbate.com, ebalovo.pro, eporner.com, hqporner.com, porntrex.com, spankbang.com, xhamster.com, xnxx.com, xvideos.com
20-
* Public Trackers - kinozal.tv, nnmclub.to, rutor.info, megapeer.vip, torrent.by, bitru.org, anilibria.tv
18+
* Public online - Videocdn, Rezka, Collaps, Filmix
19+
* Private online - Bazon, Alloha
20+
* Public Trackers - kinozal.tv, nnmclub.to, rutor.info, megapeer.vip, torrent.by, bitru.org, anilibria.tv
2121
* Private Trackers - toloka.to, rutracker.net, underver.se, selezen.net, animelayer.ru
22+
* Клубничка bongacams.com, chaturbate.com, ebalovo.pro, eporner.com, hqporner.com, porntrex.com, spankbang.com, xhamster.com, xnxx.com, xvideos.com
2223

2324

2425
***

0 commit comments

Comments
 (0)