Skip to content

Commit 8652314

Browse files
committed
IframeVideo
1 parent d2ff1fd commit 8652314

File tree

7 files changed

+152
-6
lines changed

7 files changed

+152
-6
lines changed

AppInit.cs

+7-3
Original file line numberDiff line numberDiff line change
@@ -91,18 +91,22 @@ public class AppInit
9191

9292
public FilmixSettings Filmix = new FilmixSettings("http://filmixapp.cyou");
9393

94+
9495
public VCDNSettings VCDN = new VCDNSettings("https://videocdn.tv", "3i40G5TSECmLF77oAqnEgbx61ZWaOYaE", "http://58.svetacdn.in", false);
9596

96-
public VCDNSettings VideoAPI = new VCDNSettings("http://5100.svetacdn.in", "qR0taraBKvEZULgjoIRj69AJ7O6Pgl9O", null, false);
97+
public OnlinesSettings VideoAPI = new OnlinesSettings("http://5100.svetacdn.in", token: "qR0taraBKvEZULgjoIRj69AJ7O6Pgl9O");
98+
99+
public IframeVideoSettings IframeVideo = new IframeVideoSettings("https://iframe.video");
100+
101+
public HDVBSettings HDVB = new HDVBSettings("https://apivb.info", "");
102+
97103

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

100106
public AllohaSettings Alloha = new AllohaSettings("https://api.alloha.tv", "https://torso.as.alloeclub.com", "", "", true);
101107

102108
public KodikSettings Kodik = new KodikSettings("https://kodikapi.com", "http://kodik.biz", "", "", true);
103109

104-
public HDVBSettings HDVB = new HDVBSettings("https://apivb.info", "");
105-
106110

107111
public ProxySettings proxy = new ProxySettings();
108112
}

Controllers/ApiController.cs

+3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ public ActionResult Lite()
4343
if (!string.IsNullOrWhiteSpace(AppInit.conf.HDVB.token))
4444
addonline += "{name:'HDVB',url:'{localhost}/hdvb'},";
4545

46+
if (!string.IsNullOrWhiteSpace(AppInit.conf.IframeVideo.token))
47+
addonline += "{name:'IframeVideo',url:'{localhost}/iframevideo'},";
48+
4649
file = file.Replace("{addonline}", addonline);
4750
file = file.Replace("{localhost}", $"{AppInit.Host(HttpContext)}/lite");
4851

Controllers/LITE/IframeVideo.cs

+117
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
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 Lampac.Engine;
10+
using Lampac.Engine.CORE;
11+
12+
namespace Lampac.Controllers.LITE
13+
{
14+
public class IframeVideo : BaseController
15+
{
16+
[HttpGet]
17+
[Route("lite/iframevideo")]
18+
async public Task<ActionResult> Index(string imdb_id, long kinopoisk_id, string title, string original_title)
19+
{
20+
var frame = await iframe(memoryCache, imdb_id, kinopoisk_id);
21+
if (frame.type == null || (frame.type != "movie" && frame.type != "anime"))
22+
return Content(string.Empty);
23+
24+
bool firstjson = true;
25+
string html = "<div class=\"videos__line\">";
26+
27+
var match = new Regex("<a href='/[^/]+/([^/]+)/iframe[^']+' [^>]+><span title='[^']+'>([^<]+)</span>").Match(frame.content);
28+
while (match.Success)
29+
{
30+
if (!string.IsNullOrWhiteSpace(match.Groups[1].Value))
31+
{
32+
string link = $"{AppInit.Host(HttpContext)}/lite/iframevideo/video?title={HttpUtility.UrlEncode(title)}&original_title={HttpUtility.UrlEncode(original_title)}&type={frame.type}&cid={frame.cid}&token={match.Groups[1].Value}";
33+
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\">" + match.Groups[2].Value + "</div></div>";
34+
firstjson = false;
35+
}
36+
match = match.NextMatch();
37+
}
38+
39+
if (firstjson)
40+
{
41+
string _v = Regex.Match(html, "<span class='muted'><span [^>]+>([^<]+)</span>").Groups[1].Value;
42+
if (string.IsNullOrWhiteSpace(_v))
43+
_v = Regex.Match(html, "<span class='muted'>([^<\n\r]+)").Groups[1].Value;
44+
45+
string token = Regex.Match(frame.path, "/[^/]+/([^/]+)/iframe").Groups[1].Value;
46+
if (string.IsNullOrWhiteSpace(token))
47+
return Content(string.Empty);
48+
49+
string voice = string.IsNullOrWhiteSpace(_v) ? "По умолчанию" : _v;
50+
string link = $"{AppInit.Host(HttpContext)}/lite/iframevideo/video?title={HttpUtility.UrlEncode(title)}&original_title={HttpUtility.UrlEncode(original_title)}&type={frame.type}&cid={frame.cid}&token={token}";
51+
html += "<div class=\"videos__item videos__movie selector focused\" media=\"\" data-json='{\"method\":\"call\",\"url\":\"" + link + "\"}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">" + voice + "</div></div>";
52+
}
53+
54+
return Content(html + "</div>", "text/html; charset=utf-8");
55+
}
56+
57+
#region Video
58+
[HttpGet]
59+
[Route("lite/iframevideo/video")]
60+
async public Task<ActionResult> Video(string type, int cid, string token, string title, string original_title)
61+
{
62+
string memKey = $"iframevideo:view:video:{type}:{cid}:{token}";
63+
if (!memoryCache.TryGetValue(memKey, out string urim3u8))
64+
{
65+
string json = await HttpClient.Post($"{AppInit.conf.IframeVideo.cdnhost}/loadvideo", $"token={token}&type={type}&season=&episode=&mobile=false&id={cid}&qt=720", timeoutSeconds: 10, addHeaders: new List<(string name, string val)>()
66+
{
67+
("Origin", AppInit.conf.IframeVideo.cdnhost),
68+
("Referer", $"{AppInit.conf.IframeVideo.cdnhost}/"),
69+
("Sec-Fetch-Dest", "empty"),
70+
("Sec-Fetch-Mode", "cors"),
71+
("Sec-Fetch-Site", "same-origin"),
72+
("X-REF", "no-referer")
73+
});
74+
75+
if (json == null)
76+
return Content(string.Empty);
77+
78+
urim3u8 = Regex.Match(json, "{\"src\":\"([^\"]+)\"").Groups[1].Value.Replace("\\", "");
79+
if (string.IsNullOrWhiteSpace(urim3u8))
80+
return Content(string.Empty);
81+
82+
memoryCache.Set(memKey, urim3u8, TimeSpan.FromMinutes(5));
83+
}
84+
85+
return Content("{\"method\":\"play\",\"url\":\"" + urim3u8 + "\",\"title\":\"" + (title ?? original_title) + "\"}", "application/json; charset=utf-8");
86+
}
87+
#endregion
88+
89+
90+
#region iframe
91+
async ValueTask<(string content, string type, int cid, string path)> iframe(IMemoryCache memoryCache, string imdb_id, long kinopoisk_id)
92+
{
93+
string memKey = $"iframevideo:view:{imdb_id}:{kinopoisk_id}";
94+
95+
if (!memoryCache.TryGetValue(memKey, out (string content, string type, int cid, string path) res))
96+
{
97+
var root = await HttpClient.Get<JObject>($"{AppInit.conf.IframeVideo.apihost}/api/v2/movies?kp={kinopoisk_id}&imdb={imdb_id}&api_token={AppInit.conf.IframeVideo.token}", timeoutSeconds: 8);
98+
if (root == null)
99+
return (null, null, 0, null);
100+
101+
var item = root.Value<JArray>("results")[0];
102+
res.cid = item.Value<int>("cid");
103+
res.path = item.Value<string>("path");
104+
res.type = item.Value<string>("type");
105+
res.content = await HttpClient.Get(res.path, timeoutSeconds: 8);
106+
107+
if (res.content == null)
108+
return (null, null, 0, null);
109+
110+
memoryCache.Set(memKey, res, TimeSpan.FromMinutes(10));
111+
}
112+
113+
return res;
114+
}
115+
#endregion
116+
}
117+
}

Controllers/LITE/VideoAPI.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async public static ValueTask<string> iframe(IMemoryCache memoryCache, string im
5555
string memKeyIframesrc = $"videoapi:view:iframe_src:{imdb_id}:{kinopoisk_id}";
5656
if (!memoryCache.TryGetValue(memKeyIframesrc, out string code))
5757
{
58-
var json = await HttpClient.Get<JObject>($"{AppInit.conf.VideoAPI.apihost}/api/short?api_token={AppInit.conf.VideoAPI.token}" + $"&kinopoisk_id={kinopoisk_id}&imdb_id={imdb_id}", timeoutSeconds: 8, useproxy: AppInit.conf.VideoAPI.useproxy);
58+
var json = await HttpClient.Get<JObject>($"{AppInit.conf.VideoAPI.host}/api/short?api_token={AppInit.conf.VideoAPI.token}" + $"&kinopoisk_id={kinopoisk_id}&imdb_id={imdb_id}", timeoutSeconds: 8, useproxy: AppInit.conf.VideoAPI.useproxy);
5959
string iframe_src = json.Value<JArray>("data").First.Value<string>("iframe_src");
6060
if (string.IsNullOrWhiteSpace(iframe_src))
6161
return null;

Models/LITE/IframeVideoSettings.cs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
namespace Lampac.Models.LITE
2+
{
3+
public class IframeVideoSettings
4+
{
5+
public IframeVideoSettings(string host)
6+
{
7+
apihost = host;
8+
}
9+
10+
11+
public string apihost { get; set; }
12+
13+
public string cdnhost { get; set; }
14+
15+
public string token { get; set; }
16+
17+
public bool streamproxy { get; set; }
18+
}
19+
}

Models/LITE/OnlinesSettings.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22
{
33
public class OnlinesSettings
44
{
5-
public OnlinesSettings(string host, bool useproxy)
5+
public OnlinesSettings(string host, bool useproxy = false, string token = null)
66
{
77
this.host = host;
8+
this.token = token;
89
this.useproxy = useproxy;
910
}
1011

1112

1213
public string host { get; set; }
1314

15+
public string token { get; set; }
16+
1417
public bool useproxy { get; set; }
1518

1619
public bool streamproxy { get; set; }

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
***
1717

1818
* Public online - Videocdn, Rezka, Kinobase, Collaps, Filmix, Kinokrad, Kinotochka, VideoAPI (ENG), Ashdi (UA), Eneyida (UA)
19-
* Private online - Bazon, Alloha, HDVB, Kodik
19+
* Private online - HDVB (FREE), IframeVideo (FREE), Bazon (PAY), Alloha (PAY), Kodik (PAY)
2020
* 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
2222
* Клубничка bongacams.com, chaturbate.com, ebalovo.pro, eporner.com, hqporner.com, porntrex.com, spankbang.com, xhamster.com, xnxx.com, xvideos.com

0 commit comments

Comments
 (0)