forked from UtrechtUniversity/yoda-ruleset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroups.py
1416 lines (1099 loc) · 51.5 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 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_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]
# Create/update group with this information.
try:
group = groups[name]
except Exception:
group = {
"name": name,
"managers": [],
"members": [],
"read": []
}
groups[name] = group
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)
# 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 != user and name != "rodsadmin" and name != "public":
user = user + "#" + zone
if name.startswith("read-"):
# Match read-* group with research-* or initial-* group.
name = name[5:]
try:
# Attempt to add to read list of research group.
group = groups["research-" + name]
group["read"].append(user)
except Exception:
try:
# Attempt to add to read list of initial group.
group = groups["initial-" + name]
group["read"].append(user)
except Exception:
pass
elif not name.startswith("vault-"):
try:
# Ordinary group.
group = groups[name]
group["members"].append(user)
except KeyError:
pass
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 != user and name != "rodsadmin" and name != "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
"""
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))
# Sort groups on name.
groups = sorted(groups, key=lambda d: d['name'])
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'}
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'])
creation_date = ""
iter = genquery.row_iterator(
"COLL_CREATE_TIME",
"COLL_NAME = '/{}/home/{}'".format(user.zone(ctx), group['name']),
genquery.AS_LIST, ctx
)
for row in iter:
creation_date = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(int(row[0])))
group_hierarchy[group['category']][group['subcategory']][group['name']] = {
'description': group['description'] if 'description' in group else '',
'schema_id': group['schema_id'],
'expiration_date': group['expiration_date'] if 'expiration_date' in group else '',
'data_classification': group['data_classification'] if 'data_classification' in group else '',
'creation_date': creation_date,
'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.
error = apply_data(ctx, data, allow_update, delete_users)
if len(error):
return api.Error('errors', [error])
return api.Result.ok()
def parse_data(ctx, csv_header_and_data):
"""Process contents of csv data consisting of header and rows of data.
: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
:returns: Dict containing error and the extracted data
"""
extracted_data = []
csv_lines = csv_header_and_data.splitlines()
header = csv_lines[0]
import_lines = csv_lines[1:]
# List of dicts each containing label / list of values pairs.
lines = []
header_cols = header.split(',')
for import_line in import_lines:
data = import_line.split(',')
if len(data) != len(header_cols):
return [], 'Amount of header columns differs from data columns.'
# A kind of MultiDict
# each key is a header column
# each item is a list of items for that header column
line_dict = {}
for x in range(0, len(header_cols)):
if header_cols[x] == '':
if x == len(header_cols) - 1:
return [], "Header row ends with ','"
else:
return [], 'Empty column description found in header row.'
# EVERY row should have all the headers that were listed at the top of the file
if header_cols[x] not in line_dict:
line_dict[header_cols[x]] = []
if len(data[x]):
line_dict[header_cols[x]].append(data[x])
lines.append(line_dict)
for line in lines:
rowdata, error = _process_csv_line(ctx, line)
if error is None:
extracted_data.append(rowdata)
else:
# End processing of csv data due to erroneous input
return extracted_data, "Data error: {}".format(error)
return extracted_data, ''
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, _, _) in data:
if group.exists(ctx, groupname) and not allow_update:
errors.append('Group "{}" already exists'.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
"""
for (category, subcategory, group_name, managers, members, viewers, schema_id, expiration_date) in data:
new_group = False
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
elif response.status == "error_group_exists" and allow_update:
log.write(ctx, 'CSV import - WARNING: group "{}" not created, it already exists'.format(group_name))
else:
return "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))
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))
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))
return ''
def parse_csv_file(ctx):
extracted_data = []
row_number = 0
# Validate header columns (should be first row in file)
# Are all required fields present?
for label in _get_csv_required_labels():
if label not in reader.fieldnames:
_exit_with_error(
'CSV header is missing compulsory field "{}"'.format(label))
# Check that all header names are valid
possible_labels = _get_csv_possible_labels()
for label in header:
if label not in possible_labels:
_exit_with_error(
'CSV header contains unknown field "{}"'.format(label))
# duplicate fieldnames present?
duplicate_columns = _get_duplicate_columns(reader.fieldnames)
if (len(duplicate_columns) > 0):
_exit_with_error("File has duplicate column(s): " + str(duplicate_columns))
# Start processing the actual group data rows
for line in lines:
row_number += 1
rowdata, error = _process_csv_line(line)
if error is None:
extracted_data.append(rowdata)
else:
_exit_with_error("Data error in in row {}: {}".format(
str(row_number), error))
return extracted_data
def _get_csv_possible_labels():
return ['category', 'subcategory', 'groupname', 'viewer', 'member', 'manager', 'schema_id', 'expiration_date']
def _get_csv_required_labels():
return ['category', 'subcategory', 'groupname']
def _get_csv_predefined_labels():
"""These labels should not repeat"""
return ['category', 'subcategory', 'groupname', 'schema_id', 'expiration_date']
def _get_duplicate_columns(fields_list):
fields_seen = set()
duplicate_fields = set()
for field in fields_list:
if field in _get_csv_predefined_labels():
if field in fields_seen:
duplicate_fields.add(field)
else:
fields_seen.add(field)
return duplicate_fields
def _process_csv_line(ctx, line):
"""Process a line as found in the csv consisting of
category, subcategory, groupname, managers, members and viewers,
and optionally schema id and expiration date.
:param ctx: Combined type of a ctx and rei struct
:param line: Dictionary of labels and corresponding lists of values
:returns: Tuple of processed row data (None if error), and error message
"""
if (not len(line['category'])
or not len(line['subcategory'])
or not len(line['groupname'])):
return None, "Row has a missing group name, category or subcategory"
category = line['category'][0].strip().lower().replace('.', '')
subcategory = line['subcategory'][0].strip()
groupname = "research-" + line['groupname'][0].strip().lower()
schema_id = line['schema_id'][0] if 'schema_id' in line and len(line['schema_id']) else ''
expiration_date = line['expiration_date'][0] if 'expiration_date' in line and len(line['expiration_date']) else ''
managers = []
members = []
viewers = []
for column_name, item_list in line.items():
if column_name == '':
return None, 'Column cannot have an empty label'
elif column_name in _get_csv_predefined_labels():
continue
elif column_name not in _get_csv_possible_labels():
return None, "Column label '{}' is not a valid label.".format(column_name)
for i in range(len(item_list)):
item_list[i] = item_list[i].strip().lower()
username = item_list[i]
if not yoda_names.is_email_username(username):
return None, 'Username "{}" is not a valid email address.'.format(
username)
if column_name.lower() == 'manager':
managers = item_list
elif column_name.lower() == 'member':
members = item_list
elif column_name.lower() == 'viewer':
viewers = item_list
if len(managers) == 0:
return None, "Group must have a group manager"
if not yoda_names.is_valid_category(category):
return None, '"{}" is not a valid category name.'.format(category)
if not yoda_names.is_valid_subcategory(subcategory):
return None, '"{}" is not a valid subcategory name.'.format(subcategory)
if not yoda_names.is_valid_groupname("research-" + groupname):
return None, '"{}" is not a valid group name.'.format(groupname)
if not yoda_names.is_valid_schema_id(schema_id):
return None, '"{}" is not a valid schema id.'.format(schema_id)
if not yoda_names.is_valid_expiration_date(expiration_date):
return None, '"{}" is not a valid expiration date.'.format(expiration_date)
row_data = (category, subcategory, groupname, managers,
members, viewers, schema_id, expiration_date)
return row_data, None
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
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 or 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)
def rule_group_remove_external_user(rule_args, ctx, rei):
"""Remove external user."""
log.write(ctx, removeExternalUser(ctx, rule_args[0], rule_args[1]))