|
| 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 | +} |
0 commit comments