|
| 1 | +using System; |
| 2 | +using System.Collections.Generic; |
| 3 | +using System.Threading.Tasks; |
| 4 | +using Microsoft.AspNetCore.Mvc; |
| 5 | +using Lampac.Engine; |
| 6 | +using Lampac.Engine.CORE; |
| 7 | +using Lampac.Models.JAC.AniLibria; |
| 8 | +using System.Collections.Concurrent; |
| 9 | +using Lampac.Models.JAC; |
| 10 | +using System.Web; |
| 11 | +using Microsoft.Extensions.Caching.Memory; |
| 12 | +using Lampac.Engine.Parse; |
| 13 | + |
| 14 | +namespace Lampac.Controllers.JAC |
| 15 | +{ |
| 16 | + [Route("anilibria/[action]")] |
| 17 | + public class AniLibriaController : BaseController |
| 18 | + { |
| 19 | + #region parseMagnet |
| 20 | + async public Task<ActionResult> parseMagnet(string url, string code) |
| 21 | + { |
| 22 | + string key = $"anilibria:parseMagnet:{url}"; |
| 23 | + if (Startup.memoryCache.TryGetValue(key, out byte[] _m)) |
| 24 | + return File(_m, "application/x-bittorrent"); |
| 25 | + |
| 26 | + byte[] _t = await HttpClient.Download($"{AppInit.conf.Anilibria.host}/{url}", referer: $"{AppInit.conf.Anilibria.host}/release/{code}.html", timeoutSeconds: 10, useproxy: AppInit.conf.Anilibria.useproxy); |
| 27 | + if (_t != null) |
| 28 | + { |
| 29 | + Startup.memoryCache.Set(key, _t, DateTime.Now.AddMinutes(AppInit.conf.magnetCacheToMinutes)); |
| 30 | + return File(_t, "application/x-bittorrent"); |
| 31 | + } |
| 32 | + |
| 33 | + return Content("error"); |
| 34 | + } |
| 35 | + #endregion |
| 36 | + |
| 37 | + #region parsePage |
| 38 | + async public static Task<bool> parsePage(string host, ConcurrentBag<TorrentDetails> torrents, string query) |
| 39 | + { |
| 40 | + if (!AppInit.conf.Anilibria.enable) |
| 41 | + return false; |
| 42 | + |
| 43 | + var roots = await HttpClient.Get<List<RootObject>>("https://api.anilibria.tv/v2/searchTitles?search=" + HttpUtility.UrlEncode(query), timeoutSeconds: AppInit.conf.timeoutSeconds, useproxy: AppInit.conf.Anilibria.useproxy, IgnoreDeserializeObject: true); |
| 44 | + if (roots == null || roots.Count == 0) |
| 45 | + return false; |
| 46 | + |
| 47 | + foreach (var root in roots) |
| 48 | + { |
| 49 | + DateTime createTime = new DateTime(1970, 1, 1, 0, 0, 0, 0).AddSeconds(root.last_change > root.updated ? root.last_change : root.updated); |
| 50 | + |
| 51 | + foreach (var torrent in root.torrents.list) |
| 52 | + { |
| 53 | + if (string.IsNullOrWhiteSpace(root.code) || 480 >= torrent.quality.resolution && string.IsNullOrWhiteSpace(torrent.quality.encoder) && string.IsNullOrWhiteSpace(torrent.url)) |
| 54 | + continue; |
| 55 | + |
| 56 | + torrents.Add(new TorrentDetails() |
| 57 | + { |
| 58 | + trackerName = "anilibria", |
| 59 | + types = new string[] { "anime" }, |
| 60 | + url = $"{AppInit.conf.Anilibria.host}/release/{root.code}.html", |
| 61 | + title = $"{root.names.ru} / {root.names.en} {root.season.year} (s{root.season.code}, e{torrent.series.@string}) [{torrent.quality.@string}]", |
| 62 | + sid = torrent.seeders, |
| 63 | + pir = torrent.leechers, |
| 64 | + createTime = createTime, |
| 65 | + parselink = $"{host}/anilibria/parsemagnet?url={HttpUtility.UrlEncode(torrent.url)}&code={root.code}", |
| 66 | + sizeName = tParse.BytesToString(torrent.total_size), |
| 67 | + name = root.names.ru, |
| 68 | + originalname = root.names.en, |
| 69 | + relased = root.season.year |
| 70 | + }); |
| 71 | + } |
| 72 | + } |
| 73 | + |
| 74 | + |
| 75 | + return true; |
| 76 | + } |
| 77 | + #endregion |
| 78 | + } |
| 79 | +} |
0 commit comments