2022-12-14 11:18:11 +00:00
|
|
|
package application
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-12-15 16:08:30 +00:00
|
|
|
"encoding/json"
|
2022-12-14 11:18:11 +00:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
|
2022-12-15 16:08:30 +00:00
|
|
|
formvalidators "git.coopgo.io/coopgo-apps/parcoursmob/utils/form-validators"
|
2022-12-14 11:18:11 +00:00
|
|
|
mobilityaccounts "git.coopgo.io/coopgo-platform/mobility-accounts/grpcapi"
|
2022-12-15 16:08:30 +00:00
|
|
|
"google.golang.org/protobuf/types/known/structpb"
|
2022-12-14 11:18:11 +00:00
|
|
|
)
|
|
|
|
|
2022-12-15 16:08:30 +00:00
|
|
|
type UserForm struct {
|
|
|
|
FirstName string `json:"first_name" validate:"required"`
|
|
|
|
LastName string `json:"last_name" validate:"required"`
|
|
|
|
Email string `json:"email" validate:"required,email"`
|
2023-02-23 08:52:11 +00:00
|
|
|
PhoneNumber string `json:"phone_number" `
|
2022-12-15 16:08:30 +00:00
|
|
|
Address any `json:"address,omitempty"`
|
|
|
|
Gender string `json:"gender"`
|
|
|
|
}
|
|
|
|
|
2023-01-17 07:31:07 +00:00
|
|
|
func (h *ApplicationHandler) MemberDisplay(w http.ResponseWriter, r *http.Request) {
|
2022-12-14 11:18:11 +00:00
|
|
|
|
|
|
|
adm := strings.Split(r.URL.Path, "/")
|
|
|
|
adminid := adm[3]
|
|
|
|
|
|
|
|
request := &mobilityaccounts.GetAccountRequest{
|
|
|
|
Id: adminid,
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := h.services.GRPC.MobilityAccounts.GetAccount(context.TODO(), request)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-01-17 07:31:07 +00:00
|
|
|
h.Renderer.MemberDisplay(w, r, resp.Account.ToStorageType())
|
2022-12-14 11:18:11 +00:00
|
|
|
}
|
2022-12-15 16:08:30 +00:00
|
|
|
|
2023-01-17 07:31:07 +00:00
|
|
|
func (h *ApplicationHandler) MemberUpdate(w http.ResponseWriter, r *http.Request) {
|
2022-12-15 16:08:30 +00:00
|
|
|
adm := strings.Split(r.URL.Path, "/")
|
|
|
|
userID := adm[3]
|
|
|
|
|
|
|
|
if r.Method == "POST" {
|
|
|
|
|
|
|
|
dataMap, err := parseUserForm(r)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
data, err := structpb.NewValue(dataMap)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
request := &mobilityaccounts.UpdateDataRequest{
|
|
|
|
Account: &mobilityaccounts.Account{
|
|
|
|
Id: userID,
|
|
|
|
Namespace: "parcoursmob",
|
|
|
|
Data: data.GetStructValue(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := h.services.GRPC.MobilityAccounts.UpdateData(context.TODO(), request)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-02-17 16:24:10 +00:00
|
|
|
http.Redirect(w, r, fmt.Sprintf("/app/members/%s", resp.Account.Id), http.StatusFound)
|
2022-12-15 16:08:30 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
request := &mobilityaccounts.GetAccountRequest{
|
|
|
|
Id: userID,
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := h.services.GRPC.MobilityAccounts.GetAccount(context.TODO(), request)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-01-17 07:31:07 +00:00
|
|
|
h.Renderer.MemberUpdate(w, r, resp.Account.ToStorageType())
|
2022-12-15 16:08:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func parseUserForm(r *http.Request) (map[string]any, error) {
|
|
|
|
if err := r.ParseForm(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
formData := UserForm{
|
|
|
|
FirstName: r.PostFormValue("first_name"),
|
|
|
|
LastName: r.PostFormValue("last_name"),
|
|
|
|
Email: r.PostFormValue("email"),
|
|
|
|
PhoneNumber: r.PostFormValue("phone_number"),
|
|
|
|
Gender: r.PostFormValue("gender"),
|
|
|
|
}
|
|
|
|
|
|
|
|
validate := formvalidators.New()
|
|
|
|
if err := validate.Struct(formData); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
d, err := json.Marshal(formData)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var dataMap map[string]any
|
|
|
|
err = json.Unmarshal(d, &dataMap)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return dataMap, nil
|
|
|
|
}
|