Skip to content

Commit a93e6f5

Browse files
committed
anilibria
1 parent ae4c148 commit a93e6f5

12 files changed

+180
-5
lines changed

AppInit.cs

+6-4
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,15 @@ public class AppInit
3838

3939
public TrackerSettings Bitru = new TrackerSettings("https://bitru.org", true, false);
4040

41-
public TrackerSettings Toloka = new TrackerSettings("https://toloka.to", false, false, null);
41+
public TrackerSettings Toloka = new TrackerSettings("https://toloka.to", false, false);
4242

43-
public TrackerSettings Rutracker = new TrackerSettings("https://rutracker.net", false, false, null);
43+
public TrackerSettings Rutracker = new TrackerSettings("https://rutracker.net", false, false);
4444

45-
public TrackerSettings Underverse = new TrackerSettings("https://underver.se", false, false, null);
45+
public TrackerSettings Underverse = new TrackerSettings("https://underver.se", false, false);
4646

47-
public TrackerSettings Selezen = new TrackerSettings("https://selezen.net", false, false, null);
47+
public TrackerSettings Selezen = new TrackerSettings("https://selezen.net", false, false);
48+
49+
public TrackerSettings Anilibria = new TrackerSettings("https://www.anilibria.tv", true, false);
4850

4951

5052
public bool xdb = false;
+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
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+
}

Controllers/JAC/JackettController.cs

+2
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ public ActionResult Jackett(string apikey, string query, string title, string ti
174174
KinozalController.parsePage(host, temptorrents, search, new string[] { "anime" }),
175175
NNMClubController.parsePage(host, temptorrents, search, new string[] { "anime" }),
176176
RutrackerController.parsePage(host, temptorrents, search, new string[] { "anime" }),
177+
AniLibriaController.parsePage(host, temptorrents, search),
177178

178179
}, AppInit.conf.timeoutSeconds * 1000 + 2_000);
179180
#endregion
@@ -192,6 +193,7 @@ public ActionResult Jackett(string apikey, string query, string title, string ti
192193
RutrackerController.parsePage(host, temptorrents, search, null),
193194
UnderverseController.parsePage(temptorrents, search, null),
194195
SelezenController.parsePage(host, temptorrents, search),
196+
AniLibriaController.parsePage(host, temptorrents, search),
195197

196198
}, AppInit.conf.timeoutSeconds * 1000 + 2_000);
197199
#endregion

Engine/Parse/tParse.cs

+13
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ namespace Lampac.Engine.Parse
66
{
77
public static class tParse
88
{
9+
#region BytesToString
10+
public static string BytesToString(long byteCount)
11+
{
12+
string[] suf = { "Byt", "KB", "MB", "GB", "TB", "PB", "EB" };
13+
if (byteCount == 0)
14+
return "0 " + suf[0];
15+
long bytes = Math.Abs(byteCount);
16+
int place = Convert.ToInt32(Math.Floor(Math.Log(bytes, 1024)));
17+
double num = Math.Round(bytes / Math.Pow(1024, place), 1);
18+
return (Math.Sign(byteCount) * num).ToString().Replace(",", ".") + " " + suf[place];
19+
}
20+
#endregion
21+
922
#region ParseCreateTime
1023
public static DateTime ParseCreateTime(string line, string format)
1124
{

Models/JAC/AniLibria/Names.cs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace Lampac.Models.JAC.AniLibria
2+
{
3+
public class Names
4+
{
5+
public string ru { get; set; }
6+
7+
public string en { get; set; }
8+
}
9+
}

Models/JAC/AniLibria/Quality.cs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
namespace Lampac.Models.JAC.AniLibria
2+
{
3+
public class Quality
4+
{
5+
public string @string { get; set; }
6+
7+
public int resolution { get; set; }
8+
9+
public string encoder { get; set; }
10+
}
11+
}

Models/JAC/AniLibria/RootObject.cs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
namespace Lampac.Models.JAC.AniLibria
2+
{
3+
public class RootObject
4+
{
5+
public Names names { get; set; }
6+
7+
public string code { get; set; }
8+
9+
public Torrents torrents { get; set; }
10+
11+
public Season season { get; set; }
12+
13+
public long updated { get; set; }
14+
15+
public long last_change { get; set; }
16+
}
17+
}

Models/JAC/AniLibria/Season.cs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace Lampac.Models.JAC.AniLibria
2+
{
3+
public class Season
4+
{
5+
public int year { get; set; }
6+
7+
public int code { get; set; }
8+
}
9+
}

Models/JAC/AniLibria/Series.cs

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace Lampac.Models.JAC.AniLibria
2+
{
3+
public class Series
4+
{
5+
public string @string { get; set; }
6+
}
7+
}

Models/JAC/AniLibria/Torrent.cs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
namespace Lampac.Models.JAC.AniLibria
2+
{
3+
public class Torrent
4+
{
5+
public Series series { get; set; }
6+
7+
public Quality quality { get; set; }
8+
9+
public int leechers { get; set; }
10+
11+
public int seeders { get; set; }
12+
13+
public string url { get; set; }
14+
15+
public long total_size { get; set; }
16+
}
17+
}

Models/JAC/AniLibria/Torrents.cs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
using System.Collections.Generic;
2+
3+
namespace Lampac.Models.JAC.AniLibria
4+
{
5+
public class Torrents
6+
{
7+
public List<Torrent> list { get; set; }
8+
}
9+
}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
* Онлайн Videocdn, Rezka, Kinobase, Collaps, Cdnmovies, Filmix
1919
* Клубничка bongacams.com, chaturbate.com, ebalovo.pro, eporner.com, hqporner.com, porntrex.com, spankbang.com, xhamster.com, xnxx.com, xvideos.com
20-
* Трекеры kinozal.tv, nnmclub.to, rutor.info, megapeer.vip, torrent.by, bitru.org, toloka.to (нужна авторизация), rutracker.net (нужна авторизация), underver.se (нужна авторизация), selezen.net (нужна авторизация)
20+
* Трекеры kinozal.tv, nnmclub.to, rutor.info, megapeer.vip, torrent.by, bitru.org, anilibria.tv, toloka.to (нужна авторизация), rutracker.net (нужна авторизация), underver.se (нужна авторизация), selezen.net (нужна авторизация)
2121

2222

2323
***

0 commit comments

Comments
 (0)