Compare commits
3 Commits
modifyVehi
...
5476ea1c99
| Author | SHA1 | Date | |
|---|---|---|---|
| 5476ea1c99 | |||
| 59c6ce9da6 | |||
| 439f819989 |
@@ -413,6 +413,15 @@ func (h ApplicationHandler) AdminStatVehicles(w http.ResponseWriter, r *http.Req
|
|||||||
administrators = append(administrators, v.Administrators[0])
|
administrators = append(administrators, v.Administrators[0])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
vehicleBookings := []fleetsstorage.Booking{}
|
||||||
|
for _, b := range v.Bookings {
|
||||||
|
if b.Unavailableto.After(time.Now()) {
|
||||||
|
vehicleBookings = append(vehicleBookings, b)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
v.Bookings = vehicleBookings
|
||||||
|
|
||||||
vehicles = append(vehicles, v)
|
vehicles = append(vehicles, v)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -71,6 +71,41 @@ func (h *ApplicationHandler) AgendaHome(w http.ResponseWriter, r *http.Request)
|
|||||||
h.Renderer.AgendaHome(w, r, responses, groups)
|
h.Renderer.AgendaHome(w, r, responses, groups)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (h *ApplicationHandler) AgendaHistory(w http.ResponseWriter, r *http.Request) {
|
||||||
|
resp, err := h.services.GRPC.Agenda.GetEvents(context.TODO(), &agenda.GetEventsRequest{
|
||||||
|
Namespaces: []string{"parcoursmob_dispositifs"},
|
||||||
|
//Maxdate: timestamppb.New(time.Now().Add(24 * time.Hour)),
|
||||||
|
})
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println(err)
|
||||||
|
w.WriteHeader(http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
responses := []agendastorage.Event{}
|
||||||
|
|
||||||
|
groupids := []string{}
|
||||||
|
for _, e := range resp.Events {
|
||||||
|
groupids = append(groupids, e.Owners...)
|
||||||
|
responses = append(responses, e.ToStorageType())
|
||||||
|
}
|
||||||
|
|
||||||
|
sort.Sort(sorting.EventsByStartdate(responses))
|
||||||
|
|
||||||
|
groupsresp, err := h.services.GRPC.GroupsManagement.GetGroupsBatch(context.TODO(), &groupsmanagement.GetGroupsBatchRequest{
|
||||||
|
Groupids: groupids,
|
||||||
|
})
|
||||||
|
groups := map[string]any{}
|
||||||
|
|
||||||
|
if err == nil {
|
||||||
|
for _, g := range groupsresp.Groups {
|
||||||
|
groups[g.Id] = g.ToStorageType()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
h.Renderer.AgendaHistory(w, r, responses, groups)
|
||||||
|
}
|
||||||
|
|
||||||
func (h *ApplicationHandler) AgendaCreateEvent(w http.ResponseWriter, r *http.Request) {
|
func (h *ApplicationHandler) AgendaCreateEvent(w http.ResponseWriter, r *http.Request) {
|
||||||
if r.Method == "POST" {
|
if r.Method == "POST" {
|
||||||
// Get current group
|
// Get current group
|
||||||
@@ -540,10 +575,10 @@ func (h *ApplicationHandler) AgendaDeleteSubscribeEvent(w http.ResponseWriter, r
|
|||||||
}
|
}
|
||||||
|
|
||||||
data := map[string]any{
|
data := map[string]any{
|
||||||
"motif": r.FormValue("motif"),
|
"motif": r.FormValue("motif"),
|
||||||
"user": current_user_claims["first_name"].(string) + " " + current_user_claims["last_name"].(string),
|
"user": current_user_claims["first_name"].(string) + " " + current_user_claims["last_name"].(string),
|
||||||
"subscriber": fmt.Sprintf("http://localhost:9000/app/beneficiaries/%s", subscribeid),
|
"subscriber": fmt.Sprintf("http://localhost:9000/app/beneficiaries/%s", subscribeid),
|
||||||
"link": fmt.Sprintf("http://localhost:9000/app/agenda/%s", eventId),
|
"link": fmt.Sprintf("http://localhost:9000/app/agenda/%s", eventId),
|
||||||
}
|
}
|
||||||
|
|
||||||
// récupérer l'adresse mail de l'utilisateur qui a créé l'événement
|
// récupérer l'adresse mail de l'utilisateur qui a créé l'événement
|
||||||
|
|||||||
@@ -268,7 +268,7 @@ func (h *ApplicationHandler) BeneficiaryDocuments(w http.ResponseWriter, r *http
|
|||||||
beneficiaryID := vars["beneficiaryid"]
|
beneficiaryID := vars["beneficiaryid"]
|
||||||
|
|
||||||
//r.ParseForm()
|
//r.ParseForm()
|
||||||
r.ParseMultipartForm(10 * 1024 * 1024)
|
r.ParseMultipartForm(100 * 1024 * 1024)
|
||||||
|
|
||||||
document_type := r.FormValue("type")
|
document_type := r.FormValue("type")
|
||||||
document_name := r.FormValue("name")
|
document_name := r.FormValue("name")
|
||||||
|
|||||||
@@ -42,24 +42,22 @@ func (h *ApplicationHandler) VehiclesManagementOverview(w http.ResponseWriter, r
|
|||||||
for _, vehicle := range resp.Vehicles {
|
for _, vehicle := range resp.Vehicles {
|
||||||
if filterVehicle(r, vehicle) {
|
if filterVehicle(r, vehicle) {
|
||||||
v := vehicle.ToStorageType()
|
v := vehicle.ToStorageType()
|
||||||
vehicles = append(vehicles, v)
|
vehicleBookings := []fleetsstorage.Booking{}
|
||||||
vehicles_map[v.ID] = v
|
|
||||||
for _, b := range v.Bookings {
|
for _, b := range v.Bookings {
|
||||||
if b.Status() != fleetsstorage.StatusOld {
|
if b.Status() != fleetsstorage.StatusOld {
|
||||||
bookings = append(bookings, b)
|
bookings = append(bookings, b)
|
||||||
}
|
}
|
||||||
|
if b.Unavailableto.After(time.Now()) {
|
||||||
|
vehicleBookings = append(vehicleBookings, b)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
v.Bookings = vehicleBookings
|
||||||
|
vehicles = append(vehicles, v)
|
||||||
|
vehicles_map[v.ID] = v
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// vehiicles := []fleetsstorage.Vehicle{}
|
|
||||||
// for i, vehiicle := range resp.Vehicles {
|
|
||||||
// if len(resp.Vehicles[i].Bookings) == 0 {
|
|
||||||
// v := vehiicle.ToStorageType()
|
|
||||||
// vehiicles = append(vehiicles, v)
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//fmt.Println(vehiicles)
|
|
||||||
sort.Sort(sorting.VehiclesByLicencePlate(vehicles))
|
sort.Sort(sorting.VehiclesByLicencePlate(vehicles))
|
||||||
sort.Sort(sorting.BookingsByStartdate(bookings))
|
sort.Sort(sorting.BookingsByStartdate(bookings))
|
||||||
h.Renderer.VehiclesManagementOverview(w, r, vehicles, vehicles_map, bookings)
|
h.Renderer.VehiclesManagementOverview(w, r, vehicles, vehicles_map, bookings)
|
||||||
@@ -329,6 +327,7 @@ func (h ApplicationHandler) VehicleManagementBookingDisplay(w http.ResponseWrite
|
|||||||
|
|
||||||
alternativerequest := &fleets.GetVehiclesRequest{
|
alternativerequest := &fleets.GetVehiclesRequest{
|
||||||
Namespaces: []string{"parcoursmob"},
|
Namespaces: []string{"parcoursmob"},
|
||||||
|
Administrators: booking.Vehicle.Administrators,
|
||||||
AvailabilityFrom: timestamppb.New(booking.Startdate),
|
AvailabilityFrom: timestamppb.New(booking.Startdate),
|
||||||
AvailabilityTo: timestamppb.New(booking.Enddate.Add(24 * time.Hour)),
|
AvailabilityTo: timestamppb.New(booking.Enddate.Add(24 * time.Hour)),
|
||||||
}
|
}
|
||||||
|
|||||||
6
main.go
6
main.go
@@ -26,6 +26,7 @@ func main() {
|
|||||||
address = cfg.GetString("server.listen")
|
address = cfg.GetString("server.listen")
|
||||||
service_name = cfg.GetString("service_name")
|
service_name = cfg.GetString("service_name")
|
||||||
templates_public_dir = cfg.GetString("templates.public_dir")
|
templates_public_dir = cfg.GetString("templates.public_dir")
|
||||||
|
dev_env = cfg.GetBool("dev_env")
|
||||||
)
|
)
|
||||||
|
|
||||||
svc, err := services.NewServicesHandler(cfg)
|
svc, err := services.NewServicesHandler(cfg)
|
||||||
@@ -55,6 +56,9 @@ func main() {
|
|||||||
authHandler, _ := auth.NewAuthHandler(cfg, idp, svc, kv, emailing)
|
authHandler, _ := auth.NewAuthHandler(cfg, idp, svc, kv, emailing)
|
||||||
|
|
||||||
fmt.Println("Running", service_name, ":")
|
fmt.Println("Running", service_name, ":")
|
||||||
|
if dev_env {
|
||||||
|
fmt.Printf("\033]0;%s\007", service_name)
|
||||||
|
}
|
||||||
|
|
||||||
r := mux.NewRouter()
|
r := mux.NewRouter()
|
||||||
|
|
||||||
@@ -101,8 +105,10 @@ func main() {
|
|||||||
application.HandleFunc("/vehicles-management/fleet/{vehicleid}/update", applicationHandler.VehiclesFleetUpdate)
|
application.HandleFunc("/vehicles-management/fleet/{vehicleid}/update", applicationHandler.VehiclesFleetUpdate)
|
||||||
application.HandleFunc("/vehicles-management/bookings/", applicationHandler.VehiclesManagementBookingsList)
|
application.HandleFunc("/vehicles-management/bookings/", applicationHandler.VehiclesManagementBookingsList)
|
||||||
application.HandleFunc("/vehicles-management/bookings/{bookingid}", applicationHandler.VehicleManagementBookingDisplay)
|
application.HandleFunc("/vehicles-management/bookings/{bookingid}", applicationHandler.VehicleManagementBookingDisplay)
|
||||||
|
application.HandleFunc("/vehicles-management/bookings/{bookingid}/change-vehicle", applicationHandler.VehicleManagementBookingChangeVehicle)
|
||||||
application.HandleFunc("/vehicles-management/bookings/{bookingid}/documents/{document}", applicationHandler.BookingDocumentDownload)
|
application.HandleFunc("/vehicles-management/bookings/{bookingid}/documents/{document}", applicationHandler.BookingDocumentDownload)
|
||||||
application.HandleFunc("/agenda/", applicationHandler.AgendaHome)
|
application.HandleFunc("/agenda/", applicationHandler.AgendaHome)
|
||||||
|
application.HandleFunc("/agenda/history", applicationHandler.AgendaHistory)
|
||||||
application.HandleFunc("/agenda/create-event", applicationHandler.AgendaCreateEvent)
|
application.HandleFunc("/agenda/create-event", applicationHandler.AgendaCreateEvent)
|
||||||
application.HandleFunc("/agenda/{eventid}", applicationHandler.AgendaDisplayEvent)
|
application.HandleFunc("/agenda/{eventid}", applicationHandler.AgendaDisplayEvent)
|
||||||
///////////////////////////////Code to modify event///////////////////////
|
///////////////////////////////Code to modify event///////////////////////
|
||||||
|
|||||||
@@ -19,6 +19,17 @@ func (renderer *Renderer) AgendaHome(w http.ResponseWriter, r *http.Request, eve
|
|||||||
renderer.Render("agenda home", w, r, files, state)
|
renderer.Render("agenda home", w, r, files, state)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (renderer *Renderer) AgendaHistory(w http.ResponseWriter, r *http.Request, events []agendastorage.Event, groups map[string]any) {
|
||||||
|
files := renderer.ThemeConfig.GetStringSlice("views.agenda.history.files")
|
||||||
|
state := NewState(r, renderer.ThemeConfig, agendaMenu)
|
||||||
|
state.ViewState = map[string]any{
|
||||||
|
"events": events,
|
||||||
|
"groups": groups,
|
||||||
|
}
|
||||||
|
|
||||||
|
renderer.Render("agenda history", w, r, files, state)
|
||||||
|
}
|
||||||
|
|
||||||
func (renderer *Renderer) AgendaCreateEvent(w http.ResponseWriter, r *http.Request) {
|
func (renderer *Renderer) AgendaCreateEvent(w http.ResponseWriter, r *http.Request) {
|
||||||
files := renderer.ThemeConfig.GetStringSlice("views.agenda.create_event.files")
|
files := renderer.ThemeConfig.GetStringSlice("views.agenda.create_event.files")
|
||||||
state := NewState(r, renderer.ThemeConfig, agendaMenu)
|
state := NewState(r, renderer.ThemeConfig, agendaMenu)
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
package renderer
|
package renderer
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"html/template"
|
"html/template"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"gitlab.scity.coop/maas/navitia-golang/types"
|
"gitlab.scity.coop/maas/navitia-golang/types"
|
||||||
@@ -67,6 +69,22 @@ func JSON(v any) template.JS {
|
|||||||
return template.JS(result)
|
return template.JS(result)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func RawJSON(v any) string {
|
||||||
|
buf := new(bytes.Buffer)
|
||||||
|
enc := json.NewEncoder(buf)
|
||||||
|
enc.SetEscapeHTML(false)
|
||||||
|
err := enc.Encode(&v)
|
||||||
|
if err != nil {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
return strings.TrimSuffix(buf.String(), "\n")
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func UnescapeHTML(s string) template.HTML {
|
||||||
|
return template.HTML(s)
|
||||||
|
}
|
||||||
|
|
||||||
func Dict(v ...interface{}) map[string]interface{} {
|
func Dict(v ...interface{}) map[string]interface{} {
|
||||||
dict := map[string]interface{}{}
|
dict := map[string]interface{}{}
|
||||||
lenv := len(v)
|
lenv := len(v)
|
||||||
|
|||||||
@@ -55,6 +55,8 @@ func (renderer *Renderer) Render(name string, w http.ResponseWriter, r *http.Req
|
|||||||
"genderISO5218": GenderISO5218,
|
"genderISO5218": GenderISO5218,
|
||||||
"dict": Dict,
|
"dict": Dict,
|
||||||
"json": JSON,
|
"json": JSON,
|
||||||
|
"rawjson": RawJSON,
|
||||||
|
"unescapeHTML": UnescapeHTML,
|
||||||
"walkingLength": WalkingLength,
|
"walkingLength": WalkingLength,
|
||||||
"divideFloat64": Divide[float64],
|
"divideFloat64": Divide[float64],
|
||||||
"divideInt": Divide[int],
|
"divideInt": Divide[int],
|
||||||
@@ -83,6 +85,8 @@ func (renderer *Renderer) RenderNoLayout(name string, w http.ResponseWriter, r *
|
|||||||
"genderISO5218": GenderISO5218,
|
"genderISO5218": GenderISO5218,
|
||||||
"dict": Dict,
|
"dict": Dict,
|
||||||
"json": JSON,
|
"json": JSON,
|
||||||
|
"rawjson": RawJSON,
|
||||||
|
"unsescapeHTML": UnescapeHTML,
|
||||||
"divideFloat64": Divide[float64],
|
"divideFloat64": Divide[float64],
|
||||||
"divideInt": Divide[int],
|
"divideInt": Divide[int],
|
||||||
},
|
},
|
||||||
@@ -156,7 +160,6 @@ func NewState(r *http.Request, themeConfig *viper.Viper, menuState string) Rende
|
|||||||
Active: menuState == administrationMenu,
|
Active: menuState == administrationMenu,
|
||||||
},
|
},
|
||||||
|
|
||||||
//TODO from configuration for icons at least
|
|
||||||
MenuItems: []MenuItem{
|
MenuItems: []MenuItem{
|
||||||
{
|
{
|
||||||
Title: "Tableau de bord",
|
Title: "Tableau de bord",
|
||||||
@@ -212,16 +215,6 @@ func NewState(r *http.Request, themeConfig *viper.Viper, menuState string) Rende
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if modules["support"] != nil && modules["support"].(bool) {
|
|
||||||
ls.MenuItems = append(ls.MenuItems, MenuItem{
|
|
||||||
Title: "Support",
|
|
||||||
Link: "/app/support/",
|
|
||||||
Active: menuState == commentMenu,
|
|
||||||
Icon: "hero:outline/support",
|
|
||||||
})
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if modules["group_module"] != nil && modules["group_module"].(bool) {
|
if modules["group_module"] != nil && modules["group_module"].(bool) {
|
||||||
ls.MenuItems = append(ls.MenuItems, MenuItem{
|
ls.MenuItems = append(ls.MenuItems, MenuItem{
|
||||||
Title: "Groupes / Communautés",
|
Title: "Groupes / Communautés",
|
||||||
@@ -232,6 +225,16 @@ func NewState(r *http.Request, themeConfig *viper.Viper, menuState string) Rende
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if modules["support"] != nil && modules["support"].(bool) {
|
||||||
|
ls.MenuItems = append(ls.MenuItems, MenuItem{
|
||||||
|
Title: "Support",
|
||||||
|
Link: "/app/support/",
|
||||||
|
Active: menuState == commentMenu,
|
||||||
|
Icon: "hero:outline/support",
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
if modules["directory"] != nil && modules["directory"].(bool) {
|
if modules["directory"] != nil && modules["directory"].(bool) {
|
||||||
ls.MenuItems = append(ls.MenuItems, MenuItem{
|
ls.MenuItems = append(ls.MenuItems, MenuItem{
|
||||||
Title: "Répertoire solutions",
|
Title: "Répertoire solutions",
|
||||||
|
|||||||
Reference in New Issue
Block a user