aboutsummaryrefslogtreecommitdiff
path: root/worker/worker.go
blob: 525a736f254e2fb9a5d2fa4c30d7f2f6de06f923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
package worker

import (
	"bufio"
	"bytes"
	"context"
	"fmt"
	"os/exec"

	"git.sr.ht/~gabrielgio/midr/db"
	work "git.sr.ht/~sircmpwn/dowork"
)

const (
	statusNotQueued = "NOTQUEUED"
	statusQueued    = "QUEUED"
	statusStarted   = "RUNNING"

	commandStart   = "START"
	commandEnqueue = "ENQUEUE"
	commandDequeue = "DEQUEUE"
)

type command struct {
	action string
	index  uint
}

type Worker struct {
	jobs map[uint]string
	c    chan command
}

type Job struct {
	Id     uint
	Status string
}

func NewWorkder() Worker {
	return Worker{
		c:    make(chan command),
		jobs: make(map[uint]string),
	}
}

func RunYtDlpProcess(entry *db.Entry) (error, []byte, []byte) {
	args := []string{entry.Link}
	var stdout bytes.Buffer
	var stderr bytes.Buffer

	output_template := fmt.Sprintf("%s/%%(title)s.%%(ext)s", entry.OutputFolder)
	args = append(args, "-o", output_template)

	downloaded_txt := fmt.Sprintf("%s/downloaded.txt", entry.OutputFolder)
	args = append(args, "--download-archive", downloaded_txt)

	if len(entry.DateAfter) > 0 {
		args = append(args, "--dateafter", entry.DateAfter)
	}

	cmd := exec.Command("yt-dlp", args...)
	cmd.Stdout = bufio.NewWriter(&stdout)
	cmd.Stderr = bufio.NewWriter(&stderr)

	err := cmd.Run()

	return err, stdout.Bytes(), stderr.Bytes()
}

func (w *Worker) CanEnqueue(index uint) bool {
	v, found := w.jobs[index]
	return !found || v == statusNotQueued
}

func (w *Worker) RemoveJob(id uint) {
	delete(w.jobs, id)
}

func (w *Worker) RunYtDlpWorker(entry *db.Entry) <-chan []byte {
	if !w.CanEnqueue(entry.ID) {
		return nil
	}

	log := make(chan []byte)

	w.c <- command{action: commandEnqueue, index: entry.ID}
	task := work.NewTask(func(ctx context.Context) error {

		w.c <- command{action: commandStart, index: entry.ID}
		err, stdout, stderr := RunYtDlpProcess(entry)

		log <- stdout
		log <- stderr

		return err
	}).After(func(ctx context.Context, task *work.Task) {
		w.c <- command{action: commandDequeue, index: entry.ID}
		close(log)
	})

	work.Enqueue(task)

	return log
}

func (w *Worker) startReader() {
	for {
		command := <-w.c

		if command.action == commandEnqueue {
			w.jobs[command.index] = statusQueued
		} else if command.action == commandStart {
			w.jobs[command.index] = statusStarted
		} else if command.action == commandDequeue {
			w.jobs[command.index] = statusNotQueued
		} else {
			panic(1)
		}
	}
}

func (w *Worker) StartReader() {
	go w.startReader()
}

func (w *Worker) GetJobs() []Job {
	jobs := make([]Job, len(w.jobs))
	count := 0

	for k, v := range w.jobs {
		jobs[count] = Job{Id: k, Status: v}
		count++
	}

	return jobs
}