Albirew/mangadex-next
Albirew
/
mangadex-next
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2024-03-02. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
mangadex-next/controllers/user.go

55 lignes
1.1 KiB
Go

package controllers
import (
"encoding/json"
"log"
"net/http"
"github.com/gorilla/mux"
"github.com/hbjydev/mangadex-next/models"
)
type UserController struct{}
func (u *UserController) GetAll(w http.ResponseWriter, r *http.Request) {
users, err := models.GetUsers()
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
usersJSON, err := json.Marshal(users)
if err != nil {
log.Println("/users: failed to marshal users array")
w.WriteHeader(http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
w.Write(usersJSON)
}
func (u *UserController) GetOne(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
user, err := models.UserByUsername(vars["username"])
if err != nil {
if err.Error() == "sql: no rows in result set" {
w.WriteHeader(http.StatusNotFound)
} else {
w.WriteHeader(http.StatusInternalServerError)
}
return
}
userJSON, err := user.Normalize()
if err != nil {
log.Printf("/user/%v: failed to marshal user", vars["username"])
w.WriteHeader(http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
w.Write([]byte(*userJSON))
}