aboutsummaryrefslogtreecommitdiff
path: root/controller/controller.go
blob: 7fc874847299fe4623b4e2754425bca2b00cd806 (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
package controller

import (
	"net/http"

	"git.sr.ht/~gabrielgio/midr/db"
	"git.sr.ht/~gabrielgio/midr/worker"
	"github.com/gin-gonic/gin"
)

type Env struct {
	Entries db.EntryModel
	Worker  worker.Worker
}

func (e Env) GetEntries(c *gin.Context) {
	entries := e.Entries.All()
	c.HTML(http.StatusOK, "index", entries)
}

func (e *Env) GetEntry(c *gin.Context) {
	id := c.Param("id")
	if id != "" {
		entry := e.Entries.Find(id)
		c.HTML(http.StatusOK, "entry", entry)
	} else {
		c.HTML(http.StatusOK, "entry", db.Entry{})
	}
}

func (e *Env) UpdateEntry(c *gin.Context) {
	var entry db.Entry
	c.ShouldBind(&entry)
	e.Entries.Update(entry)
	c.Redirect(http.StatusFound, "/")
}

func (e *Env) CreateEntry(c *gin.Context) {
	var entry db.Entry
	c.ShouldBind(&entry)
	e.Entries.Create(&entry)
	e.Worker.SpawnWorker(entry.ID, entry.Link, entry.OutputFolder)
	c.Redirect(http.StatusFound, "/")
}

func (e *Env) DeleteEntry(c *gin.Context) {
	var entry db.Entry
	id := c.Param("id")
	e.Entries.Delete(id)
	c.HTML(http.StatusOK, "entry", entry)
}

func (e *Env) GetJobs(c *gin.Context) {
	jobs := e.Worker.GetJobs()
	c.JSON(http.StatusOK, jobs)
}