add org structure

This commit is contained in:
andrusyakka
2023-07-05 18:03:24 +03:00
parent f8cb5dea99
commit 3dd20da723
10 changed files with 125 additions and 11 deletions

View File

@@ -17,7 +17,7 @@ func (h *Handler) Login(c echo.Context) (err error) {
u.Password = fmt.Sprintf("%x", sha256.Sum256([]byte(u.Password)))
var t = h.DB.Where("user_name = ? AND password = ?", u.UserName, u.Password).First(&u)
var t = h.DB.Model(&model.User{}).Preload("Position").Where("user_name = ? AND password = ?", u.UserName, u.Password).First(&u)
if t.RowsAffected == 0 {
return c.NoContent(http.StatusNotFound)

31
handler/organization.go Normal file
View File

@@ -0,0 +1,31 @@
package handler
import (
"astra-users/model"
"github.com/labstack/echo/v4"
"net/http"
)
func (h *Handler) CreateOrganization(c echo.Context) (err error) {
organization := new(model.Organization)
if err = c.Bind(organization); err != nil {
return c.NoContent(http.StatusBadRequest)
}
tx := h.DB.Create(organization)
if tx.RowsAffected == 0 {
return c.NoContent(http.StatusBadGateway)
}
return c.JSON(http.StatusCreated, organization)
}
func (h *Handler) GetOrganizations(c echo.Context) error {
var organizations []model.Organization
h.DB.Find(&organizations)
return c.JSON(http.StatusCreated, organizations)
}

53
handler/position.go Normal file
View File

@@ -0,0 +1,53 @@
package handler
import (
"astra-users/model"
"errors"
"github.com/labstack/echo/v4"
"net/http"
"strconv"
)
func (h *Handler) GetPositionHandler(c echo.Context) error {
id, err := strconv.Atoi(c.Param("id"))
if err != nil {
return c.NoContent(http.StatusBadRequest)
}
position, err := h.GetPosition(id)
if err != nil {
return err
}
return c.JSON(http.StatusOK, position)
}
func (h *Handler) GetPosition(id int) (*model.Position, error) {
var position model.Position
r := h.DB.Find(&position, id)
if r.RowsAffected == 0 {
return nil, errors.New("position not found")
}
return &position, nil
}
func (h *Handler) CreatePosition(c echo.Context) (err error) {
position := new(model.Position)
if err = c.Bind(position); err != nil {
return c.NoContent(http.StatusBadRequest)
}
tx := h.DB.Create(position)
if tx.RowsAffected == 0 {
return c.NoContent(http.StatusBadGateway)
}
return c.JSON(http.StatusCreated, position)
}

View File

@@ -102,7 +102,7 @@ func (h *Handler) CreateUser(c echo.Context) (err error) {
user.Password = fmt.Sprintf("%x", sha256.Sum256([]byte(user.Password)))
tx := h.DB.Omit("ID", "CreatedAt", "UpdatedAt", "DeletedAt").Create(user)
tx := h.DB.Create(user)
if tx.RowsAffected == 0 {
return c.NoContent(http.StatusBadGateway)