82 lines
2.4 KiB
Go
82 lines
2.4 KiB
Go
package dto
|
|
|
|
import (
|
|
"rijig/utils"
|
|
"strings"
|
|
)
|
|
|
|
type UserResponseDTO struct {
|
|
ID string `json:"id,omitempty"`
|
|
Username string `json:"username,omitempty"`
|
|
Avatar *string `json:"photoprofile,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Phone string `json:"phone,omitempty"`
|
|
Email string `json:"email,omitempty"`
|
|
EmailVerified bool `json:"emailVerified,omitempty"`
|
|
RoleName string `json:"role,omitempty"`
|
|
CreatedAt string `json:"createdAt,omitempty"`
|
|
UpdatedAt string `json:"updatedAt,omitempty"`
|
|
}
|
|
|
|
type RequestUserDTO struct {
|
|
Name string `json:"name"`
|
|
Phone string `json:"phone"`
|
|
Email string `json:"email"`
|
|
}
|
|
|
|
func (r *RequestUserDTO) Validate() (map[string][]string, bool) {
|
|
errors := make(map[string][]string)
|
|
|
|
if strings.TrimSpace(r.Name) == "" {
|
|
errors["name"] = append(errors["name"], "Name is required")
|
|
}
|
|
|
|
if strings.TrimSpace(r.Phone) == "" {
|
|
errors["phone"] = append(errors["phone"], "Phone number is required")
|
|
} else if !utils.IsValidPhoneNumber(r.Phone) {
|
|
errors["phone"] = append(errors["phone"], "Invalid phone number format. Use +62 followed by 9-13 digits")
|
|
}
|
|
|
|
if strings.TrimSpace(r.Email) != "" && !utils.IsValidEmail(r.Email) {
|
|
errors["email"] = append(errors["email"], "Invalid email format")
|
|
}
|
|
|
|
if len(errors) > 0 {
|
|
return errors, false
|
|
}
|
|
|
|
return nil, true
|
|
}
|
|
|
|
type UpdatePasswordDTO struct {
|
|
OldPassword string `json:"old_password"`
|
|
NewPassword string `json:"new_password"`
|
|
ConfirmNewPassword string `json:"confirm_new_password"`
|
|
}
|
|
|
|
func (u *UpdatePasswordDTO) Validate() (map[string][]string, bool) {
|
|
errors := make(map[string][]string)
|
|
|
|
if u.OldPassword == "" {
|
|
errors["old_password"] = append(errors["old_password"], "Old password is required")
|
|
}
|
|
|
|
if u.NewPassword == "" {
|
|
errors["new_password"] = append(errors["new_password"], "New password is required")
|
|
} else if !utils.IsValidPassword(u.NewPassword) {
|
|
errors["new_password"] = append(errors["new_password"], "Password must contain at least one uppercase letter, one digit, and one special character")
|
|
}
|
|
|
|
if u.ConfirmNewPassword == "" {
|
|
errors["confirm_new_password"] = append(errors["confirm_new_password"], "Confirm new password is required")
|
|
} else if u.NewPassword != u.ConfirmNewPassword {
|
|
errors["confirm_new_password"] = append(errors["confirm_new_password"], "Passwords do not match")
|
|
}
|
|
|
|
if len(errors) > 0 {
|
|
return errors, false
|
|
}
|
|
|
|
return nil, true
|
|
}
|