ft/adds email_address and phone_number tables ft/adds email and phone endpoints ft/adds account_level query
116 lines
3.4 KiB
Go
116 lines
3.4 KiB
Go
package gapi
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"errors"
|
|
"log/slog"
|
|
|
|
db "github.com/itsscb/df/bff/db/sqlc"
|
|
"github.com/itsscb/df/bff/pb"
|
|
"google.golang.org/genproto/googleapis/rpc/errdetails"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
func (server *Server) UpdatePerson(ctx context.Context, req *pb.UpdatePersonRequest) (*pb.UpdatePersonResponse, error) {
|
|
authPayload, err := server.authorizeUser(ctx)
|
|
if err != nil {
|
|
return nil, unauthenticatedError(err)
|
|
}
|
|
|
|
violations := validateUpdatePersonRequest(req)
|
|
if violations != nil {
|
|
return nil, invalidArgumentError(violations)
|
|
}
|
|
|
|
account, err := server.store.GetAccount(ctx, authPayload.AccountID)
|
|
if err != nil {
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
return nil, status.Errorf(codes.NotFound, "account not found")
|
|
}
|
|
slog.Error("update_person (get_account)", slog.Int64("invoked_by", int64(authPayload.AccountID)), slog.Int64("person_id", int64(req.GetId())), slog.String("error", err.Error()))
|
|
return nil, status.Error(codes.Internal, "failed to get account")
|
|
}
|
|
|
|
if authPayload.AccountID != account.ID {
|
|
if !server.isAdmin(ctx, authPayload) {
|
|
return nil, status.Error(codes.NotFound, "account not found")
|
|
}
|
|
}
|
|
|
|
dbPerson, err := server.store.GetPerson(ctx, req.GetId())
|
|
if err != nil {
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
return nil, status.Errorf(codes.NotFound, "person not found")
|
|
}
|
|
slog.Error("update_person (get_person)", slog.Int64("invoked_by", int64(authPayload.AccountID)), slog.Int64("person_id", int64(req.GetId())), slog.String("error", err.Error()))
|
|
return nil, status.Error(codes.Internal, "failed to get person")
|
|
}
|
|
|
|
if dbPerson.AccountID != account.ID {
|
|
if !server.isAdmin(ctx, authPayload) {
|
|
return nil, status.Error(codes.NotFound, "person not found")
|
|
}
|
|
}
|
|
|
|
arg := db.UpdatePersonParams{
|
|
ID: req.GetId(),
|
|
Firstname: sql.NullString{
|
|
Valid: req.GetFirstname() != "",
|
|
String: req.GetFirstname(),
|
|
},
|
|
Lastname: sql.NullString{
|
|
Valid: req.GetLastname() != "",
|
|
String: req.GetLastname(),
|
|
},
|
|
City: sql.NullString{
|
|
Valid: req.GetCity() != "",
|
|
String: req.GetCity(),
|
|
},
|
|
Zip: sql.NullString{
|
|
Valid: req.GetZip() != "",
|
|
String: req.GetZip(),
|
|
},
|
|
Street: sql.NullString{
|
|
Valid: req.GetStreet() != "",
|
|
String: req.GetStreet(),
|
|
},
|
|
Country: sql.NullString{
|
|
Valid: req.GetCountry() != "",
|
|
String: req.GetCountry(),
|
|
},
|
|
Birthday: sql.NullTime{
|
|
Valid: req.GetBirthday().IsValid(),
|
|
Time: req.GetBirthday().AsTime(),
|
|
},
|
|
Changer: account.Email,
|
|
}
|
|
|
|
person, err := server.store.UpdatePerson(ctx, arg)
|
|
if err != nil {
|
|
slog.Error("update_person (get_person)", slog.Int64("invoked_by", int64(authPayload.AccountID)), slog.Int64("person_id", int64(req.GetId())), slog.String("error", err.Error()))
|
|
return nil, status.Error(codes.Internal, "failed to update person")
|
|
}
|
|
|
|
rsp := &pb.UpdatePersonResponse{
|
|
Person: convertPerson(person),
|
|
}
|
|
|
|
return rsp, nil
|
|
}
|
|
|
|
func validateUpdatePersonRequest(req *pb.UpdatePersonRequest) (violations []*errdetails.BadRequest_FieldViolation) {
|
|
if req.GetId() < 1 {
|
|
violations = append(violations, fieldViolation("id", errors.New("must be greater than 0")))
|
|
}
|
|
|
|
if req.GetRelationship() != "" {
|
|
if req.GetRelationship() != "sole_heir" || req.GetRelationship() != "widow" || req.GetRelationship() != "child" {
|
|
violations = append(violations, fieldViolation("relationship", errors.New("allowed values are: 'sole_heir', 'widow', 'child'")))
|
|
}
|
|
}
|
|
|
|
return violations
|
|
}
|