You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.5 KiB
Go

package user
import (
"github.com/ajikamaludin/go-fiber-rest/app/models"
gormdb "github.com/ajikamaludin/go-fiber-rest/pkg/gorm.db"
"github.com/ajikamaludin/go-fiber-rest/pkg/utils/constants"
"github.com/ajikamaludin/go-fiber-rest/pkg/utils/validator"
"github.com/gofiber/fiber/v2"
"golang.org/x/crypto/bcrypt"
)
func CreateUser(c *fiber.Ctx) error {
userRequest := new(models.User)
if err := c.BodyParser(&userRequest); err != nil {
return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{
"message": err.Error(),
})
}
errors := validator.ValidateRequest(userRequest)
if errors != nil {
return c.Status(fiber.StatusUnprocessableEntity).JSON(errors)
}
db, err := gormdb.GetInstance()
if err != nil {
return err
}
hashedPassword, err := bcrypt.GenerateFromPassword([]byte(userRequest.Password), bcrypt.DefaultCost)
if err != nil {
return c.Status(fiber.StatusCreated).JSON(fiber.Map{
"status": constants.STATUS_FAIL,
"message": "error",
"data": err.Error(),
})
}
var user = models.User{
Email: userRequest.Email,
Password: string(hashedPassword),
}
db.Create(&user)
return c.Status(fiber.StatusCreated).JSON(fiber.Map{
"status": constants.STATUS_SUCCESS,
"message": "user created",
"data": user,
})
}
func GetAllUsers(c *fiber.Ctx) error {
db, err := gormdb.GetInstance()
if err != nil {
return err
}
users := &models.User{}
db.Find(&users)
return c.Status(fiber.StatusOK).JSON(fiber.Map{
"status": constants.STATUS_SUCCESS,
"message": "Ok",
"data": users,
})
}