AppController.php
55.5 KB
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
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
<?php
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc.
* (http://cakefoundation.org)
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since 0.2.9
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace App\Controller;
use Cake\Controller\Controller;
use Cake\Event\Event;
use Cake\ORM\TableRegistry;
#use Cake\ORM\Locator\TableLocator;
use Cake\Mailer\Email;
use Cake\Core\Configure;
use Cake\I18n\Time;
use Cake\I18n\Date;
use App\Model\Entity\Materiel;
use App\Model\Entity\Document;
use App\Model\Entity\Suivi;
use App\Model\Entity\Emprunt;
/**
* Application Controller
* Add your application-wide methods in the class below, your controllers
* will inherit them.
*
* @link http://book.cakephp.org/3.0/en/controllers.html#the-app-controller
*/
class AppController extends Controller
{
public $confLabinvent;
const PROFILE_USER = 1;
const PROFILE_RESPONSABLE = 2;
const PROFILE_ADMIN = 3;
const PROFILE_ADMINPLUS = 4;
const PROFILE_SUPERADMIN = 5;
// private $allProfiles = [
const PROFILES = [
'Utilisateur' => self::PROFILE_USER,
'Responsable' => self::PROFILE_RESPONSABLE,
'Administration' => self::PROFILE_ADMIN,
'Administration Plus' => self::PROFILE_ADMINPLUS,
'Super Administrateur' => self::PROFILE_SUPERADMIN
];
// Current priviledged USER (if so, otherwise = NULL)
private $CURRENT_PRIVILEDGED_USER = null;
// Current ROLE (by default = "Utilisateur")
private $CURRENT_ROLE = null;
// EP 08/2017
// protected $easyACL = array(
const easyACL = array(
/**
* Default ACL for ALL (logged) users
*
* Les actions non mentionnées sont accessibles à tous (par défaut),
* exemple 'find', 'index'...
* Ces default ACL peuvent être surchargées pour un profil précis
* (par exemple pour 'USER' qui est plus restreint)
*/
// 'ALL' => array (
'DEFAULT' => array(
// 'action' => 'condition for execution' (= 'Y', 'N', or '<condition>'),
// with <condition> like "'field name' == 'value'"
// !!! Used for test, DO NOT REMOVE : !!!
'action_CAS4_Y' => 'Y',
'action_CAS4_N' => 'N'
// YOUR RULES :
// CRUD actions :
// 'edit' => 'N', // update
// 'delete' => 'N',
),
// Ajoute des ACL plus spécifiques (ci-dessus) pour le profil USER qui est plus restreint
// Les actions absentes ne sont pas surchargées (elles sont exécutées selon les conditions définies pour 'ALL')
'USER' => array(
// !!! Used for test, DO NOT REMOVE : !!!
'action_CAS3_Y' => 'Y',
'action_CAS3_N' => 'N',
// YOUR RULES :
// CRUD actions
'add' => 'Y', // C
'index' => 'Y', // R all
'view' => 'Y', // R one
// 'edit' => 'N', // U
'edit' => 'is_creator', // is_creator = (nom_createur == CURRENT_USER_NAME)
'delete' => 'N', // D
// OTHER actions
'find' => 'Y' // create
/*
* ceci n'a aucun sens car l'action sur le modèle "Pages" s'appelle toujours "display" (et non pas tools, infos, ou printers...)
* 'tools' => 'N',
* 'infos' => 'N',
* 'printers' => 'N',
*/
),
// Surcharge des ACL par défaut (ci-dessus) pour le profil RESPONSABLE qui est plus restreint
// Les actions absentes ne sont pas surchargées (elles sont exécutées selon les conditions définies pour 'ALL')
'RESPONSABLE' => array(),
// Surcharge des ACL par défaut (ci-dessus) pour le profil ADMIN
'ADMIN' => array(
// 'add' => 'Y', // create
'edit' => 'Y' // update
// 'delete' => 'Y', // update
),
// Surcharge des ACL par défaut (ci-dessus) pour le profil ADMINPLUS
'ADMINPLUS' => array(
// 'edit' => 'Y', // update
),
// Surcharge des ACL par défaut (ci-dessus) pour le profil SUPERADMIN
'SUPERADMIN' => array(
// 'add' => 'Y', // create
// 'edit' => 'Y', // update
'delete' => 'Y'
)
);
// $easyACL
// if (isset($this->easyACL['DEFAULT'][$action])) {
public function hasACLRule($easyACL, $role, $action)
{
// return isset($this->easyACL[$role][$action]);
// return (null !== self::easyACL[$role][$action]);
// return array_key_exists($role, self::easyACL) && array_key_exists($action, self::easyACL[$role]);
return array_key_exists($role, $easyACL) && array_key_exists($action, $easyACL[$role]);
}
// @todo
public function startsWith($haystack, $needle)
{
return strpos($haystack, $needle) === 0;
}
/*
* //@todo
* public function endsWith($haystack, $needle) {
* return strpos($haystack, $needle, strlen($haystack)-1) === 0;
* }
*/
public function evalACL($condition)
{
return $condition;
// Simple case
if ($condition == 'Y')
return true;
if ($condition == 'F')
return false;
// Complex case
// @todo
return true;
}
public function evalSpecificRule($condition, AppController $controller, $user, $role, $action, $id = null)
{
// if starts with "&&" eval DEFAULT rule && specific rule
if ($this->startsWith($condition, '&&')) {
//debug($condition);
//if (! isset($controller::easyACL['DEFAULT'][$action])) return new \Exception('bad rule');
if (! array_key_exists($action, $controller::easyACL['DEFAULT']) ) return new \Exception('bad rule');
//return $this->evalACL($controller->easyACL['DEFAULT'][$action]) && $this->evalACL($condition);
return $this->evalACL($controller::easyACL['DEFAULT'][$action]).' ' . $this->evalACL($condition);
}
// otherwise, eval only specific rule
return $this->evalACL($condition);
}
/**
*
* @param AppController $controller
* // a subclass of AppController (MaterielsController or any other)
* @param array $user
* @param string $role
* @param string $action
* @param string $id
*/
// public function isAuthorizedAction(AppController $controller, $roleLong, $action, $id=null, $user=null) {
public function isAuthorizedAction($controller, $roleLong, $action, $id = null, $user = null)
{
$doDEBUG = true;
$doDEBUG = false;
switch ($roleLong) {
case 'Utilisateur':
$role = 'USER';
break;
case 'Responsable':
$role = 'RESPONSABLE';
break;
case 'Administration':
$role = 'ADMIN';
break;
case 'Administration Plus':
$role = 'ADMINPLUS';
break;
case 'Super Administrateur':
$role = 'SUPERADMIN';
break;
}
if ($doDEBUG)
debug("role is $role");
// 1) SPECIFIC controller SPECIFIC (role) rule for action
// if (isset($controller->easyACL[$role][$action])) {
if (self::hasACLRule($controller::easyACL, $role, $action)) {
if ($doDEBUG)
debug("CAS1");
return $this->evalSpecificRule($controller::easyACL[$role][$action], $controller, $user, $role, $action);
}
// 2) SPECIFIC controller DEFAULT rule for action
// if (null !== $controller::easyACL['DEFAULT'][$action]) {
if (self::hasACLRule($controller::easyACL, 'DEFAULT', $action)) {
if ($doDEBUG)
debug("CAS2");
return $this->evalACL($controller::easyACL['DEFAULT'][$action]);
}
// 3) ALL controllers (AppController) SPECIFIC (role) rule for action
// if (isset($this->easyACL[$role][$action])) {
if (self::hasACLRule(self::easyACL, $role, $action)) {
if ($doDEBUG)
debug("CAS3");
return $this->evalSpecificRule(self::easyACL[$role][$action], $this, $user, $role, $action);
}
// 4) ALL controllers (AppController) DEFAULT rule for action
// if (isset($this->easyACL['DEFAULT'][$action])) {
// if (self::hasACLRule('DEFAULT',$action)) {
if (self::hasACLRule(self::easyACL, 'DEFAULT', $action)) {
if ($doDEBUG)
debug("CAS4");
return $this->evalACL(self::easyACL['DEFAULT'][$action]);
// return $this->evalACL(parent::getACLRule('DEFAULT',$action));
}
/*
* (RECURSIVE CALL)
* 5) SPECIFIC controller PREVIOUS SPECIFIC (role) rule for action
* ex: if role is 'SUPER', use 'ADMIN' rule
* ex: if role is 'ADMIN', use 'RESP' rule
* ex: if role is 'RESP', use 'USER' rule
* ex: if role is 'USER', stop recursive call
* Stop recursive call if role is 'USER' => no rule found, so DEFAULT IS AUTHORIZE (Y) !!! => permissive ACL
*/
// if ($role == 'USER') return true;
if ($role == 'USER') {
if ($doDEBUG)
debug("CAS5");
return 'Y';
}
if ($doDEBUG)
debug("CAS6");
return $this->isAuthorizedAction($controller, $this->getPreviousRole($role), $action, $id, $user);
}
// @todo
public function getMandatoryFieldsForAction($action)
{
$fields = [];
// meme fonctionnement recursif que isAuthorizedAction() ci-dessus
return $fields;
}
// @todo
public function getHiddenFieldsForAction($action)
{
$fields = [];
// meme fonctionnement recursif que isAuthorizedAction() ci-dessus
return $fields;
}
// @todo
public function getReadOnlyFieldsForAction($action)
{
$fields = [];
// meme fonctionnement recursif que isAuthorizedAction() ci-dessus
return $fields;
}
// @todo
public function getDefaultValueFieldsForAction($action)
{
$fields = [];
// meme fonctionnement recursif que isAuthorizedAction() ci-dessus
return $fields;
}
public static function getRoleLevel($role)
{
// return $this->allProfiles[$role];
// debug("role is" .$role);
return self::PROFILES[$role];
}
public static function getPreviousRole($role)
{
switch ($role) {
/*
* case 'RESPONSABLE': $rolePrev='USER'; break;
* case 'ADMIN': $rolePrev='RESPONSABLE'; break;
* case 'ADMINPLUS': $rolePrev='ADMIN'; break;
* case 'SUPERADMIN': $rolePrev='ADMINPLUS'; break;
*/
case 'RESPONSABLE':
$rolePrev = 'Utilisateur';
break;
case 'ADMIN':
$rolePrev = 'Responsable';
break;
case 'ADMINPLUS':
$rolePrev = 'Administration';
break;
case 'SUPERADMIN':
$rolePrev = 'Administration Plus';
break;
}
return $rolePrev;
}
public function getActionPassed()
{
// BETTER:
// return $this->request->getAttribute('params')['action'];
return $this->request->getParam('action');
}
public function getIdPassed()
{
// return (int) $this->request->getAttribute('params')['pass'][0];
return (int) $this->request->getParam('pass.0');
}
/**
* Initialization hook method.
* Use this method to add common initialization code like loading components.
* e.g. `$this->loadComponent('Security');`
*
* @return void
*/
public function initialize()
{
parent::initialize();
$this->loadComponent('RequestHandler');
$this->loadComponent('Flash');
$this->loadComponent('LdapAuth', [
'authorize' => [
'Controller'
],
'loginRedirect' => [
'controller' => 'Pages',
'action' => 'home'
],
'logoutRedirect' => [
'controller' => 'Pages',
'action' => 'home'
]
]);
// On charge la configuration
/*
$this->confLabinvent = TableRegistry::getTableLocator()->get('Configurations')->find()
->where([
'id =' => 1
])
->first();
*/
$this->confLabinvent = TableRegistry::getTableLocator()->get('Configurations')->find()->first();
}
/**
* Autorisations fréquentes utilisées par bcp de isAuthorized() de controlleurs
* Ca évite de répéter 10 fois la meme chose !!!
*/
public function isAuthorizedCommons($user)
{
$action = $this->getActionPassed();
// $role = $this->getUserRole($user);
// Seul Administration (et +) peut ajouter, supprimer ou modifier
if (in_array($action, [
'add',
'delete',
'edit'
])) {
if ($this->USER_IS_ADMIN_AT_LEAST())
return true;
// Les autres n'y ont pas accès
return false;
}
// By default
// return parent::isAuthorized($user);
return AppController::isAuthorized($user);
}
/**
*
* @param
* $user
* @return boolean isAuthorized is located in the Auth component
* Check whether a LOGGED in user has a set of permissions to perform a given action
* Give authorization in general
*
* 2) Autorisation APRES connexion
* (Avant, c'est beforeFilter() qui s'en occupe)
*/
public function isAuthorized($user)
{
/*
* // ATTENTION, normalement, on devrait tester si role est défini..., mais c'est sans doute pas utile
* // cf https://book.cakephp.org/3.0/fr/tutorials-and-examples/blog-auth-example/auth.html
* if (isset($user['role']) && $user['role'] === 'admin') {
* return true;
* }
*/
$configuration = $this->confLabinvent;
$role = $this->getUserRole($user);
/*
* $role = TableRegistry::getTableLocator()->get('Users')->find()
* ->where(['username' => $user[$configuration->authentificationType_ldap][0]])
* ->first()['role'];
*/
$this->myDebug("role is " . $role);
// BETTER:
// $action = $this->request->getAttribute('params')['action'];
// $action = $this->request->getParam('action');
$action = $this->getActionPassed();
// error_log($action);
// ACL : Actions accessibles à tous les roles (profils)
if (in_array($action, [
'index',
'view',
'add',
'find',
'creer',
'getNextDate',
'getDateGarantie'
]))
return true;
// ACL : Super-Admin peut accéder à toutes les actions
if ($role == 'Super Administrateur')
return true;
// ACL : Par défaut refuser
return false;
}
// (EP) Used by Materiels and Users Controllers
protected function setUsersLists() {
// On recup tous les users du LDAP (ou fakeLDAP si on n'est pas en mode LDAP)
//$users = TableRegistry::get('LdapConnections')->getListUsers();
//sort($users);
$users_login_and_email = TableRegistry::getTableLocator()->get('LdapConnections')->getUsersLoginAndEmail();
$users_name = array_keys($users_login_and_email);
// Formatage en $users_option_list["Etienne Pallier"] = "Etienne Pallier" ...
$users_option_list = [];
for ($i = 0; $i < sizeof($users_name); $i ++)
$users_option_list[$users_name[$i]] = $users_name[$i];
$this->set(compact(
'users_option_list',
'users_login_and_email'
));
return $users_name;
}
public function getTablePriviledgedUserFromCurrentSessionUserIfExists($user = null)
{
if (! $this->CURRENT_PRIVILEDGED_USER) {
$configuration = $this->confLabinvent;
$username = $user ? $user[$configuration->ldap_authenticationType][0] : $this->LdapAuth->user($configuration->ldap_authenticationType)[0];
$priviledgedUser = TableRegistry::getTableLocator()->get('Users')->find()
->where([
'username' => $username
])
->
// ->where(['username' => $this->LdapAuth->user('cn')[0]])
first();
// if (! $priviledgedUser) $priviledgedUser = "Unpriviledged User (not in table utilisateurs)";
$this->CURRENT_PRIVILEDGED_USER = $priviledgedUser;
}
return $this->CURRENT_PRIVILEDGED_USER;
}
public function getUserRole($user = null)
{
if (! $this->CURRENT_ROLE) {
$priviledgedUser = $this->getTablePriviledgedUserFromCurrentSessionUserIfExists($user);
// default role is "Utilisateur" (for people who are not in the table utilisateurs)
$this->CURRENT_ROLE = ($priviledgedUser) ? $priviledgedUser['role'] : 'Utilisateur';
}
return $this->CURRENT_ROLE;
}
private function userHasRole($expectedRole, $ORMORE = false)
{
$role = $this->getUserRole();
if (! $ORMORE)
return ($role == $expectedRole);
return ($this->getRoleLevel($role) >= $this->getRoleLevel($expectedRole));
/*
* //$hasRole = false;
* switch ($expectedRole) {
* case 'Super Administrateur' :
* return (in_array($role, ['Super Administrateur']));
* break;
* case 'Administration Plus' :
* return (in_array($role, ['Administration Plus', 'Super Administrateur']));
* break;
* case 'Administration' :
* return (in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur' ]));
* break;
* case 'Responsable' :
* return (in_array($role, ['Responsable', 'Administration', 'Administration Plus', 'Super Administrateur']));
* break;
* case 'Utilisateur' :
* return (in_array($role, ['Utilisateur', 'Responsable', 'Administration', 'Administration Plus', 'Super Administrateur']));
* break;
* }
* return $false;
*/
}
public function userHasRoleAtLeast($expectedRole)
{
return $this->userHasRole($expectedRole, true);
}
public function USER_IS_ADMIN_AT_LEAST()
{
return $this->userHasRoleAtLeast('Administration');
}
public function USER_IS_RESP_AT_LEAST()
{
return $this->userHasRoleAtLeast('Responsable');
}
public function USER_IS_SUPERADMIN()
{
return $this->userHasRole('Super Administrateur');
}
public function USER_IS_ADMIN()
{
return $this->userHasRole('Administration');
}
public function USER_IS_RESP()
{
return $this->userHasRole('Responsable');
}
public function USER_IS_USER()
{
return $this->userHasRole('Utilisateur');
}
/**
*
* {@inheritdoc}
*
* @see \Cake\Controller\Controller::beforeFilter() 1) Autorisations SANS (ou AVANT) connexion
* 2) Ensuite, c'est isAuthorized qui gère
*
*/
public function beforeFilter(Event $event)
{
// !!! Ne jamais autoriser l'action 'login', sinon cela va créer des problèmes sur le fonctionnement normal de AuthComponent (cf doc) !!!
// parent::beforeFilter($event);
/*
* EXEMPLES d'utilisation:
* // to allow all access to all actions:
* if (isset($this->Auth)) {
* $this->Auth->allow('*');
* }
* // Allow access to index & view actions:
* if (isset($this->Auth)) {
* $this->Auth->allowedActions = array('index', 'view');
* }
*/
$configuration = $this->confLabinvent;
if ($configuration->mode_install)
$this->LdapAuth->allow([
'display',
'add',
'edit',
'installOff'
]);
else
$this->LdapAuth->allow([
'display'
]);
$this->LdapAuth->setConfig('authError', "Désolé, vous n'êtes pas autorisé à accéder à cette zone.");
}
public function afterFilter(Event $event)
{
if (in_array($this->request->getAttribute('params')['action'], [
'edit',
'add'
]))
$this->request->getSession()->write("retourForm1", true);
else if ($this->request->getAttribute('params')['action'] != 'creer')
$this->request->getSession()->write("retourForm1", false);
}
/**
* Before render callback.
*
* @param \Cake\Event\Event $event
* The beforeRender event
* @return void
*/
public function beforeRender(Event $event)
{
$this->set('PROFILE_USER', self::PROFILE_USER);
$this->set('PROFILE_ADMIN', self::PROFILE_ADMIN);
$this->set('PROFILE_RESPONSABLE', self::PROFILE_RESPONSABLE);
$this->set('PROFILE_ADMINPLUS', self::PROFILE_ADMINPLUS);
$this->set('PROFILE_SUPERADMIN', self::PROFILE_SUPERADMIN);
// $this->set('allProfiles', $this->allProfiles);
$this->set('allProfiles', self::PROFILES);
if (! array_key_exists('_serialize', $this->viewVars) && in_array($this->response->type(), [
'application/json',
'application/xml'
]))
$this->set('_serialize', true);
$this->set('username', $this->LdapAuth->user('sn')[0] . ' ' . $this->LdapAuth->user('givenname')[0]);
$configuration = $this->confLabinvent;
$this->set('configuration', $configuration);
$this->request->getSession()->write("authType", $configuration->ldap_authenticationType);
// ATTENTION, $priviledgedUser = NULL si l'utilisateur courant n'est pas un utilisateur privilégié
// (c'est à dire s'il n'est pas dans la table "utilisateurs")
$priviledgedUser = $this->getTablePriviledgedUserFromCurrentSessionUserIfExists();
/*
* $user = TableRegistry::getTableLocator()->get('Users')->find()
* ->where(['username' => $this->LdapAuth->user($configuration->authentificationType_ldap)[0]])
* ->first();
* $role = $user['role'];
* if ($role == null)
* $role = 'Utilisateur';
*/
// Role = 'Utilisateur', 'Responsable", ...
$role = $this->getUserRole();
$this->set('role', $role);
// Profile = PROFILE_USER (=1), PROFILE_RESPONSABLE (=2), ...
// $profile = $this->allProfiles["$role"];
$profile = self::PROFILES["$role"];
$this->set('profile', $profile);
$USER_IS_UTILISATEUR = ($profile == self::PROFILE_USER);
$USER_IS_RESPONSABLE = ($profile == self::PROFILE_RESPONSABLE);
$USER_IS_ADMIN = ($profile == self::PROFILE_ADMIN);
$USER_IS_ADMINPLUS = ($profile == self::PROFILE_ADMINPLUS);
$USER_IS_SUPERADMIN = ($profile == self::PROFILE_SUPERADMIN);
$USER_IS_RESPONSABLE_OR_MORE = ($profile >= self::PROFILE_RESPONSABLE);
$USER_IS_ADMIN_OR_MORE = ($profile >= self::PROFILE_ADMIN);
$USER_IS_ADMINPLUS_OR_MORE = ($profile >= self::PROFILE_ADMINPLUS);
$this->set('USER_IS_UTILISATEUR', $USER_IS_UTILISATEUR);
$this->set('USER_IS_RESPONSABLE', $USER_IS_RESPONSABLE);
$this->set('USER_IS_ADMIN', $USER_IS_ADMIN);
$this->set('USER_IS_ADMINPLUS', $USER_IS_ADMINPLUS);
$this->set('USER_IS_SUPERADMIN', $USER_IS_SUPERADMIN);
$this->set('USER_IS_RESPONSABLE_OR_MORE', $USER_IS_RESPONSABLE_OR_MORE);
$this->set('USER_IS_ADMIN_OR_MORE', $USER_IS_ADMIN_OR_MORE);
$this->set('USER_IS_ADMINPLUS_OR_MORE', $USER_IS_ADMINPLUS_OR_MORE);
$this->set('priviledgedUser', $priviledgedUser);
/*
* @todo EP 08/2017 Nouvelle organisation des ACL avec $easyACL
*/
$action = $this->getActionPassed();
if (in_array($action, array(
'add',
'edit',
'view',
'index'
))) {
$hiddenFields = $this->getHiddenFieldsForAction($action);
$this->set('hiddenFields', $hiddenFields);
$this->myDebug(compact("hiddenFields"));
if (in_array($action, array(
'add',
'edit'
))) {
$mandatoryFields = $this->getMandatoryFieldsForAction($action);
$this->set('mandatoryFields', $mandatoryFields);
$readOnlyFields = $this->getReadOnlyFieldsForAction($action);
$this->set('readOnlyFields', $readOnlyFields);
$haveDefaultValueFields = $this->getDefaultValueFieldsForAction($action);
// only for DEBUG :
//$this->myDebug("mandat, ro, default fields=", $mandatoryFields, $readOnlyFields, $haveDefaultValueFields);
$this->set(compact('haveDefaultValueFields'));
//$mandatoryFields = array("un"=>"mand", "deux"=>"alkjl");
$this->myDebug(compact("mandatoryFields"));
$this->myDebug(compact("readOnlyFields"));
$this->myDebug(compact("haveDefaultValueFields"));
}
}
$this->set('idGmNa', TableRegistry::getTableLocator()->get('GroupesMetiers')->find()
->where([
'nom =' => 'N/A'
])
->first()['id']);
$this->set('idGtNa', TableRegistry::getTableLocator()->get('GroupesThematiques')->find()
->where([
'nom =' => 'N/A'
])
->first()['id']);
$displayElement = function ($nom, $valeur, $params = "") {
$balise = ($params != "") ? '<td ' . $params . '>' : '<td>';
// Ca c'est parce que sinon y'a au moins deux tests qui passent pas, a cause de l'espace dans la balise ...
if ($valeur != "")
echo '<tr><td><strong>' . $nom . ' </strong></td>' . $balise . $valeur . '</td></tr>';
};
$this->set('displayElement', $displayElement);
// Pass this function to all views
// @todo : Si cette fonction ne concerne que SuivisController, il faut la déplacer dans ce controleur
$dateProchainControleVerif = function ($t) {
$time = Time::now(); // On récupère la date et l'heure actuelles
$today = new \DateTime((new date("$time->year-$time->month-$time->day"))->format('Y-m-d'));
$time1 = new time($t);
$dateTime1 = new \DateTime((new date("$time1->year-$time1->month-$time1->day"))->format('y-m-d'));
$interval = ($today->diff($dateTime1));
$strInterval = $interval->format('%a');
return (int) $strInterval;
};
$this->set('dateProchainControleVerif', $dateProchainControleVerif);
}
// "le materiel", "le suivi"...
protected function getArticle()
{
return "Le ";
}
static function isLabinventDebugMode()
{
return TableRegistry::getTableLocator()->get('Configurations')->find()->first()->mode_debug;
/*
return TableRegistry::getTableLocator()->get('Configurations')->find()
->where([
'id =' => 1
])
->first()->mode_debug;
*/
}
function myDebug($arg, $stop=false)
{
if ($this->isLabinventDebugMode()) {
// Absolument nécessaire sur inventirap (à cause de php 5 ?)
// car sinon, aucun vardump() ou debug() ne s'affiche, why ???...
Configure::write('debug', true);
debug($arg);
if ($stop) exit();
}
}
/**
* Envoi un mail avec un sujet, contenant un message à destination d'une liste de mails, selon l'action effectuée.
*
* @param $entity :
* L'entité concernée (principalement un Matériel, mais ça peut aussi etre un Document)
* @param $subject :
* Sujet du message à envoyer. Si $subject n'est pas renseigné, un sujet par défaut sera généré.
* @param $msg :
* Message à envoyer. Si $msg n'est pas renseigné, un message par défaut sera généré.
*/
public function sendEmail($entity, $subject = null, $msg = null)
{
/*
* $_SESSION['Auth']['User'] pour retrouver TOUTES les infos de la session courante (tout est du string) :
* nom $_SESSION['Auth']['User']['sn'][0]
* prenom $_SESSION['Auth']['User']['givenname'][0]
* mail $_SESSION['Auth']['User']['mail'][0]
* login $_SESSION['Auth']['User']['xxx'][0] /!\ Ce champ est suceptible de changer de nom, dans les tests ce champ est ['cn'][0]
* mdp $_SESSION['Auth']['User']['userpassword'][0]
*/
$configuration = $this->confLabinvent;
$action = $this->request->getAttribute('params')['action']; // add or edit or delete or ...
// Si les deux cases "Activer l'envoi des mails.." sont décochées, on se fatigue pas à exécuter la fonction
if (! $configuration->envoi_mail && ! $configuration->envoi_mail_guests)
return null;
$mailList = array();
// On détermine le message et le sujet du mail en fonction de l'action effectuee
$acteur = $_SESSION['Auth']['User']['givenname'][0] . ' ' . $_SESSION['Auth']['User']['sn'][0];
// if ($entity != null) {
if ($entity instanceof Materiel) {
$materiel = $entity;
$nom_materiel = $materiel->designation;
if ($subject == null && $msg == null) {
$msgMore = '';
Switch ($action) {
case 'add':
$subject = "Ajout d'un matériel";
$msg = "$acteur a ajouté le matériel \"$nom_materiel\"";
break;
// case 'edit':
//$subject = "Modification d'un matériel";
//$msg = "$acteur a modifié le matériel \"$nom_materiel\"";
// break;
case 'delete':
$subject = "Suppression d'un matériel";
$msg = "$acteur a supprimé le matériel \"$nom_materiel\"";
// @todo: mettre le nom des domaine, categ, et sous-categ, et non pas l'id
if ($materiel->sur_categorie_id != "")
$msgMore .= "\n\nDomaine : " . $materiel->sur_categorie_id;
if ($materiel->categorie_id != "")
$msgMore .= "\n\nCatégorie : " . $materiel->categorie_id;
if ($materiel->sous_categorie_id != "")
$msgMore .= "\n\nSous-catégorie : " . $materiel->sous_categorie_id;
if ($materiel->description != "")
$msgMore .= "\n\nDescription :\n" . $materiel->description;
break;
//case 'statusCreated':
//$subject = "Dé-validation d'un matériel";
//$msg = "$acteur a dé-validé le matériel \"$nom_materiel\"";
// break;
//case 'statusValidated':
//$subject = "Validation d'un matériel";
//$msg = "$acteur a validé le matériel \"$nom_materiel\"";
// break;
case 'statusToBeArchived':
$subject = "Demande d'archivage d'un matériel";
$msg = "$acteur a demandé l'archivage du matériel \"$nom_materiel\"";
break;
case 'statusArchived':
$subject = "Archivage d'un matériel";
$msg = "$acteur a archivé le matériel \"$nom_materiel\"";
break;
case 'setLabelIsPlaced':
$subject = "Etiquette posée sur un matériel";
$msg = "Etiquette posée sur le matériel \"$nom_materiel\"";
break;
case 'printLabelRuban':
$subject = "Etiquette imprimée";
$msg = "L'étiquette concerant votre matériel \"$nom_materiel\" a été imprimée";
$mailList[0] = $materiel->email_responsable;
default:
$subject = "Action \"$action\" sur un matériel";
$msg = "$acteur a effectué l'action \"$action\" sur le matériel \"$nom_materiel\"";
break;
} // end switch
// (EP) Ajout de l'ID du materiel !!!
$msg .= " (id=" . $materiel->id . ").";
// Only for "delete" action (for the moment...)
if ($msgMore)
$msg .= $msgMore;
// $msg .= "\n\n";
} // subject is null
// Et maintenant on construit la liste de mails...
// Si l'envoi général est activé (et que l'action ne correspond pas à 'printLabelRuban'):
if ($configuration->envoi_mail && $action != 'printLabelRuban') {
// owner's mail (utilisateur du matériel)
$mailList[0] = $materiel->email_responsable;
// resp's mail
$mailsRespMetier = null;
$mailRespThematique = null;
if ($materiel->groupes_metier_id != null && $materiel->groupes_metier_id != 1) {
// Le ..!= 1 c'est parce que le groupe métier/thématique d'id 1 correspond au groupe N/A, soit aucun groupe
$mailsRespMetier = TableRegistry::getTableLocator()->get('Users')->find()
->select('email')
->where([
'role =' => 'Responsable',
'groupes_metier_id =' => $materiel->groupes_metier_id
])
->toArray();
$mailRespThematique = TableRegistry::getTableLocator()->get('Users')->find()
->select('email')
->where([
'role =' => 'Responsable',
'groupe_thematique_id =' => $materiel->groupes_thematique_id
])
->toArray();
}
if ($mailsRespMetier != null || $mailRespThematique != null) {
$mailsResp = array_unique(array_merge($mailsRespMetier, $mailRespThematique));
for ($i = 0; $i < sizeof($mailsResp); $i ++) {
$mailList[] = $mailsResp[$i]['email'];
// $mailList[sizeof($mailList)] = $mailsResp[$i]['email'];
}
}
// mail admin de reference (ici appele gestionnaire) -> Partie administration
// Cela a été mis en commentaire car de toute façon l'utilisateur va voir un administratif pour faire valider sa fiche,
// Pas la peine de spam l'administration de mails non plus hein !
/*
* if ($action != 'statusValidated' && $action != 'statusArchived') {
* $mailsAdmin = TableRegistry::getTableLocator()->get('Users')->find()->select('email')
* ->where(['role =' => 'Administration'])
* ->toArray();
* for ($i = 0; $i < sizeof($mailsAdmin); $i ++) {
* $mailList[sizeof($mailList)] = $mailsAdmin[$i]['email'];
* }
* }
*/
}
} // Materiel
// @todo: ajouter quelques infos dans ces cas :
else if ($entity instanceof Document) {
;
} else if ($entity instanceof Suivi) {
;
} else if ($entity instanceof Emprunt) {
;
}
/*
* @todo:
* else if ($entity instanceof Configuration) {
* ;
* }
* ... etc ... (il faut qu'on soit plus précis)
*/
// Si l'envoi à la liste spécifiée est activé (et que l'action ne correspond pas à 'printLabelRuban'):
$specificUsers = [];
if ($configuration->envoi_mail_guests && $action != 'printLabelRuban') {
// mail aux adresses specifiees dans la config
for ($i = 0; $i < 11; $i ++) {
$specificUser = $configuration['emailGuest' . $i];
if ($specificUser)
$specificUsers[] = $specificUser;
// $mailList[sizeof($mailList)] = $configuration['emailGuest' . $i];
$mailList[] = $specificUser;
// Le if vérifie que la ligne soit pas null
}
}
// On dedoublonne la liste des mails, c'pas tres cool de se faire spam 2-3 fois pour la meme action sur le meme materiel, non mais !
$mailList = array_unique($mailList);
// ... Pour envoyer les mails aux personnes concernees
foreach ($mailList as $mail) {
// On envoi des mails à toute la liste, sauf pour "l'acteur", il sait ce qu'il a fait, pas besoin de le spam non plus hein
if ($mail == $_SESSION['Auth']['User']['mail'][0])
continue;
$message = $msg; // Sisi, cette variable $message est utile, m'enfin vous pouvez toujours essayer de la supprimer ..... Et pensez à regarder le contenu de vos mails !!! Sinon ca fait une tumeur
// Génération du message "Vous recevez ce message en tant que $role"
// Si $role inexistant (lorsque c'est un mail de la liste entrée en configuration), le message est plutot "Vous recevez ce message car vous avez demandé à le recevoir. [...]"
if ($specificUsers)
$role = "car vous etes dans la liste spécifique des emails de LabInvent. \n\nPour faire retirer votre mail de cette liste, veuillez contacter un SuperAdmin.";
else {
$role = TableRegistry::getTableLocator()->get('Users')->find()
->select('role')
->where([
'email =' => $mail
])
->first()['role'];
// Default role is Utilisateur (for people in LDAP but without priviledge, not in the users table)
if (is_null($role))
$role = 'Utilisateur';
$role = 'en tant que ' . $role;
}
if ($entity != null && ! in_array($action, [
'delete',
'statusValidated',
'statusCreated'
]))
$message .= "\n\nVeuillez vérifier et compléter si besoin la fiche correspondante.";
$message .= "\n\nVous recevez ce message " . $role;
$this->sendEmailTo("$subject", $message, $mail, $configuration);
}
return $mailList;
}
// Fonction d'envoi de mails
private function sendEmailTo($subject, $msg, $mail, $config)
{
if ($mail != null && ! $config->test) {
if (filter_var($mail, FILTER_VALIDATE_EMAIL)) {
$email = new Email();
$etiquetteFrom = explode("@", $config->sender_mail);
$email->transport('default')
->from([
$config->sender_mail => $etiquetteFrom[0]
])
->to($mail)
->subject("[LabInvent] " . $subject)
->send($msg);
}
}
}
// Fonction d'envoi de mails avec photo jointe
private function sendEmailImgTo($subject, $msg, $mail, $config, $nomImg)
{
if ($mail != null && ! $config->test) {
if (filter_var($mail, FILTER_VALIDATE_EMAIL)) {
$email = new Email();
$etiquetteFrom = explode("@", $config->sender_mail);
$email->attachments(["/var/www/html/labinvent/webroot/img/photos/$nomImg"]);
$email->transport('default')
->from([
$config->sender_mail => $etiquetteFrom[0]
])
->to($mail)
->subject("[LabInvent] " . $subject)
->send($msg);
}
}
}
// MI Fonction d'envoi de mails avec pièce jointe
private function sendEmailPJTo($subject, $msg, $mail, $config, $nomDoc)
{
if ($mail != null && ! $config->test) {
if (filter_var($mail, FILTER_VALIDATE_EMAIL)) {
$email = new Email();
$etiquetteFrom = explode("@", $config->sender_mail);
$email->attachments(["/var/www/html/labinvent/webroot/files/$nomDoc"]);
$email->transport('default')
->from([
$config->sender_mail => $etiquetteFrom[0]
])
->to($mail)
->subject("[LabInvent] " . $subject)
->send($msg);
}
}
}
/**Version MI - version modifiée de la fonction sendEmail par malik du 18 juin au 24 août
*
* Envoi un mail avec un sujet, contenant un message à destination d'un email, selon l'action effectuée.
*
* @param $entity :
* L'entité concernée (principalement un Matériel, mais ça peut aussi etre un Document)
* @param $subject :
* Sujet du message à envoyer. Si $subject n'est pas renseigné, un sujet par défaut sera généré.
* @param $msg :
* Message à envoyer. Si $msg n'est pas renseigné, un message par défaut sera généré.
*/
public function sendmail($entity, $mode, $subject = null, $msg = null)
{
/*
* $_SESSION['Auth']['User'] pour retrouver TOUTES les infos de la session courante (tout est du string) :
* nom $_SESSION['Auth']['User']['sn'][0]
* prenom $_SESSION['Auth']['User']['givenname'][0]
* mail $_SESSION['Auth']['User']['mail'][0]
* login $_SESSION['Auth']['User']['xxx'][0] /!\ Ce champ est suceptible de changer de nom, dans les tests ce champ est ['cn'][0]
* mdp $_SESSION['Auth']['User']['userpassword'][0]
*/
$configuration = $this->confLabinvent;
$action = $this->request->getAttribute('params')['action']; // add or edit or delete or ...
// Si les deux cases "Activer l'envoi des mails.." sont décochées, on se fatigue pas à exécuter la fonction
if (! $configuration->envoi_mail && ! $configuration->envoi_mail_guests)
return null;
$mailList = array();
// On détermine le message et le sujet du mail en fonction de l'action effectuee
// on bloque l'envoi de mail à l'edition et à la validation pour eviter trop d'envoi de mail
// le temps que soit trouvé une autre solution
$acteur = $_SESSION['Auth']['User']['givenname'][0] . ' ' . $_SESSION['Auth']['User']['sn'][0];
// if ($entity != null) {
if ($entity instanceof Materiel) {
$materiel = $entity;
$nom_materiel = $materiel->designation;
if ($subject == null && $msg == null) {
$msgMore = '';
Switch ($action) {
case 'add':
$subject = "Ajout d'un matériel";
$msg = "$acteur a ajouté le matériel \"$nom_materiel\"";
break;
case 'edit':
$subject = "Modification d'un matériel";
$msg = "$acteur a modifié le matériel \"$nom_materiel\"";
break;
case 'delete':
$subject = "Suppression d'un matériel";
$msg = "$acteur a supprimé le matériel \"$nom_materiel\"";
// @todo: mettre le nom des domaine, categ, et sous-categ, et non pas l'id
if ($materiel->sur_categorie_id != "")
$msgMore .= "\n\nDomaine : " . $materiel->sur_categorie_id;
if ($materiel->categorie_id != "")
$msgMore .= "\n\nCatégorie : " . $materiel->categorie_id;
if ($materiel->sous_categorie_id != "")
$msgMore .= "\n\nSous-catégorie : " . $materiel->sous_categorie_id;
if ($materiel->description != "")
$msgMore .= "\n\nDescription :\n" . $materiel->description;
break;
case 'statusCreated':
$subject = "Dé-validation d'un matériel";
$msg = "$acteur a dé-validé le matériel \"$nom_materiel\"";
break;
case 'statusValidated':
$subject = "Validation d'un matériel";
$msg = "$acteur a validé le matériel \"$nom_materiel\"";
break;
case 'statusToBeArchived':
$subject = "Demande d'archivage d'un matériel";
$msg = "$acteur a demandé l'archivage du matériel \"$nom_materiel\"";
break;
case 'statusArchived':
$subject = "Archivage d'un matériel";
$msg = "$acteur a archivé le matériel \"$nom_materiel\"";
break;
case 'setLabelIsPlaced':
$subject = "Etiquette posée sur un matériel";
$msg = "Etiquette posée sur le matériel \"$nom_materiel\"";
break;
case 'printLabelRuban':
$subject = "Etiquette imprimée";
$msg = "L'étiquette concerant votre matériel \"$nom_materiel\" a été imprimée";
$mailList[0] = $materiel->email_responsable;
default:
$subject = "Action \"$action\" sur un matériel";
$msg = "$acteur a effectué l'action \"$action\" sur le matériel \"$nom_materiel\"";
break;
} // end switch
// (EP) Ajout de l'ID du materiel !!!
$msg .= " (id=" . $materiel->id . ").";
// Only for "delete" action (for the moment...)
if ($msgMore)
$msg .= $msgMore;
// $msg .= "\n\n";
} // subject is null
// Et maintenant on construit la liste de mails...
// Si l'envoi général est activé (et que l'action ne correspond pas à 'printLabelRuban'):
if ($configuration->envoi_mail && $action != 'printLabelRuban') {
// owner's mail (utilisateur du matériel)
$mailList[0] = $materiel->email_responsable;
// resp's mail
$mailsRespMetier = null;
$mailRespThematique = null;
if ($materiel->groupes_metier_id != null && $materiel->groupes_metier_id != 1) {
// Le ..!= 1 c'est parce que le groupe métier/thématique d'id 1 correspond au groupe N/A, soit aucun groupe
$mailsRespMetier = TableRegistry::getTableLocator()->get('Users')->find()
->select('email')
->where([
'role =' => 'Responsable',
'groupes_metier_id =' => $materiel->groupes_metier_id
])
->toArray();
$mailRespThematique = TableRegistry::getTableLocator()->get('Users')->find()
->select('email')
->where([
'role =' => 'Responsable',
'groupe_thematique_id =' => $materiel->groupes_thematique_id
])
->toArray();
}
if ($mailsRespMetier != null || $mailRespThematique != null) {
$mailsResp = array_unique(array_merge($mailsRespMetier, $mailRespThematique));
for ($i = 0; $i < sizeof($mailsResp); $i ++) {
$mailList[] = $mailsResp[$i]['email'];
// $mailList[sizeof($mailList)] = $mailsResp[$i]['email'];
}
}
// mail admin de reference (ici appele gestionnaire) -> Partie administration
// Cela a été mis en commentaire car de toute façon l'utilisateur va voir un administratif pour faire valider sa fiche,
// Pas la peine de spam l'administration de mails non plus hein !
/*
* if ($action != 'statusValidated' && $action != 'statusArchived') {
* $mailsAdmin = TableRegistry::getTableLocator()->get('Users')->find()->select('email')
* ->where(['role =' => 'Administration'])
* ->toArray();
* for ($i = 0; $i < sizeof($mailsAdmin); $i ++) {
* $mailList[sizeof($mailList)] = $mailsAdmin[$i]['email'];
* }
* }
*/
}
} // Materiel
// @todo: ajouter quelques infos dans ces cas :
else if ($entity instanceof Document) {
$doc = $entity;
$nom_doc = $doc->nom;
$id_doc = $doc->id;
$type_doc = $doc->type_doc;
$id_mat = $doc->materiel_id;
$id_suiv = $doc->suivi_id;
if ($subject == null && $msg == null) {
$msgMore = '';
Switch ($action) {
case 'add':
$subject = "Ajout d'un document";
$msg = "$acteur a ajouté le document \"$nom_doc\" au format \"$type_doc\"";
break;
//ajoutons un contenu de message plus clair pour l'envoi de document
case'mailDevis':
$subject = "$acteur a partagé un document avec vous";
$msg = "$acteur après avoir ajouté le document \"$nom_doc\", a voulu le partager avec vous, c'est un document ayant le format \"$type_doc\" .";
$msg .="\n\n Le document est en pièce jointe.";
break;
//L'edition
//comme il n'étais pas actuellement activé, on le laisse en commentaire
//case 'edit':
//$subject = "Modification d'un document";
//$msg = "$acteur a modifié le matériel \"$nom_doc\"";
//break;
//La suppression
//comme il n'étais pas actuellement activé, on le laisse en commentaire
//case 'delete':
//$subject = "Suppression d'un document";
//$msg = "$acteur a supprimé le document\"$nom_doc\"";
//break;
default:
$subject = "Action \"$action\" sur un matériel";
$msg = "$acteur a effectué l'action \"$action\" sur le document \"$nom_doc\" au format \"$type_doc\"";
break;
} // end switch
// (EP) Ajout de l'ID du document, et de l'id du materiel associé !!!
//On change le contenu en fonction de si le document a été lié à un matériel, ou a un suivi
if (!$id_mat == Null) {
$msg .= "\n\n (id doc=".$doc->id.", Materiel associé d'id=\"$id_mat\")";
$nomFic =$id_mat."_".$nom_doc."_".$id_doc.".".$type_doc;
} else {
$msg .= "\n\n (id doc=".$doc->id.", Materiel associé d'id=\"$id_suiv\")";
$nomFic =$id_suiv."_".$nom_doc."_".$id_doc.".".$type_doc;
}
}
// Et maintenant on construit la liste de mails...
// Si l'envoi général est activé (et que l'action ne correspond pas à 'printLabelRuban'):
if ($configuration->envoi_mail && $action != 'printLabelRuban') {
// owner's mail (utilisateur du matériel associé )
//$mailList[0] = $entity->materiel->email_responsable;
//MI - gestionaire ratachée au matériel
$mailList[1]= TableRegistry::getTableLocator()->get('Users')->find()
->select('email')
->where([
'role =' => 'Administration',
'id =' => $materiel->gestionnaire_id
]);
}
} else if ($entity instanceof Suivi) {
;
} else if ($entity instanceof Emprunt) {
;
}
/*
* @todo:
* else if ($entity instanceof Configuration) {
* ;
* }
* ... etc ... (il faut qu'on soit plus précis)
*/
// Si l'envoi à la liste spécifiée est activé (et que l'action ne correspond pas à 'printLabelRuban'):
$specificUsers = [];
if ($configuration->envoi_mail_guests && $action != 'printLabelRuban') {
// mail aux adresses specifiees dans la config
for ($i = 0; $i < 11; $i ++) {
$specificUser = $configuration['emailGuest' . $i];
if ($specificUser)
$specificUsers[] = $specificUser;
// $mailList[sizeof($mailList)] = $configuration['emailGuest' . $i];
$mailList[] = $specificUser;
// Le if vérifie que la ligne soit pas null
}
}
// On dedoublonne la liste des mails, c'pas tres cool de se faire spam 2-3 fois pour la meme action sur le meme materiel, non mais !
$mailList = array_unique($mailList);
// ... Pour envoyer les mails aux personnes concernees
foreach ($mailList as $mail) {
// On envoi des mails à toute la liste, sauf pour "l'acteur", il sait ce qu'il a fait, pas besoin de le spam non plus hein
//if ($mail == $_SESSION['Auth']['User']['mail'][0])
//continue;
$message = $msg; // Sisi, cette variable $message est utile, m'enfin vous pouvez toujours essayer de la supprimer ..... Et pensez à regarder le contenu de vos mails !!! Sinon ca fait une tumeur
// Génération du message "Vous recevez ce message en tant que $role"
// Si $role inexistant (lorsque c'est un mail de la liste entrée en configuration), le message est plutot "Vous recevez ce message car vous avez demandé à le recevoir. [...]"
//if ($specificUsers)
$role = "car vous etes dans la liste spécifique des emails de LabInvent. \n\nPour faire retirer votre mail de cette liste, veuillez contacter un super-administrateur.";
/* (EP 13/319) : à quoi sert toute cette suite du texte du mail ???
* Ca sent le bon vieux copier-coller sans réfléchir...
//else {
//$role = $role. TableRegistry::get('Users')->find()
$role = $role. TableRegistry::getTableLocator()->get('Users')->find()
->select('role')
->where([
'email =' => $mail
])
->first()['role'].' + ';
// Default role is Utilisateur (for people in LDAP but without priviledge, not in the users table)
// if (is_null($role))
$role =$role .'en tant que ' .'Utilisateur';
//}
*/
if ($entity != null && ! in_array($action, [
'delete',
'statusValidated',
'statusCreated'
])) {
$message .= "\n\nVeuillez vérifier et compléter si besoin la fiche correspondante.";
$message .= "\n\nVous recevez ce message " . $role;
//en fonction du mode à l'appel, on utilise un envoi de mail différent
switch($mode) {
//si le mode 1 est sélectionné c'est un envoi de mail avec ajout d'une photo
//explique le document qui a été ajouté, et le met en pièce jointe
case 1 :
$this->sendEmailImgTo("$subject", $message, $mail, $configuration, $nomFic);
break;
//si le mode 2 est sélectionné c'est un envoi de mail avec ajout d'un document
//à personnaliser
case 2 :
$this->sendEmailPJTo("$subject", $message, $mail, $configuration, $nomFic);
break;
//si le mode defaut est sélectionné c'est un simple envoi de mail
//récapitule une action (mieux pour les add...)
default :
$this->sendEmailTo("$subject", $message, $mail, $configuration);
break;
}
}
}
return $mailList;
}
}