aboutsummaryrefslogtreecommitdiff
path: root/handlers.go
blob: 227251b8ac71fac54322ccfe1fa82a7d002ab433 (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
package main

import (
	"code.google.com/p/go-uuid/uuid"
	"encoding/json"
	"fmt"
	"github.com/gorilla/mux"
	"io"
	"io/ioutil"
	"net/http"
	"strconv"
)

func Index(w http.ResponseWriter, r *http.Request) {
	w.Header().Set("Content-Type", "text/plain; charset=UTF-8")
	w.WriteHeader(http.StatusOK)

	fmt.Fprintln(w, "Welcome!")
}

func CacheIndex(w http.ResponseWriter, r *http.Request) {
	dbcaches, err := getCaches()
	if err != nil {
		panic(err)
	}

	w.Header().Set("Content-Type", "application/json; charset=UTF-8")
	w.WriteHeader(http.StatusOK)

	var apicaches APICaches
	for db := range dbcaches {
		apicaches = append(apicaches, DBToAPI(dbcaches[db]))
	}

	out, err := json.MarshalIndent(apicaches, "", "  ")
	if err != nil {
		panic(err)
	}

	fmt.Fprintf(w, string(out))
}

func MarshalCache(apicache APICache) (string, error) {
	str, err := json.MarshalIndent(apicache, "", "  ")
	return string(str), err
}

func CacheShow(w http.ResponseWriter, r *http.Request) {
	cacheId, err := strconv.ParseUint(mux.Vars(r)["cacheId"], 10, 64)
	if err != nil {
		panic(err)
	}

	cache, err := getCache(cacheId)
	if err != nil {
		panic(err)
	}

	w.Header().Set("Content-Type", "application/json; charset=UTF-8")
	w.WriteHeader(http.StatusOK)

	str, err := MarshalCache(DBToAPI(cache))
	if err != nil {
		panic(err)
	}

	fmt.Fprintln(w, str)
}

func CacheCreate(w http.ResponseWriter, r *http.Request) {
	var postcache PostCache

	body, err := ioutil.ReadAll(io.LimitReader(r.Body, 1048576))
	if err != nil {
		panic(err)
	}
	if err := r.Body.Close(); err != nil {
		panic(err)
	}
	if err := json.Unmarshal(body, &postcache); err != nil {
		w.Header().Set("Content-Type", "application/json; charset=UTF-8")
		w.WriteHeader(422) // unprocessable entity
		panic(err)
	}

	filename := uuid.New() + ".mp3"
	incache := PostToDB(postcache, filename)

	outcache, err := postCache(incache)
	if err != nil {
		panic(err)
	}

	err = writeFile(postcache, filename)
	if err != nil {
		panic(err)
	}

	w.Header().Set("Content-Type", "application/json; charset=UTF-8")
	w.WriteHeader(http.StatusCreated)

	str, err := MarshalCache(DBToAPI(outcache))
	if err != nil {
		panic(err)
	}

	fmt.Fprintln(w, str)
}