-
Notifications
You must be signed in to change notification settings - Fork 2
/
edit_entry_handler.php
847 lines (759 loc) · 33.3 KB
/
edit_entry_handler.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
<?php
/**
* edit_entry_handler.php
* Permet de vérifier la validitée de l'édition ou de la création d'une réservation
* Ce script fait partie de l'application GRR
* Dernière modification : $Date: 2010-03-03 14:41:34 $
* @author Laurent Delineau <[email protected]>
* @copyright Copyright 2003-2008 Laurent Delineau
* @link http://www.gnu.org/licenses/licenses.html
* @package root
* @version $Id: edit_entry_handler.php,v 1.12 2010-03-03 14:41:34 grr Exp $
* @filesource
*
* This file is part of GRR.
*
* GRR is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GRR is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GRR; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* $Log: edit_entry_handler.php,v $
* Revision 1.12 2010-03-03 14:41:34 grr
* *** empty log message ***
*
* Revision 1.11 2010-01-06 10:21:19 grr
* *** empty log message ***
*
* Revision 1.10 2009-12-02 20:11:07 grr
* *** empty log message ***
*
* Revision 1.9 2009-09-29 18:02:56 grr
* *** empty log message ***
*
* Revision 1.8 2009-06-04 15:30:17 grr
* *** empty log message ***
*
* Revision 1.7 2009-04-14 12:59:17 grr
* *** empty log message ***
*
* Revision 1.6 2009-01-20 07:19:17 grr
* *** empty log message ***
*
* Revision 1.5 2008-11-16 22:00:58 grr
* *** empty log message ***
*
* Revision 1.4 2008-11-11 22:01:14 grr
* *** empty log message ***
*
*
*/
include "include/connect.inc.php";
include "include/config.inc.php";
include "include/functions.inc.php";
include "include/$dbsys.inc.php";
include "include/mrbs_sql.inc.php";
include "include/misc.inc.php";
$grr_script_name = "edit_entry_handler.php";
// Settings
require_once("./include/settings.inc.php");
//Chargement des valeurs de la table settingS
if (!loadSettings())
die("Erreur chargement settings");
// Session related functions
require_once("./include/session.inc.php");
// Resume session
if (!grr_resumeSession()) {
header("Location: ./logout.php?auto=1&url=$url");
die();
};
// Paramètres langage
include "include/language.inc.php";
// Initialisation du test d'erreur
$erreur = 'n';
// Initialisation
$message_error = "";
if (isset($_GET["id"])) {
// Il s'agit d'une modification de réservation
// $id : identifiant de la réservation
$id = $_GET["id"];
settype($id,"integer");
} else
// Il s'agit d'une nouvelle réservation
$id = NULL;
$name = isset($_GET["name"]) ? $_GET["name"] : NULL;
// On verifie que le nom a bien été défini
if ((!isset($name) or (trim($name) == "")) and (getSettingValue("remplissage_description_breve")=='1')) {
print_header();
echo "<h2>".get_vocab("required")."</h2>";
include "include/trailer.inc.php";
die();
}
$description = isset($_GET["description"]) ? $_GET["description"] : NULL;
$ampm = isset($_GET["ampm"]) ? $_GET["ampm"] : NULL;
$day = isset($_GET["start_day"]) ? $_GET["start_day"] : NULL;
$month = isset($_GET["start_month"]) ? $_GET["start_month"] : NULL;
$year = isset($_GET["start_year"]) ? $_GET["start_year"] : NULL;
$duration = isset($_GET["duration"]) ? $_GET["duration"] : NULL;
$duration = str_replace(",", ".", "$duration ");
$hour = isset($_GET["hour"]) ? $_GET["hour"] : NULL;
if (isset($hour)) {
settype($hour,"integer");
if ($hour > 23) $hour = 23;
}
$minute = isset($_GET["minute"]) ? $_GET["minute"] : NULL;
if (isset($minute)) {
settype($minute,"integer");
if ($minute > 59) $hour = 59;
}
/*
// rep_jour = variable Jours/Cycle sélectionnée
$rep_jour = isset($_GET["rep_jour"]) ? $_GET["rep_jour"] : NULL;
//Prend la valeur du Jour cycle
$rep_jour_c = 0;
for($i=1;$i<=getSettingValue("nombre_jours_Jours/Cycles");$i++){
if(isset($rep_jour[$i])) {
$rep_jour_c = $i;
}
}
*/
$statut_entry = isset($_GET["statut_entry"]) ? $_GET["statut_entry"] : "-";
$rep_jour_c = isset($_GET["rep_jour_"]) ? $_GET["rep_jour_"] : 0;
$type = isset($_GET["type"]) ? $_GET["type"] : NULL;
$rep_type = isset($_GET["rep_type"]) ? $_GET["rep_type"] : NULL;
if (isset($rep_type)) settype($rep_type,"integer");
$rep_num_weeks = isset($_GET["rep_num_weeks"]) ? $_GET["rep_num_weeks"] : NULL;
if (isset($rep_num_weeks)) settype($rep_num_weeks,"integer");
if ($rep_num_weeks < 2) $rep_num_weeks = 1;
$rep_month = isset($_GET["rep_month"]) ? $_GET["rep_month"] : NULL;
if (($rep_type==3) and ($rep_month == 3)) $rep_type =3;
if (($rep_type==3) and ($rep_month == 5)) $rep_type =5;
$create_by = isset($_GET["create_by"]) ? $_GET["create_by"] : NULL;
$beneficiaire = isset($_GET["beneficiaire"]) ? $_GET["beneficiaire"] : "";
$benef_ext_nom = isset($_GET["benef_ext_nom"]) ? $_GET["benef_ext_nom"] : "";
$benef_ext_email = isset($_GET["benef_ext_email"]) ? $_GET["benef_ext_email"] : "";
$beneficiaire_ext = concat_nom_email($benef_ext_nom, $benef_ext_email);
$rep_id = isset($_GET["rep_id"]) ? $_GET["rep_id"] : NULL;
$rep_day = isset($_GET["rep_day"]) ? $_GET["rep_day"] : NULL;
$rep_end_day = isset($_GET["rep_end_day"]) ? $_GET["rep_end_day"] : NULL;
$rep_end_month = isset($_GET["rep_end_month"]) ? $_GET["rep_end_month"] : NULL;
$rep_end_year = isset($_GET["rep_end_year"]) ? $_GET["rep_end_year"] : NULL;
$room_back = isset($_GET["room_back"]) ? $_GET["room_back"] : NULL;
if (isset($room_back)) settype($room_back,"integer");
$page = verif_page();
if ($page == '') $page="day";
$option_reservation = isset($_GET["option_reservation"]) ? $_GET["option_reservation"] : NULL;
if (isset($option_reservation))
settype($option_reservation,"integer");
else
$option_reservation = -1;
if (isset($_GET["confirm_reservation"]))
$option_reservation = -1;
$type_affichage_reser = isset($_GET["type_affichage_reser"]) ? $_GET["type_affichage_reser"] : NULL;
// Dans le cas ou $beneficiaire égal -1, cela signifie que l'utilisateur n'est plus dans la base, dans ce cas, le nouveau bénéficiaire est l'utilisateur lui-même.
// Voir edit_entry.php
if ($beneficiaire == "-1")
$beneficiaire = getUserName();
// Dans le cas ou $beneficiaire est vide, on verifie que $beneficiaire_ext est correct
if (($beneficiaire) == "") {
if ($beneficiaire_ext == "-1") {
print_header();
echo "<h2>".get_vocab("required")."</h2>";
include "include/trailer.inc.php";
die();
}
if ($beneficiaire_ext == "-2") {
print_header();
echo "<h2>Adresse email du bénéficiaire incorrecte</h2>";
include "include/trailer.inc.php";
die();
}
} else $beneficiaire_ext = "";
// On verifie qu'une ressource au moins a bien été sélectionnée
if (!isset($_GET['rooms'][0])) {
print_header();
echo "<h2>".get_vocab("choose_a_room")."</h2>";
include "include/trailer.inc.php";
die();
}
if (isset($_SERVER['HTTP_REFERER'])) $back = my_htmlspecialcharacters($_SERVER['HTTP_REFERER']);
// On récupère la valeur de $area
$area = mrbsGetRoomArea($_GET['rooms'][0]);
//Début de récupération des données additionnelles
$overload_data = array();
$overload_fields_list = mrbsOverloadGetFieldslist($area);
foreach ($overload_fields_list as $overfield=>$fieldtype)
{
$id_field = $overload_fields_list[$overfield]["id"];
$fieldname = "addon_".$id_field;
if (($overload_fields_list[$overfield]["obligatoire"] == 'y') and ((!isset($_GET[$fieldname])) or (trim($_GET[$fieldname]) == ""))) {
print_header();
echo "<h2>".get_vocab("required")."</h2>";
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
// Si le champ est numérique....
if (($overload_fields_list[$overfield]["type"] == "numeric") and (isset($_GET[$fieldname])) and ($_GET[$fieldname]!='') and (!preg_match("`^[0-9]*\.{0,1}[0-9]*$`",$_GET[$fieldname]))) {
print_header();
echo "<h2>".$overload_fields_list[$overfield]["name"].get_vocab("deux_points").get_vocab("is_not_numeric")."</h2>";
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
if (isset($_GET[$fieldname])) $overload_data[$id_field] = $_GET[$fieldname];
else $overload_data[$id_field] = "";
}
//Fin de récupération des données additionnelles.
//If we dont know the right date then make it up
if(!isset($day) or !isset($month) or !isset($year))
{
$day = date("d");
$month = date("m");
$year = date("Y");
}
// Récupération des données concernant l'affichage du planning du domaine
get_planning_area_values($area);
if(authGetUserLevel(getUserName(),-1) < 1)
{
showAccessDenied($day, $month, $year, '',$back);
exit();
}
if (check_begin_end_bookings($day, $month, $year))
{
if ((getSettingValue("authentification_obli")==0) and (getUserName()=='')) $type_session = "no_session";
else $type_session = "with_session";
showNoBookings($day, $month, $year, '', $back."&Err=yes", $type_session);
exit();
}
if ($type_affichage_reser == 0) {
// La fin de réservation est calculée à partir d'une durée
$period = isset($_GET["period"]) ? $_GET["period"] : NULL;
if (isset($period)) settype($period,"integer");
$dur_units = isset($_GET["dur_units"]) ? $_GET["dur_units"] : NULL;
$all_day = isset($_GET["all_day"]) ? $_GET["all_day"] : NULL;
if($enable_periods=='y') {
$resolution = 60;
$hour = 12;
$minute = $period;
$max_periods = count($periods_name);
if( $dur_units == "periods" && ($minute + $duration) > $max_periods )
{
$duration = (24*60*floor($duration/$max_periods)) + ($duration%$max_periods);
}
/*
// Si la personne a spécifié des jours pour la durée et que le début de la réservation correspond au premier créneau
if( $dur_units == "days" && $minute == 0 )
{
$dur_units = "periods";
$duration = $max_periods + ($duration-1)*60*24;
}
*/
}
// Units start in seconds
$units = 1.0;
switch($dur_units)
{
case "years":
$units *= 52;
case "weeks":
$units *= 7;
case "days":
$units *= 24;
case "hours":
$units *= 60;
case "periods":
case "minutes":
$units *= 60;
case "seconds":
break;
}
// Units are now in "$dur_units" numbers of seconds
if(isset($all_day) && ($all_day == "yes") && ($dur_units!="days")) {
if($enable_periods=='y') {
$starttime = mktime(12, 0, 0, $month, $day, $year);
$endtime = mktime(12, $max_periods, 0, $month, $day, $year);
} else {
$starttime = mktime($morningstarts, 0, 0, $month, $day , $year);
$endtime = mktime($eveningends, 0, $resolution, $month, $day, $year);
}
} else {
if (!$twentyfourhour_format)
{
if (isset($ampm) && ($ampm == "pm"))
{
$hour += 12;
}
}
$starttime = mktime($hour, $minute, 0, $month, $day, $year);
$endtime = mktime($hour, $minute, 0, $month, $day, $year) + ($units * $duration);
if ($endtime <= $starttime)
$erreur = 'y';
# Round up the duration to the next whole resolution unit.
# If they asked for 0 minutes, push that up to 1 resolution unit.
$diff = $endtime - $starttime;
if (($tmp = $diff % $resolution) != 0 || $diff == 0)
$endtime += $resolution - $tmp;
}
} else {
// La fin de réservation est calculée à partir d'une date
// Cas particulier des réservation par créneaux pré-définis
if($enable_periods=='y') {
$resolution = 60;
$hour = 12;
$_GET["end_hour"] = 12;
if (isset($_GET["period"]))
$minute = $_GET["period"];
else
$erreur='y';
if (isset($_GET["end_period"]))
$_GET["end_minute"] = $_GET["end_period"]+1;
else
$erreur='y';
}
if (!isset($_GET["end_day"]) or !isset($_GET["end_month"]) or !isset($_GET["end_year"]) or !isset($_GET["end_hour"]) or !isset($_GET["end_minute"]))
{
$erreur = 'y';
} else {
$end_day = $_GET["end_day"];
$end_year = $_GET["end_year"];
$end_month = $_GET["end_month"];
$end_hour = $_GET["end_hour"];
$end_minute = $_GET["end_minute"];
settype($end_month,"integer");
settype($end_day,"integer");
settype($end_year,"integer");
settype($end_minute,"integer");
settype($end_hour,"integer");
$minyear = strftime("%Y", getSettingValue("begin_bookings"));
$maxyear = strftime("%Y", getSettingValue("end_bookings"));
if ($end_day < 1) $end_day = 1;
if ($end_day > 31) $end_day = 31;
if ($end_month < 1) $end_month = 1;
if ($end_month > 12) $end_month = 12;
if ($end_year < $minyear) $end_year = $minyear;
if ($end_year > $maxyear) $end_year = $maxyear;
//Si la date n'est pas valide on arrête
if (!checkdate($end_month, $end_day, $end_year))
$erreur = 'y';
$starttime = mktime($hour, $minute, 0, $month, $day, $year);
$endtime = mktime($end_hour, $end_minute, 0, $end_month, $end_day, $end_year);
if ($endtime <= $starttime)
$erreur = 'y';
# Round up the duration to the next whole resolution unit.
# If they asked for 0 minutes, push that up to 1 resolution unit.
$diff = $endtime - $starttime;
if (($tmp = $diff % $resolution) != 0 || $diff == 0)
$endtime += $resolution - $tmp;
}
}
if ($endtime <= $starttime)
$erreur = 'y';
// Si il y a tentative de réserver en-deça du temps limite
if ($erreur == 'y') {
print_header();
echo "<h2>Erreur dans la date de fin de réservation</h2>";
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
if(isset($rep_type) && isset($rep_end_month) && isset($rep_end_day) && isset($rep_end_year))
// Si une périodicité a été définie
{
// Get the repeat entry settings
// Calcul de la date de fin de périodicité
$rep_enddate = mktime($hour, $minute, 0, $rep_end_month, $rep_end_day, $rep_end_year);
// Cas où la date de fin de périodicité est supérieure à la date de fin de réservation
if ($rep_enddate > getSettingValue("end_bookings")) $rep_enddate = getSettingValue("end_bookings");
} else
// Si aucune périodicité n'a été définie
$rep_type = 0;
if(!isset($rep_day))
$rep_day = "";
// Dans le cas d'une réservation sans périodicité, on teste si la résa tombe un jour "hors réservation"
// On définit les jours temps "minuit" de début et fin
$day_temp = date("d",$starttime);
$month_temp = date("m",$starttime);
$year_temp = date("Y",$starttime);
$starttime_midnight = mktime(0, 0, 0, $month_temp, $day_temp, $year_temp);
$day_temp = date("d",$endtime);
$month_temp = date("m",$endtime);
$year_temp = date("Y",$endtime);
$endtime_midnight = mktime(0, 0, 0, $month_temp, $day_temp, $year_temp);
// On teste
if (resa_est_hors_reservation($starttime_midnight , $endtime_midnight)) {
print_header();
echo "<h2>Erreur dans la date de début ou de fin de réservation</h2>";
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
# For weekly repeat(2), build string of weekdays to repeat on:
$rep_opt = "";
if ($rep_type == 2)
for ($i = 0; $i < 7; $i++) $rep_opt .= empty($rep_day[$i]) ? "0" : "1";
# Expand a series into a list of start times:
if ($rep_type != 0)
// $reps est un tableau des dates de début de réservation
$reps = mrbsGetRepeatEntryList($starttime, isset($rep_enddate) ? $rep_enddate : 0,
$rep_type, $rep_opt, $max_rep_entrys, $rep_num_weeks,$rep_jour_c,$area);
# When checking for overlaps, for Edit (not New), ignore this entry and series:
$repeat_id = 0;
if (isset($id) and ($id!=0)) {
$ignore_id = $id;
$repeat_id = grr_sql_query1("SELECT repeat_id FROM ".TABLE_PREFIX."_entry WHERE id=$id");
if ($repeat_id < 0) $repeat_id = 0;
} else $ignore_id = 0;
# Acquire mutex to lock out others trying to book the same slot(s).
if (!grr_sql_mutex_lock("".TABLE_PREFIX."_entry"))
fatal_error(1, get_vocab('failed_to_acquire'));
$date_now = time();
$error_booking_in_past = 'no';
$error_booking_room_out = 'no';
$error_duree_max_resa_area = 'no';
$error_delais_max_resa_room = 'no';
$error_delais_min_resa_room = 'no';
$error_date_option_reservation = 'no';
$error_chevaussement = 'no';
$error_qui_peut_reserver_pour = 'no';
$error_heure_debut_fin = 'no';
foreach ( $_GET['rooms'] as $room_id ) {
# On verifie qu'aucune réservation ne se situe dans la passé
if ($rep_type != 0 && !empty($reps)) {
$diff = $endtime - $starttime;
// Dans le cas d'une réservation avec périodicité, on vérifie que les différents créneaux ne se chevaussent pas.
if (!grrCheckOverlap($reps, $diff)) $error_chevaussement = 'yes';
$i = 0;
while (($i < count($reps)) and ($error_booking_in_past == 'no') and ($error_duree_max_resa_area == 'no') and ($error_delais_max_resa_room == 'no') and ($error_delais_min_resa_room == 'no') and ($error_date_option_reservation=='no') and ($error_qui_peut_reserver_pour=='no') and ($error_heure_debut_fin=='no')) {
if ((authGetUserLevel(getUserName(),-1) < 2) and (auth_visiteur(getUserName(),$room_id) == 0)) $error_booking_room_out = 'yes';
if (!(verif_booking_date(getUserName(), -1, $room_id, $reps[$i], $date_now, $enable_periods))) $error_booking_in_past = 'yes';
if (!(verif_duree_max_resa_area(getUserName(), $room_id, $starttime, $endtime))) $error_duree_max_resa_area = 'yes';
if (!(verif_delais_max_resa_room(getUserName(), $room_id, $reps[$i]))) $error_delais_max_resa_room = 'yes';
if (!(verif_delais_min_resa_room(getUserName(), $room_id, $reps[$i]))) $error_delais_min_resa_room = 'yes';
if (!(verif_date_option_reservation($option_reservation, $reps[$i]))) $error_date_option_reservation = 'yes';
if (!(verif_qui_peut_reserver_pour($room_id, getUserName(), $beneficiaire))) $error_qui_peut_reserver_pour = 'yes';
if (!(verif_heure_debut_fin($reps[$i], $reps[$i]+$diff, $area))) $error_heure_debut_fin = 'yes';
$i++;
}
} else {
if ((authGetUserLevel(getUserName(),-1) < 2) and (auth_visiteur(getUserName(),$room_id) == 0)) $error_booking_room_out = 'yes';
if (isset($id) and ($id!=0)) {
if (!(verif_booking_date(getUserName(), $id, $room_id, $starttime, $date_now, $enable_periods, $endtime))) $error_booking_in_past = 'yes';
} else {
if (!(verif_booking_date(getUserName(), -1, $room_id, $starttime, $date_now, $enable_periods))) $error_booking_in_past = 'yes';
}
if (!(verif_duree_max_resa_area(getUserName(), $room_id, $starttime, $endtime))) $error_duree_max_resa_area = 'yes';
if (!(verif_delais_max_resa_room(getUserName(), $room_id, $starttime))) $error_delais_max_resa_room = 'yes';
if (!(verif_delais_min_resa_room(getUserName(), $room_id, $starttime))) $error_delais_min_resa_room = 'yes';
if (!(verif_date_option_reservation($option_reservation, $starttime))) $error_date_option_reservation = 'yes';
if (!(verif_qui_peut_reserver_pour($room_id, getUserName(), $beneficiaire))) $error_qui_peut_reserver_pour = 'yes';
if (!(verif_heure_debut_fin($starttime, $endtime, $area))) $error_heure_debut_fin = 'yes';
if (resa_est_hors_reservation2($starttime, $endtime, $area)) $error_heure_debut_fin = 'yes';
}
$statut_room = grr_sql_query1("select statut_room from ".TABLE_PREFIX."_room where id = '$room_id'");
// on vérifie qu'un utilisateur non autorisé ne tente pas de réserver une ressource non disponible
if (($statut_room == "0") and authGetUserLevel(getUserName(),$room_id) < 3)
$error_booking_room_out = 'yes';
// on vérifie qu'un utilisateur ne tente pas de réserver une ressource qui lui est normalement invisible
if (!verif_acces_ressource(getUserName(), $room_id))
$error_booking_room_out = 'yes';
} # end foreach rooms
// Si le test précédent est passé avec succès,
# Check for any schedule conflicts in each room we're going to try and
# book in
$err = "";
if (($error_booking_in_past == 'no') and ($error_chevaussement=='no') and ($error_duree_max_resa_area == 'no') and ($error_delais_max_resa_room == 'no') and ($error_delais_min_resa_room == 'no') and ($error_date_option_reservation == 'no') and ($error_qui_peut_reserver_pour == 'no') and ($error_heure_debut_fin=='no')) {
foreach ( $_GET['rooms'] as $room_id ) {
if ($rep_type != 0 && !empty($reps)) {
if(count($reps) < $max_rep_entrys) {
$diff = $endtime - $starttime;
for($i = 0; $i < count($reps); $i++) {
// Suppression des résa en conflit
if (isset($_GET['del_entry_in_conflict']) and ($_GET['del_entry_in_conflict']=='yes'))
grrDelEntryInConflict($room_id, $reps[$i], $reps[$i] + $diff, $ignore_id, $repeat_id, 0);
// On teste s'il reste des conflits
if ($i == (count($reps)-1)) {
$tmp = mrbsCheckFree($room_id, $reps[$i], $reps[$i] + $diff, $ignore_id, $repeat_id);
} else
$tmp = mrbsCheckFree($room_id, $reps[$i], $reps[$i] + $diff, $ignore_id, $repeat_id);
if(!empty($tmp)) $err = $err . $tmp;
}
} else {
$err .= get_vocab("too_may_entrys") . "<p>";
$hide_title = 1;
}
} else {
// Suppression des résa en conflit
if (isset($_GET['del_entry_in_conflict']) and ($_GET['del_entry_in_conflict']=='yes'))
grrDelEntryInConflict($room_id, $starttime, $endtime-1, $ignore_id, $repeat_id, 0);
// On teste s'il y a des conflits
$err .= mrbsCheckFree($room_id, $starttime, $endtime-1, $ignore_id, $repeat_id);
}
} # end foreach rooms
}
// Si tous les tests précédents sont passés avec succès :
if (empty($err)
and ($error_booking_in_past == 'no')
and ($error_duree_max_resa_area == 'no')
and ($error_delais_max_resa_room == 'no')
and ($error_delais_min_resa_room == 'no')
and ($error_booking_room_out == 'no')
and ($error_date_option_reservation == 'no')
and ($error_chevaussement == 'no')
and ($error_qui_peut_reserver_pour == 'no')
and ($error_heure_debut_fin == 'no')
)
{
// On teste si l'utilisateur a le droit d'effectuer la série de réservation, compte tenu des
// réser déjà effectuées et de la limite posée sur la ressource
$compt_room=0;
foreach ( $_GET['rooms'] as $room_id ) {
$area = mrbsGetRoomArea($room_id);
// Contrôle droit d'écriture
if (isset($id) and ($id!=0)) {
if(!getWritable($beneficiaire, getUserName(),$id))
{
showAccessDenied($day, $month, $year, '',$back);
exit;
}
}
// Contrôle accès restreint
if(authUserAccesArea(getUserName(), $area)==0)
{
showAccessDenied($day, $month, $year, '',$back);
exit();
}
if (isset($id) and ($id!=0))
$compt = 0; // il s'agit d'une modification : on ne compte pas cette résa dans le nombre de réservations déjà effectuées
else
$compt = 1; // il s'agit d'une nouvelle réservation : on la compte dans le nombre de réservations déjà effectuées
if ($rep_type != 0 && !empty($reps)) {
if(UserRoomMaxBooking(getUserName(), $room_id, count($reps)-1+$compt+$compt_room) == 0) {
showAccessDeniedMaxBookings($day, $month, $year, '', $room_id, $back);
exit();
} else {
$compt_room += 1;
}
} else {
if(UserRoomMaxBooking(getUserName(), $room_id, $compt+$compt_room) == 0) {
showAccessDeniedMaxBookings($day, $month, $year, '', $room_id, $back);
exit();
} else {
$compt_room += 1;
}
}
}
foreach ( $_GET['rooms'] as $room_id )
{
// On détertermine s'il faut ou non modérer la réservation et s'il faut ou non envoyer un mail de demande de modération
$moderate = grr_sql_query1("select moderate from ".TABLE_PREFIX."_room where id = '".$room_id."'");
if ($moderate==1) { // La ressource est modérée
$send_mail_moderate = 1; // Par défaut on envoie un mail de demande de modération
if (isset($id)) { // Il s'agit d'une modification
$old_entry_moderate = grr_sql_query1("select moderate from ".TABLE_PREFIX."_entry where id='".$id."'");
if (authGetUserLevel(getUserName(),$room_id) < 3)
// l'utilisateur n'est pas gestionnaire ou admin de la ressource donc on met la réservation en attente de modération
$entry_moderate = 1;
else
// l'utilisateur est gestionnaire ou admin de la ressource donc on ne modifie pas l'état de modération.
$entry_moderate = $old_entry_moderate;
if ($entry_moderate!=1) // la résa est déjà modérée, il s'agit donc d'une modification
$send_mail_moderate = 0;
/* else if ($entry_moderate==3) {
// Il n'est pas possible de modifier une réservatiion refusée
fatal_error(0,"Opération interdite");
exit();
}*/
} else { // Il s'agit d'une création :
if (authGetUserLevel(getUserName(),$room_id) < 3)
// l'utilisateur n'est pas gestionnaire ou admin de la ressource donc on modére la réservation
$entry_moderate = 1;
else {
// l'utilisateur est gestionnaire ou admin de la ressource donc on ne modère pas !
$entry_moderate = 0;
$send_mail_moderate = 0;
}
}
} else {
$entry_moderate = 0;
$send_mail_moderate = 0;
}
if($rep_type != 0)
{
mrbsCreateRepeatingEntrys($starttime, $endtime, $rep_type, $rep_enddate, $rep_opt,
$room_id, $create_by, $beneficiaire, $beneficiaire_ext, $name, $type, $description, $rep_num_weeks, $option_reservation,$overload_data, $entry_moderate,$rep_jour_c);
// $new_id = grr_sql_insert_id("".TABLE_PREFIX."_entry", "id");
// Les mails automatiques
if (getSettingValue("automatic_mail") == 'yes')
{
if (isset($id) and ($id!=0))
// $id_first_resa, calculé dans mrbsCreateRepeatingEntrys correspond à l'id de la première réservation de la série
if ($send_mail_moderate)
$message_error = send_mail($id_first_resa,5,$dformat);
else
$message_error = send_mail($id_first_resa,2,$dformat);
else
if ($send_mail_moderate)
$message_error = send_mail($id_first_resa,5,$dformat);
else
$message_error = send_mail($id_first_resa,1,$dformat);
}
}
else
{
// Mark changed entry in a series with entry_type 2:
if ($repeat_id > 0)
$entry_type = 2;
else
$entry_type = 0;
// Create the entry:
mrbsCreateSingleEntry($starttime, $endtime, $entry_type, $repeat_id, $room_id,
$create_by, $beneficiaire, $beneficiaire_ext, $name, $type, $description, $option_reservation,$overload_data, $entry_moderate, $rep_jour_c, $statut_entry);
$new_id = grr_sql_insert_id("".TABLE_PREFIX."_entry", "id");
if (getSettingValue("automatic_mail") == 'yes')
{
// Modification
if(isset($id) and ($id!=0))
if ($send_mail_moderate)
$message_error = send_mail($new_id,5,$dformat);
else
$message_error = send_mail($new_id,2,$dformat);
// Création
else
if ($send_mail_moderate)
$message_error = send_mail($new_id,5,$dformat);
else
$message_error = send_mail($new_id,1,$dformat);
}
}
} // end foreach $rooms
// Delete the original entry
if(isset($id) and ($id!=0)) {
if ($rep_type != 0)
mrbsDelEntry(getUserName(), $id, "series", 1);
else
mrbsDelEntry(getUserName(), $id, NULL, 1);
}
grr_sql_mutex_unlock("".TABLE_PREFIX."_entry");
$area = mrbsGetRoomArea($room_id);
# Now its all done go back to the day view
$_SESSION['displ_msg'] = 'yes';
if ($message_error != "")
$_SESSION['session_message_error'] = $message_error;
Header("Location: ".$page.".php?year=$year&month=$month&day=$day&area=$area&room=$room_back");
exit;
}
# The room was not free.
grr_sql_mutex_unlock("".TABLE_PREFIX."_entry");
// Si il y a tentative de réserver dans le passé
if ($error_booking_in_past == 'yes') {
$str_date = utf8_strftime("%d %B %Y, %H:%M", $date_now);
print_header();
echo "<h2>" . get_vocab("booking_in_past") . "</h2>";
if ($rep_type != 0 && !empty($reps)) {
echo "<p>" . get_vocab("booking_in_past_explain_with_periodicity") . $str_date."</p>";
} else {
echo "<p>" . get_vocab("booking_in_past_explain") . $str_date."</p>";
}
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
// Si il y a tentative de réserver pendant une durée dépassant la durée max
if ($error_duree_max_resa_area == 'yes') {
$area_id = grr_sql_query1("select area_id from ".TABLE_PREFIX."_room where id='".protect_data_sql($room_id)."'");
$duree_max_resa_area = grr_sql_query1("select duree_max_resa_area from ".TABLE_PREFIX."_area where id='".$area_id."'");
print_header();
$temps_format = $duree_max_resa_area*60;
toTimeString($temps_format, $dur_units, true);
echo "<h2>" . get_vocab("error_duree_max_resa_area").$temps_format ." " .$dur_units."</h2>";
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
// Si il y a tentative de réserver au delà du temps limite
if ($error_delais_max_resa_room == 'yes') {
print_header();
echo "<h2>" . get_vocab("error_delais_max_resa_room") ."</h2>";
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
// Dans le cas d'une réservation avec périodicité, s'il y a des créneaux qui se chevaussent
if ($error_chevaussement == 'yes') {
print_header();
echo "<h2>" . get_vocab("error_chevaussement") ."</h2>";
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
// Si il y a tentative de réserver en-deça du temps limite
if ($error_delais_min_resa_room == 'yes') {
print_header();
echo "<h2>" . get_vocab("error_delais_min_resa_room") ."</h2>";
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
// Si la date confirmation est supérieure à la date de début de réservation
if ($error_date_option_reservation == 'yes') {
print_header();
echo "<h2>" . get_vocab("error_date_confirm_reservation") ."</h2>";
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
// Si l'utilisateur tente de réserver une ressource non disponible
if ($error_booking_room_out == 'yes') {
print_header();
echo "<h2>" . get_vocab("norights") . "</h2>";
echo "<p><b>" . get_vocab("tentative_reservation_ressource_indisponible") . "</b></p>";
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
// Si l'utilisateur tente de réserver au nom d'une autre personne pour une ressource pour laquelle il n'a pas le droit
if ($error_qui_peut_reserver_pour == 'yes') {
print_header();
echo "<h2>" . get_vocab("error_qui_peut_reserver_pour") ."</h2>";
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
// L'heure de début ou l'heure de fin de réservation est en dehors des créneaux autorisés.
if ($error_heure_debut_fin == 'yes') {
print_header();
echo "<h2>" . get_vocab("error_heure_debut_fin") ."</h2>";
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a>";
include "include/trailer.inc.php";
die();
}
if(strlen($err))
{
print_header();
echo "<h2>" . get_vocab("sched_conflict") . "</h2>";
if(!isset($hide_title))
{
echo get_vocab("conflict");
echo "<UL>";
}
echo $err;
if(!isset($hide_title))
echo "</UL>";
// possibilité de supprimer la (les) réservation(s) afin de valider la nouvelle réservation.
if(authGetUserLevel(getUserName(),$area,'area') >= 4)
echo "<center><table border=\"1\" cellpadding=\"10\" cellspacing=\"1\"><tr><td class='avertissement'><h3><a href='".traite_grr_url("","y")."edit_entry_handler.php?".$_SERVER['QUERY_STRING']."&del_entry_in_conflict=yes'>".get_vocab("del_entry_in_conflict")."</a></h4></td></tr></table></center><br />";
}
// Retour au calendrier
echo "<a href=\"".$back."&Err=yes\">".get_vocab('returnprev')."</a><p>";
include "include/trailer.inc.php"; ?>