Skip to content

Commit 003a9ca

Browse files
committed
fileCacheInactiveDay
1 parent c9de5cf commit 003a9ca

File tree

5 files changed

+94
-50
lines changed

5 files changed

+94
-50
lines changed

AppInit.cs

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ public class AppInit
2323

2424
public int htmlCacheToMinutes = 1;
2525

26+
public int fileCacheInactiveDay = 20;
27+
2628
public int magnetCacheToMinutes = 2;
2729

2830
public bool emptycache = false;

Engine/CRON/CacheCron.cs

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
using System;
2+
using System.IO;
3+
using System.Threading.Tasks;
4+
5+
namespace Lampac.Engine.CRON
6+
{
7+
public static class CacheCron
8+
{
9+
async public static Task Run()
10+
{
11+
while (true)
12+
{
13+
foreach (string path in new string[] { "html", "img", "torrent" })
14+
{
15+
try
16+
{
17+
foreach (string infile in Directory.GetFiles($"cache/{path}", "*", SearchOption.AllDirectories))
18+
{
19+
var fileinfo = new FileInfo(infile);
20+
if (DateTime.Now > fileinfo.LastWriteTime.AddDays(AppInit.conf.fileCacheInactiveDay))
21+
fileinfo.Delete();
22+
}
23+
}
24+
catch { }
25+
}
26+
27+
await Task.Delay(1000 * 60 * 60);
28+
}
29+
}
30+
}
31+
}

Engine/CRON/LampaCron.cs

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
using Lampac.Engine.CORE;
2+
using System.IO;
3+
using System.IO.Compression;
4+
using System.Threading.Tasks;
5+
6+
namespace Lampac.Engine.CRON
7+
{
8+
public static class LampaCron
9+
{
10+
async public static Task Run()
11+
{
12+
while (true)
13+
{
14+
try
15+
{
16+
async ValueTask<bool> update()
17+
{
18+
if (!AppInit.conf.autoupdatelampahtml)
19+
return false;
20+
21+
if (!File.Exists("wwwroot/lampa-main/app.min.js"))
22+
return true;
23+
24+
string gitapp = await HttpClient.Get("https://raw.githubusercontent.com/yumata/lampa/main/app.min.js");
25+
if (gitapp == null || !gitapp.Contains("author: 'Yumata'"))
26+
return false;
27+
28+
string currentapp = await File.ReadAllTextAsync("wwwroot/lampa-main/app.min.js");
29+
30+
if (CrypTo.md5(gitapp) != CrypTo.md5(currentapp))
31+
return true;
32+
33+
return false;
34+
}
35+
36+
if (await update())
37+
{
38+
byte[] array = await HttpClient.Download("https://github.com/yumata/lampa/archive/refs/heads/main.zip", MaxResponseContentBufferSize: 20_000_000, timeoutSeconds: 40);
39+
if (array != null)
40+
{
41+
await File.WriteAllBytesAsync("wwwroot/lampa-main.zip", array);
42+
ZipFile.ExtractToDirectory("wwwroot/lampa-main.zip", "wwwroot/", overwriteFiles: true);
43+
44+
string html = await File.ReadAllTextAsync("wwwroot/lampa-main/index.html");
45+
html = html.Replace("</body>", "<script src=\"/lampainit.js\"></script></body>");
46+
47+
await File.WriteAllTextAsync("wwwroot/lampa-main/index.html", html);
48+
}
49+
}
50+
}
51+
catch { }
52+
53+
await Task.Delay(1000 * 60 * 20);
54+
}
55+
}
56+
}
57+
}

Program.cs

+3-50
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
using System.Globalization;
55
using System.Text;
66
using System.Threading;
7-
using System.Threading.Tasks;
8-
using System.IO;
9-
using Lampac.Engine.CORE;
10-
using System.IO.Compression;
7+
using Lampac.Engine.CRON;
118

129
namespace Lampac
1310
{
@@ -18,52 +15,8 @@ public static void Main(string[] args)
1815
CultureInfo.CurrentCulture = new CultureInfo("ru-RU");
1916
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
2017

21-
ThreadPool.QueueUserWorkItem(async _ =>
22-
{
23-
while (true)
24-
{
25-
try
26-
{
27-
async ValueTask<bool> update()
28-
{
29-
if (!AppInit.conf.autoupdatelampahtml)
30-
return false;
31-
32-
if (!File.Exists("wwwroot/lampa-main/app.min.js"))
33-
return true;
34-
35-
string gitapp = await HttpClient.Get("https://raw.githubusercontent.com/yumata/lampa/main/app.min.js");
36-
if (gitapp == null || !gitapp.Contains("author: 'Yumata'"))
37-
return false;
38-
39-
string currentapp = await File.ReadAllTextAsync("wwwroot/lampa-main/app.min.js");
40-
41-
if (CrypTo.md5(gitapp) != CrypTo.md5(currentapp))
42-
return true;
43-
44-
return false;
45-
}
46-
47-
if (await update())
48-
{
49-
byte[] array = await HttpClient.Download("https://github.com/yumata/lampa/archive/refs/heads/main.zip", MaxResponseContentBufferSize: 20_000_000, timeoutSeconds: 40);
50-
if (array != null)
51-
{
52-
await File.WriteAllBytesAsync("wwwroot/lampa-main.zip", array);
53-
ZipFile.ExtractToDirectory("wwwroot/lampa-main.zip", "wwwroot/", overwriteFiles: true);
54-
55-
string html = await File.ReadAllTextAsync("wwwroot/lampa-main/index.html");
56-
html = html.Replace("</body>", "<script src=\"/lampainit.js\"></script></body>");
57-
58-
await File.WriteAllTextAsync("wwwroot/lampa-main/index.html", html);
59-
}
60-
}
61-
}
62-
catch { }
63-
64-
await Task.Delay(1000 * 60 * 20);
65-
}
66-
});
18+
ThreadPool.QueueUserWorkItem(async _ => await LampaCron.Run());
19+
ThreadPool.QueueUserWorkItem(async _ => await CacheCron.Run());
6720

6821
CreateHostBuilder(args).Build().Run();
6922
}

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ curl -s https://raw.githubusercontent.com/immisterio/lampac/main/install.sh | ba
4747
* xdb - Выводит платные источники с sisi.am
4848
* emptycache - Сохраняет пустой результат как валидный кеш (рекомендуется включать при публичном использование)
4949
* timeoutSeconds - Максимальное время ожидания ответа от трекера
50+
* fileCacheInactiveDay - Время хранения резервного кеша на диске
5051
* useproxy - Парсит источник через прокси указанные в "proxy"
5152
* streamproxy - Перенаправляет видео через "http://IP:9118/proxy/{uri}"
5253
* disableserverproxy - Запрещает запросы через "http://IP:9118/(proxy|proxyimg)/"

0 commit comments

Comments
 (0)