Skip to content

Commit aefe988

Browse files
committed
Kinotochka
1 parent 4c60354 commit aefe988

File tree

5 files changed

+91
-4
lines changed

5 files changed

+91
-4
lines changed

AppInit.cs

+2
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ public class AppInit
8888

8989
public OnlinesSettings Kinokrad = new OnlinesSettings("https://kinokrad.cc", false);
9090

91+
public OnlinesSettings Kinotochka = new OnlinesSettings("https://kinotochka.co", false);
92+
9193
public OnlinesSettings Filmix = new OnlinesSettings("http://filmixapp.cyou", false);
9294

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

Controllers/LITE/Kinobase.cs

+6-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,9 @@ string getStreamLink(string _data)
8585
{
8686
if (!string.IsNullOrWhiteSpace(smatch.Groups[1].Value) && !string.IsNullOrWhiteSpace(smatch.Groups[2].Value))
8787
{
88-
html += "<div class=\"videos__item videos__movie selector focused\" media=\"\" data-json='{\"method\":\"play\",\"url\":\"" + smatch.Groups[2].Value + "\",\"title\":\"" + (title ?? original_title) + "\", \"subtitles\": [" + subtitles + "]}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">" + smatch.Groups[1].Value + "</div></div>";
88+
html += "<div class=\"videos__item videos__movie selector " + (firstjson ? "focused" : "") + "\" media=\"\" data-json='{\"method\":\"play\",\"url\":\"" + smatch.Groups[2].Value + "\",\"title\":\"" + (title ?? original_title) + "\", \"subtitles\": [" + subtitles + "]}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">" + smatch.Groups[1].Value + "</div></div>";
8989
end = true;
90+
firstjson = true;
9091
}
9192

9293
smatch = smatch.NextMatch();
@@ -102,7 +103,10 @@ string getStreamLink(string _data)
102103
{
103104
string hls = new Regex($"\\[{quality}p?\\]" + "(\\{[^\\}]+\\})?(https?://[^\\[\\|,;\n\r\t ]+.m3u8)").Match(content).Groups[2].Value;
104105
if (!string.IsNullOrEmpty(hls))
105-
html += "<div class=\"videos__item videos__movie selector focused\" media=\"\" data-json='{\"method\":\"play\",\"url\":\"" + hls + "\",\"title\":\"" + (title ?? original_title) + "\", \"subtitles\": [" + subtitles + "]}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">"+ quality + "p</div></div>";
106+
{
107+
html += "<div class=\"videos__item videos__movie selector " + (firstjson ? "focused" : "") + "\" media=\"\" data-json='{\"method\":\"play\",\"url\":\"" + hls + "\",\"title\":\"" + (title ?? original_title) + "\", \"subtitles\": [" + subtitles + "]}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">" + quality + "p</div></div>";
108+
firstjson = true;
109+
}
106110
}
107111
}
108112
#endregion

Controllers/LITE/Kinokrad.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ async public Task<ActionResult> Index(string title, int year)
2424
if (content == null)
2525
return Content(string.Empty);
2626

27+
bool firstjson = true;
2728
string html = string.Empty;
2829

2930
foreach (var quality in new List<string> { "1080", "720", "480", "360", "240" })
@@ -32,7 +33,8 @@ async public Task<ActionResult> Index(string title, int year)
3233
if (!string.IsNullOrEmpty(hls))
3334
{
3435
hls = $"{AppInit.Host(HttpContext)}/proxy/{hls}";
35-
html += "<div class=\"videos__item videos__movie selector focused\" media=\"\" data-json='{\"method\":\"play\",\"url\":\"" + hls + "\",\"title\":\"" + title + "\"}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">" + quality + "p</div></div>";
36+
html += "<div class=\"videos__item videos__movie selector " + (firstjson ? "focused" : "") + "\" media=\"\" data-json='{\"method\":\"play\",\"url\":\"" + hls + "\",\"title\":\"" + title + "\"}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">" + quality + "p</div></div>";
37+
firstjson = true;
3638
}
3739
}
3840

Controllers/LITE/Kinotochka.cs

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
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.Web;
7+
using Lampac.Engine;
8+
using Lampac.Engine.CORE;
9+
using System.Linq;
10+
11+
namespace Lampac.Controllers.LITE
12+
{
13+
public class Kinotochka : BaseController
14+
{
15+
[HttpGet]
16+
[Route("lite/kinotochka")]
17+
async public Task<ActionResult> Index(string title, string original_title, int year)
18+
{
19+
if (year == 0)
20+
return Content(string.Empty);
21+
22+
string file = await embed(memoryCache, title, original_title, year);
23+
if (file == null)
24+
return Content(string.Empty);
25+
26+
string html = "<div class=\"videos__line\">";
27+
28+
file = $"{AppInit.Host(HttpContext)}/proxy/{file}";
29+
html += "<div class=\"videos__item videos__movie selector focused\" media=\"\" data-json='{\"method\":\"play\",\"url\":\"" + file + "\",\"title\":\"" + title + "\"}'><div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">По умолчанию</div></div>";
30+
31+
return Content(html + "</div>", "text/html; charset=utf-8");
32+
}
33+
34+
35+
#region embed
36+
async static ValueTask<string> embed(IMemoryCache memoryCache, string title, string original_title, int year)
37+
{
38+
string memKey = $"kinotochka:view:{title}:{original_title}:{year}";
39+
40+
if (!memoryCache.TryGetValue(memKey, out string file))
41+
{
42+
System.Net.WebProxy proxy = null;
43+
if (AppInit.conf.Kinotochka.useproxy)
44+
proxy = HttpClient.webProxy();
45+
46+
string search = await HttpClient.Post($"{AppInit.conf.Kinotochka.host}/index.php?do=search", $"do=search&subaction=search&search_start=0&full_search=0&result_from=1&story={HttpUtility.UrlEncode(original_title ?? title)}", timeoutSeconds: 8, proxy: proxy);
47+
if (search == null)
48+
return null;
49+
50+
string link = null;
51+
foreach (string row in search.Split("sres-wrap clearfix").Skip(1))
52+
{
53+
if (Regex.Match(row, "<h2>[^\\(]+ \\(([0-9]{4})\\)</h2>").Groups[1].Value == year.ToString())
54+
{
55+
link = Regex.Match(row, "href=\"(https?://[^/]+/[^\"]+\\.html)\"").Groups[1].Value;
56+
if (!string.IsNullOrWhiteSpace(link))
57+
break;
58+
}
59+
}
60+
61+
if (string.IsNullOrWhiteSpace(link))
62+
return null;
63+
64+
string news = await HttpClient.Get(link, timeoutSeconds: 8, proxy: proxy);
65+
if (news == null)
66+
return null;
67+
68+
file = Regex.Match(news, "file:\"(https?://[^\"]+\\.mp4)\"").Groups[1].Value;
69+
if (string.IsNullOrWhiteSpace(file))
70+
return null;
71+
72+
memoryCache.Set(memKey, file, DateTime.Now.AddMinutes(10));
73+
}
74+
75+
return file;
76+
}
77+
#endregion
78+
}
79+
}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
***
1717

18-
* Public online - Videocdn, Rezka, Kinobase, Collaps, Filmix, Ashdi (UA), Eneyida (UA), Kinokrad
18+
* Public online - Videocdn, Rezka, Kinobase, Collaps, Filmix, Ashdi (UA), Eneyida (UA), Kinokrad, Kinotochka
1919
* Private online - Bazon, Alloha, HDVB, Kodik
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

0 commit comments

Comments
 (0)