321 lines
11 KiB
C#
321 lines
11 KiB
C#
using System;
|
|
using YoutubeExplode;
|
|
using YoutubeExplode.Videos;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Net.Http;
|
|
using System.IO;
|
|
using YoutubeExplode.Playlists;
|
|
using YoutubeExplode.Channels;
|
|
using Newtonsoft.Json;
|
|
using System.Text;
|
|
|
|
namespace Tesses.YouTubeDownloader
|
|
{
|
|
|
|
public abstract partial class TYTDStorage : TYTDBase, IStorage
|
|
{
|
|
public override ExtraData GetExtraData()
|
|
{
|
|
ExtraData data=new ExtraData();
|
|
lock(Temporary){
|
|
data.ItemsInInfoQueue=Temporary.Count;
|
|
}
|
|
lock(QueueList)
|
|
{
|
|
data.ItemsInQueue=QueueList.Count;
|
|
}
|
|
|
|
return data;
|
|
}
|
|
internal class ConsoleWriterCLS : TextWriter
|
|
{
|
|
Action<string> cls;
|
|
public ConsoleWriterCLS(Action<string> cls)
|
|
{
|
|
this.cls=cls;
|
|
}
|
|
|
|
public override Encoding Encoding => Encoding.UTF8;
|
|
public override void Write(string value)
|
|
{
|
|
cls(value);
|
|
}
|
|
}
|
|
private static readonly HttpClient _default = new HttpClient();
|
|
public abstract Task<Stream> CreateAsync(string path);
|
|
|
|
public abstract void CreateDirectory(string path);
|
|
|
|
public static bool UseConsole = true;
|
|
|
|
public TYTDStorage(HttpClient clt)
|
|
{
|
|
|
|
HttpClient=clt;
|
|
YoutubeClient=new YoutubeClient(HttpClient);
|
|
ExtensionContext=null;
|
|
ConsoleWriter=new ConsoleWriterCLS((e)=>{
|
|
ConsoleWrite?.Invoke(this,new ConsoleWriteEventArgs(e));
|
|
});
|
|
}
|
|
public TYTDStorage()
|
|
{
|
|
HttpClient=_default;
|
|
YoutubeClient=new YoutubeClient(HttpClient);
|
|
ExtensionContext=null;
|
|
ConsoleWriter=new ConsoleWriterCLS((e)=>{
|
|
ConsoleWrite?.Invoke(this,new ConsoleWriteEventArgs(e));
|
|
});
|
|
}
|
|
public async Task WriteAllBytesAsync(string path,byte[] data,CancellationToken token=default(CancellationToken))
|
|
{
|
|
using(var s=await CreateAsync(path))
|
|
{
|
|
await s.WriteAsync(data,0,data.Length,token);
|
|
}
|
|
}
|
|
public EventHandler<ConsoleWriteEventArgs> ConsoleWrite;
|
|
public TextWriter ConsoleWriter {get; private set;}
|
|
public static string TYTDTag {get {return _tytd_tag;}}
|
|
public static void SetTYTDTag(string tag)
|
|
{
|
|
//for use on mobile phones
|
|
_tytd_tag= tag;
|
|
}
|
|
private static string _tytd_tag=_getTYTDTag();
|
|
private static string _getTYTDTag()
|
|
{
|
|
string tag=Environment.GetEnvironmentVariable("TYTD_TAG");
|
|
if(string.IsNullOrWhiteSpace(tag)) return "UnknownPC";
|
|
return tag;
|
|
}
|
|
bool can_download=true;
|
|
public bool CanDownload {get {return can_download;} set {can_download=value;}}
|
|
public IExtensionContext ExtensionContext {get;set;}
|
|
public HttpClient HttpClient {get;set;}
|
|
public YoutubeClient YoutubeClient {get;set;}
|
|
public abstract void MoveDirectory(string src,string dest);
|
|
public abstract void DeleteFile(string file);
|
|
public abstract void DeleteDirectory(string dir,bool recursive=false);
|
|
|
|
public virtual async Task WriteBestStreamInfoAsync(VideoId id,BestStreamInfo.BestStreamsSerialized serialized)
|
|
{
|
|
await WriteAllTextAsync($"StreamInfo/{id.Value}.json",JsonConvert.SerializeObject(serialized));
|
|
|
|
}
|
|
|
|
public virtual async Task WriteVideoInfoAsync(SavedVideo info)
|
|
{
|
|
|
|
string file = info.DownloadFrom.StartsWith("NormalDownload,Length=") ? $"FileInfo/{B64.Base64UrlEncodes(info.Id)}.json" : $"Info/{info.Id}.json";
|
|
if(!FileExists(file))
|
|
{
|
|
await WriteAllTextAsync(file,JsonConvert.SerializeObject(info));
|
|
}
|
|
}
|
|
public virtual async Task WritePlaylistInfoAsync(SavedPlaylist info)
|
|
{
|
|
string file = $"Playlist/{info.Id}.json";
|
|
if(!FileExists(file))
|
|
{
|
|
await WriteAllTextAsync(file,JsonConvert.SerializeObject(info));
|
|
}
|
|
}
|
|
public virtual async Task WriteChannelInfoAsync(SavedChannel info)
|
|
{
|
|
string file = $"Channel/{info.Id}.json";
|
|
if(!FileExists(file))
|
|
{
|
|
await WriteAllTextAsync(file,JsonConvert.SerializeObject(info));
|
|
}
|
|
}
|
|
public async Task AddPlaylistAsync(PlaylistId id,Resolution resolution=Resolution.PreMuxed)
|
|
{
|
|
lock(Temporary)
|
|
{
|
|
Temporary.Add( new PlaylistMediaContext(id,resolution));
|
|
}
|
|
|
|
|
|
await Task.FromResult(0);
|
|
}
|
|
public async Task AddChannelAsync(ChannelId id,Resolution resolution=Resolution.PreMuxed)
|
|
{
|
|
lock(Temporary)
|
|
{
|
|
Temporary.Add(new ChannelMediaContext(id,resolution));
|
|
}
|
|
await Task.FromResult(0);
|
|
}
|
|
public async Task AddUserAsync(UserName name,Resolution resolution=Resolution.PreMuxed)
|
|
{
|
|
lock(Temporary)
|
|
{
|
|
Temporary.Add(new ChannelMediaContext(name,resolution));
|
|
}
|
|
await Task.FromResult(0);
|
|
}
|
|
|
|
public async Task AddVideoAsync(VideoId videoId,Resolution res=Resolution.PreMuxed)
|
|
{
|
|
lock(Temporary)
|
|
{
|
|
Temporary.Add(new VideoMediaContext(videoId,res));
|
|
}
|
|
await Task.FromResult(0);
|
|
}
|
|
public async Task AddFileAsync(string url,bool download=true)
|
|
{
|
|
lock(Temporary)
|
|
{
|
|
Temporary.Add(new NormalDownloadMediaContext(url,download));
|
|
}
|
|
await Task.FromResult(0);
|
|
}
|
|
public void CreateDirectoryIfNotExist(string dir)
|
|
{
|
|
if(!DirectoryExists(dir))
|
|
{
|
|
CreateDirectory(dir);
|
|
}
|
|
}
|
|
public async Task DownloadThumbnails(VideoId id)
|
|
{
|
|
if(!can_download) return;
|
|
string Id=id.Value;
|
|
string[] res=new string[] {"default.jpg","sddefault.jpg","mqdefault.jpg","hqdefault.jpg","maxresdefault.jpg"};
|
|
CreateDirectoryIfNotExist($"Thumbnails/{Id}");
|
|
foreach(var reso in res)
|
|
{
|
|
if(await Continue($"Thumbnails/{Id}/{reso}"))
|
|
{
|
|
try{
|
|
var data=await HttpClient.GetByteArrayAsync($"https://s.ytimg.com/vi/{Id}/{reso}");
|
|
await WriteAllBytesAsync($"Thumbnails/{Id}/{reso}",data);
|
|
}catch(Exception ex)
|
|
{
|
|
_=ex;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
public void CreateDirectories()
|
|
{
|
|
CreateDirectoryIfNotExist("Channel");
|
|
CreateDirectoryIfNotExist("Playlist");
|
|
CreateDirectoryIfNotExist("Subscriptions");
|
|
CreateDirectoryIfNotExist("VideoOnly");
|
|
CreateDirectoryIfNotExist("AudioOnly");
|
|
CreateDirectoryIfNotExist("Muxed");
|
|
CreateDirectoryIfNotExist("PreMuxed");
|
|
CreateDirectoryIfNotExist("Info");
|
|
CreateDirectoryIfNotExist("Thumbnails");
|
|
CreateDirectoryIfNotExist("config");
|
|
CreateDirectoryIfNotExist("config/logs");
|
|
CreateDirectoryIfNotExist("FileInfo");
|
|
CreateDirectoryIfNotExist("Download");
|
|
CreateDirectoryIfNotExist("StreamInfo");
|
|
CreateDirectoryIfNotExist("PersonalPlaylist");
|
|
}
|
|
public void StartLoop(CancellationToken token = default(CancellationToken))
|
|
{
|
|
CreateDirectories();
|
|
Thread thread0=new Thread(()=>{
|
|
DownloadLoop(token).Wait();
|
|
});
|
|
thread0.Start();
|
|
Thread thread1=new Thread(()=>{
|
|
QueueLoop(token).Wait();
|
|
});
|
|
thread1.Start();
|
|
}
|
|
internal void ThrowError(TYTDErrorEventArgs e)
|
|
{
|
|
Error?.Invoke(this,e);
|
|
}
|
|
public async Task WriteAllTextAsync(string path,string data)
|
|
{
|
|
using(var dstStrm= await CreateAsync(path))
|
|
{
|
|
using(var sw = new StreamWriter(dstStrm))
|
|
{
|
|
await sw.WriteAsync(data);
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual async Task AddToPersonalPlaylistAsync(string name, IEnumerable<ListContentItem> items)
|
|
{
|
|
List<ListContentItem> items0=new List<ListContentItem>();
|
|
await foreach(var item in GetPersonalPlaylistContentsAsync(name))
|
|
{
|
|
items0.Add(item);
|
|
}
|
|
items0.AddRange(items);
|
|
await WriteAllTextAsync($"PersonalPlaylist/{name}.json",JsonConvert.SerializeObject(items0));
|
|
|
|
}
|
|
|
|
public virtual async Task ReplacePersonalPlaylistAsync(string name, IEnumerable<ListContentItem> items)
|
|
{
|
|
|
|
await WriteAllTextAsync($"PersonalPlaylist/{name}.json",JsonConvert.SerializeObject(items.ToList()));
|
|
|
|
}
|
|
public virtual void DeletePersonalPlaylist(string name)
|
|
{
|
|
DeleteFile($"PersonalPlaylist/{name}.json");
|
|
}
|
|
|
|
public virtual async Task RemoveItemFromPersonalPlaylistAsync(string name, VideoId id)
|
|
{
|
|
List<ListContentItem> items0=new List<ListContentItem>();
|
|
await foreach(var item in GetPersonalPlaylistContentsAsync(name))
|
|
{
|
|
if(item.Id != id)
|
|
{
|
|
items0.Add(item);
|
|
}
|
|
}
|
|
|
|
await WriteAllTextAsync($"PersonalPlaylist/{name}.json",JsonConvert.SerializeObject(items0));
|
|
|
|
}
|
|
|
|
public virtual async Task SetResolutionForItemInPersonalPlaylistAsync(string name, VideoId id, Resolution resolution)
|
|
{
|
|
List<ListContentItem> items0=new List<ListContentItem>();
|
|
await foreach(var item in GetPersonalPlaylistContentsAsync(name))
|
|
{
|
|
if(item.Id != id)
|
|
{
|
|
items0.Add(item);
|
|
}else{
|
|
items0.Add(new ListContentItem(item.Id,resolution));
|
|
}
|
|
}
|
|
|
|
await WriteAllTextAsync($"PersonalPlaylist/{name}.json",JsonConvert.SerializeObject(items0));
|
|
|
|
}
|
|
|
|
public void RegisterVideoStarted(EventHandler<VideoStartedEventArgs> vs)
|
|
{
|
|
VideoStarted+=vs;
|
|
}
|
|
|
|
public void RegisterVideoFinished(EventHandler<VideoFinishedEventArgs> vf)
|
|
{
|
|
VideoFinished+=vf;
|
|
}
|
|
|
|
public void RegisterVideoProgress(EventHandler<VideoProgressEventArgs> vp)
|
|
{
|
|
VideoProgress+=vp;
|
|
}
|
|
}
|
|
}
|