-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.go
78 lines (65 loc) · 2.19 KB
/
test.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
package main
import (
"encoding/json"
"net/http"
"github.com/gorilla/mux"
)
// Person : Struct de pessoa.
type Person struct {
ID string `json:"id,omitempty"`
Firstname string `json:"firstname,omitempty"`
Lastname string `json:"lastname,omitempty"`
Address *Address `json:"address,omitempty"`
}
// Address : Struct de endereço
type Address struct {
City string `json:"city,omitempty"`
State string `json:"state,omitempty"`
}
var people []Person
// GetPeople : Função para retornar todas as pessoas.
func GetPeople(w http.ResponseWriter, r *http.Request) {
json.NewEncoder(w).Encode(people)
}
// GetPerson : Função para retornar uma pessoa.
func GetPerson(w http.ResponseWriter, r *http.Request) {
params := mux.Vars(r)
for _, item := range people {
if item.ID == params["id"] {
json.NewEncoder(w).Encode(item)
return
}
}
json.NewEncoder(w).Encode(&Person{})
}
// CreatePerson : Função para criar uma pessoa.
func CreatePerson(w http.ResponseWriter, r *http.Request) {
params := mux.Vars(r)
var person Person
_ = json.NewDecoder(r.Body).Decode(&person)
person.ID = params["id"]
people = append(people, person)
json.NewEncoder(w).Encode(people)
}
// DeletePerson : Função para deletar uma pessoa.
func DeletePerson(w http.ResponseWriter, r *http.Request) {
params := mux.Vars(r)
for index, item := range people {
if item.ID == params["id"] {
people = append(people[:index], people[index+1:]...)
break
}
json.NewEncoder(w).Encode(people)
}
}
// func main() {
// people = append(people, Person{ID: "1", Firstname: "John", Lastname: "Doe", Address: &Address{City: "City X", State: "State X"}})
// people = append(people, Person{ID: "2", Firstname: "Koko", Lastname: "Doe", Address: &Address{City: "City Z", State: "State Y"}})
// people = append(people, Person{ID: "3", Firstname: "Francis", Lastname: "Sunday"})
// router := mux.NewRouter()
// router.HandleFunc("/contato", GetPeople).Methods("GET")
// router.HandleFunc("/contato/{id}", GetPerson).Methods("GET")
// router.HandleFunc("/contato/{id}", CreatePerson).Methods("POST")
// router.HandleFunc("/contato/{id}", DeletePerson).Methods("DELETE")
// log.Fatal(http.ListenAndServe(":8000", router))
// }