I'm writing a Golang api and client but can't get valid json from a slice of structs in the api. The result I get in my client looks like this.
[{0 Mark 1234 false} {0 John 3456 false}]
I need this json to look like
[{"id":0, "name":Mark, "pin":1234, "active":false} {"id":0, "name":John, "pin":3456, "active":false}]
I can't find examples showing me how to code this properly and this is not a duplicate of anything I can find despite a warning that it is. While my client successfully parses the JSON back to a struct, I also need it to return JSON to an IOS client which is requesting it. The flow is API -> API -> iOS client. I don't know how to produce JSON from the struct for the iOS client.
Here is my api code.
// Employee model
type Employee struct {
EmployeeID int64 `json:"id"`
Name string `json:"name"`
Pin int `json:"pin"`
Active bool `json:"active"`
}
func getEmployees(db *sql.DB, venueID int64) ([]Employee, error) {
var employee Employee
var employees []Employee
query, err := db.Query("SELECT id, name, pin FROM employees WHERE active=1 AND venue_id=? ORDER BY name", venueID)
if err != nil {
return employees, err
}
defer query.Close()
for query.Next() {
err = query.Scan(&employee.EmployeeID, &employee.Name, &employee.Pin)
if err != nil {
return employees, err
}
employees = append(employees, employee)
}
return employees, err
}
func (rs *appResource) listEmployees(w http.ResponseWriter, r *http.Request) {
var venue Venue
token := getToken(r)
fmt.Println(token)
venue, err := getVenue(rs.db, token)
if err != nil {
log.Fatal(err)
return
}
venueID := venue.VenueID
if !(venueID > 0) {
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
return
}
employees, err := getEmployees(rs.db, venueID)
if err != nil {
log.Fatal(err)
return
}
fmt.Println(employees[0].EmployeeID)
employeesJSON, err := json.Marshal(employees)
if err != nil {
log.Fatal(err)
return
}
w.Write([]byte(employeesJSON))
}
Here is my client code:
func (rs *appResource) getEmployees(w http.ResponseWriter, r *http.Request) {
path := rs.url + "/employees"
fmt.Println(path)
res, err := rs.client.Get(path)
if err != nil {
log.Println("error in get")
log.Fatal(err)
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
return
}
defer res.Body.Close()
if res.StatusCode == 500 {
fmt.Printf("res.StatusCode: %d
", res.StatusCode)
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
if res.StatusCode == 404 {
fmt.Printf("res.StatusCode: %d
", res.StatusCode)
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
return
}
body, err := ioutil.ReadAll(res.Body)
if err != nil {
log.Fatal(err)
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
// here I want to return actual JSON to an iOS client
w.WriteHeader(http.StatusOK)
w.Write([]byte("{ok}"))
}