forked from pgaskin/BookBrowser
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathweb.go
219 lines (187 loc) · 5.43 KB
/
web.go
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package main
import (
"crypto/rand"
"encoding/json"
"fmt"
"io"
"io/fs"
"log/slog"
"net/http"
"os"
"path"
"path/filepath"
"strconv"
"strings"
)
func static(w http.ResponseWriter, r *http.Request) {
fsPublic, _ := fs.Sub(NuxtElements, "web/.output/public")
fs := http.FileServer(http.FS(fsPublic))
w.Header().Set("Cache-Control", "public, max-age=31536000, immutable")
p := r.URL.Path
if strings.HasSuffix(p, ".css") {
w.Header().Set("Content-Type", "text/css")
}
if strings.HasSuffix(p, ".js") {
slog.Info("serving js", "path", p)
w.Header().Set("Content-Type", "application/javascript")
}
fs.ServeHTTP(w, r)
}
func index(w http.ResponseWriter, r *http.Request) {
_, err := w.Write(NuxtIndexHTML)
if err != nil {
slog.Warn("failed to write index", "err", err)
}
}
func bookPNG(w http.ResponseWriter, r *http.Request) {
_, err := w.Write(BookPNG)
if err != nil {
slog.Warn("failed to write index", "err", err)
}
}
type countResult struct {
Total int `json:"total"`
}
func (app *booksingApp) count(w http.ResponseWriter, r *http.Request) {
count := app.searchDB.GetBookCount()
js, err := json.Marshal(countResult{Total: count})
if err != nil {
slog.Warn("failed to marshal count", "err", err)
}
w.Header().Set("Content-Type", "application/json")
_, err = w.Write(js)
if err != nil {
slog.Warn("failed to write index", "err", err)
}
}
func (app *booksingApp) getCover(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "public, max-age=86400, immutable")
//join the path with a slash to make sure it is an absolute path
//and the Join will also automatically clean out any path traversal characters
file := path.Join("/", r.URL.Query().Get("file"))
//join only with the bookDir after the first join so only files from the bookdir are served
file = path.Join(app.bookDir, file)
http.ServeFile(w, r, file)
}
func (app *booksingApp) searchAPI(w http.ResponseWriter, r *http.Request) {
var offset int64
var limit int64
var err error
offset = 0
limit = 9
q := r.URL.Query().Get("q")
off := r.URL.Query().Get("o")
if off != "" {
offset, err = strconv.ParseInt(off, 10, 64)
if err != nil {
offset = 0
}
}
if lim := r.URL.Query().Get("l"); lim != "" {
limit, err = strconv.ParseInt(lim, 10, 64)
if err != nil {
limit = 20
}
}
var books *SearchResult
books, err = app.searchDB.GetBooks(q, limit, offset)
if err != nil {
slog.Warn("failed to search DB", "err", err)
//TODO: add error handling
}
for i, b := range books.Items {
b.CoverPath = strings.TrimPrefix(b.CoverPath, app.bookDir)
books.Items[i] = b
}
w.Header().Set("Content-Type", "application/json")
js, _ := json.Marshal(books)
_, err = w.Write(js)
if err != nil {
slog.Warn("failed to write search result", "err", err)
}
}
func (app *booksingApp) downloadBook(w http.ResponseWriter, r *http.Request) {
hash := r.URL.Query().Get("hash")
book, err := app.searchDB.GetBook(hash)
if err != nil {
slog.Error("could not find book", "err", err, "hash", hash)
return
}
if app.webHookEnabled {
//do this async so the user does not have to wait for the webhook to finish
go app.fireWebHook(webHookData{
IPs: getIPFromRequest(r),
User: getUserFromRequest(r),
Hash: hash,
})
}
fName := path.Base(book.Path)
w.Header().Set("Content-Type", "application/epub+zip")
w.Header().Set("Content-Disposition",
fmt.Sprintf("attachment; filename=\"%s\"", fName))
http.ServeFile(w, r, book.Path)
}
const maxUploadSize = 20 * 1024 * 1024 // 2 mb
func (app *booksingApp) addBook(w http.ResponseWriter, r *http.Request) {
if err := r.ParseMultipartForm(maxUploadSize); err != nil {
fmt.Printf("Could not parse multipart form: %v\n", err)
renderError(w, "CANT_PARSE_FORM", http.StatusInternalServerError)
return
}
// parse and validate file and post parameters
file, fileHeader, err := r.FormFile("uploadFile")
if err != nil {
renderError(w, "INVALID_FILE", http.StatusBadRequest)
return
}
defer file.Close()
// Get and print out file size
fileSize := fileHeader.Size
fmt.Printf("File size (bytes): %v\n", fileSize)
// validate file size
if fileSize > maxUploadSize {
renderError(w, "FILE_TOO_BIG", http.StatusBadRequest)
return
}
fileBytes, err := io.ReadAll(file)
if err != nil {
renderError(w, "INVALID_FILE", http.StatusBadRequest)
return
}
// check file type, detectContentType only needs the first 512 bytes
detectedFileType := http.DetectContentType(fileBytes)
slog.Info("File type detected as ", "filetype", detectedFileType)
switch detectedFileType {
case "application/zip":
break
default:
renderError(w, "INVALID_FILE_TYPE", http.StatusBadRequest)
return
}
fileName := randToken(12)
newFileName := fileName + ".epub"
newPath := filepath.Join(app.importDir, newFileName)
fmt.Printf("FileType: %s, File: %s\n", detectedFileType, newPath)
// write file
newFile, err := os.Create(newPath)
if err != nil {
renderError(w, "CANT_WRITE_FILE", http.StatusInternalServerError)
return
}
defer newFile.Close() // idempotent, okay to call twice
if _, err := newFile.Write(fileBytes); err != nil || newFile.Close() != nil {
renderError(w, "CANT_WRITE_FILE", http.StatusInternalServerError)
return
}
app.refreshChan <- true
w.Write([]byte("SUCCESS"))
}
func renderError(w http.ResponseWriter, message string, statusCode int) {
w.WriteHeader(statusCode)
w.Write([]byte(message))
}
func randToken(len int) string {
b := make([]byte, len)
rand.Read(b)
return fmt.Sprintf("%x", b)
}