blob: 40bd55fea0df6dfb71c2f2f53206bd98bb0b5b14 (
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
|
package api
import (
"fmt"
"log"
"net/http"
redqdb "sinanmohd.com/redq/db"
)
type examplApiName struct {
db *redqdb.SafeDB
req *RequestApiName
resp *ResponseApiName
}
type RequestApiName struct {
BearerToken string
}
type ResponseApiName struct {
Bearer *redqdb.Bearer
Error string `json:"error,omitempty"`
}
func newExamplApiName(db *redqdb.SafeDB) *examplApiName {
a := &examplApiName{}
a.db = db
return a
}
func (a *examplApiName) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
a.req = &RequestApiName{}
a.resp = &ResponseApiName{}
a.resp.Bearer = &redqdb.Bearer{}
err := unmarshal(r.Body, a.req)
if err != nil {
log.Println(err)
return
}
err = a.resp.Bearer.VerifyAndUpdate(a.db, a.req.BearerToken)
if err != nil {
log.Println(err)
a.resp.Error = err.Error()
return
}
json, err := marshal(a.resp)
if err != nil {
log.Println(err)
a.resp.Error = err.Error()
return
}
fmt.Fprintf(rw, json)
}
|