Skip to content

Commit 928cea8

Browse files
authored
HP-2069: add new permissins (#63)
1 parent 8d15354 commit 928cea8

File tree

4 files changed

+207
-45
lines changed

4 files changed

+207
-45
lines changed

src/files/items.php

+99-19
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
'children' => [
2525
'client.read',
2626
'client.list',
27+
'client.read-ip',
2728
],
2829
],
2930
'role:client.manager' => [
@@ -39,6 +40,10 @@
3940
'client.unblock',
4041
'client.get-note',
4142
'client.set-note',
43+
'client.read-financial-info',
44+
'client.read-requisite',
45+
'client.read-referral',
46+
'client.read-deleted',
4247
'purse.update',
4348
'purse.read',
4449
'purse.set-credit',
@@ -122,7 +127,6 @@
122127
'server.see-label',
123128
'server.read-legend',
124129
'server.read-financial-info',
125-
'server.read-manager',
126130
'server.read-billing',
127131
],
128132
],
@@ -476,7 +480,6 @@
476480
'description' => 'The role is generally assigned to staff who are in charge of bills management',
477481
'children' => [
478482
'bill.read',
479-
'charge.read',
480483
],
481484
],
482485
'role:bill.manager' => [
@@ -489,7 +492,6 @@
489492
'bill.delete',
490493
'deposit',
491494
'role:purse.manager',
492-
'charge.read',
493495
],
494496
],
495497
'role:bill.master' => [
@@ -785,6 +787,7 @@
785787
'children' => [
786788
'role:stock.user',
787789
'role:move.manager',
790+
'part.read-administrative',
788791
],
789792
],
790793
'role:stock.manager' => [
@@ -1095,6 +1098,11 @@
10951098
'role:ticket.user',
10961099
'ticket.update',
10971100
'ticket.delete',
1101+
'ticket.read-templates',
1102+
'ticket.read-statistics',
1103+
'ticket.set-private',
1104+
'ticket.set-recipient',
1105+
'ticket.set-time',
10981106
],
10991107
],
11001108
'role:beta-tester' => [
@@ -1205,6 +1213,14 @@
12051213
'type' => 2,
12061214
'description' => 'Prohibits listing of the client',
12071215
],
1216+
'client.read-ip' => [
1217+
'type' => 2,
1218+
'description' => 'Allows viewing client\'s IP',
1219+
],
1220+
'deny:client.read-ip' => [
1221+
'type' => 2,
1222+
'description' => 'Prohibits viewing client\'s IP',
1223+
],
12081224
'client.create' => [
12091225
'type' => 2,
12101226
'description' => 'Allows creating of the client',
@@ -1269,6 +1285,38 @@
12691285
'type' => 2,
12701286
'description' => 'Prohibits set-note operation on the client',
12711287
],
1288+
'client.read-financial-info' => [
1289+
'type' => 2,
1290+
'description' => 'Allows viewing client\'s financial info',
1291+
],
1292+
'deny:client.read-financial-info' => [
1293+
'type' => 2,
1294+
'description' => 'Prohibits viewing client\'s financial info',
1295+
],
1296+
'client.read-requisite' => [
1297+
'type' => 2,
1298+
'description' => 'Allows viewing setted requisite to client',
1299+
],
1300+
'deny:client.read-requisite' => [
1301+
'type' => 2,
1302+
'description' => 'Prohibits viewing setted requisite to client',
1303+
],
1304+
'client.read-referral' => [
1305+
'type' => 2,
1306+
'description' => 'Allows viewing client\'s referral',
1307+
],
1308+
'deny:client.read-referral' => [
1309+
'type' => 2,
1310+
'description' => 'Prohibits viewing client\'s referral',
1311+
],
1312+
'client.read-deleted' => [
1313+
'type' => 2,
1314+
'description' => 'Allows viewing deleted clients',
1315+
],
1316+
'deny:client.read-deleted' => [
1317+
'type' => 2,
1318+
'description' => 'Prohibits viewing deleted clients',
1319+
],
12721320
'purse.update' => [
12731321
'type' => 2,
12741322
'description' => 'Allows updating of the purse',
@@ -1517,14 +1565,6 @@
15171565
'type' => 2,
15181566
'description' => 'Prohibits reading financial info of the server',
15191567
],
1520-
'server.read-manager' => [
1521-
'type' => 2,
1522-
'description' => 'Allows reading manager info of the server',
1523-
],
1524-
'deny:server.read-manager' => [
1525-
'type' => 2,
1526-
'description' => 'Prohibits reading manager info of the server',
1527-
],
15281568
'server.read-billing' => [
15291569
'type' => 2,
15301570
'description' => 'Allow reading of tariff and sale information of server',
@@ -2159,14 +2199,6 @@
21592199
'type' => 2,
21602200
'description' => 'Prohibits reading of the bill',
21612201
],
2162-
'charge.read' => [
2163-
'type' => 2,
2164-
'description' => 'Allow reading of the charges',
2165-
],
2166-
'deny:charge.read' => [
2167-
'type' => 2,
2168-
'description' => 'Prohibits reading of the charges',
2169-
],
21702202
'bill.create' => [
21712203
'type' => 2,
21722204
'description' => 'Allows creating of the bill',
@@ -2575,6 +2607,14 @@
25752607
'type' => 2,
25762608
'description' => 'Prohibits reading of the stock',
25772609
],
2610+
'part.read-administrative' => [
2611+
'type' => 2,
2612+
'description' => 'Allows reading administrative data of the part',
2613+
],
2614+
'deny:part.read-administrative' => [
2615+
'type' => 2,
2616+
'description' => 'Prohibits reading admin data of the parts',
2617+
],
25782618
'have-goods' => [
25792619
'type' => 2,
25802620
'description' => 'Allows have-goods operation',
@@ -2951,6 +2991,46 @@
29512991
'type' => 2,
29522992
'description' => 'Prohibits deleting of the ticket',
29532993
],
2994+
'ticket.read-templates' => [
2995+
'type' => 2,
2996+
'description' => 'Allows viewing ticket templates',
2997+
],
2998+
'deny:ticket.read-templates' => [
2999+
'type' => 2,
3000+
'description' => 'Prohibits viewing ticket templates',
3001+
],
3002+
'ticket.read-statistics' => [
3003+
'type' => 2,
3004+
'description' => 'Allows viewing tickets statistics',
3005+
],
3006+
'deny:ticket.read-statistics' => [
3007+
'type' => 2,
3008+
'description' => 'Prohibits viewing tickets statistics',
3009+
],
3010+
'ticket.set-private' => [
3011+
'type' => 2,
3012+
'description' => 'Allows setting `private` to answer',
3013+
],
3014+
'deny:ticket.set-private' => [
3015+
'type' => 2,
3016+
'description' => 'Prohibits setting `private` to answer',
3017+
],
3018+
'ticket.set-recipient' => [
3019+
'type' => 2,
3020+
'description' => 'Allows setting ticket\'s recipient',
3021+
],
3022+
'deny:ticket.set-recipient' => [
3023+
'type' => 2,
3024+
'description' => 'Prohibits setting ticket\'s recipient',
3025+
],
3026+
'ticket.set-time' => [
3027+
'type' => 2,
3028+
'description' => 'Allows setting spent time to ticket',
3029+
],
3030+
'deny:ticket.set-time' => [
3031+
'type' => 2,
3032+
'description' => 'Prohibits setting spent time to ticket',
3033+
],
29543034
'test.beta' => [
29553035
'type' => 2,
29563036
'description' => 'Allows betaing of the test',

src/files/source/metadata.php

+66-12
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,21 @@
433433
'client.update' => [
434434
'description' => 'Allows updating of the client',
435435
],
436+
'client.read-ip' => [
437+
'description' => 'Allows viewing client\'s IP',
438+
],
439+
'client.read-financial-info' => [
440+
'description' => 'Allows viewing client\'s financial info',
441+
],
442+
'client.read-requisite' => [
443+
'description' => 'Allows viewing setted requisite to client',
444+
],
445+
'client.read-referral' => [
446+
'description' => 'Allows viewing client\'s referral',
447+
],
448+
'client.read-deleted' => [
449+
'description' => 'Allows viewing deleted clients',
450+
],
436451
'config.create' => [
437452
'description' => 'Allows creating of the config',
438453
],
@@ -919,6 +934,9 @@
919934
'deny:part.update' => [
920935
'description' => 'Prohibits updating of the part',
921936
],
937+
'deny:part.read-administrative' => [
938+
'description' => 'Prohibits reading admin data of the parts',
939+
],
922940
'deny:plan.create' => [
923941
'description' => 'Prohibits creating of the plan',
924942
],
@@ -1039,9 +1057,6 @@
10391057
'deny:server.read-legend' => [
10401058
'description' => 'Prohibits reading legend of the server',
10411059
],
1042-
'deny:server.read-manager' => [
1043-
'description' => 'Prohibits reading manager info of the server',
1044-
],
10451060
'deny:server.sell' => [
10461061
'description' => 'Prohibits selling of the server',
10471062
],
@@ -1102,6 +1117,21 @@
11021117
'deny:ticket.update' => [
11031118
'description' => 'Prohibits updating of the ticket',
11041119
],
1120+
'deny:ticket.read-templates' => [
1121+
'description' => 'Prohibits viewing ticket templates',
1122+
],
1123+
'deny:ticket.read-statistics' => [
1124+
'description' => 'Prohibits viewing tickets statistics',
1125+
],
1126+
'deny:ticket.set-private' => [
1127+
'description' => 'Prohibits setting `private` to answer',
1128+
],
1129+
'deny:ticket.set-recipient' => [
1130+
'description' => 'Prohibits setting ticket\'s recipient',
1131+
],
1132+
'deny:ticket.set-time' => [
1133+
'description' => 'Prohibits setting spent time to ticket',
1134+
],
11051135
'deny:vhost.create' => [
11061136
'description' => 'Prohibits creating of the vhost',
11071137
],
@@ -1366,6 +1396,9 @@
13661396
'part.update' => [
13671397
'description' => 'Allows updating of the part',
13681398
],
1399+
'part.read-administrative' => [
1400+
'description' => 'Allows reading administrative data of the part',
1401+
],
13691402
'plan.create' => [
13701403
'description' => 'Allows creating of the plan',
13711404
],
@@ -1489,9 +1522,6 @@
14891522
'server.read-billing' => [
14901523
'description' => 'Allow reading of tariff and sale information of server',
14911524
],
1492-
'server.read-manager' => [
1493-
'description' => 'Allows reading manager info of the server',
1494-
],
14951525
'server.sell' => [
14961526
'description' => 'Allows selling of the server',
14971527
],
@@ -1555,6 +1585,21 @@
15551585
'ticket.update' => [
15561586
'description' => 'Allows updating of the ticket',
15571587
],
1588+
'ticket.read-templates' => [
1589+
'description' => 'Allows viewing ticket templates',
1590+
],
1591+
'ticket.read-statistics' => [
1592+
'description' => 'Allows viewing tickets statistics',
1593+
],
1594+
'ticket.set-private' => [
1595+
'description' => 'Allows setting `private` to answer',
1596+
],
1597+
'ticket.set-recipient' => [
1598+
'description' => 'Allows setting ticket\'s recipient',
1599+
],
1600+
'ticket.set-time' => [
1601+
'description' => 'Allows setting spent time to ticket',
1602+
],
15581603
'vhost.create' => [
15591604
'description' => 'Allows creating of the vhost',
15601605
],
@@ -1591,6 +1636,21 @@
15911636
'deny:client.notify' => [
15921637
'description' => 'Prohibits notifying of the client',
15931638
],
1639+
'deny:client.read-ip' => [
1640+
'description' => 'Prohibits viewing client\'s IP',
1641+
],
1642+
'deny:client.read-financial-info' => [
1643+
'description' => 'Prohibits viewing client\'s financial info',
1644+
],
1645+
'deny:client.read-requisite' => [
1646+
'description' => 'Prohibits viewing setted requisite to client',
1647+
],
1648+
'deny:client.read-referral' => [
1649+
'description' => 'Prohibits viewing client\'s referral',
1650+
],
1651+
'deny:client.read-deleted' => [
1652+
'description' => 'Prohibits viewing deleted clients',
1653+
],
15941654
'deny:part.read-all-hierarchy' => [
15951655
'description' => 'Prohibits read-all-hierarchy operation on the part',
15961656
],
@@ -1672,12 +1732,6 @@
16721732
'deny:costprice.update' => [
16731733
'description' => 'Prohibits updating of the costprice',
16741734
],
1675-
'charge.read' => [
1676-
'description' => 'Allow reading of the charges',
1677-
],
1678-
'deny:charge.read' => [
1679-
'description' => 'Prohibits reading of the charges',
1680-
],
16811735
'deny:pay' => [
16821736
'description' => 'Prohibits paying',
16831737
],

0 commit comments

Comments
 (0)