mirror of
https://onedev.site.tesses.net/tytd2025
synced 2026-06-01 18:05:32 +00:00
Add pwa support
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
const BUILD_TIME = comptime DateTime.NowEpoch;
|
||||
|
||||
var TYTDResources = [
|
||||
{path="/beer.min.css",value=embed("beer.min.css")},
|
||||
{path="/beer.min.js",value=embed("beer.min.js")},
|
||||
@@ -8,12 +10,31 @@ var TYTDResources = [
|
||||
{path="/htmx.min.js",value=embed("htmx.min.js")},
|
||||
{path="/favicon.ico",value=embed("favicon.ico")},
|
||||
{path="/tytd.svg",value=embed("tytd.svg")},
|
||||
{path="/tytd-128.png",value=embed("tytd-128.png")},
|
||||
{path="/tytd-192.png",value=embed("tytd-192.png")},
|
||||
{path="/tytd-256.png",value=embed("tytd-256.png")},
|
||||
{path="/tytd-384.png",value=embed("tytd-384.png")},
|
||||
{path="/tytd-512.png",value=embed("tytd-512.png")},
|
||||
{path="/tytd-1024.png",value=embed("tytd-1024.png")},
|
||||
{path="/loading-indicator.svg",value=embed("loading-indicator.svg")},
|
||||
{path="/theme.css",value=embed("theme.css")},
|
||||
{path="/video.min.js",value=embed("video.min.js")},
|
||||
{path="/video-js.css",value=embed("video-js.css")},
|
||||
{path="/wavy.svg",value=embed("wavy.svg")}
|
||||
{path="/wavy.svg",value=embed("wavy.svg")},
|
||||
{path="/site.webmanifest",value=embed("site.webmanifest")},
|
||||
{path="/offline-progress.html",value=embed("offline-progress.html")},
|
||||
{path="/offline.html",value=embed("offline.html")},
|
||||
{path="/offline.js", value=embed("offline.js")},
|
||||
];
|
||||
|
||||
const fileNames = [];
|
||||
each(var item : TYTDResources)
|
||||
{
|
||||
fileNames.Add(item.path);
|
||||
}
|
||||
|
||||
const service_worker_str = embed("service_worker.js").ToString().Replace("[\"<@ASSETS@>\"]",Json.Encode(fileNames)).Replace("<@BUILD_TIME@>",BUILD_TIME.ToString());
|
||||
|
||||
var times=1;
|
||||
|
||||
class TYTDApp {
|
||||
@@ -29,21 +50,66 @@ class TYTDApp {
|
||||
|
||||
public TYTDApp()
|
||||
{
|
||||
|
||||
Console.WriteLine($"Built at {new DateTime(BUILD_TIME).ToString()}");
|
||||
var tytdfs = new SubdirFilesystem(FS.Local, GetTYTDDir());
|
||||
this.TYTD = new TYTD.Downloader(tytdfs,FS.MakeFull(GetTYTDDir()));
|
||||
this.TYTD.Start();
|
||||
|
||||
}
|
||||
|
||||
public Handle(ctx)
|
||||
{
|
||||
if(ctx.Path == "/service_worker.js" || fileNames.Contains(ctx.Path))
|
||||
{
|
||||
const inm=ctx.RequestHeaders.TryGetFirst("If-None-Match");
|
||||
if(TypeIsString(inm))
|
||||
{
|
||||
const strs = inm.Split(", ");
|
||||
each(var item : strs)
|
||||
{
|
||||
if(item == $"W/\"{BUILD_TIME}\"" || item == $"\"{BUILD_TIME}\"")
|
||||
{
|
||||
ctx.StatusCode = 304;
|
||||
ctx.WriteHeaders();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
ctx.WithHeader("ETag",$"W/\"{BUILD_TIME}\"");
|
||||
}
|
||||
if(ctx.Path == "/service_worker.js")
|
||||
{
|
||||
ctx.WithMimeType(Net.Http.MimeType("service_worker.js")).SendText(service_worker_str);
|
||||
return true;
|
||||
}
|
||||
if(ctx.Path == "/api/v1/auth")
|
||||
{
|
||||
if(ctx.Method == "POST")
|
||||
{
|
||||
const req=ctx.ReadJson();
|
||||
const result = this.TYTD.Auth(req.username, req.password);
|
||||
if(result)
|
||||
{
|
||||
ctx.SendJson({
|
||||
success = true,
|
||||
flags = result.flags
|
||||
});
|
||||
}
|
||||
else {
|
||||
ctx.SendJson({
|
||||
success=false
|
||||
});
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
if(ctx.Path == "/api/v1/login")
|
||||
{
|
||||
if(ctx.Method == "POST")
|
||||
{
|
||||
const req=ctx.ReadJson();
|
||||
const result = this.TYTD.Login(req.username, req.password);
|
||||
const result = this.TYTD.Login(req.username, req.password, false);
|
||||
if(result)
|
||||
{
|
||||
ctx.SendJson({
|
||||
@@ -70,14 +136,17 @@ class TYTDApp {
|
||||
const redirect = ctx.QueryParams.TryGetFirst("redirect") ?? "/";
|
||||
const username = ctx.QueryParams.TryGetFirst("username") ?? "";
|
||||
const password = ctx.QueryParams.TryGetFirst("password") ?? "";
|
||||
|
||||
|
||||
|
||||
if(ctx.Method == "POST")
|
||||
{
|
||||
const result = this.TYTD.Login(username, password);
|
||||
const result = this.TYTD.Login(username, password,true);
|
||||
if(result)
|
||||
{
|
||||
ctx.StatusCode = 303;
|
||||
ctx.WithHeader("Set-Cookie",$"Session={result}; SameSite=Strict").SendRedirect("/");
|
||||
var date = new DateTime(DateTime.NowEpoch + UserFlags.Expires);
|
||||
ctx.WithHeader("Set-Cookie",$"Session={result}; SameSite=Lax; Expires={date.ToHttpDate()}; HttpOnly").SendRedirect(redirect);
|
||||
return true;
|
||||
}
|
||||
else incorrect=true;
|
||||
@@ -97,6 +166,25 @@ class TYTDApp {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
if(ctx.Path == "/progress")
|
||||
{
|
||||
ctx.WithMimeType("text/html").SendText(
|
||||
<div>
|
||||
<h1>You have been logged out</h1>
|
||||
<a href="./login">Login</a>
|
||||
</div>
|
||||
);
|
||||
return true;
|
||||
}
|
||||
if(ctx.Path == "/sso")
|
||||
{
|
||||
const app = ctx.QueryParams.TryGetFirst("app") ?? "";
|
||||
const token = ctx.QueryParams.TryGetFirst("token") ?? "";
|
||||
const path = $"/sso?app={Net.Http.UrlEncode(app)}&token={Net.Http.UrlEncode(token)}";
|
||||
ctx.StatusCode = 307;
|
||||
ctx.SendRedirect($"/login?redirect={Net.Http.UrlEncode(path)}");
|
||||
return true;
|
||||
}
|
||||
ctx.StatusCode = 307;
|
||||
ctx.SendRedirect($"/login?redirect={Net.Http.UrlEncode(ctx.Path)}");
|
||||
return true;
|
||||
@@ -208,7 +296,6 @@ class TYTDApp {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
if(ctx.Path == "/welcome")
|
||||
{
|
||||
const redirect = ctx.QueryParams.TryGetFirst("redirect") ?? "/settings";
|
||||
@@ -245,11 +332,49 @@ class TYTDApp {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
if(ctx.Path == "/")
|
||||
{
|
||||
ctx.WithMimeType("text/html").SendText(Pages.Index(this.TYTD));
|
||||
return true;
|
||||
}
|
||||
else if(ctx.Path == "/sso")
|
||||
{
|
||||
const app = ctx.QueryParams.TryGetFirst("app");
|
||||
const token = ctx.QueryParams.TryGetFirst("token");
|
||||
if(TypeIsString(app) && TypeIsString(token))
|
||||
{
|
||||
|
||||
const sso = this.TYTD.GetSSO(app);
|
||||
if(TypeIsDictionary(sso))
|
||||
{
|
||||
const user = this.TYTD.WhoAmI(ctx);
|
||||
if(TypeIsDictionary(user) && user.flags != 0)
|
||||
{
|
||||
const postJson = {
|
||||
username = user.username,
|
||||
flags = user.flags,
|
||||
token = token,
|
||||
sso_app_key = sso.sso_app_key
|
||||
};
|
||||
|
||||
const resp = Net.Http.MakeRequest(sso.service_auth_post, {
|
||||
Method = "POST",
|
||||
Body = Net.Http.TextHttpRequestBody(postJson.ToString(),"application/json")
|
||||
});
|
||||
|
||||
if(resp.StatusCode >= 200 && resp.StatusCode <= 299)
|
||||
{
|
||||
ctx.StatusCode = 307;
|
||||
ctx.SendRedirect($"{sso.service_auth_redirect}{Net.Http.UrlEncode(token)}");
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
ctx.StatusCode = 401;
|
||||
return false;
|
||||
}
|
||||
else if(ctx.Path == "/passwd")
|
||||
{
|
||||
var incorrect=false;
|
||||
@@ -265,6 +390,7 @@ class TYTDApp {
|
||||
|
||||
ctx.WithMimeType("text/html").SendText(Pages.ChangePassword(redirect, incorrect));
|
||||
}
|
||||
|
||||
else if(ctx.Path == "/newuser")
|
||||
{
|
||||
var error = null;
|
||||
@@ -340,6 +466,36 @@ class TYTDApp {
|
||||
}
|
||||
return false;
|
||||
}
|
||||
else if(ctx.Path == "/api/v1/register_sso")
|
||||
{
|
||||
if(ctx.Method!="POST")
|
||||
{
|
||||
ctx.WithMimeType("application/json").SendJson({
|
||||
success=false,
|
||||
reason = "Method must be post",
|
||||
type = "method"
|
||||
});
|
||||
return true;
|
||||
}
|
||||
if(!UserFlags.IsAdmin(this.TYTD.IsLoggedIn(ctx)))
|
||||
{
|
||||
ctx.WithMimeType("application/json").SendJson({
|
||||
success=false,
|
||||
reason = "You are either not logged in or not admin",
|
||||
type ="auth"
|
||||
});
|
||||
return true;
|
||||
}
|
||||
|
||||
const json = ctx.ReadJson();
|
||||
|
||||
const resp = this.TYTD.RegisterSSO(json);
|
||||
|
||||
ctx.WithMimeType("application/json").SendJson(
|
||||
resp
|
||||
);
|
||||
return true;
|
||||
}
|
||||
else if(ctx.Path == "/api/v1/download")
|
||||
{
|
||||
var v = ctx.QueryParams.TryGetFirst("v");
|
||||
@@ -371,6 +527,20 @@ class TYTDApp {
|
||||
ctx.WithMimeType("application/json").SendJson(jo);
|
||||
return true;
|
||||
}
|
||||
else if(ctx.Path == "/api/v1/add")
|
||||
{
|
||||
if(ctx.Method=="POST")
|
||||
{
|
||||
const json = ctx.ReadJson();
|
||||
each(var item : json)
|
||||
{
|
||||
this.TYTD.DownloadItem(item.url,item.res);
|
||||
}
|
||||
ctx.StatusCode=204;
|
||||
ctx.WriteHeaders();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
else if(ctx.Path == "/api/v1/video.json")
|
||||
{
|
||||
var id = ctx.QueryParams.TryGetFirst("v");
|
||||
@@ -439,6 +609,20 @@ class TYTDApp {
|
||||
}
|
||||
return true;
|
||||
}
|
||||
else if(ctx.Path == "/api/v1/personal_tmp_link")
|
||||
{
|
||||
const name = ctx.QueryParams.TryGetFirst("name");
|
||||
if(TypeIsString(name))
|
||||
{
|
||||
const ents = this.TYTD.GetPersonalListTempUrl(name);
|
||||
if(TypeIsString(ents))
|
||||
{
|
||||
ctx.WithMimeType("text/plain").SendText(ents);
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
else if(ctx.Path == "/api/v1/personal")
|
||||
{
|
||||
/*
|
||||
@@ -714,6 +898,36 @@ class TYTDApp {
|
||||
ctx.WithMimeType("text/html").SendText(Pages.VideoInfo(this.TYTD,ctx));
|
||||
return true;
|
||||
}
|
||||
|
||||
else if(ctx.Path == "/watch_videos")
|
||||
{
|
||||
const video_ids = ctx.QueryParams.TryGetFirst("video_ids");
|
||||
if(TypeIsString(video_ids))
|
||||
{
|
||||
if(ctx.Method=="GET")
|
||||
{
|
||||
ctx.WithMimeType("text/html").SendText(Pages.YouTubeAnonyPlaylist(video_ids));
|
||||
return true;
|
||||
}
|
||||
if(ctx.Method=="POST")
|
||||
{
|
||||
const name = ctx.QueryParams.TryGetFirst("name");
|
||||
if(TypeIsString(name))
|
||||
{
|
||||
const nameParts=video_ids.Split(",");
|
||||
Console.WriteLine(nameParts);
|
||||
each(var item : nameParts)
|
||||
{
|
||||
|
||||
this.TYTD.AddToPersonalList(name,item);
|
||||
}
|
||||
Console.WriteLine(name);
|
||||
ctx.SendRedirect($"/list?name={Net.Http.UrlEncode(name)}",303);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else if(ctx.Path == "/playlist")
|
||||
{
|
||||
ctx.WithMimeType("text/html").SendText(Pages.PlaylistInfo(this.TYTD,ctx));
|
||||
@@ -802,6 +1016,12 @@ class TYTDApp {
|
||||
ctx.WithMimeType("text/html").SendText(Components.Progress(this.TYTD));
|
||||
return true;
|
||||
}
|
||||
else if(ctx.Path == "/queue-size")
|
||||
{
|
||||
|
||||
ctx.WithMimeType("text/html").SendText(Components.QueueSZ(this.TYTD));
|
||||
return true;
|
||||
}
|
||||
else if(ctx.Path == "/plugins")
|
||||
{
|
||||
ctx.WithMimeType("text/html").SendText(Pages.Plugins(this.TYTD,ctx));
|
||||
|
||||
Reference in New Issue
Block a user