175 lines
3.9 KiB
Go
175 lines
3.9 KiB
Go
package main
|
|
|
|
import (
|
|
"bufio"
|
|
_ "embed"
|
|
"flag"
|
|
"fmt"
|
|
"html/template"
|
|
"io/fs"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
"os/exec"
|
|
"path"
|
|
"strings"
|
|
"time"
|
|
|
|
"gitlab.com/balki/ytui/db"
|
|
)
|
|
|
|
//go:embed templates/index.html
|
|
var page string
|
|
|
|
const port = 8080
|
|
|
|
var (
|
|
ytdlCmd = []string{"youtube-dl"}
|
|
videosPath = "./vids"
|
|
videosUrl = "/vids"
|
|
cachePath = "./cache"
|
|
dbPath = "./db.json"
|
|
approval bool = false
|
|
)
|
|
|
|
var d *db.Db
|
|
|
|
func parse() {
|
|
ytcmd := ytdlCmd[0]
|
|
flag.StringVar(&ytcmd, "ytdlcmd", ytcmd, "youtube-dl command seperated by spaces")
|
|
flag.StringVar(&videosPath, "videospath", videosPath, "Path where videos are saved")
|
|
flag.StringVar(&videosUrl, "videosurl", videosUrl, "Prefix of the url, i.e. https://domain.com/<this var>/<video filename>")
|
|
flag.StringVar(&cachePath, "cachepath", cachePath, "Path where temporary download files are saved")
|
|
flag.StringVar(&dbPath, "dbpath", dbPath, "Path where downloaded info is saved")
|
|
flag.BoolVar(&approval, "approval", approval, "Is approval required before allowing to watch")
|
|
flag.Parse()
|
|
if ytcmd != ytdlCmd[0] {
|
|
ytdlCmd = strings.Fields(ytcmd)
|
|
}
|
|
os.MkdirAll(cachePath, 0755)
|
|
os.MkdirAll(videosPath, 0755)
|
|
os.MkdirAll(path.Dir(dbPath), 0755)
|
|
}
|
|
|
|
func main() {
|
|
log.Print("Youtube UI")
|
|
log.SetFlags(log.Flags() | log.Lshortfile)
|
|
parse()
|
|
tmpl := template.New("page")
|
|
tmpl = tmpl.Funcs(map[string]any{
|
|
"vids_prefix": func() string { return videosUrl },
|
|
})
|
|
tmpl, err := tmpl.Parse(page)
|
|
if err != nil {
|
|
log.Panic(err)
|
|
}
|
|
d, err = db.Load(dbPath)
|
|
if err != nil {
|
|
log.Panic(err)
|
|
}
|
|
defer d.Save()
|
|
seen := map[string]struct{}{}
|
|
d.Run(func(d *db.Jdb) {
|
|
for _, i := range d.Items {
|
|
seen[i.URL] = struct{}{}
|
|
}
|
|
})
|
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
if r.Method == http.MethodGet {
|
|
d.Run(func(d *db.Jdb) {
|
|
if err := tmpl.Execute(w, d); err != nil {
|
|
log.Panic(err)
|
|
}
|
|
})
|
|
return
|
|
}
|
|
yturl := r.PostFormValue("youtube_url")
|
|
if yturl == "" {
|
|
log.Printf("yturl empty, postform:%v\n", r.PostForm)
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
return
|
|
}
|
|
if _, ok := seen[yturl]; !ok {
|
|
seen[yturl] = struct{}{}
|
|
id := d.Add(db.Item{
|
|
Date: time.Now().Format("2006-01-02 15:04"),
|
|
URL: yturl,
|
|
Title: "Loading",
|
|
Approved: false,
|
|
Status: db.NotStarted,
|
|
})
|
|
go getTitle(id, yturl)
|
|
go download(id, yturl)
|
|
|
|
}
|
|
http.Redirect(w, r, "/", http.StatusSeeOther)
|
|
})
|
|
log.Panic(http.ListenAndServe(fmt.Sprintf(":%v", port), nil))
|
|
}
|
|
|
|
func getTitle(id int, yturl string) {
|
|
args := append(ytdlCmd, "--get-title", yturl)
|
|
cmd := exec.Command(args[0], args[1:]...)
|
|
var title string
|
|
if op, err := cmd.Output(); err != nil {
|
|
log.Printf("command failed, cmd: %v, err: %v", cmd, err)
|
|
title = "ERROR"
|
|
} else {
|
|
title = string(op)
|
|
}
|
|
d.Update(id, true, func(i *db.Item) {
|
|
i.Title = title
|
|
})
|
|
}
|
|
|
|
func download(id int, yturl string) {
|
|
d.Update(id, true, func(i *db.Item) {
|
|
i.Status = db.InProgress
|
|
})
|
|
pathTmpl := fmt.Sprintf("%s/video_%d.%%(ext)s", cachePath, id)
|
|
args := append(ytdlCmd, "--newline", "--output", pathTmpl, yturl)
|
|
cmd := exec.Command(args[0], args[1:]...)
|
|
rc, err := cmd.StdoutPipe()
|
|
if err != nil {
|
|
log.Panic(err)
|
|
}
|
|
if err := cmd.Start(); err != nil {
|
|
log.Panic(err)
|
|
}
|
|
br := bufio.NewReader(rc)
|
|
for {
|
|
line, _, err := br.ReadLine()
|
|
if err != nil {
|
|
break
|
|
}
|
|
d.Update(id, false, func(i *db.Item) {
|
|
i.Progress = string(line)
|
|
})
|
|
}
|
|
rc.Close()
|
|
err = cmd.Wait()
|
|
var status db.DownloadStatus
|
|
var fname string
|
|
if err != nil {
|
|
status = db.Error
|
|
} else {
|
|
status = db.Done
|
|
matches, err := fs.Glob(os.DirFS(cachePath), fmt.Sprintf("video_%d.*", id))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if len(matches) != 1 {
|
|
panic(len(matches))
|
|
}
|
|
fname = matches[0]
|
|
err = os.Rename(path.Join(cachePath, fname), path.Join(videosPath, fname))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
d.Update(id, true, func(i *db.Item) {
|
|
i.Status = status
|
|
i.FileName = fname
|
|
})
|
|
}
|