add events

This commit is contained in:
andrusyakka
2023-07-17 14:30:22 +03:00
parent 9234b577bb
commit c8ce5a910e
5 changed files with 99 additions and 29 deletions

View File

@@ -13,15 +13,9 @@ import (
)
func Login(c echo.Context) (err error) {
// Bind
u := new(model.User)
if err = c.Bind(u); err != nil {
return
}
data, err := api.PostRequest(config.Env.MSHosts.UsersHost+"/login", u, c.Request().Header)
u.Password = ""
data, err, _ := api.PostRequest(config.Env.MSHosts.UsersHost+"/login", c.Request().Body, c.Request().Header)
if err != nil {
return c.NoContent(http.StatusBadGateway)
@@ -85,7 +79,7 @@ func GetUsers(c echo.Context) error {
func DeleteUser(c echo.Context) error {
id := c.Param("id")
data, err := api.DeleteRequest(
data, err, resp := api.DeleteRequest(
config.Env.MSHosts.UsersHost+"/"+id,
c.Request().Header)
@@ -93,7 +87,7 @@ func DeleteUser(c echo.Context) error {
return c.NoContent(http.StatusBadGateway)
}
return c.JSONBlob(http.StatusOK, data)
return c.Blob(resp.StatusCode, resp.Header.Get("Content-Type"), data)
}
func UpdateUser(c echo.Context) (err error) {
@@ -125,3 +119,15 @@ func GetOrganizations(c echo.Context) error {
return c.Blob(resp.StatusCode, resp.Header.Get("Content-Type"), data)
}
func GetPositions(c echo.Context) error {
data, err, resp := api.GetRequest(
config.Env.MSHosts.UsersHost+"/positions",
c.Request().Header, c.Request().URL.RawQuery)
if err != nil {
return c.NoContent(http.StatusBadGateway)
}
return c.Blob(resp.StatusCode, resp.Header.Get("Content-Type"), data)
}