-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
64 lines (52 loc) · 1.29 KB
/
main.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
package main
import (
"encoding/json"
"html/template"
"io/ioutil"
"log"
"net/http"
)
func indexHandler(w http.ResponseWriter, r *http.Request) {
t := template.Must(template.ParseFiles("template/index.html"))
err := t.Execute(w, nil)
if err != nil {
log.Fatal(err)
return
}
}
func categoriesHandler(w http.ResponseWriter, r *http.Request) {
files, err := ioutil.ReadDir("./download")
if err != nil {
log.Fatal(err)
}
folder := []string{}
for _, f := range files {
if f.IsDir() {
folder = append(folder, f.Name())
}
}
json.NewEncoder(w).Encode(folder)
}
func fileHandler(w http.ResponseWriter, r *http.Request) {
vars := r.URL.Query()
category := vars["category"][0]
files, err := ioutil.ReadDir("./download/" + category)
if err != nil {
log.Fatal(err)
}
filez := []string{}
for _, f := range files {
if !f.IsDir() {
filez = append(filez, f.Name())
}
}
json.NewEncoder(w).Encode(filez)
}
func main() {
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("./public"))))
http.Handle("/download/", http.StripPrefix("/download/", http.FileServer(http.Dir("./download"))))
http.HandleFunc("/", indexHandler)
http.HandleFunc("/categories", categoriesHandler)
http.HandleFunc("/file", fileHandler)
http.ListenAndServe(":8888", nil)
}