Ajouter GetMembreResponse
This commit is contained in:
parent
f7981715db
commit
d6573287f4
2 changed files with 33 additions and 14 deletions
|
@ -6,6 +6,7 @@ import (
|
||||||
"github.com/labstack/echo/v4"
|
"github.com/labstack/echo/v4"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
|
|
||||||
|
"git.agecem.com/agecem/bottin-agenda/responses"
|
||||||
bottindata "git.agecem.com/agecem/bottin/v5/data"
|
bottindata "git.agecem.com/agecem/bottin/v5/data"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -25,23 +26,31 @@ func GetMembre(c echo.Context) error {
|
||||||
|
|
||||||
membreID := c.Param("membre_id")
|
membreID := c.Param("membre_id")
|
||||||
|
|
||||||
|
getMembreResponse := responses.GetMembreResponse{}
|
||||||
|
|
||||||
membre, err := bottinConnection.GetMembre(membreID)
|
membre, err := bottinConnection.GetMembre(membreID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err.Error() == "No membre by that id was found" {
|
getMembreResponse.Message = err.Error()
|
||||||
return c.JSON(http.StatusNotFound, map[string]string{
|
|
||||||
"message": "Not Found",
|
var statusCode int
|
||||||
})
|
|
||||||
|
switch err.Error() {
|
||||||
|
case "Veuillez fournir un numéro étudiant à rechercher":
|
||||||
|
statusCode = http.StatusBadRequest
|
||||||
|
case "Ce numéro étudiant ne correspond à aucunE membre":
|
||||||
|
statusCode = http.StatusNotFound
|
||||||
|
default:
|
||||||
|
statusCode = http.StatusInternalServerError
|
||||||
}
|
}
|
||||||
return c.JSON(http.StatusInternalServerError, map[string]string{
|
|
||||||
"message": "Unknown error during GetMembre",
|
getMembreResponse.Data.Membre = membre
|
||||||
"error": err.Error(),
|
|
||||||
})
|
return c.JSON(statusCode, getMembreResponse)
|
||||||
}
|
}
|
||||||
|
|
||||||
return c.JSON(http.StatusOK, map[string]interface{}{
|
getMembreResponse.Data.Membre = membre
|
||||||
"message": "Read successful",
|
|
||||||
"data": map[string]interface{}{
|
getMembreResponse.Message = "Read successful"
|
||||||
"membre": &membre,
|
|
||||||
},
|
return c.JSON(http.StatusOK, getMembreResponse)
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
10
responses/responses.go
Normal file
10
responses/responses.go
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
package responses
|
||||||
|
|
||||||
|
import bottinmodels "git.agecem.com/agecem/bottin/v5/models"
|
||||||
|
|
||||||
|
type GetMembreResponse struct {
|
||||||
|
Message string `json:"message"`
|
||||||
|
Data struct {
|
||||||
|
Membre bottinmodels.Membre
|
||||||
|
} `json:"data"`
|
||||||
|
}
|
Loading…
Reference in a new issue