parcoursmob/handlers/application/solidarity_service.go

152 lines
3.8 KiB
Go
Raw Normal View History

package application
2024-08-28 12:10:03 +00:00
import (
"context"
"fmt"
"net/http"
"time"
2024-08-02 13:02:35 +00:00
2024-08-28 12:10:03 +00:00
solidarity_service "git.coopgo.io/sbouaram/solidarity-service/servers/grpc/proto"
"github.com/google/uuid"
2024-08-28 12:10:03 +00:00
geojson "github.com/paulmach/go.geojson"
2024-09-25 13:16:02 +00:00
"google.golang.org/protobuf/types/known/emptypb"
2024-08-28 12:10:03 +00:00
"google.golang.org/protobuf/types/known/timestamppb"
)
2024-09-25 13:16:02 +00:00
var BookingData Booking
type Booking struct {
bookingData solidarity_service.CreateBookingSolidarityRequest
}
2024-08-28 12:10:03 +00:00
func (h *ApplicationHandler) DriversJourney(w http.ResponseWriter, r *http.Request) {
2024-09-25 13:16:02 +00:00
parcourmobAccounts, err := h.beneficiaries(r)
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusBadRequest)
return
}
accounts, err := h.services.GRPC.SolidarityService.GetAllPassengers(context.TODO(), &emptypb.Empty{})
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusBadRequest)
return
}
cacheid := uuid.NewString()
h.cache.PutWithTTL(cacheid, accounts, 1*time.Hour)
2024-09-25 13:16:02 +00:00
h.cache.PutWithTTL(cacheid, parcourmobAccounts, 1*time.Hour)
2024-09-17 12:42:27 +00:00
2024-09-25 13:16:02 +00:00
if r.Method == "GET" && r.FormValue("date") != ""{
DepartureAddress := r.FormValue("departure");
DestinationAddress := r.FormValue("destination");
PickupDate := r.FormValue("date");
2024-09-25 13:16:02 +00:00
PassengerId := r.FormValue("passenger_id")
layout := "2006-01-02T15:04"
2024-09-25 13:16:02 +00:00
dateParsed, err := time.Parse(layout, PickupDate)
2024-09-19 09:14:02 +00:00
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError)
return
}
2024-08-28 12:10:03 +00:00
var (
departuregeo *geojson.Feature
destinationgeo *geojson.Feature
)
timestamp := timestamppb.New(dateParsed)
if PickupDate != "" && DepartureAddress != "" && DestinationAddress != "" {
2024-08-28 12:10:03 +00:00
// searched = true
var err error
departuregeo, err = geojson.UnmarshalFeature([]byte(DepartureAddress))
2024-08-28 12:10:03 +00:00
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusBadRequest)
return
}
destinationgeo, err = geojson.UnmarshalFeature([]byte(DestinationAddress))
2024-08-28 12:10:03 +00:00
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusBadRequest)
return
}
}
2024-08-02 13:02:35 +00:00
2024-09-19 09:14:02 +00:00
request := solidarity_service.DriverJourneysRequest{
2024-08-28 12:10:03 +00:00
DepartureDate: timestamp,
Departure: &solidarity_service.Feature{
Lat: departuregeo.Geometry.Point[0],
Long: departuregeo.Geometry.Point[1],
Address: DepartureAddress,
2024-08-28 12:10:03 +00:00
},
}
2024-08-02 13:02:35 +00:00
2024-09-19 09:14:02 +00:00
drivers, err := h.services.GRPC.SolidarityService.DriverJourneys(context.TODO(), &request)
2024-08-28 12:10:03 +00:00
2024-09-19 09:14:02 +00:00
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError)
return
}
2024-08-28 12:10:03 +00:00
2024-09-25 13:16:02 +00:00
BookingData.bookingData = solidarity_service.CreateBookingSolidarityRequest {
2024-09-17 12:42:27 +00:00
Booking : &solidarity_service.BookingSolidarityRequest {
2024-09-25 13:16:02 +00:00
PassengerId: PassengerId,
DepartureAddress: &solidarity_service.Feature{
Lat: departuregeo.Geometry.Point[0],
Long: departuregeo.Geometry.Point[1],
Address: DepartureAddress,
},
DestinationAddress: &solidarity_service.Feature{
Lat: destinationgeo.Geometry.Point[0],
Long: destinationgeo.Geometry.Point[1],
Address: DepartureAddress,
},
PickupDate : timestamp,
2024-09-17 12:42:27 +00:00
},
}
2024-09-25 13:16:02 +00:00
fmt.Println(BookingData.bookingData, "booking")
2024-09-25 13:16:02 +00:00
h.Renderer.SolidarityServiceListAvailableDrivers(w, r, drivers, &BookingData.bookingData, accounts, parcourmobAccounts, cacheid)
} else if r.Method == "POST" {
driverId := r.FormValue("driver_id")
id := uuid.New().String()
2024-08-28 12:10:03 +00:00
2024-09-25 13:16:02 +00:00
BookingData.bookingData.Booking.DriverId = driverId
BookingData.bookingData.Booking.Id = id
fmt.Println(BookingData.bookingData, "booking")
booking, err := h.services.GRPC.SolidarityService.CreateBookingSolidarity(context.TODO(), &BookingData.bookingData)
2024-09-19 09:14:02 +00:00
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError)
return
}
2024-09-25 13:16:02 +00:00
h.Renderer.SolidarityServiceBooking(w, r, booking, parcourmobAccounts)
}else {
2024-09-25 13:16:02 +00:00
h.Renderer.SolidarityService(w, r, accounts, parcourmobAccounts, cacheid)
2024-09-19 09:14:02 +00:00
}
2024-09-17 12:42:27 +00:00
}