-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
120 lines (103 loc) · 2.81 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
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
package main
import (
"fmt"
"net/http"
"html/template"
"encoding/json"
"strings"
"regexp"
"log"
"io/ioutil"
)
type Asset struct{
ID string
Title []string
Subtitle []string
_version_ int64
id string
}
/*
[
{
"ID":[1],
"Subtitle":["Test subtitle"],
"Title":["Test title"],
"_version_":1.528875666112512e+18
,"id":"307009db-2be1-42a6-8156-3fa3ed181a5b"
}
]
*/
/*Return a Single Asset according a title*/
func GetAsset(title string) (*Asset, error){
url := "http://localhost:3232/getAll"
res, err := http.Get(url)
if err != nil{
log.Fatal(err)
}
defer res.Body.Close()
body, err :=ioutil.ReadAll(res.Body)
stringbody := string(body[:])
fmt.Println("body %s\n", stringbody)
dec := json.NewDecoder(strings.NewReader(stringbody))
var a Asset
err = dec.Decode(&a)
if err != nil{
log.Fatal(err)
}
return &a, nil
/*
//Mock result of SearchAWS of Valerio's method
const searchAws =
`
{"Title":"title1", "Subtitle": "example subtitle 1" }
{"Title":"title2", "Subtitle": "example subtitle 2" }
`
var a Asset
dec := json.NewDecoder(strings.NewReader(searchAws))
err := dec.Decode(&a);
if err != nil{
log.Fatal(err)
}
return &a, nil
*/
}
func editHandler(w http.ResponseWriter, r *http.Request, title string){
p, err := GetAsset(title)
if( err != nil){
fmt.Printf("%s\n", err)
}
renderTemplate(w,"edit",p)
}
func viewHandler(w http.ResponseWriter, r *http.Request, title string){
p, err := GetAsset(title)
if( err != nil){
http.Redirect(w,r,"edit/"+title,http.StatusFound)
return
}
renderTemplate(w,"view",p)
}
var templates = template.Must(template.ParseFiles("edit.html","view.html"))
func renderTemplate(w http.ResponseWriter, templateName string, a *Asset){
err := templates.ExecuteTemplate(w, templateName +".html", a)
if err!= nil{
http.Error(w, err.Error(), http.StatusInternalServerError)
}
}
/*restrict access to edit and view page with alphanumeric query*/
var validPath = regexp.MustCompile("(edit|view)/([a-zA-Z0-9]+)$")
func makeHandler(fn func(http.ResponseWriter, *http.Request, string)) http.HandlerFunc{
return func(w http.ResponseWriter, r *http.Request){
m := validPath.FindStringSubmatch(r.URL.Path)
if m == nil {
fmt.Printf(r.URL.Path + " not found\n")
http.NotFound(w,r)
return
}
fn(w,r,m[2])
}
}
func main(){
http.HandleFunc("/view/", makeHandler(viewHandler))
http.HandleFunc("/edit/", makeHandler(editHandler))
http.ListenAndServe(":8080",nil)
}