-
Notifications
You must be signed in to change notification settings - Fork 12
/
groups.py
1316 lines (1030 loc) · 49 KB
/
groups.py
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
# -*- coding: utf-8 -*-
"""Functions for group management and group queries."""
__copyright__ = 'Copyright (c) 2018-2024, Utrecht University'
__license__ = 'GPLv3, see LICENSE'
import time
from collections import OrderedDict
from datetime import datetime
import genquery
import requests
import session_vars
import schema
import sram
from groups_import import parse_data
from util import *
__all__ = ['api_group_data',
'api_group_categories',
'api_group_subcategories',
'api_group_process_csv',
'rule_group_provision_external_user',
'rule_group_remove_external_user',
'rule_group_check_external_user',
'rule_group_expiration_date_validate',
'rule_user_exists',
'rule_group_user_exists',
'api_group_search_users',
'api_group_exists',
'api_group_create',
'api_group_update',
'api_group_delete',
'api_group_get_description',
'api_group_user_is_member',
'api_group_user_add',
'api_group_user_update_role',
'api_group_get_user_role',
'api_group_remove_user_from_group',
'rule_group_sram_sync']
def getGroupsData(ctx):
"""Return groups and related data."""
groups = {}
# First query: obtain a list of groups with group attributes.
iter = genquery.row_iterator(
"USER_GROUP_NAME, META_USER_ATTR_NAME, META_USER_ATTR_VALUE",
"USER_TYPE = 'rodsgroup'",
genquery.AS_LIST, ctx
)
for row in iter:
name = row[0]
attr = row[1]
value = row[2]
group = groups.setdefault(name, {
"name": name,
"managers": [],
"members": [],
"read": [],
"invited": []
})
if attr in ["schema_id", "data_classification", "category", "subcategory"]:
group[attr] = value
elif attr in ('description', 'expiration_date'):
# Deal with legacy use of '.' for empty description metadata and expiration date.
# See uuGroupGetDescription() in uuGroup.r for correct behavior of the old query interface.
group[attr] = '' if value == '.' else value
elif attr == "manager":
group["managers"].append(value)
# Second query: obtain list of groups with memberships.
iter = genquery.row_iterator(
"USER_GROUP_NAME, USER_NAME, USER_ZONE",
"USER_TYPE != 'rodsgroup'",
genquery.AS_LIST, ctx
)
for row in iter:
name = row[0]
user = row[1]
zone = row[2]
if name not in (user, 'rodsadmin', 'public'):
user = user + "#" + zone
if name.startswith("read-"):
# Match read-* group with research-* or initial-* group.
name = name[5:]
for prefix in ("research-", "initial-"):
group = groups.get(prefix + name)
if group:
group["read"].append(user)
break
elif not name.startswith("vault-"):
group = groups.get(name)
if group:
group["members"].append(user)
# Third query: obtain list of invited SRAM users.
if config.enable_sram:
iter = genquery.row_iterator(
"META_USER_ATTR_VALUE, USER_NAME, USER_ZONE",
"USER_TYPE != 'rodsgroup' AND META_USER_ATTR_NAME = '{}'".format(constants.UUORGMETADATAPREFIX + "sram_invited"),
genquery.AS_LIST, ctx
)
for row in iter:
name = row[0]
user = row[1] + "#" + row[2]
group = groups.get(name)
if group:
group["invited"].append(user)
return groups.values()
def getGroupData(ctx, name):
"""Get data for one group."""
group = None
# First query: obtain a list of group attributes.
iter = genquery.row_iterator(
"META_USER_ATTR_NAME, META_USER_ATTR_VALUE",
"USER_GROUP_NAME = '{}' AND USER_TYPE = 'rodsgroup'".format(name),
genquery.AS_LIST, ctx
)
for row in iter:
attr = row[0]
value = row[1]
if group is None:
group = {
"name": name,
"managers": [],
"members": [],
"read": []
}
# Update group with this information.
if attr in ["schema_id", "data_classification", "category", "subcategory"]:
group[attr] = value
elif attr == "description" or attr == "expiration_date":
# Deal with legacy use of '.' for empty description metadata and expiration date.
# See uuGroupGetDescription() in uuGroup.r for correct behavior of the old query interface.
group[attr] = '' if value == '.' else value
elif attr == "manager":
group["managers"].append(value)
if group is None or name.startswith("vault-"):
return group
# Second query: obtain group memberships.
iter = genquery.row_iterator(
"USER_NAME, USER_ZONE",
"USER_GROUP_NAME = '{}' AND USER_TYPE != 'rodsgroup'".format(name),
genquery.AS_LIST, ctx
)
for row in iter:
user = row[0]
zone = row[1]
if name not in (user, 'rodsadmin', 'public'):
group["members"].append(user + "#" + zone)
if name.startswith("research-"):
name = name[9:]
elif name.startswith("initial-"):
name = name[8:]
else:
return group
# Third query: obtain group read memberships.
name = "read-" + name
iter = genquery.row_iterator(
"USER_NAME, USER_ZONE",
"USER_GROUP_NAME = '{}' AND USER_TYPE != 'rodsgroup'".format(name),
genquery.AS_LIST, ctx
)
for row in iter:
user = row[0]
zone = row[1]
if user != name:
group["read"].append(user + "#" + zone)
return group
def getCategories(ctx):
"""Get a list of all group categories."""
categories = []
iter = genquery.row_iterator(
"ORDER_DESC(META_USER_ATTR_VALUE)",
"USER_TYPE = 'rodsgroup' AND META_USER_ATTR_NAME = 'category'",
genquery.AS_LIST, ctx
)
for row in iter:
categories.append(row[0])
return categories
def getDatamanagerCategories(ctx):
"""Get a list of all datamanager group categories."""
categories = []
iter = genquery.row_iterator(
"USER_NAME",
"USER_TYPE = 'rodsgroup' AND USER_NAME like 'datamanager-%'",
genquery.AS_LIST, ctx
)
for row in iter:
datamanager_group = row[0]
if user.is_member_of(ctx, datamanager_group):
# Example: 'datamanager-initial' is groupname of datamanager, second part is category
category = '-'.join(datamanager_group.split('-')[1:])
categories.append(category)
return categories
def getSubcategories(ctx, category):
"""Get a list of all subcategories within a given group category.
:param ctx: Combined type of a ctx and rei struct
:param category: Category to retrieve subcategories of
:returns: List of all subcategories within a given group category
"""
categories = set() # Unique subcategories.
groupCategories = {} # Group name => { category => .., subcategory => .. }
# Collect metadata of each group into `groupCategories` until both
# the category and subcategory are available, then add the subcategory
# to `categories` if the category name matches.
iter = genquery.row_iterator(
"USER_GROUP_NAME, META_USER_ATTR_NAME, META_USER_ATTR_VALUE",
"USER_TYPE = 'rodsgroup' AND META_USER_ATTR_NAME IN('category','subcategory')",
genquery.AS_LIST, ctx
)
for row in iter:
group = row[0]
key = row[1]
value = row[2]
if group not in groupCategories:
groupCategories[group] = {}
if key in ['category', 'subcategory']:
groupCategories[group][key] = value
if ('category' in groupCategories[group]
and 'subcategory' in groupCategories[group]):
# Metadata complete, now filter on category.
if groupCategories[group]['category'] == category:
# Bingo, add to the subcategory list.
categories.add(groupCategories[group]['subcategory'])
del groupCategories[group]
return list(categories)
def user_role(ctx, username, group_name):
"""Get role of user in group.
:param ctx: Combined type of a ctx and rei struct
:param username: User to return type of
:param group_name: Group name of user
:returns: User role ('none' | 'reader' | 'normal' | 'manager')
"""
group = getGroupData(ctx, group_name)
if '#' not in username:
username = username + "#" + session_vars.get_map(ctx.rei)["client_user"]["irods_zone"]
if group:
if username in group["managers"]:
return "manager"
elif username in group["members"]:
return "normal"
elif username in group["read"]:
return "reader"
return "none"
"""API to get role of user in group."""
api_group_get_user_role = api.make()(user_role)
def user_is_datamanager(ctx, category, user):
"""Return if user is datamanager of category.
:param ctx: Combined type of a ctx and rei struct
:param category: Category to check if user is datamanger of
:param user: User to check if user is datamanger
:returns: Boolean indicating if user is datamanager
"""
return user_role(ctx, user, 'datamanager-{}'.format(category)) \
in ('normal', 'manager')
def group_category(ctx, group):
"""Return category of group.
:param ctx: Combined type of a ctx and rei struct
:param group: Group to return category of
:returns: Category name of group
"""
if group.startswith('vault-'):
group = ctx.uuGetBaseGroup(group, '')['arguments'][1]
return ctx.uuGroupGetCategory(group, '', '')['arguments'][1]
@api.make()
def api_group_data(ctx):
"""Retrieve group data as hierarchy for user.
The structure of the group hierarchy parameter is as follows:
{
'CATEGORY_NAME': {
'SUBCATEGORY_NAME': {
'GROUP_NAME': {
'description': 'GROUP_DESCRIPTION',
'data-classification': 'GROUP_DATA_CLASSIFICATION',
'members': {
'USER_NAME': {
'access': (reader | normal | manager)
}, ...
}
}, ...
}, ...
}, ...
}
:param ctx: Combined type of a ctx and rei struct
:returns: Group hierarchy, user type and user zone. Only group types managed
by the group manager are included.
"""
return (internal_api_group_data(ctx))
def internal_api_group_data(ctx):
# This is the entry point for integration tests against api_group_data
if user.is_admin(ctx):
groups = getGroupsData(ctx)
else:
groups = getGroupsData(ctx)
full_name = user.full_name(ctx)
categories = getDatamanagerCategories(ctx)
# Filter groups (only return groups user is part of), convert to json and write to stdout.
groups = list(filter(lambda group: full_name in group['read'] + group['members'] or group['category'] in categories, groups))
# Only process group types managed via group manager
managed_prefixes = ("priv-", "deposit-", "research-", "grp-", "datamanager-", "datarequests-", "intake-")
groups = list(filter(lambda group: group['name'].startswith(managed_prefixes), groups))
# Sort groups on name.
groups = sorted(groups, key=lambda d: d['name'])
# Gather group creation dates.
creation_dates = {}
zone = user.zone(ctx)
iter = genquery.row_iterator(
"COLL_NAME, COLL_CREATE_TIME",
"COLL_PARENT_NAME = '/{}/home' and COLL_NAME not like '/{}/home/vault-%' and COLL_NAME not like '/{}/home/grp-%'".format(zone, zone, zone),
genquery.AS_LIST, ctx
)
for row in iter:
creation_dates[row[0]] = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(int(row[1])))
group_hierarchy = OrderedDict()
for group in groups:
group['members'] = sorted(group['members'])
members = OrderedDict()
# Normal users
for member in group['members']:
members[member] = {'access': 'normal'}
# Managers
for member in group['managers']:
members[member] = {'access': 'manager'}
# Read users
for member in group['read']:
members[member] = {'access': 'reader'}
# Invited SRAM users
for member in group['invited']:
members[member]['sram'] = 'invited'
if not group_hierarchy.get(group['category']):
group_hierarchy[group['category']] = OrderedDict()
if not group_hierarchy[group['category']].get(group['subcategory']):
group_hierarchy[group['category']][group['subcategory']] = OrderedDict()
# Check whether schema_id is present on group level.
# If not, collect it from the corresponding category
if "schema_id" not in group:
group["schema_id"] = schema.get_schema_collection(ctx, user.zone(ctx), group['name'])
coll_name = "/{}/home/{}".format(user.zone(ctx), group['name'])
group_hierarchy[group['category']][group['subcategory']][group['name']] = {
'description': group.get('description', ''),
'schema_id': group['schema_id'],
'expiration_date': group.get('expiration_date', ''),
'data_classification': group.get('data_classification', ''),
'creation_date': creation_dates.get(coll_name, ''),
'members': members
}
# order the resulting group_hierarchy and put System in as first category
cat_list = []
system_present = False
for cat in group_hierarchy:
if cat != 'System':
cat_list.append(cat)
else:
system_present = True
cat_list.sort()
if system_present:
cat_list.insert(0, 'System')
new_group_hierarchy = OrderedDict()
for cat in cat_list:
new_group_hierarchy[cat] = group_hierarchy[cat]
# Python 3 solution:
# Put System category as first category.
# if "System" in group_hierarchy:
# group_hierarchy.move_to_end("System", last=False)
# Per category the group data has to be ordered by subcat asc as well
subcat_ordered_group_hierarchy = OrderedDict()
for cat in new_group_hierarchy:
subcats_data = new_group_hierarchy[cat]
# order on subcat level per category
subcat_ordered_group_hierarchy[cat] = OrderedDict(sorted(subcats_data.items(), key=lambda x: x[0]))
return {'group_hierarchy': subcat_ordered_group_hierarchy, 'user_type': user.user_type(ctx), 'user_zone': user.zone(ctx)}
def user_is_a_datamanager(ctx):
"""Return groups whether current user is datamanager of a group, not specifically of a specific group.
:param ctx: Combined type of a ctx and rei struct
:returns: Boolean indicating if user is a datamanager.
"""
is_a_datamanager = False
iter = genquery.row_iterator(
"USER_NAME",
"USER_TYPE = 'rodsgroup' AND USER_NAME like 'datamanager-%'",
genquery.AS_LIST, ctx
)
for row in iter:
if group.is_member(ctx, row[0]):
is_a_datamanager = True
# no need to check for more - this user is a datamanager
break
return is_a_datamanager
@api.make()
def api_group_process_csv(ctx, csv_header_and_data, allow_update, delete_users):
"""Process contents of CSV file containing group definitions.
Parsing is stopped immediately when an error is found and the rownumber is returned to the user.
:param ctx: Combined type of a ctx and rei struct
:param csv_header_and_data: CSV data holding a head conform description and the actual row data
:param allow_update: Allow updates in groups
:param delete_users: Allow for deleting of users from groups
:returns: Dict containing status, error(s) and the resulting group definitions so the frontend can present the results
"""
# Only admins and datamanagers are allowed to use this functionality.
if not user.is_admin(ctx) and not user_is_a_datamanager(ctx):
return api.Error('errors', ['Insufficient rights to perform this operation'])
# Step 1: Parse the data in the uploaded file.
data, error = parse_data(ctx, csv_header_and_data)
if len(error):
return api.Error('errors', [error])
# Step 2: Validate the data.
validation_errors = validate_data(ctx, data, allow_update)
if len(validation_errors) > 0:
return api.Error('errors', validation_errors)
# Step 3: Create / update groups.
status_msg = apply_data(ctx, data, allow_update, delete_users)
if status_msg['status'] == 'error':
return api.Error('errors', [status_msg['message']])
return api.Result.ok(info=[status_msg['message']])
def validate_data(ctx, data, allow_update):
"""Validation of extracted data.
:param ctx: Combined type of a ctx and rei struct
:param data: Data to be processed
:param allow_update: Allow for updating of groups
:returns: Errors if found any
"""
errors = []
can_add_category = user.is_member_of(ctx, 'priv-category-add')
is_admin = user.is_admin(ctx)
for (category, subcategory, groupname, _managers, _members, _viewers, _schema_id, _expiration_date) in data:
if group.exists(ctx, groupname) and not allow_update:
errors.append('Group "{}" already exists. It has not been updated.'.format(groupname))
# Is user admin or has category add privileges?
if not (is_admin or can_add_category):
if category not in getCategories(ctx):
# Insufficient permissions to add new category.
errors.append('Category {} does not exist and cannot be created due to insufficient permissions.'.format(category))
elif subcategory not in getSubcategories(ctx, category):
# Insufficient permissions to add new subcategory.
errors.append('Subcategory {} does not exist and cannot be created due to insufficient permissions.'.format(subcategory))
return errors
def apply_data(ctx, data, allow_update, delete_users):
""" Update groups with the validated data
:param ctx: Combined type of a ctx and rei struct
:param data: Data to be processed
:param allow_update: Allow updates in groups
:param delete_users: Allow for deleting of users from groups
:returns: Errors if found any, or message with actions if everything is successful
"""
for (category, subcategory, group_name, managers, members, viewers, schema_id, expiration_date) in data:
new_group = False
users_added, users_removed = 0, 0
message = ''
log.write(ctx, 'CSV import - Adding and updating group: {}'.format(group_name))
# First create the group. Note that the actor will become a groupmanager
if not len(schema_id):
schema_id = config.default_yoda_schema
response = group_create(ctx, group_name, category, subcategory, schema_id, expiration_date, '', 'unspecified')
if response:
new_group = True
message += "Group '{}' created.".format(group_name)
elif response.status == "error_group_exists" and allow_update:
log.write(ctx, 'CSV import - WARNING: group "{}" not created, it already exists'.format(group_name))
message += "Group '{}' already exists.".format(group_name)
else:
return {status: 'error', message: "Error while attempting to create group {}. Status/message: {} / {}".format(group_name, response.status, response.status_info)}
# Now add the users and set their role if other than member
allusers = managers + members + viewers
for username in list(set(allusers)): # duplicates removed
currentrole = user_role(ctx, username, group_name)
if currentrole == "none":
response = group_user_add(ctx, username, group_name)
if response:
currentrole = "normal"
log.write(ctx, "CSV import - Notice: added user {} to group {}".format(username, group_name))
users_added += 1
else:
log.write(ctx, "CSV import - Warning: error occurred while attempting to add user {} to group {}".format(username, group_name))
log.write(ctx, "CSV import - Status: {} , Message: {}".format(response.status, response.status_info))
else:
log.write(ctx, "CSV import - Notice: user {} is already present in group {}.".format(username, group_name))
# Set requested role. Note that user could be listed in multiple roles.
# In case of multiple roles, manager takes precedence over normal,
# and normal over reader
role = 'reader'
if username in members:
role = 'normal'
if username in managers:
role = 'manager'
if _are_roles_equivalent(role, currentrole):
log.write(ctx, "CSV import - Notice: user {} already has role {} in group {}.".format(username, role, group_name))
else:
response = group_user_update_role(ctx, username, group_name, role)
if response:
log.write(ctx, "CSV import - Notice: changed role of user {} in group {} to {}".format(username, group_name, role))
else:
log.write(ctx, "CSV import - Warning: error while attempting to change role of user {} in group {} to {}".format(username, group_name, role))
log.write(ctx, "CSV import - Status: {} , Message: {}".format(response.status, response.status_info))
# Always remove the rods user for new groups, unless it is in the
# CSV file.
if (new_group and "rods" not in allusers and user_role(ctx, "rods", group_name) != "none"):
response = group_remove_user_from_group(ctx, "rods", group_name)
if response:
log.write(ctx, "CSV import - Notice: removed rods user from group " + group_name)
else:
log.write(ctx, "CSV import - Warning: error while attempting to remove user rods from group {}".format(group_name))
log.write(ctx, "CSV import - Status: {} , Message: {}".format(response.status, response.status_info))
# Remove users not in sheet
if delete_users:
# build list of current users
currentusers = []
for prefix in ['read-', 'initial-', 'research-']:
iter = genquery.row_iterator(
"USER_GROUP_NAME, USER_NAME, USER_ZONE",
"USER_TYPE != 'rodsgroup' AND USER_GROUP_NAME = '{}'".format(prefix + '-'.join(group_name.split('-')[1:])),
genquery.AS_LIST, ctx
)
for row in iter:
# append [user,group_name]
currentusers.append([row[1], row[0]])
for userdata in currentusers:
username = userdata[0]
usergroupname = userdata[1]
if username not in allusers:
if username in managers:
if len(managers) == 1:
log.write(ctx, "CSV import - Error: cannot remove user {} from group {}, because he/she is the only group manager".format(username, usergroupname))
continue
else:
managers.remove(username)
response = group_remove_user_from_group(ctx, username, usergroupname)
if response:
log.write(ctx, "CSV import - Removing user {} from group {}".format(username, usergroupname))
users_removed += 1
else:
log.write(ctx, "CSV import - Warning: error while attempting to remove user {} from group {}".format(username, usergroupname))
log.write(ctx, "CSV import - Status: {} , Message: {}".format(response.status, response.status_info))
if users_added > 0:
message += ' Users added ({}).'.format(users_added)
if users_removed > 0:
message += ' Users removed ({}).'.format(users_removed)
# If no users added, no users removed and not new group created.
if not users_added and not users_removed and not new_group:
message += ' No changes made.'
return {"status": "ok", "message": message}
def _are_roles_equivalent(a, b):
"""Checks whether two roles are equivalent, Yoda and Yoda-clienttools use slightly different names."""
r_role_names = ["viewer", "reader"]
m_role_names = ["member", "normal"]
if a == b:
return True
elif a in r_role_names and b in r_role_names:
return True
elif a in m_role_names and b in m_role_names:
return True
else:
return False
def group_user_exists(ctx, group_name, username, include_readonly):
group = getGroupData(ctx, group_name)
if '#' not in username:
username = username + "#" + session_vars.get_map(ctx.rei)["client_user"]["irods_zone"]
if group:
if not include_readonly:
return username in group["members"]
else:
return username in group["read"] or username in group["members"]
else:
return False
@rule.make(inputs=[0], outputs=[1])
def rule_user_exists(ctx, username):
"""Rule wrapper to check if a user exists.
:param ctx: Combined type of a ctx and rei struct
:param username: User to check for existence
:returns: Indicator if user exists
"""
return "true" if user.exists(ctx, username) else "false"
def rule_group_user_exists(rule_args, callback, rei):
"""Check if a user is a member of the given group.
rule_group_user_exists(group, user, includeRo, membership)
If includeRo is true, membership of a group's read-only shadow group will be
considered as well. Otherwise, the user must be a normal member or manager of
the given group.
:param rule_args: [0] Group to check for user membership
[1] User to check for membership
[2] Include read-only shadow group users
:param callback: Callback to rule Language
:param rei: The rei struct
"""
ctx = rule.Context(callback, rei)
exists = group_user_exists(ctx, rule_args[0], rule_args[1], rule_args[2])
rule_args[3] = "true" if exists else "false"
@api.make()
def api_group_categories(ctx):
"""Retrieve category list."""
return getCategories(ctx)
@api.make()
def api_group_subcategories(ctx, category):
"""Retrieve subcategory list.
:param ctx: Combined type of a ctx and rei struct
:param category: Category to retrieve subcategories of
:returns: Subcategory list of specified category
"""
return getSubcategories(ctx, category)
def provisionExternalUser(ctx, username, creatorUser, creatorZone):
"""Call External User Service API to add new user.
:param ctx: Combined type of a ctx and rei struct
:param username: Username of external user
:param creatorUser: User creating the external user
:param creatorZone: Zone of user creating the external user
:returns: Response status code
"""
eus_api_fqdn = config.eus_api_fqdn
eus_api_port = config.eus_api_port
eus_api_secret = config.eus_api_secret
eus_api_tls_verify = config.eus_api_tls_verify
url = 'https://' + eus_api_fqdn + ':' + eus_api_port + '/api/user/add'
data = {}
data['username'] = username
data['creator_user'] = creatorUser
data['creator_zone'] = creatorZone
try:
response = requests.post(url, data=jsonutil.dump(data),
headers={'X-Yoda-External-User-Secret':
eus_api_secret},
timeout=10,
verify=eus_api_tls_verify)
except (requests.ConnectionError, requests.ConnectTimeout):
return -1
return response.status_code
def rule_group_provision_external_user(rule_args, ctx, rei):
"""Provision external user."""
status = 1
message = "An internal error occurred."
status = provisionExternalUser(ctx, rule_args[0], rule_args[1], rule_args[2])
if status < 0:
message = """Error: Could not connect to external user service.\n
Please contact a Yoda administrator"""
elif status == 400:
message = """Error: Invalid request to external user service.\n"
Please contact a Yoda administrator"""
elif status == 401:
message = """Error: Invalid user credentials for external user service.\n"
Please contact a Yoda administrator"""
elif status == 403:
message = """Error: Unauthorized request to external user service.\n"
Please contact a Yoda administrator"""
elif status == 405:
message = """Error: Invalid input for external user service.\n"
Please contact a Yoda administrator"""
elif status == 415:
message = """Error: Invalid input MIME type for external user service.\n"
Please contact a Yoda administrator"""
elif status == 200 or status == 201 or status == 409:
status = 0
message = ""
elif status == 500:
status = 0
message = """Error: could not provision external user service.\n"
Please contact a Yoda administrator"""
rule_args[3] = status
rule_args[4] = message
def removeExternalUser(ctx, username, userzone):
"""Call External User Service API to remove user.
:param ctx: Combined type of a ctx and rei struct
:param username: Username of user to remove
:param userzone: Zone of user to remove
:returns: Response status code
"""
eus_api_fqdn = config.eus_api_fqdn
eus_api_port = config.eus_api_port
eus_api_secret = config.eus_api_secret
eus_api_tls_verify = config.eus_api_tls_verify
url = 'https://' + eus_api_fqdn + ':' + eus_api_port + '/api/user/delete'
data = {}
data['username'] = username
data['userzone'] = userzone
response = requests.post(url, data=jsonutil.dump(data),
headers={'X-Yoda-External-User-Secret':
eus_api_secret},
timeout=10,
verify=eus_api_tls_verify)
return str(response.status_code)
@rule.make(inputs=[0, 1], outputs=[])
def rule_group_remove_external_user(ctx, username, userzone):
"""Remove external user from EUS
:param ctx: Combined type of a ctx and rei struct
:param username: Name of user to remove
:param userzone: Zone of user to remove
:returns: HTTP status code of remove request, or "0"
if insufficient permissions.
"""
if user.is_admin(ctx):
ret = removeExternalUser(ctx, username, userzone)
ctx.writeLine("serverLog", "Status code for removing external user "
+ username + "#" + userzone
+ " : " + ret)
return ret
else:
ctx.writeLine("serverLog", "Cannot remove external user "
+ username + "#" + userzone
+ " : need admin permissions.")
return '0'
@rule.make(inputs=[0], outputs=[1])
def rule_group_check_external_user(ctx, username):
"""Check that a user is external.
:param ctx: Combined type of a ctx and rei struct
:param username: Name of the user (without zone) to check if external
:returns: String indicating if user is external ('1': yes, '0': no)
"""
if config.enable_sram:
# All users are internal when SRAM is enabled.
return '0'
if yoda_names.is_internal_user(username):
return '0'
return '1'
@rule.make(inputs=[0], outputs=[1])
def rule_group_expiration_date_validate(ctx, expiration_date):
"""Validation of expiration date.
:param ctx: Combined type of a callback and rei struct
:param expiration_date: String containing date that has to be validated
:returns: Indication whether expiration date is an accepted value
"""
if expiration_date in ["", "."]:
return 'true'
try:
if expiration_date != datetime.strptime(expiration_date, "%Y-%m-%d").strftime('%Y-%m-%d'):
raise ValueError
# Expiration date should be in the future
if expiration_date <= datetime.now().strftime('%Y-%m-%d'):
raise ValueError
return 'true'
except ValueError:
return 'false'
@api.make()
def api_group_search_users(ctx, pattern):
(username, zone_name) = user.from_str(ctx, pattern)
userList = list()
userIter = genquery.row_iterator("USER_NAME, USER_ZONE",
"USER_TYPE = 'rodsuser' AND USER_NAME LIKE '%{}%' AND USER_ZONE LIKE '%{}%'".format(username, zone_name),
genquery.AS_LIST, ctx)
adminIter = genquery.row_iterator("USER_NAME, USER_ZONE",
"USER_TYPE = 'rodsadmin' AND USER_NAME LIKE '%{}%' AND USER_ZONE LIKE '%{}%'".format(username, zone_name),
genquery.AS_LIST, ctx)
for row in userIter:
userList.append("{}#{}".format(row[0], row[1]))
for row in adminIter:
userList.append("{}#{}".format(row[0], row[1]))
userList.sort()
return userList
@api.make()
def api_group_exists(ctx, group_name):
"""Check if group exists.
:param ctx: Combined type of a ctx and rei struct
:param group_name: Name of the group to check for existence
:returns: Boolean indicating if group exists
"""
return group.exists(ctx, group_name)
def group_create(ctx, group_name, category, subcategory, schema_id, expiration_date, description, data_classification):
"""Create a new group.
:param ctx: Combined type of a ctx and rei struct
:param group_name: Name of the group to create
:param category: Category of the group to create
:param subcategory: Subcategory of the group to create
:param schema_id: Schema-id for the group to be created
:param expiration_date: Retention period for the group
:param description: Description of the group to create
:param data_classification: Data classification of the group to create
:returns: Dict with API status result
"""
try:
co_identifier = ''
# Post SRAM collaboration and connect to service if SRAM is enabled.
if config.enable_sram:
response_sram = sram.sram_post_collaboration(ctx, group_name, description)
if "error" in response_sram:
message = response_sram['message']
return api.Error('sram_error', message)
else:
co_identifier = response_sram['identifier']
short_name = response_sram['short_name']
if not sram.sram_connect_service_collaboration(ctx, short_name):
return api.Error('sram_error', 'Something went wrong connecting service to group "{}" in SRAM'.format(group_name))
if group.exists(ctx, group_name):
return api.Error('group_exists', "Group {} not created, it already exists".format(group_name))
response = ctx.uuGroupAdd(group_name, category, subcategory, schema_id, expiration_date, description, data_classification, co_identifier, '', '')['arguments']
status = response[8]
message = response[9]
if status == '0':
return api.Result.ok()
elif status == '-1089000' or status == '-809000' or status == '-806000':
return api.Error('group_exists', "Group {} not created, it already exists".format(group_name))
else:
return api.Error('policy_error', message)
except Exception: