aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/handlers.go
blob: 182b10033b89d797f8eb296bb5911af98bea5f80 (plain) (blame)
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package main

import (
	"encoding/json"
	"fmt"
	"html/template"
	"net/http"

	"github.com/gorilla/mux"
)

// HandleIndex takes care of rendering our embedded template out to the client
func (a *App) HandleIndex(w http.ResponseWriter, r *http.Request) {
	t, err := template.ParseFS(a.templateFS, "templates/index.html")
	if err != nil {
		Logger.Printf("While parsing template for index: %s", err)
		http.Error(w, "Internal server error ( template )",
			http.StatusInternalServerError)
		return
	}

	err = t.Execute(w,
		struct {
			App   *App
			Local bool
		}{
			a,
			isLocal(r.RemoteAddr),
		})
	if err != nil {
		Logger.Printf("While Rendering template: %s", err)
	}
	Logger.Printf("Client %s Index page", r.RemoteAddr)
}

// HandleInstall takes the HTTP requests for installing a game from a URL
// or local file path
func (a *App) HandleInstall(w http.ResponseWriter, r *http.Request) {
	err := r.ParseForm()
	if err != nil {
		Logger.Printf("Installer: While parsing form: %s", err)
		http.Error(w, fmt.Sprintf("Invalid form: %s", err), 400)
		return
	}

	uri := r.Form.Get("uri")

	Logger.Printf("Installer: Sending request for: %s to downloader", uri)

	go func() {
		g, err := a.Library.ExtractSmart(uri)
		if err != nil {
			Logger.Printf("Error encountered installing: %s", err)
		}
		Logger.Printf("Extracted game: %s", g)
	}()

	http.Redirect(w, r, "/", 302)
}

// HandleDownload takes care of exporting our games out to an HTTP request
//
// @Summary Handles downloading of a game
// @Description Streams a tarball of the game including the ACF file down
// @Description to the client machine
// @Tags all, game
// @Param game path string true "Name of the videogame"
// @Header 200 {string} Estimated-size "Estimated game size in bytes"
// @Accept  json
// @Produce  application/tar
// @Success 200
// @Router /lib/game/{game} [get]
func (a *App) HandleDownload(w http.ResponseWriter, r *http.Request) {
	vars := mux.Vars(r)
	game := vars["game"]

	g, ok := a.Library.Games()[game]
	if !ok {
		Logger.Printf("Missing: %s", game)
		http.Error(w, "Game is missing", 404)
		return
	}

	w.Header().Add("Content-type", "application/tar")
	w.Header().Add("Estimated-size", fmt.Sprintf("%d", g.Size))

	Logger.Printf("Client %s is downloading: %s", r.RemoteAddr, game)

	err := a.Library.Package(g.Name, w)
	if err != nil {
		Logger.Printf("Encountered download error: %s", err)
	}
	return
}

// HandleDelete removes the game in question, though it doesn't
// spawn any background processes it usually completes fast enough.
// TODO: Fix if the request taking too long becomes an issue
func (a *App) HandleDelete(w http.ResponseWriter, r *http.Request) {
	err := r.ParseForm()
	if err != nil {
		Logger.Printf("Installer: While parsing form: %s", err)
		http.Error(w, fmt.Sprintf("Invalid form: %s", err), 400)
		return
	}

	game := r.PostForm.Get("name")

	if game == "" {
		Logger.Println("Delete: No game specified")
		http.Error(w, "Game param required", 400)
		return
	}

	g, ok := a.Library.Games()[game]
	if !ok {
		Logger.Printf("Missing: %s", game)
		http.Error(w, "Game is missing", 404)
		return
	}

	err = a.Library.Delete(g.Name)
	if err != nil {
		Logger.Printf("Error removing game: %s", err)
		http.Error(w, fmt.Sprintf("Error removing game: %s", err), 500)
		return
	}
	Logger.Printf("Removed game: %s", game)

	http.Redirect(w, r, "/", 302)
}

// HandleStats dumps out some internal statistics of installation which
// is then parsed by some JS for a progress bar and such
func (a *App) HandleStats() http.Handler {
	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		w.Header().Add("Content-type", "application/json")

		enc := json.NewEncoder(w)

		enc.SetIndent("", "  ")

		err := enc.Encode(a.Library.Status())
		if err != nil {
			Logger.Println("While encoding Status: ", err)
		}
		return
	})
}

// HandleSetLib sets a new library path
func (a *App) HandleSetLib(w http.ResponseWriter, r *http.Request) {
	err := r.ParseForm()
	if err != nil {
		Logger.Printf("Setlib: While parsing form: %s", err)
		http.Error(w, fmt.Sprintf("Invalid form: %s", err), 400)
		return
	}

	a.Library.ProcessLibrary(r.Form.Get("path"))

	http.Redirect(w, r, "/", 302)
}