-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpermissions.acl
1028 lines (894 loc) · 41.6 KB
/
permissions.acl
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
// Business Access Control Rules:
rule ConsultantsHaveReadAccessToTheirOwnData {
description: "Allow consultants read access to their own data"
participant(p): "org.ifb.trustfabric.Consultant"
operation: READ
resource(r): "org.ifb.trustfabric.Consultant"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ConsultantsCanDeleteTheirAccount {
description: "Allow consultants to delete their account"
participant(p): "org.ifb.trustfabric.Consultant"
operation: DELETE
resource(r): "org.ifb.trustfabric.Consultant"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ConsultantsHaveWriteAccessToTheirOwnMasterData {
description: "Allow consultants write access to their own master data"
participant(p): "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource(r): "org.ifb.trustfabric.Consultant"
transaction(tx): "org.ifb.trustfabric.UpdateMasterDataOfConsultant"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ConsultantsHaveWriteAccessToTheirOwnMasterData2 {
description: "Allow consultants write access to their own master data"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.UpdateMasterDataOfConsultant"
action: ALLOW
}
rule ConsultantsHaveWriteAccessToTheirOwnImages {
description: "Allow consultants write access to their own images"
participant(p): "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource(r): "org.ifb.trustfabric.Consultant"
transaction(tx): "org.ifb.trustfabric.UpdateImageOfConsultant"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ConsultantsHaveWriteAccessToTheirOwnImages2 {
description: "Allow consultants write access to their own images"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.UpdateImageOfConsultant"
action: ALLOW
}
rule ConsultantsHaveWriteAccessToTheirOwnLogItems {
description: "Allow consultants write access to their own logItems"
participant(p): "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource(r): "org.ifb.trustfabric.Consultant"
transaction(tx): "org.ifb.trustfabric.AddLogItemToConsultant"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ConsultantsHaveWriteAccessToTheirOwnLogItems2{
description: "Allow consultants write access to their own logItems"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.AddLogItemToConsultant"
action: ALLOW
}
rule ConsultantsCanAddTeamleaders {
description: "Allow consultants to add teamleaders"
participant(p): "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource(r): "org.ifb.trustfabric.Consultant"
transaction(tx): "org.ifb.trustfabric.AddTeamleaderWithGivenEmailToConsultant"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ConsultantsCanAddTeamleaders2 {
description: "Allow consultants to add teamleaders"
participant(p): "org.ifb.trustfabric.Consultant"
operation: READ
resource(r): "org.ifb.trustfabric.Consultant"
transaction(tx): "org.ifb.trustfabric.AddTeamleaderWithGivenEmailToConsultant"
condition: (1)
action: ALLOW
}
rule ConsultantsCanAddTeamleaders3 {
description: "Allow consultants to add teamleaders"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.AddTeamleaderWithGivenEmailToConsultant"
action: ALLOW
}
rule ConsultantsCanRemoveTeamleaders {
description: "Allow consultants to remove teamleaders"
participant(p): "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource(r): "org.ifb.trustfabric.Consultant"
transaction(tx): "org.ifb.trustfabric.RemoveTeamleaderFromConsultant"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ConsultantsCanRemoveTeamleaders2 {
description: "Allow consultants to remove teamleaders"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.RemoveTeamleaderFromConsultant"
action: ALLOW
}
rule ConsultantsHaveReadAccessToTheirTeamleaders {
description: "Allow consultants read access to their teamleaders"
participant(p): "org.ifb.trustfabric.Consultant"
operation: READ
resource(r): "org.ifb.trustfabric.Consultant"
condition: (p.teamleaders && p.teamleaders.toString().indexOf(r.getIdentifier()) > -1)
action: ALLOW
}
rule ConsultantsHaveReadAccessToConsultantCompanies {
description: "Allow consultants read access to consultant companies"
participant: "org.ifb.trustfabric.Consultant"
operation: READ
resource: "org.ifb.trustfabric.ConsultantCompany"
action: ALLOW
}
rule ConsultantsHaveReadAccessToClients {
description: "Allow consultants read access to clients"
participant: "org.ifb.trustfabric.Consultant"
operation: READ
resource: "org.ifb.trustfabric.Client"
action: ALLOW
}
rule ConsultantsHaveReadAccessToSkills {
description: "Allow consultants read access to skills"
participant: "org.ifb.trustfabric.Consultant"
operation: READ
resource: "org.ifb.trustfabric.Skill"
action: ALLOW
}
rule ConsultantsHaveReadAccessToProjectReferencesBelongingToTheirProfile {
description: "Allow consultants read access to project references belonging to their profile"
participant(p): "org.ifb.trustfabric.Consultant"
operation: READ
resource(r): "org.ifb.trustfabric.Project"
condition: (p.projects && p.projects.toString().indexOf(r.getIdentifier()) > -1)
action: ALLOW
}
rule ConsultantsCanAddProposedProjectsForWhichTheyAreProjectLeaderToClients {
description: "Allow consultants to add proposed projects, for which they are the project leader, to the list of proposed projects of a client (NB: restriction that only the project leader can add a project is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource: "org.ifb.trustfabric.Client"
transaction: "org.ifb.trustfabric.AddToProposedProjectsOfClient"
action: ALLOW
}
rule ConsultantsCanAddProposedProjectsForWhichTheyAreProjectLeaderToClients2 {
description: "Allow consultants to add proposed projects, for which they are the project leader, to the list of proposed projects of a client (NB: restriction that only the project leader can add a project is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.AddToProposedProjectsOfClient"
action: ALLOW
}
rule ConsultantsCanAddAcceptedProjectsForWhichTheyAreProjectLeaderToClients {
description: "Allow consultants to add accepted projects, for which they are the project leader, to the list of accepted projects of a client (NB: restriction that only the project leader can add a project is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource: "org.ifb.trustfabric.Client"
transaction: "org.ifb.trustfabric.AddToAcceptedProjectsOfClient"
action: ALLOW
}
rule ConsultantsCanAddAcceptedProjectsForWhichTheyAreProjectLeaderToClients2 {
description: "Allow consultants to add accepted projects, for which they are the project leader, to the list of accepted projects of a client (NB: restriction that only the project leader can add a project is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.AddToAcceptedProjectsOfClient"
action: ALLOW
}
rule ConsultantsCanRemoveProposedProjectsForWhichTheyAreProjectLeaderFromClients {
description: "Allow consultants to remove proposed projects, for which they are the project leader, from the list of proposed projects of a client (NB: restriction that only the project leader can remove a project is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource: "org.ifb.trustfabric.Client"
transaction: "org.ifb.trustfabric.RemoveFromProposedProjectsOfClient"
action: ALLOW
}
rule ConsultantsCanRemoveProposedProjectsForWhichTheyAreProjectLeaderFromClients2 {
description: "Allow consultants to remove proposed projects, for which they are the project leader, from the list of proposed projects of a client (NB: restriction that only the project leader can remove a project is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.RemoveFromProposedProjectsOfClient"
action: ALLOW
}
rule ConsultantsCanRemoveAcceptedProjectsForWhichTheyAreProjectLeaderFromClients {
description: "Allow consultants to remove accepted projects, for which they are the project leader, from the list of accepted projects of a client (NB: restriction that only the project leader can remove a project is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource: "org.ifb.trustfabric.Client"
transaction: "org.ifb.trustfabric.RemoveFromAcceptedProjectsOfClient"
action: ALLOW
}
rule ConsultantsCanRemoveAcceptedProjectsForWhichTheyAreProjectLeaderFromClients2 {
description: "Allow consultants to remove accepted projects, for which they are the project leader, from the list of accepted projects of a client (NB: restriction that only the project leader can remove a project is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.RemoveFromAcceptedProjectsOfClient"
action: ALLOW
}
rule ConsultantsCanCreateProposedProjects {
description: "Allow consultants to create proposed projects"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.ProposedProject"
action: ALLOW
}
rule ConsultantsCanCreateAcceptedProjects {
description: "Allow consultants to create accepted projects"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.AcceptedProject"
action: ALLOW
}
rule ConsultantsHaveReadAccessToProposedProjectsForWhichTheyAreProjectLeader {
description: "Allow consultants read access to proposed projects, for which they are the project leader"
participant(p): "org.ifb.trustfabric.Consultant"
operation: READ
resource(r): "org.ifb.trustfabric.ProposedProject"
condition: (r.projectLeader.getIdentifier() == p.getIdentifier())
action: ALLOW
}
rule ConsultantsHaveReadAccessToAcceptedProjectsForWhichTheyAreProjectLeader {
description: "Allow consultants read access to accepted projects, for which they are the project leader"
participant(p): "org.ifb.trustfabric.Consultant"
operation: READ
resource(r): "org.ifb.trustfabric.AcceptedProject"
condition: (r.projectLeader.getIdentifier() == p.getIdentifier())
action: ALLOW
}
rule ConsultantsCanDeleteProposedProjectsForWhichTheyAreProjectLeader {
description: "Allow consultants to delete proposed projects, for which they are the project leader"
participant(p): "org.ifb.trustfabric.Consultant"
operation: DELETE
resource(r): "org.ifb.trustfabric.ProposedProject"
condition: (r.projectLeader.getIdentifier() == p.getIdentifier())
action: ALLOW
}
rule ConsultantsCanDeleteAcceptedProjectsForWhichTheyAreProjectLeader {
description: "Allow consultants to delete accepted projects, for which they are the project leader"
participant(p): "org.ifb.trustfabric.Consultant"
operation: DELETE
resource(r): "org.ifb.trustfabric.AcceptedProject"
condition: (r.projectLeader.getIdentifier() == p.getIdentifier())
action: ALLOW
}
rule TeamleadersCanAddTeamMembersToProposedProjectsForWhichTheyAreProjectLeader {
description: "Allow teamleaders to add team members to proposed projects, for which they are the project leader (NB: restriction that teamleaders can do this only for team members is implemented programmatically)"
participant(p): "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource(r): "org.ifb.trustfabric.ProposedProject"
transaction(tx): "org.ifb.trustfabric.AddToConsultantsOfProposedProject"
condition: (r.projectLeader.getIdentifier() == p.getIdentifier())
action: ALLOW
}
rule TeamleadersCanAddTeamMembersToProposedProjectsForWhichTheyAreProjectLeader2 {
description: "Allow teamleaders to add team members to proposed projects, for which they are the project leader (NB: restriction that teamleaders can do this only for team members is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.AddToConsultantsOfProposedProject"
action: ALLOW
}
rule TeamleadersCanAddTeamMembersToAcceptedProjectsForWhichTheyAreProjectLeader {
description: "Allow teamleaders to add team members to accepted projects, for which they are the project leader (NB: restriction that teamleaders can do this only for team members is implemented programmatically)"
participant(p): "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource(r): "org.ifb.trustfabric.AcceptedProject"
transaction(tx): "org.ifb.trustfabric.AddToConsultantsOfAcceptedProject"
condition: (r.projectLeader.getIdentifier() == p.getIdentifier())
action: ALLOW
}
rule TeamleadersCanAddTeamMembersToAcceptedProjectsForWhichTheyAreProjectLeader2 {
description: "Allow teamleaders to add team members to accepted projects, for which they are the project leader (NB: restriction that teamleaders can do this only for team members is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.AddToConsultantsOfAcceptedProject"
action: ALLOW
}
rule TeamleadersCanRemoveTeamMembersFromProposedProjectsForWhichTheyAreProjectLeader {
description: "Allow teamleaders to remove team members from proposed projects, for which they are the project leader (NB: restriction that teamleaders can do this only for team members is implemented programmatically)"
participant(p): "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource(r): "org.ifb.trustfabric.ProposedProject"
transaction(tx): "org.ifb.trustfabric.RemoveFromConsultantsOfProposedProject"
condition: (r.projectLeader.getIdentifier() == p.getIdentifier())
action: ALLOW
}
rule TeamleadersCanRemoveTeamMembersFromProposedProjectsForWhichTheyAreProjectLeader2 {
description: "Allow teamleaders to remove team members from proposed projects, for which they are the project leader (NB: restriction that teamleaders can do this only for team members is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.RemoveFromConsultantsOfProposedProject"
action: ALLOW
}
rule TeamleadersCanRemoveTeamMembersFromAcceptedProjectsForWhichTheyAreProjectLeader {
description: "Allow teamleaders to remove team members from accepted projects, for which they are the project leader (NB: restriction that teamleaders can do this only for team members is implemented programmatically)"
participant(p): "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource(r): "org.ifb.trustfabric.AcceptedProject"
transaction(tx): "org.ifb.trustfabric.RemoveFromConsultantsOfAcceptedProject"
condition: (r.projectLeader.getIdentifier() == p.getIdentifier())
action: ALLOW
}
rule TeamleadersCanRemoveTeamMembersFromAcceptedProjectsForWhichTheyAreProjectLeader2 {
description: "Allow teamleaders to remove team members from accepted projects, for which they are the project leader (NB: restriction that teamleaders can do this only for team members is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.RemoveFromConsultantsOfAcceptedProject"
action: ALLOW
}
rule TeamleadersCanAddTeamMembersToReadableConsultantsListOfClients {
description: "Allow teamleaders to add team members to the 'readableConsultants' list of clients (NB: restriction that teamleaders can do this only for team members is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource: "org.ifb.trustfabric.Client"
transaction: "org.ifb.trustfabric.AddToReadableConsultantsOfClient"
action: ALLOW
}
rule TeamleadersCanAddTeamMembersToReadableConsultantsListOfClients2 {
description: "Allow teamleaders to add team members to the 'readableConsultants' list of clients (NB: restriction that teamleaders can do this only for team members is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.AddToReadableConsultantsOfClient"
action: ALLOW
}
rule TeamleadersCanAddTeamMembersToWritableConsultantsListOfClients {
description: "Allow teamleaders to add team members to the 'writableConsultants' list of clients (NB: restriction that teamleaders can do this only for team members is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource: "org.ifb.trustfabric.Client"
transaction: "org.ifb.trustfabric.AddToWritableConsultantsOfClient"
action: ALLOW
}
rule TeamleadersCanAddTeamMembersToWritableConsultantsListOfClients2 {
description: "Allow teamleaders to add team members to the 'writableConsultants' list of clients (NB: restriction that teamleaders can do this only for team members is implemented programmatically)"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.AddToWritableConsultantsOfClient"
action: ALLOW
}
rule TeamleadersCanRemoveTeamMembersFromReadableConsultantsListOfClients {
description: "Allow teamleaders to remove team members from the 'readableConsultants' list of clients"
participant: "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource: "org.ifb.trustfabric.Client"
transaction: "org.ifb.trustfabric.RemoveFromReadableConsultantsOfClient"
action: ALLOW
}
rule TeamleadersCanRemoveTeamMembersFromReadableConsultantsListOfClients2 {
description: "Allow teamleaders to remove team members from the 'readableConsultants' list of clients"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.RemoveFromReadableConsultantsOfClient"
action: ALLOW
}
rule TeamleadersCanRemoveTeamMembersFromWritableConsultantsListOfClients {
description: "Allow teamleaders to remove team members from the 'writableConsultants' list of clients"
participant: "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource: "org.ifb.trustfabric.Client"
transaction: "org.ifb.trustfabric.RemoveFromWritableConsultantsOfClient"
action: ALLOW
}
rule TeamleadersCanRemoveTeamMembersFromWritableConsultantsListOfClients2 {
description: "Allow teamleaders to remove team members from the 'writableConsultants' list of clients"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.RemoveFromWritableConsultantsOfClient"
action: ALLOW
}
rule TeamleadersHaveReadAccessToDataOnTheirTeamMembers {
description: "Allow teamleaders read access to data on their team members"
participant(p): "org.ifb.trustfabric.Consultant"
operation: READ
resource(r): "org.ifb.trustfabric.Consultant"
condition: (r.teamleaders && r.teamleaders.toString().indexOf(p.getIdentifier()) > -1)
action: ALLOW
}
rule TeamleadersHaveWriteAccessToLogItemsOfTheirTeamMembers {
description: "Allow teamleaders write access to logItems of their team members"
participant(p): "org.ifb.trustfabric.Consultant"
operation: UPDATE
resource(r): "org.ifb.trustfabric.Consultant"
transaction(tx): "org.ifb.trustfabric.AddLogItemToConsultant"
condition: (r.teamleaders && r.teamleaders.toString().indexOf(p.getIdentifier()) > -1)
action: ALLOW
}
rule TeamleadersHaveWriteAccessToLogItemsOfTheirTeamMembers2 {
description: "Allow teamleaders write access to logItems of their team members"
participant: "org.ifb.trustfabric.Consultant"
operation: CREATE
resource: "org.ifb.trustfabric.AddLogItemToConsultant"
action: ALLOW
}
rule ClientsHaveReadAccessToTheirOwnData {
description: "Allow clients read access to their own data"
participant(p): "org.ifb.trustfabric.Client"
operation: READ
resource(r): "org.ifb.trustfabric.Client"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ClientsCanDeleteTheirAccount {
description: "Allow clients to delete their account"
participant(p): "org.ifb.trustfabric.Client"
operation: DELETE
resource(r): "org.ifb.trustfabric.Client"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ClientsHaveWriteAccessToTheirOwnMasterData {
description: "Allow clients write access to their own master data"
participant(p): "org.ifb.trustfabric.Client"
operation: UPDATE
resource(r): "org.ifb.trustfabric.Client"
transaction(tx): "org.ifb.trustfabric.UpdateMasterDataOfClient"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ClientsHaveWriteAccessToTheirOwnMasterData2 {
description: "Allow clients write access to their own master data"
participant: "org.ifb.trustfabric.Client"
operation: CREATE
resource: "org.ifb.trustfabric.UpdateMasterDataOfClient"
action: ALLOW
}
rule ClientsHaveReadAccessToSkills {
description: "Allow clients read access to skills"
participant: "org.ifb.trustfabric.Client"
operation: READ
resource: "org.ifb.trustfabric.Skill"
action: ALLOW
}
rule ClientsHaveReadAccessToClientCompanies {
description: "Allow clients read access to client companies"
participant: "org.ifb.trustfabric.Client"
operation: READ
resource: "org.ifb.trustfabric.ClientCompany"
action: ALLOW
}
rule ClientsCanCreateAndReadProjects {
description: "Allow clients to create and read projects"
participant: "org.ifb.trustfabric.Client"
operation: CREATE, READ
resource: "org.ifb.trustfabric.Project"
action: ALLOW
}
rule ClientsHaveWriteAccessToProjectsTheyCreated {
description: "Allow clients write access to projects they created"
participant(p): "org.ifb.trustfabric.Client"
operation: UPDATE, DELETE
resource(r): "org.ifb.trustfabric.Project"
condition: (p.getIdentifier() == r.creator.getIdentifier())
action: ALLOW
}
rule ClientsHaveReadAccessToProjectsInTheirProposedProjectsList {
description: "Allow clients read access to projects in their 'proposedProjects' list"
participant(p): "org.ifb.trustfabric.Client"
operation: READ
resource(r): "org.ifb.trustfabric.ProposedProject"
condition: (p.proposedProjects && p.proposedProjects.toString().indexOf(r.getIdentifier()) > -1)
action: ALLOW
}
rule ClientsHaveWriteAccessToProjectsInTheirProposedProjectsList {
description: "Allow clients write access to projects in their 'proposedProjects' list"
participant(p): "org.ifb.trustfabric.Client"
operation: UPDATE
resource(r): "org.ifb.trustfabric.ProposedProject"
condition: (p.proposedProjects && p.proposedProjects.toString().indexOf(r.getIdentifier()) > -1)
action: ALLOW
}
rule ClientsHaveReadAccessToProjectsInTheirAcceptedProjectsList {
description: "Allow clients read access to projects in their 'acceptedProjects' list"
participant(p): "org.ifb.trustfabric.Client"
operation: READ
resource(r): "org.ifb.trustfabric.AcceptedProject"
condition: (p.acceptedProjects && p.acceptedProjects.toString().indexOf(r.getIdentifier()) > -1)
action: ALLOW
}
rule ClientsHaveWriteAccessToProjectsInTheirAcceptedProjectsList {
description: "Allow clients write access to projects in their 'acceptedProjects' list"
participant(p): "org.ifb.trustfabric.Client"
operation: UPDATE
resource(r): "org.ifb.trustfabric.AcceptedProject"
condition: (p.acceptedProjects && p.acceptedProjects.toString().indexOf(r.getIdentifier()) > -1)
action: ALLOW
}
rule ClientsHaveReadAccessToDataOnConsultantsInTheirReadableConsultantsList {
description: "Allow clients read access to data on consultants in their 'readableConsultants' list"
participant(p): "org.ifb.trustfabric.Client"
operation: READ
resource(r): "org.ifb.trustfabric.Consultant"
condition: (p.readableConsultants && p.readableConsultants.toString().indexOf(r.getIdentifier()) > -1)
action: ALLOW
}
rule ClientsHaveReadAccessToDataOnConsultantsInTheirWritableConsultantsList {
description: "Allow clients read access to data on consultants in their 'writableConsultants' list"
participant(p): "org.ifb.trustfabric.Client"
operation: READ
resource(r): "org.ifb.trustfabric.Consultant"
condition: (p.writableConsultants && p.writableConsultants.toString().indexOf(r.getIdentifier()) > -1)
action: ALLOW
}
rule ClientsHaveWriteAccessToSkillsOfConsultantsInTheirWritableConsultantsList {
description: "Allow clients write access to skills of consultants in their 'writableConsultants' list"
participant(p): "org.ifb.trustfabric.Client"
operation: UPDATE
resource(r): "org.ifb.trustfabric.Consultant"
transaction(tx): "org.ifb.trustfabric.UpdateSkillsOfConsultant"
condition: (p.writableConsultants && p.writableConsultants.toString().indexOf(r.getIdentifier()) > -1)
action: ALLOW
}
rule ClientsHaveWriteAccessToSkillsOfConsultantsInTheirWritableConsultantsList2 {
description: "Allow clients write access to skills of consultants in their 'writableConsultants' list"
participant: "org.ifb.trustfabric.Client"
operation: CREATE
resource: "org.ifb.trustfabric.UpdateSkillsOfConsultant"
action: ALLOW
}
rule ClientsHaveWriteAccessToProjectsOfConsultantsInTheirWritableConsultantsList {
description: "Allow clients write access to projects of consultants in their 'writableConsultants' list"
participant(p): "org.ifb.trustfabric.Client"
operation: UPDATE
resource(r): "org.ifb.trustfabric.Consultant"
transaction(tx): "org.ifb.trustfabric.UpdateProjectsOfConsultant"
condition: (p.writableConsultants && p.writableConsultants.toString().indexOf(r.getIdentifier()) > -1)
action: ALLOW
}
rule ClientsHaveWriteAccessToProjectsOfConsultantsInTheirWritableConsultantsList2 {
description: "Allow clients write access to projects of consultants in their 'writableConsultants' list"
participant: "org.ifb.trustfabric.Client"
operation: CREATE
resource: "org.ifb.trustfabric.UpdateProjectsOfConsultant"
action: ALLOW
}
rule ClientsHaveWriteAccessToLogItemsOfConsultantsInTheirWritableConsultantsList {
description: "Allow clients write access to logItems of consultants in their 'writableConsultants' list"
participant(p): "org.ifb.trustfabric.Client"
operation: UPDATE
resource(r): "org.ifb.trustfabric.Consultant"
transaction(tx): "org.ifb.trustfabric.AddLogItemToConsultant"
condition: (p.writableConsultants && p.writableConsultants.toString().indexOf(r.getIdentifier()) > -1)
action: ALLOW
}
rule ClientsHaveWriteAccessToLogItemsOfConsultantsInTheirWritableConsultantsList2 {
description: "Allow clients write access to logItems of consultants in their 'writableConsultants' list"
participant: "org.ifb.trustfabric.Client"
operation: CREATE
resource: "org.ifb.trustfabric.AddLogItemToConsultant"
action: ALLOW
}
rule ClientAdministratorsHaveReadAccessToTheirOwnData {
description: "Allow ClientAdministrators read access to their own data"
participant(p): "org.ifb.trustfabric.ClientAdministrator"
operation: READ
resource(r): "org.ifb.trustfabric.ClientAdministrator"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ClientAdministratorsHaveWriteAccessToTheirOwnMasterData {
description: "Allow ClientAdministrators write access to their own master data"
participant(p): "org.ifb.trustfabric.ClientAdministrator"
operation: UPDATE
resource(r): "org.ifb.trustfabric.ClientAdministrator"
transaction(tx): "org.ifb.trustfabric.UpdateMasterDataOfClientAdministrator"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ClientAdministratorsHaveWriteAccessToTheirOwnMasterData2 {
description: "Allow ClientAdministrators write access to their own master data"
participant: "org.ifb.trustfabric.ClientAdministrator"
operation: CREATE
resource: "org.ifb.trustfabric.UpdateMasterDataOfClientAdministrator"
action: ALLOW
}
rule ClientAdministratorsCanDeleteTheirOwnAccounts {
description: "Allow ClientAdministrators to delete their own account"
participant(p): "org.ifb.trustfabric.ClientAdministrator"
operation: DELETE
resource(r): "org.ifb.trustfabric.ClientAdministrator"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ClientAdministratorsCanCreateClients {
description: "Allow ClientAdministrators to create clients"
participant: "org.ifb.trustfabric.ClientAdministrator"
operation: CREATE
resource: "org.ifb.trustfabric.Client"
action: ALLOW
}
rule ClientAdministratorsCanReadAndDeleteClientsBelongingToTheirOwnCompany {
description: "Allow ClientAdministrators to read and delete clients belonging to their on company."
participant(p): "org.ifb.trustfabric.ClientAdministrator"
operation: READ, DELETE
resource(r): "org.ifb.trustfabric.Client"
condition: (p.company == r.company)
action: ALLOW
}
rule ClientAdministratorsHaveReadAndWriteAccessToSkills {
description: "Allow ClientAdministrators read and write access to skills"
participant: "org.ifb.trustfabric.ClientAdministrator"
operation: ALL
resource: "org.ifb.trustfabric.Skill"
action: ALLOW
}
rule ClientAdministratorsHaveReadAndWriteAccessToClientCompanies {
description: "Allow ClientAdministrators read and write access to client companies"
participant: "org.ifb.trustfabric.ClientAdministrator"
operation: ALL
resource: "org.ifb.trustfabric.ClientCompany"
action: ALLOW
}
rule ClientAdministratorsHaveReadAndWriteAccessToConsultantCompanies {
description: "Allow ClientAdministrators read and write access to consultant companies"
participant: "org.ifb.trustfabric.ClientAdministrator"
operation: ALL
resource: "org.ifb.trustfabric.ConsultantCompany"
action: ALLOW
}
rule ConsultantAdministratorsHaveReadAccessToTheirOwnData {
description: "Allow ConsultantAdministrators read access to their own data"
participant(p): "org.ifb.trustfabric.ConsultantAdministrator"
operation: READ
resource(r): "org.ifb.trustfabric.ConsultantAdministrator"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ConsultantAdministratorsHaveWriteAccessToTheirOwnMasterData {
description: "Allow ConsultantAdministrators write access to their own master data"
participant(p): "org.ifb.trustfabric.ConsultantAdministrator"
operation: UPDATE
resource(r): "org.ifb.trustfabric.ConsultantAdministrator"
transaction(tx): "org.ifb.trustfabric.UpdateMasterDataOfConsultantAdministrator"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ConsultantAdministratorsHaveWriteAccessToTheirOwnMasterData2 {
description: "Allow ConsultantAdministrators write access to their own master data"
participant: "org.ifb.trustfabric.ConsultantAdministrator"
operation: CREATE
resource: "org.ifb.trustfabric.UpdateMasterDataOfConsultantAdministrator"
action: ALLOW
}
rule ConsultantAdministratorsCanDeleteTheirOwnAccounts {
description: "Allow ConsultantAdministrators to delete their own account"
participant(p): "org.ifb.trustfabric.ConsultantAdministrator"
operation: DELETE
resource(r): "org.ifb.trustfabric.ConsultantAdministrator"
condition: (p.getIdentifier() == r.getIdentifier())
action: ALLOW
}
rule ConsultantAdministratorsCanCreateConsultants {
description: "Allow ConsultantAdministrators to create consultants"
participant: "org.ifb.trustfabric.ConsultantAdministrator"
operation: CREATE
resource: "org.ifb.trustfabric.Consultant"
action: ALLOW
}
rule ConsultantAdministratorsCanReadAndDeleteConsultantsBelongingToTheirOwnCompany {
description: "Allow ConsultantAdministrators to read and delete consultants belonging to their own company"
participant(p): "org.ifb.trustfabric.ConsultantAdministrator"
operation: READ, DELETE
resource(r): "org.ifb.trustfabric.Consultant"
condition: (p.company == r.company)
action: ALLOW
}
rule ConsultantAdministratorsHaveReadAndWriteAccessToSkills {
description: "Allow ConsultantAdministrators read and write access to skills"
participant: "org.ifb.trustfabric.ConsultantAdministrator"
operation: ALL
resource: "org.ifb.trustfabric.Skill"
action: ALLOW
}
rule ConsultantAdministratorsHaveReadAndWriteAccessToClientCompanies {
description: "Allow ConsultantAdministrators read and write access to client companies"
participant: "org.ifb.trustfabric.ConsultantAdministrator"
operation: ALL
resource: "org.ifb.trustfabric.ClientCompany"
action: ALLOW
}
rule ConsultantAdministratorsHaveReadAndWriteAccessToConsultantCompanies {
description: "Allow ConsultantAdministrators read and write access to consultant companies"
participant: "org.ifb.trustfabric.ConsultantAdministrator"
operation: ALL
resource: "org.ifb.trustfabric.ConsultantCompany"
action: ALLOW
}
rule NetworkAdministratorsCanCreateReadAndDeleteClientAdministrators {
description: "Allow Network Administrators to create, read and delete ClientAdministrators"
participant: "org.hyperledger.composer.system.NetworkAdmin"
operation: CREATE, READ, DELETE
resource: "org.ifb.trustfabric.ClientAdministrator"
action: ALLOW
}
rule NetworkAdministratorsCanCreateReadAndDeleteConsultantAdministrators {
description: "Allow Network Administrators to create, read and delete ConsultantAdministrators"
participant: "org.hyperledger.composer.system.NetworkAdmin"
operation: CREATE, READ, DELETE
resource: "org.ifb.trustfabric.ConsultantAdministrator"
action: ALLOW
}
rule NetworkAdministratorsHaveReadAndWriteAccessToSkills {
description: "Allow Network Administrators read and write access to skills"
participant: "org.hyperledger.composer.system.NetworkAdmin"
operation: ALL
resource: "org.ifb.trustfabric.Skill"
action: ALLOW
}
rule NetworkAdministratorsHaveReadAndWriteAccessToClientCompanies {
description: "Allow Network Administrators read and write access to client companies"
participant: "org.hyperledger.composer.system.NetworkAdmin"
operation: ALL
resource: "org.ifb.trustfabric.ClientCompany"
action: ALLOW
}
rule NetworkAdministratorsHaveReadAndWriteAccessToConsultantCompanies {
description: "Allow Network Administrators read and write access to consultant companies"
participant: "org.hyperledger.composer.system.NetworkAdmin"
operation: ALL
resource: "org.ifb.trustfabric.ConsultantCompany"
action: ALLOW
}
// System Access Control Rules:
rule NetworkAdministratorsCanUpdateAndDeleteTheNetwork {
description: "Grant network administrators the right to update and delete the network"
participant: "org.hyperledger.composer.system.NetworkAdmin"
operation: UPDATE, DELETE
resource: "org.hyperledger.composer.system.Network"
action: ALLOW
}
rule NetworkAdministratorsCanIssueIdentity {
description: "Grant network administrators the right to issue an identity"
participant: "org.hyperledger.composer.system.NetworkAdmin"
operation: ALL
resource: "org.hyperledger.composer.system.IssueIdentity"
action: ALLOW
}
rule ClientAdministratorsCanIssueIdentity {
description: "Grant ClientAdministrators the right to issue an identity"
participant: "org.ifb.trustfabric.ClientAdministrator"
operation: ALL
resource: "org.hyperledger.composer.system.IssueIdentity"
action: ALLOW
}
rule ConsultantAdministratorsCanIssueIdentity {
description: "Grant ConsultantAdministrators the right to issue an identity"
participant: "org.ifb.trustfabric.ConsultantAdministrator"
operation: ALL
resource: "org.hyperledger.composer.system.IssueIdentity"
action: ALLOW
}
rule AllParticipantsCanCreateHistorianRecords {
description: "Allow all participants to create HistorianRecords"
participant: "org.hyperledger.composer.system.Participant"
operation: CREATE
resource: "org.hyperledger.composer.system.HistorianRecord"
action: ALLOW
}
rule NoParticipantCanReadUpdateOrDeleteHistorianRecords {
description: "No participant is allowed to read, update or delete HistorianRecords"
participant: "org.hyperledger.composer.system.Participant"
operation: READ, UPDATE, DELETE
resource: "org.hyperledger.composer.system.HistorianRecord"
action: DENY
}
rule AllParticipantsCanUseAddAssetTransactions {
description: "Allow all participants to use AddAssetTransactions"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.AddAsset"
action: ALLOW
}
rule AllParticipantsCanUseUpdateAssetTransactions {
description: "Allow all participants to use UpdateAssetTransactions"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.UpdateAsset"
action: ALLOW
}
rule AllParticipantsCanUseRemoveAssetTransactions {
description: "Allow all participants to use RemoveAssetTransactions"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.RemoveAsset"
action: ALLOW
}
rule AllParticipantsCanUseAddParticipantTransactions {
description: "Allow all participants to use AddParticipantTransactions"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.AddParticipant"
action: ALLOW
}
rule AllParticipantsCanUseUpdateParticipantTransactions {
description: "Allow all participants to use UpdateParticipantTransactions"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.UpdateParticipant"
action: ALLOW
}
rule AllParticipantsCanUseRemoveParticipantTransactions {
description: "Allow all participants to use RemoveParticipantTransactions"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.RemoveParticipant"
action: ALLOW
}
rule AllParticipantsCanUseAssetTransactions {
description: "Allow all participants to use AssetTransactions"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.AssetTransaction"
action: ALLOW
}
rule AllParticipantsCanUseParticipantTransactions {
description: "Allow all participants to use ParticipantTransactions"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.ParticipantTransaction"
action: ALLOW
}
rule AllParticipantsCanUseRegistryTransactions {
description: "Allow all participants to use RegistryTransactions"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.RegistryTransaction"
action: ALLOW
}
rule AllParticipantsCanAccessTransactions {
description: "Allow all participants to access transactions"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.Transaction"
action: ALLOW
}
rule AllParticipantsCanAccessAssetRegistries {
description: "Allow all participants to access asset registries"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.AssetRegistry"
action: ALLOW
}
rule AllParticipantsCanAccessParticipantRegistries {
description: "Allow all participants to access participant registries"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.ParticipantRegistry"
action: ALLOW
}
rule AllParticipantsCanAccessTransactionRegistries {
description: "Allow all participants to access transaction registries"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.TransactionRegistry"
action: ALLOW
}
rule AllParticipantsCanAccessRegistries {
description: "Allow all participants to access registries"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.Registry"
action: ALLOW
}
rule AllParticipantsCanAccessEvents {
description: "Allow all participants to access events"
participant: "org.hyperledger.composer.system.Participant"