|
|
@ -22,12 +22,21 @@ type User struct {
|
|
|
|
|
|
|
|
|
|
|
|
// GetUsers handles the GET /users route
|
|
|
|
// GetUsers handles the GET /users route
|
|
|
|
func GetUsers(w http.ResponseWriter, r *http.Request) {
|
|
|
|
func GetUsers(w http.ResponseWriter, r *http.Request) {
|
|
|
|
users := []User{
|
|
|
|
db, err := lib.Connector();
|
|
|
|
{UserID: 1, Username: "John Doe"},
|
|
|
|
if(err!=nil){
|
|
|
|
{UserID: 2, Username: "Jane Doe"},
|
|
|
|
http.Error(w, "Error retrieving users", http.StatusNotFound)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var users []User
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
response := db.Find(&users) // As it passes a pointer of the variable, the variable itself is populated with the data in the db
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(response.Error!=nil){
|
|
|
|
|
|
|
|
http.Error(w, "Error retrieving users, no users found.", http.StatusNotFound)
|
|
|
|
|
|
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
json.NewEncoder(w).Encode(users)
|
|
|
|
json.NewEncoder(w).Encode(users)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|