-
Notifications
You must be signed in to change notification settings - Fork 12
/
resources.py
721 lines (577 loc) · 29.4 KB
/
resources.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
# -*- coding: utf-8 -*-
"""Functions for statistics module."""
__copyright__ = 'Copyright (c) 2018-2024, Utrecht University'
__license__ = 'GPLv3, see LICENSE'
from datetime import datetime
import genquery
import groups
from util import *
__all__ = ['api_resource_browse_group_data',
'api_resource_monthly_category_stats',
'api_resource_category_stats',
'api_resource_full_year_differentiated_group_storage',
'rule_resource_store_storage_statistics',
'rule_resource_research',
'rule_resource_update_resc_arb_data',
'rule_resource_update_misc_arb_data',
'rule_resource_vault']
@api.make()
def api_resource_browse_group_data(ctx,
sort_on='name',
sort_order='asc',
offset=0,
limit=10,
search_groups=""):
"""Get paginated group data groupname / size
:param ctx: Combined type of a callback and rei struct
:param sort_on: Column to sort on ('name', 'modified' or size)
:param sort_order: Column sort order ('asc' or 'desc')
:param offset: Offset to start browsing from
:param limit: Limit number of results
:param search_groups: Search specific groups
:returns: Dict with paginated collection contents
"""
user_name = user.name(ctx)
user_zone = user.zone(ctx)
search_sql = ""
if search_groups:
# The maximum allowed number of characters in the group name is 63.
search_sql = "AND USER_GROUP_NAME like '%%{}%%' ".format(search_groups[:63])
if user.is_admin(ctx):
groups_research = [a for a in genquery.Query(ctx, "USER_GROUP_NAME", "USER_GROUP_NAME like 'research-%%' " + search_sql + "AND USER_ZONE = '{}'".format(user_zone))]
groups_deposit = [a for a in genquery.Query(ctx, "USER_GROUP_NAME", "USER_GROUP_NAME like 'deposit-%%' " + search_sql + "AND USER_ZONE = '{}'".format(user_zone))]
groups_intake = [a for a in genquery.Query(ctx, "USER_GROUP_NAME", "USER_GROUP_NAME like 'intake-%%' " + search_sql + "AND USER_ZONE = '{}'".format(user_zone))]
groups_grp = [a for a in genquery.Query(ctx, "USER_GROUP_NAME", "USER_GROUP_NAME like 'grp-%%' " + search_sql + "AND USER_ZONE = '{}'".format(user_zone))]
groups = list(set(groups_research + groups_deposit + groups_intake + groups_grp))
else:
categories = get_categories(ctx)
groups_dm = get_groups_on_categories(ctx, categories, search_groups)
groups_research_member = [a for a in genquery.Query(ctx, "USER_GROUP_NAME", "USER_GROUP_NAME like 'research-%%' " + search_sql + "AND USER_NAME = '{}' AND USER_ZONE = '{}'".format(user_name, user_zone))]
groups_deposit_member = [a for a in genquery.Query(ctx, "USER_GROUP_NAME", "USER_GROUP_NAME like 'deposit-%%' " + search_sql + "AND USER_NAME = '{}' AND USER_ZONE = '{}'".format(user_name, user_zone))]
groups_intake_member = [a for a in genquery.Query(ctx, "USER_GROUP_NAME", "USER_GROUP_NAME like 'intake-%%' " + search_sql + "AND USER_NAME = '{}' AND USER_ZONE = '{}'".format(user_name, user_zone))]
groups_grp_member = [a for a in genquery.Query(ctx, "USER_GROUP_NAME", "USER_GROUP_NAME like 'grp-%%' " + search_sql + "AND USER_NAME = '{}' AND USER_ZONE = '{}'".format(user_name, user_zone))]
groups = list(set(groups_research_member + groups_deposit_member + groups_intake_member + groups_grp_member + groups_dm))
# groups.sort()
group_list = []
for groupname in groups:
data_size = get_group_data_sizes(ctx, groupname)
group_list.append([groupname, data_size])
# Sort the list as requested by user
sort_reverse = False
if sort_order == 'desc':
sort_reverse = True
group_list.sort(key=lambda x: x[1][-1] if sort_on == 'size' else x[0], reverse=sort_reverse)
# Only at this point we have the list in correct shape/order and can the limit and offset be applied
# Format for datatables in frontend throughout yoda
group_list_sorted = []
group_slice = group_list[offset: offset + limit]
for group_data in group_slice:
members = group.members(ctx, group_data[0])
group_list_sorted.append({"name": group_data[0], "size": group_data[1], "member_count": len(list(members))})
return {'total': len(group_list), 'items': group_list_sorted}
@api.make()
def api_resource_full_year_differentiated_group_storage(ctx, group_name):
# def api_resource_full_range ...
"""Return the full range of registered storage data differentiated into vault/research/revision/total
:param ctx: Combined type of a callback and rei struct
:param group_name: Group that is searched for storage data
:returns: API status
"""
# Check permissions for this function
# Member of this group?
member_type = groups.user_role(ctx, user.full_name(ctx), group_name)
if member_type not in ['reader', 'normal', 'manager']:
category = groups.group_category(ctx, group_name)
if not groups.user_is_datamanager(ctx, category, user.full_name(ctx)):
if user.user_type(ctx) != 'rodsadmin':
return api.Error('not_allowed', 'Insufficient permissions')
labels = []
research = []
vault = []
revision = []
total = []
iter = genquery.row_iterator(
"ORDER(META_USER_ATTR_NAME), META_USER_ATTR_VALUE",
"USER_NAME = '{}' AND META_USER_ATTR_NAME like '{}%%' AND USER_TYPE = 'rodsgroup'".format(group_name, constants.UUMETADATAGROUPSTORAGETOTALS),
genquery.AS_LIST, ctx
)
for row in iter:
# 2022_01_15
storage_date = row[0][-10:].replace('_', '-')
labels.append(storage_date)
# Make compatible with json strings containing ' coming from previous erroneous storage conversion
# [category, research, vault, revision, total]
temp = jsonutil.parse(row[1].replace("'", '"'))
research.append(temp[1])
vault.append(temp[2])
revision.append(temp[3])
total.append(temp[4])
# example: {'labels': ['2022-06-01', '2022-06-02', '2022-06-03'], 'research': [123, 456, 789], 'vault': [666, 777, 888], 'revision': [200, 300, 400], 'total': [989, 1533, 2077]}
return {'labels': labels, 'research': research, 'vault': vault, 'revision': revision, 'total': total}
@api.make()
def api_resource_category_stats(ctx):
"""Collect storage stats of last month for categories.
Storage is summed up for each category.
:param ctx: Combined type of a callback and rei struct
:returns: Storage stats of last month for a list of categories
"""
categories = get_categories(ctx)
# Non-admin users don't have access to category storage statistics.
# This makes sure the table is not presented in the frontend.
if len(categories) == 0:
return {'categories': [], 'external_filter': ''}
# Retrieve storage statistics of groups.
iter = list(genquery.Query(ctx,
['USER_GROUP_NAME', 'ORDER_DESC(META_USER_ATTR_NAME)', 'META_USER_ATTR_VALUE'],
"META_USER_ATTR_NAME like '{}%%'".format(constants.UUMETADATAGROUPSTORAGETOTALS),
output=genquery.AS_LIST))
# Go through storage statistics of groups.
storage = {}
group_counted = []
for group_name, _storage_attribute, storage_json in iter:
# Check if group is valid and has not been counted yet.
if group_name.startswith(('research-', 'deposit-', 'intake-', 'grp-')) and group_name not in group_counted:
# Add group to list of groups counted for category statistics.
group_counted.append(group_name)
# Add group to category statistics.
category, research, vault, revisions, total = jsonutil.parse(storage_json)
storage.setdefault(category, {'research': 0, 'vault': 0, 'revision': 0, 'total': 0})
storage[category]['research'] += research
storage[category]['vault'] += vault
storage[category]['revision'] += revisions
storage[category]['total'] += total
# Retrieve groups and their members.
iter = list(genquery.Query(ctx,
['USER_GROUP_NAME', 'USER_NAME'],
"USER_TYPE != 'rodsgroup'",
output=genquery.AS_LIST))
# Calculate number of members per type per group.
members = {}
for group_name, user_name in iter:
members.setdefault(group_name, {'internal': set(), 'external': set()})
if yoda_names.is_internal_user(user_name):
members[group_name]['internal'].add(user_name)
else:
members[group_name]['external'].add(user_name)
# Calculate category members and storage totals.
instance_totals = {'total': 0, 'research': 0, 'vault': 0, 'revision': 0, 'internals': set(), 'externals': set()}
all_storage = []
for category in categories:
if category not in storage:
continue
# Calculate category members and totals.
internals = set()
externals = set()
for group_name in get_groups_on_categories(ctx, [category]):
members.setdefault(group_name, {'internal': set(), 'external': set()})
internals.update(members[group_name]['internal'])
externals.update(members[group_name]['external'])
# Deduplicate group members.
users = {'internals': len(internals), 'externals': len(externals)}
# Count instance totals.
instance_totals['internals'].update(internals)
instance_totals['externals'].update(externals)
# Humanize storage sizes for the frontend and calculate instance totals.
storage_humanized = {}
for storage_type in ['research', 'vault', 'revision', 'total']:
storage_humanized[storage_type] = misc.human_readable_size(1.0 * storage[category][storage_type])
instance_totals[storage_type] += 1.0 * storage[category][storage_type]
all_storage.append({'category': category,
'storage': storage_humanized,
'users': users})
# Add the Yoda instance information as an extra row with category name YODA_INSTANCE_TOTAL.
# So the frontend can distinguish instance totals from real category totals.
all_storage.append({'category': "YODA_INSTANCE_TOTAL",
'storage': {'total': misc.human_readable_size(instance_totals['total']),
'research': misc.human_readable_size(instance_totals['research']),
'vault': misc.human_readable_size(instance_totals['vault']),
'revision': misc.human_readable_size(instance_totals['revision'])},
'users': {'internals': len(instance_totals['internals']),
'externals': len(instance_totals['externals'])}})
return {'categories': sorted(all_storage, key=lambda d: d['category']),
'external_filter': ', '.join(config.external_users_domain_filter)}
@api.make()
def api_resource_monthly_category_stats(ctx):
"""Collect storage stats for all twelve months based upon categories a user is datamanager of.
Statistics gathered:
- Category
- Subcategory
- Groupname
- n columns - one per month, with used storage count in bytes
:param ctx: Combined type of a callback and rei struct
:returns: API status
"""
current_month = datetime.now().month
current_year = datetime.now().year
# Initialize to prevent errors in log when no data has been registered yet.
min_year = -1
min_month = -1
# find minimal registered date registered.
iter = list(genquery.Query(ctx, ['ORDER(META_USER_ATTR_NAME)'],
"META_USER_ATTR_NAME like '{}%%' and USER_TYPE = 'rodsgroup'".format(constants.UUMETADATAGROUPSTORAGETOTALS),
offset=0, limit=1, output=genquery.AS_LIST))
for row in iter:
min_year = int(row[0][-10:-6])
min_month = int(row[0][-5:-3])
if min_month == -1:
# if min_month == -1 no minimal date was found. Consequently, stop further processing
return {'storage': [], 'dates': []}
# Prepare storage data
# Create dict with all groups that will contain list of storage values corresponding to complete range from minimal date till now.
group_storage = {}
# All storage periods (yyyy-mm) for frontend
storage_dates = []
# A group always has 1 distinct category and 1 distinct subcateory
group_catdata = {}
# Initialisation
categories = get_categories(ctx)
for category in categories:
# for all groups in category
groups = get_groups_on_categories(ctx, [category])
for group in groups:
if group.startswith(('research', 'deposit', 'intake', 'grp')):
group_storage[group] = []
group_catdata[group] = {'category': category,
'subcategory': get_group_category_info(ctx, group)['subcategory']}
# Loop from earliest data to now and find storage for each group/date combination
while min_month != current_month or min_year != current_year:
date_reference = "{}_{}".format(min_year, '%0*d' % (2, min_month))
storage_dates.append(date_reference)
for category in categories:
# for all groups in category
groups = get_groups_on_categories(ctx, [category])
for group in groups:
if group.startswith(('research', 'deposit', 'intake', 'grp')):
storage = get_group_data_sizes(ctx, group, date_reference)
group_storage[group].append(storage[3])
# Next time period based on month
min_month += 1
if min_month > 12:
min_month = 1
min_year += 1
date_reference = "{}_{}".format(min_year, '%0*d' % (2, min_month))
storage_dates.append(date_reference)
for category in categories:
# for all groups in category
groups = get_groups_on_categories(ctx, [category])
for group in groups:
if group.startswith(('research', 'deposit', 'intake', 'grp')):
storage = get_group_data_sizes(ctx, group, date_reference)
group_storage[group].append(storage[3])
all_storage = []
for group in group_storage:
all_storage.append({'category': group_catdata[group]['category'],
'subcategory': group_catdata[group]['subcategory'],
'groupname': group,
'storage': group_storage[group]})
return {'storage': all_storage, 'dates': storage_dates}
def get_group_category_info(ctx, groupName):
"""Get category and subcategory for a group.
:param ctx: Combined type of a callback and rei struct
:param groupName: groupname to get cat/subcat info for
:returns: A dict with indices 'category' and 'subcategory'.
"""
category = ''
subcategory = ''
iter = genquery.row_iterator(
"META_USER_ATTR_NAME, META_USER_ATTR_VALUE",
"USER_GROUP_NAME = '" + groupName + "' AND META_USER_ATTR_NAME IN('category','subcategory')",
genquery.AS_LIST, ctx
)
for row in iter:
attrName = row[0]
attrValue = row[1]
if attrName == 'category':
category = attrValue
elif attrName == 'subcategory':
subcategory = attrValue
return {'category': category, 'subcategory': subcategory}
def get_groups_on_categories(ctx, categories, search_groups=""):
"""Get all groups belonging to all given categories.
:param ctx: Combined type of a callback and rei struct
:param categories: List of categories groups have to be found for
:param search_groups: Find specific groups
:returns: All groups belonging to all given categories
"""
groups = []
search_sql = ""
if search_groups:
search_sql = "AND USER_GROUP_NAME like '%%{}%%' ".format(search_groups)
for category in categories:
iter = genquery.row_iterator(
"USER_NAME",
"USER_GROUP_NAME like 'research-%%' " + search_sql + "AND USER_TYPE = 'rodsgroup' AND META_USER_ATTR_NAME = 'category' AND META_USER_ATTR_VALUE = '" + category + "' ",
genquery.AS_LIST, ctx
)
for row in iter:
groupName = row[0]
groups.append(groupName)
iter = genquery.row_iterator(
"USER_NAME",
"USER_GROUP_NAME like 'deposit-%%' " + search_sql + "AND USER_TYPE = 'rodsgroup' AND META_USER_ATTR_NAME = 'category' AND META_USER_ATTR_VALUE = '" + category + "' ",
genquery.AS_LIST, ctx
)
for row in iter:
groupName = row[0]
groups.append(groupName)
iter = genquery.row_iterator(
"USER_NAME",
"USER_GROUP_NAME like 'intake-%%' " + search_sql + "AND USER_TYPE = 'rodsgroup' AND META_USER_ATTR_NAME = 'category' AND META_USER_ATTR_VALUE = '" + category + "' ",
genquery.AS_LIST, ctx
)
for row in iter:
groupName = row[0]
groups.append(groupName)
iter = genquery.row_iterator(
"USER_NAME",
"USER_GROUP_NAME like 'grp-%%' " + search_sql + "AND USER_TYPE = 'rodsgroup' AND META_USER_ATTR_NAME = 'category' AND META_USER_ATTR_VALUE = '" + category + "' ",
genquery.AS_LIST, ctx
)
for row in iter:
groupName = row[0]
groups.append(groupName)
return groups
@rule.make()
def rule_resource_store_storage_statistics(ctx):
"""
For all categories present, store all found storage data for each group belonging to these categories.
Store as metadata on group level as [category, research, vault, revision, total]
:param ctx: Combined type of a callback and rei struct
:returns: Storage data for each group of each category
"""
zone = user.zone(ctx)
dt = datetime.today()
md_storage_date = constants.UUMETADATAGROUPSTORAGETOTALS + dt.strftime("%Y_%m_%d")
# Delete previous data for this particular day if present at all
# Each group should only have one aggrageted totals attribute per day
iter = genquery.row_iterator(
"META_USER_ATTR_VALUE, USER_GROUP_NAME",
"META_USER_ATTR_NAME = '" + md_storage_date + "'",
genquery.AS_LIST, ctx
)
for row in iter:
if (md_storage_date, row[0], '') not in list(avu.of_group(ctx, row[1])):
continue
avu.rm_from_group(ctx, row[1], md_storage_date, row[0])
# Get all categories
categories = []
iter = genquery.row_iterator(
"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])
# Steps to be taken per group
# The software distinguishes 2 separate areas.
# 1) VAULT AREA
# 2) RESEARCH AREA - which includes research and deposit groups
# 3) REVISION AREA
steps = ['research', 'vault']
total = {'research': 0, 'vault': 0, 'revision': 0}
# Loop through all categories
for category in categories:
groups = get_groups_on_category(ctx, category)
for group in groups:
# COLLECT GROUP DATA
# Per group collect totals for vault, research and revision
# Look at research, deposit, intake and grp groups
if group.startswith(('research', 'deposit', 'intake', 'grp')):
# RESEARCH AND VAULT SPACE
for step in steps:
total[step] = 0
if step == 'research':
path = '/' + zone + '/home/' + group
else:
# groupname can start with 'research-' or 'deposit-'
if group.startswith('research-'):
vault_group = group.replace('research-', 'vault-', 1)
else:
vault_group = group.replace('deposit-', 'vault-', 1)
path = '/' + zone + '/home/' + vault_group
# Per group two statements are required to gather all data
# 1) data in folder itself
# 2) data in all subfolders of the folder
for folder in ['self', 'subfolders']:
if folder == 'self':
whereClause = "COLL_NAME = '" + path + "'"
else:
whereClause = "COLL_NAME like '" + path + "/%'"
iter = genquery.row_iterator(
"SUM(DATA_SIZE)",
whereClause,
genquery.AS_LIST, ctx
)
for row in iter:
if row[0] != '':
total[step] += int(row[0])
# REVISION SPACE
total['revision'] = 0
revision_path = '/{}{}/{}'.format(zone, constants.UUREVISIONCOLLECTION, group)
whereClause = "COLL_NAME like '" + revision_path + "/%'"
iter = genquery.row_iterator(
"SUM(DATA_SIZE)",
whereClause,
genquery.AS_LIST, ctx
)
for row in iter:
if row[0] != '':
total['revision'] += int(row[0])
# For intake and grp groups.
total['other'] = 0
group_path = '/' + zone + '/home/' + group
for folder in ['self', 'subfolders']:
if folder == 'self':
whereClause = "COLL_NAME = '" + group_path + "'"
else:
whereClause = "COLL_NAME like '" + group_path + "/%'"
iter = genquery.row_iterator(
"SUM(DATA_SIZE)",
whereClause,
genquery.AS_LIST, ctx
)
for row in iter:
if row[0] != '':
total['other'] += int(row[0])
# STORE GROUP DATA
# STORAGE_TOTAL_REVISION_2023_01_09
# constructed this way to be backwards compatible (not using json.dump)
# [category, research, vault, revision, total]
storage_total = total['research'] + total['vault'] + total['revision']
storage_val = "[\"{}\", {}, {}, {}, {}]".format(category, total['research'], total['vault'], total['revision'], storage_total)
storage_val_other = "[\"{}\", {}, {}, {}, {}]".format(category, 0, 0, 0, total['other'])
# Only store if storage_total>0???
# Sla maar wel op want anders niet duidelijk of het gebeurd is
# write as metadata (kv-pair) to current group
if group.startswith(('research', 'deposit')):
avu.associate_to_group(ctx, group, md_storage_date, storage_val)
if group.startswith(('intake', 'grp')):
avu.associate_to_group(ctx, group, md_storage_date, storage_val_other)
log.write(ctx, 'Storage data collected and stored for current month <{}>'.format(group))
else: # except Exception:
log.write(ctx, 'Skipping group as not prefixed with either research-, deposit-, intake- or grp- <{}>'.format(group))
return 'ok'
@rule.make(inputs=[0, 1, 2], outputs=[])
def rule_resource_update_resc_arb_data(ctx, resc_name, bytes_free, bytes_total):
"""
Update ARB data for a specific resource
:param ctx: Combined type of a callback and rei struct
:param resc_name: Name of a particular unixfilesystem resource
:param bytes_free: Free size on this resource, in bytes
:param bytes_total: Total size of this resource, in bytes
"""
if user.user_type(ctx) != 'rodsadmin':
log.write(ctx, "Error: insufficient permissions to run ARB data update rule.")
return
if not resource.exists(ctx, resc_name):
log.write(ctx, "Error: could not find resource named '{}' for ARB update.".format(resc_name))
return
bytes_free_gb = int(bytes_free) / 2 ** 30
bytes_free_percent = 100 * (float(bytes_free) / float(bytes_total))
if resc_name in config.arb_exempt_resources:
arb_status = constants.arb_status.EXEMPT
elif bytes_free_gb >= config.arb_min_gb_free and bytes_free_percent > config.arb_min_percent_free:
arb_status = constants.arb_status.AVAILABLE
else:
arb_status = constants.arb_status.FULL
parent_resc_name = resource.get_parent_by_name(ctx, resc_name)
manager = arb_data_manager.ARBDataManager()
manager.put(ctx, resc_name, constants.arb_status.IGNORE)
if parent_resc_name is not None and resource.get_type_by_name(ctx, parent_resc_name) == "passthru":
manager.put(ctx, parent_resc_name, arb_status)
@rule.make()
def rule_resource_update_misc_arb_data(ctx):
"""Update ARB data for resources that are not covered by the regular process. That is,
all resources that are neither unixfilesystem nor passthrough resources, as well as
passthrough resources that do not have a unixfilesystem child resource.
:param ctx: Combined type of a callback and rei struct
"""
if user.user_type(ctx) != 'rodsadmin':
log.write(ctx, "Error: insufficient permissions to run ARB data update rule.")
return
manager = arb_data_manager.ARBDataManager()
all_resources = resource.get_all_resource_names(ctx)
ufs_resources = set(resource.get_resource_names_by_type(ctx, "unixfilesystem")
+ resource.get_resource_names_by_type(ctx, "unix file system"))
pt_resources = set(resource.get_resource_names_by_type(ctx, "passthru"))
for resc in all_resources:
if resc in ufs_resources:
pass
elif resc not in pt_resources:
manager.put(ctx, resc, constants.arb_status.IGNORE)
else:
child_resources = resource.get_children_by_name(ctx, resc)
child_found = False
for child_resource in child_resources:
if child_resource in ufs_resources:
child_found = True
# Ignore the passthrough resource if it does not have a UFS child resource
if not child_found:
manager.put(ctx, resc, constants.arb_status.IGNORE)
def get_categories(ctx):
"""Get all categories for current user.
:param ctx: Combined type of a callback and rei struct
:returns: All categories for current user
"""
categories = []
if user.is_admin(ctx):
iter = genquery.row_iterator(
"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])
else:
iter = genquery.row_iterator(
"USER_NAME",
"USER_TYPE = 'rodsgroup' AND USER_NAME like 'datamanager-%'",
genquery.AS_LIST, ctx
)
for row in iter:
datamanagerGroupname = row[0]
if user.is_member_of(ctx, datamanagerGroupname):
# Example: 'datamanager-initial' is groupname of datamanager, second part is category
temp = '-'.join(datamanagerGroupname.split('-')[1:])
categories.append(temp)
return categories
def get_groups_on_category(ctx, category):
"""Get all groups for category."""
groups = []
iter = genquery.row_iterator(
"USER_NAME",
"USER_TYPE = 'rodsgroup' "
"AND META_USER_ATTR_NAME = 'category' "
"AND META_USER_ATTR_VALUE = '" + category + "'",
genquery.AS_LIST, ctx
)
for row in iter:
groups.append(row[0])
return groups
def get_group_data_sizes(ctx, group_name, ref_period=None):
"""Get group data sizes and return as a list of values.
If no reference period is specified return closest to today.
:param ctx: Combined type of a callback and rei struct
:param group_name: Name of group to get data sizes of
:param ref_period: Reference period written as 'YYYY-MM'
:returns: List with group data sizes, [research_storage, vault_storage, revision_storage, total_storage]
"""
# Get most recent information present for this group
if ref_period:
md_storage_period = constants.UUMETADATAGROUPSTORAGETOTALS + ref_period
else:
md_storage_period = constants.UUMETADATAGROUPSTORAGETOTALS
iter = genquery.Query(ctx,
['META_USER_ATTR_VALUE', 'ORDER_DESC(META_USER_ATTR_NAME)', 'USER_NAME', 'USER_GROUP_NAME'],
"META_USER_ATTR_NAME like '" + md_storage_period + "%%' AND USER_NAME = '" + group_name + "'",
offset=0, limit=1, output=genquery.AS_LIST)
for row in list(iter):
# the replace is merely here due to earlier (erroneous0 values that were added as '' in json where this should have been ""
temp = jsonutil.parse(row[0].replace("'", '"'))
# [research_storage, vault_storage, revision_storage, total_storage]
return [int(temp[1]), int(temp[2]), int(temp[3]), int(temp[4])]
return [0, 0, 0, 0]
def rule_resource_research(rule_args, callback, rei):
rule_args[0] = config.resource_research
def rule_resource_vault(rule_args, callback, rei):
rule_args[0] = config.resource_vault