-
Notifications
You must be signed in to change notification settings - Fork 34
/
batchaccession.py
executable file
·352 lines (339 loc) · 16.1 KB
/
batchaccession.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
#!/usr/bin/env python3
'''
Batch process packages by running accession.py and makepbcore.py
The outcome will be:
* Packages are accessioned
* Filmographic records can be ingested to DB TEXTWORKS
* Technical records can be ingested to DB TEXTWORKS
* Skeleton accession record can be also be made available.
NOTE - this is almost done, you just need to find when to_accession[package] == 3, then
add an arg to the accession commmand that will declare the package as a reproduction.
'''
import argparse
import sys
import csv
import os
import re
import time
import ififuncs
import accession
import copyit
import order
'''
the following two functions for natural sorting are stolen from
https://stackoverflow.com/questions/5967500/how-to-correctly-sort-a-string-with-a-number-inside?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa
'''
def atoi(text):
return int(text) if text.isdigit() else text
def natural_keys(text):
'''
alist.sort(key=natural_keys) sorts in human order
http://nedbatchelder.com/blog/200712/human_sorting.html
(See Toothy's implementation in the comments)
'''
return [ atoi(c) for c in re.split('(\d+)', text) ]
def gather_metadata(source):
'''
Loops through all subfolders that contain pbcore_csv and then harvests the
metadata and store in a single file for the purposes of batch import into
the DB TEXTWORKS technical database.
'''
metadata = []
for root, _, filenames in sorted(os.walk(source)):
for filename in filenames:
if filename.endswith('pbcore.csv'):
with open(os.path.join(root,filename), 'r') as csv_file:
csv_rows = csv_file.readlines()
if metadata:
metadata.append([csv_rows[1]])
else:
metadata.append([csv_rows[0]])
metadata.append([csv_rows[1]])
collated_pbcore = os.path.join(
ififuncs.make_desktop_logs_dir(),
time.strftime("%Y-%m-%dT%H_%M_%S_pbcore.csv")
)
with open(collated_pbcore, 'w') as fo:
for i in metadata:
fo.write(i[0])
return collated_pbcore
def initial_check(args, accession_digits, oe_list, reference_number):
'''
Tells the user which packages will be accessioned and what their accession
numbers will be.
'''
to_accession = {}
wont_accession = []
# accession = 'af' + str(accession_digits)
ref = reference_number
reference_digits = int(ref[2:])
# so just reverse this - loop through the csv first.
# this will break the non CSV usage of batchaccession for now.
for thingies in oe_list:
for root, _, _ in sorted(os.walk(args.input)):
if os.path.basename(root)[:2] == 'oe' and len(os.path.basename(root)[2:]) >= 4:
if copyit.check_for_sip(root) is None:
wont_accession.append(root)
else:
# this is just batchaccessioning if no csv is supplied
# this is pretty pointless at the moment seeing as this is loopline through oe_list :(
if not oe_list:
to_accession[root] = 'aaa' + str(accession_digits).zfill(4)
accession_digits += 1
else:
# gets parent info
if os.path.basename(root) == thingies:
to_accession[
os.path.join(os.path.dirname(root),
order.main(root))
] = [
'aaa' + str(accession_digits).zfill(4),
ref[:2] + str(reference_digits).zfill(4)
]
if root in to_accession:
# If a single file is found, this prevents the file being
# processed twice, with a skip in the number run
reference_digits += 1
accession_digits += 1
continue
accession_digits += 1
# gets reproduction info
to_accession[root] = ['aaa' + str(accession_digits).zfill(4), ref[:2] + str(reference_digits), 'reproduction']
reference_digits += 1
accession_digits += 1
for fails in wont_accession:
print('%s looks like it is not a fully formed SIP. Perhaps loopline_repackage.py should proccess it?' % fails)
for success in sorted(to_accession.keys()):
print('%s will be accessioned as %s' % (success, to_accession[success]))
return to_accession
def get_filmographic_titles(to_accession, filmographic_dict):
'''
Retrieves filmographic titles of packages to be accessioned for QC purposes
'''
for ids in to_accession:
oe_number = os.path.basename(ids)
oe = oe_number[:2].upper() + '-' + oe_number[2:]
for record in filmographic_dict:
if record['Object Entry'] == oe:
print(record['Title'])
def parse_args(args_):
'''
Parse command line arguments.
'''
parser = argparse.ArgumentParser(
description='Batch process packages by running accession.py and makepbcore.py'
' Written by Kieran O\'Leary.'
)
parser.add_argument(
'input', help='Input directory'
)
parser.add_argument(
'-start_number',
help='Enter the Accession number for the first package. The script will increment by one for each subsequent package.'
)
parser.add_argument(
'-filmo_csv',
help='Enter the path to the Filmographic CSV'
)
parser.add_argument(
'-oe_csv',
help='Enter the path to the Object Entry CSV'
)
parser.add_argument(
'-reference',
help='Enter the starting Filmographic reference number for the representation. This is not required when using the -oe_csv option'
)
parser.add_argument(
'-dryrun', action='store_true',
help='The script will reveal which identifiers will be assigned but will not actually perform any actions.'
)
parsed_args = parser.parse_args(args_)
return parsed_args
def get_filmographic_number(number):
'''
This check is not sustainable, will have to be made more flexible!
'''
if len(number) == 7:
if number[:3] != 'af1':
number = ififuncs.get_reference_number()
return number.upper()
else:
number = ififuncs.get_reference_number()
return number.upper()
def get_number(args):
'''
Figure out the first accession number and how to increment per package.
'''
if args.start_number:
if args.start_number[:3] != 'aaa':
print('First three characters must be \'aaa\' and last four characters must be four digits')
accession_number = ififuncs.get_accession_number()
elif len(args.start_number[3:]) not in range(4, 6):
accession_number = ififuncs.get_accession_number()
print('First three characters must be \'aaa\' and last four characters must be four digits')
elif not args.start_number[3:].isdigit():
accession_number = ififuncs.get_accession_number()
print('First three characters must be \'aaa\' and last four characters must be four digits')
else:
accession_number = args.start_number
else:
accession_number = ififuncs.get_accession_number()
accession_digits = accession_number[3:].zfill(4)
return accession_number[:3] + accession_digits
def process_oe_csv(oe_csv_extraction, source_path):
'''
generate a dictionary with the relevant data per object, namely:
title, reference number, OE number and parent.
'''
oe_dicts = []
for record in oe_csv_extraction[0]:
try:
dictionary = {}
dictionary['Object Entry'] = record['OE No.']
dictionary['format'] = record['Format']
dictionary['donation_date'] = record['Date Received']
dictionary['normalised_oe_number'] = dictionary['Object Entry'][:2].lower() + dictionary['Object Entry'][3:]
dictionary['source_path'] = os.path.join(source_path, dictionary['normalised_oe_number'])
dictionary['reference number'] = record['Additional Information'].split('Representation of ')[1].split('|')[0].rstrip()
oe_dicts.append(dictionary)
except IndexError:
continue
try:
dictionary['parent'] = record['Additional Information'].split('Reproduction of ')[1].split('|')[0].rstrip()
except IndexError:
dictionary['parent'] = 'n/a'
return oe_dicts
def main(args_):
'''
Batch process packages by running accession.py and makepbcore.py
'''
args = parse_args(args_)
oe_list = []
if args.oe_csv:
if not args.filmo_csv:
print(' - batchaccession.py - ERROR\n - No -filmographic argument supplied. This is mandatory when using the -oe_csv option. \n - Exiting..')
sys.exit()
oe_csv_extraction = ififuncs.extract_metadata(args.oe_csv)
initial_oe_list = oe_csv_extraction[0]
oe_dicts = process_oe_csv(oe_csv_extraction, args.input)
# temp hack while we're performing both workflows
helper_csv = args.oe_csv
elif args.filmo_csv:
initial_oe_list = ififuncs.extract_metadata(args.filmo_csv)[0]
# temp hack while we're performing both workflows
helper_csv = args.filmo_csv
if args.oe_csv or args.filmo_csv:
for line_item in ififuncs.extract_metadata(helper_csv)[0]:
try:
oe_number = line_item['Object Entry'].lower()
except KeyError:
oe_number = line_item['OE No.'].lower()
# this transforms OE-#### to oe####
transformed_oe = oe_number[:2] + oe_number[3:]
oe_list.append(transformed_oe)
if not args.oe_csv:
# No need to ask for the reference number if the OE csv option is supplied.
# The assumption here is that the OE csv contains the reference numbers though.
if args.reference:
reference_number = get_filmographic_number(args.reference)
else:
reference_number = ififuncs.get_reference_number()
donor = ififuncs.ask_question('Who is the source of acquisition, as appears on the donor agreement? This will not affect Reproductions.')
depositor_reference = ififuncs.ask_question('What is the donor/depositor number? This will not affect Reproductions.')
reproduction_creator = ififuncs.ask_question('Who is the reproduction creator? This will not affect acquisitions. Enter n/a if not applicable')
acquisition_type = ififuncs.get_acquisition_type('')
user = ififuncs.get_user()
accession_number = get_number(args)
accession_digits = int(accession_number[3:])
if not args.oe_csv:
to_accession = initial_check(args, accession_digits, oe_list, reference_number)
else:
to_accession = {}
for oe_record in oe_dicts:
if os.path.isdir(oe_record['source_path']):
to_accession[oe_record['source_path']] = ['aaa' + str(accession_digits).zfill(4), oe_record['reference number'], oe_record['parent'], oe_record['donation_date']]
accession_digits += 1
for success in sorted(to_accession.keys()):
print('%s will be accessioned as %s' % (success, to_accession[success]))
register = accession.make_register()
if args.filmo_csv:
desktop_logs_dir = ififuncs.make_desktop_logs_dir()
if args.dryrun:
new_csv_filename = time.strftime("%Y-%m-%dT%H_%M_%S_DRYRUN_SHEET_PLEASE_DO_NOT_INGEST_JUST_IGNORE_COMPLETELY") + os.path.basename(args.filmo_csv)
else:
new_csv_filename = time.strftime("%Y-%m-%dT%H_%M_%S_") + os.path.basename(args.filmo_csv)
new_csv = os.path.join(desktop_logs_dir, new_csv_filename)
if not args.oe_csv:
filmographic_dict, headers = ififuncs.extract_metadata(args.filmo_csv)
for oe_package in to_accession:
for filmographic_record in filmographic_dict:
if os.path.basename(oe_package).upper()[:2] + '-' + os.path.basename(oe_package)[2:] == filmographic_record['Object Entry']:
filmographic_record['Filmographic URN'] = to_accession[oe_package][1]
get_filmographic_titles(to_accession, filmographic_dict)
with open(new_csv, 'w') as csvfile:
fieldnames = headers
# Removes Object Entry from headings as it's not needed in database.
del fieldnames[1]
writer = csv.DictWriter(csvfile, fieldnames=fieldnames)
writer.writeheader()
for i in filmographic_dict:
i.pop('Object Entry', None)
# Only include records that have reference numbers
if not i['Filmographic URN'] == '':
writer.writerow(i)
if not to_accession:
print('`/*** Exiting as there is no data to process. This is usually because:\n* Your OE register does not match the values\n* OR your "representation of: " values in the Object entry do not match to values in your filmographic CSV\n* OR your filmographic CSV does not contain values that match to the representation of values in the Object Entry CSV')
sys.exit()
filmographic_dict, headers = ififuncs.extract_metadata(args.filmo_csv)
for package in to_accession:
filmo = False
filmo_ref = to_accession[package][1]
for record in filmographic_dict:
if filmo_ref.upper() == record["Filmographic URN"]:
filmo = True
if filmo is False:
print('\n*** WARNING it appears that %s is not present in your filmographic CSV - proceeding will probably result in a crash' % filmo_ref)
if args.dryrun:
sys.exit()
proceed = ififuncs.ask_yes_no(
'Do you want to proceed?'
)
if args.oe_csv:
new_csv = args.filmo_csv
if proceed == 'Y':
for package in sorted(to_accession.keys(), key=natural_keys):
accession_cmd = [
package, '-user', user,
'-force',
'-number', to_accession[package][0],
'-reference', to_accession[package][1],
'-register', register,
'-filmo_csv', new_csv
]
for oe_record in oe_dicts:
if oe_record['source_path'] == package:
if not oe_record['format'].lower() == 'dcdm':
accession_cmd.append('-pbcore')
if len(to_accession[package]) == 4:
if not to_accession[package][2] == 'n/a':
accession_cmd.extend(['-acquisition_type', '13'])
if args.oe_csv:
accession_cmd.extend(['-parent', to_accession[package][2]])
accession_cmd.extend(['-reproduction_creator', reproduction_creator])
else:
accession_cmd.extend(['-parent', order.main(package)])
else:
accession_cmd.extend(['-donor', donor])
accession_cmd.extend(['-depositor_reference', depositor_reference])
accession_cmd.extend(['-acquisition_type', acquisition_type[2]])
print(to_accession[package][3])
accession_cmd.extend(['-donation_date', to_accession[package][3]])
print(accession_cmd)
accession.main(accession_cmd)
collated_pbcore = gather_metadata(args.input)
sorted_filepath = ififuncs.sort_csv(register, 'accession number')
print('\nA helper accessions register has been generated in order to help with registration - located here: %s' % sorted_filepath)
print('\nA modified filmographic CSV has been generated with added reference numbers - located here: %s' % new_csv)
print('\nA collated CSV consisting of each PBCore report has been generated for batch database import - located here: %s' % collated_pbcore)
if __name__ == '__main__':
main(sys.argv[1:])