forked from mokko/MpApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmink.py
511 lines (446 loc) · 17.7 KB
/
mink.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
"""
mink.py: Commandline frontend for MpApi.py
CLI USAGE
cd projectData
mink.py -j job
CONFIGURATION
credentials.py # put it out of harm's way
jobs.dsl # defines/describes multiple jobs; expected in project dir
DIR STRUCTURE
projectData # <-- use it as working directory (pwd)
ajob/20210401 # <-- project dir
report.log
variousFiles.xml
...
credentials.py # use protection (e.g. .gitignore)
jobs.dsl # expected in pwd
DSL COMMANDs
all : chain together several jobs
chunk : paginated version of getPack
getItem : save a single item to disk
getPack : for a single id, get multi-type info (Objects, Multimedia, Persons...)
pack : pack together several (clean) files
attachments: downloads attachments for given module data
MPAPI CLASSES
SEARCH -> CLIENT -> MODULE
SEARCH -> SAR -> MODULE
mink: user interface, writes files
search : makes query objects
client : low-level client
sar : specialized higher level client
module : response data
mink2 : CLI frontend
New
* chunks are now zipped to save disk space 20221226
* Experimenting with sar2 for a cleaner interface. 20220116
* I eliminated some DSL commands that I haven't been using and integrated clean into join 20220116
* TODO: getPack ends now with a cleaned join file, so programs that expect clean file need to change
* 20221210: use separate command getAttachments to d/l attachments
"""
import datetime
import logging
from lxml import etree # necessary?
import os
from pathlib import Path
import requests
import sys
from typing import NewType, Optional, Union
from mpapi.chunky import Chunky
from mpapi.client import MpApi
from mpapi.constants import NSMAP
from mpapi.module import Module
from mpapi.sar import Sar
from mpapi.search import Search
from zipfile import ZipFile, ZIP_LZMA
Since = Optional[str]
ETparser = etree.XMLParser(remove_blank_text=True)
allowed_commands = ["all", "attachments", "chunk", "getItem", "getPack", "pack"]
chunkSize = 1000
class Mink:
def __init__(
self, *, conf: str, job: str, baseURL: str, user: str, pw: str
) -> None:
self.sar = Sar(baseURL=baseURL, user=user, pw=pw)
self.api = MpApi(baseURL=baseURL, user=user, pw=pw)
self.chunker = Chunky(chunkSize=chunkSize, baseURL=baseURL, pw=pw, user=user)
self.conf = conf
self._parse_conf(job=job)
def info(self, msg: str) -> None:
logging.info(msg)
print(msg)
#
# MINK's DSL COMMANDs
#
def all(self, args: list) -> None:
self._parse_conf(job=args[0])
def attachments(self, args: list) -> None:
"""
Gets (downloads) attachments for module of certain types. Usually writes
attachments to path as follows:
pix_{label}/{mulId}.{ext}
Expects:
* arg[0]: type (approval, exhibit, group or loc)
* arg[1]: id of the respective type
* arg[2]: label (used for filenames) or "chunk" to trigger chunk mode
* arg[3]: timestamp (optional); if specified, d/l attachents to subdir pix_update
It relies on user having downloaded the respective data beforehand,i.e.
attachments will not download anything for you; instead it will work with
what you have already downloaded.
mink's dsl:
getPack group 123 mylabel
attachments group 123 mylabel
chunk group 123
attachments group 123 chunk
Todo: how does this work when you use updates (since parameter?)
"""
# print(f"***{args}")
Type = args[0]
ID = args[1]
label = args[2]
try:
since = args[3]
except:
since = None
# determine target dir for pictures
if since is None:
pix_dir = Path(f"{self.pix_dir}_{label}")
else:
pix_dir = Path(f"{self.pix_dir}_update")
if not pix_dir.exists():
pix_dir.mkdir()
print(f" about to check attachments; saving to {pix_dir}")
if label == "chunk":
no = 1
while (
chunk_fn := self._chunkPath(Type=Type, ID=ID, no=no, suffix=".zip")
).exists():
print(f" looking for multimedia info at {chunk_fn}")
self._getAttachments(From=chunk_fn, pix_dir=pix_dir)
no += 1
else:
# pretty dirty: assumes that getMedia has been done before
# todo - we could trigger a new get if this file doesn't exist
# or we trust the user to do the right thing?
mm_fn = self.parts_dir / f"{label}-Multimedia-{Type}{ID}.xml"
print(f" looking for Multimedia info at {mm_fn}")
self._getAttachments(From=mm_fn, pix_dir=pix_dir)
def chunk(self, args: list) -> None:
"""
New chunky version of getPack
Expects
* args: a list with arguments that it passes along;
* args[0]: type of the ID (approval, exhibit, group, loc, query)
* args[1]: ID
* args[2]: target type (new, only optional when since is not used)
* args[3]: since date (optional)
mink's dsl
chunk group 123 [target] [since]
NEW
* If last run was aborted, you can restart where you left off, so exisiting chunks
are not downloaded again. Target is only actually needed for savedQueries.
* You can use queries that target something else than objects
"""
Type: str = args[0]
ID: int = args[1]
try:
target: str = args[2]
except:
target: str = "Object" # default value
try:
since: Since = args[3]
except:
since = None
print(
f" CHUNKER: {Type}-{ID} since:{since} chunkSize: {self.chunker.chunkSize} "
)
# ignore chunks already on disk
no, offset = self._fastforward(Type=Type, ID=ID, suffix=".zip")
print(f" fast forwarded to chunk no {no} with offset {offset}")
# how can i know if this is the last chunk?
# Test if the last chunk has less items than chunkSize OR
# Do another request to RIA and see if it comes back empty?
# we go the second route
# getByType returns Module, not ET
for chunk in self.chunker.getByType(
ID=ID,
Type=Type,
target=target,
since=since,
offset=offset,
):
if chunk: # Module is True if >0 items
# print(f"###chunk size:{chunk.actualSize(module='Object')}")
chunk_fn = self._chunkPath(Type=Type, ID=ID, no=no, suffix=".xml")
chunk.clean()
self.info(f"zipping chunk {chunk_fn}")
chunk.toZip(path=chunk_fn)
chunk.validate()
no += 1
else:
print("Chunk empty; we're at the end")
def getItem(self, args: list) -> Module:
"""
gets a single items. Caches item on disk at
{project_dir}/{id}.xml
and makes new http request only if cache doesn't exist.
Expects
* args: list with two arguments
* args[0] module type
* args[1] id
returns
* writes item to disk as side-effect
mink's dsl
getItem group 123
"""
module = args[0]
Id = args[1]
out_fn = self.project_dir / args[1] + ".xml"
if out_fn.exists():
print(f" Item from cache {out_fn}")
return Module(file=out_fn)
else:
self.info(f"getItem module={module} Id={Id} out_fn={out_fn}")
r = self.api.getItem(module=module, id=Id)
m = Module(xml=r.text)
m.toFile(path=out_fn)
return m
def getPack(self, args: list) -> None:
"""
Download object and related information (attachment, media, people), join data
together and clean it.
Expects
* args: a list with arguments that it passes along;
* arg[0]: type (approval, exhibit or group)
* arg[1]: id
* arg[2]: label
* arg[3]: since date, optional
Returns
* None
mink's dsl
getPack group 123 MyLabel [since]
"""
print(f"GET PACK {args}")
join_fn = self.join(args) # write join file, includes validation
# if we need to return M, we need to load it from join_fn
def join(self, args: list) -> Path:
Type = args[0]
Id = args[1]
label = args[2]
try:
since = args[4]
except:
since = None
# let's only make parts dir if we need it...
if not self.parts_dir.exists():
self.parts_dir.mkdir(parents=True)
# parts_dir now made during _mkdirs()
join_fn = self.project_dir / f"{label}-join-{Type}{Id}.xml"
if join_fn.exists():
print(f" join from cache {join_fn}")
m = Module(file=join_fn)
else:
self.info(f" joining modules, saving to {join_fn}")
# module for target and type refers to the type of selection
m = (
self._getPart(
module="Person", Id=Id, Type=Type, label=label, since=since
)
+ self._getPart(
module="Multimedia", Id=Id, Type=Type, label=label, since=since
)
+ self._getPart(
module="Object", Id=Id, Type=Type, label=label, since=since
)
)
if Type == "exhibit":
print(" d: about to get exhibit...")
m += self._getPart(
module="Exhibition", Id=Id, Type=Type, label=label, since=since
) + self._getPart(
module="Registrar", Id=Id, Type=Type, label=label, since=since
)
print(" d: start cleaning")
m.clean()
m.validate()
m.toFile(path=join_fn)
return join_fn
def pack(self, args: list) -> None:
"""
Pack (or join) all clean files into one bigger package. We act on all
*-join-*.xml files in the current project directory and save to
$label$date.xml in current working directory.
mink's dsl
pack
"""
label = str(self.project_dir.parent.name)
date = str(self.project_dir.name)
pack_fn = self.project_dir / f"../{label}{date}.xml".resolve()
if pack_fn.exists():
print(f"Pack file exists already, no overwrite: {pack_fn}")
else:
print(f"Making new pack file: {pack_fn}")
m = Module()
for in_fn in self.project_dir.glob("*-join-*.xml"):
print(f"Packing file {in_fn}")
m = m + Module(file=in_fn)
m.toFile(path=pack_fn)
#
# HELPERS
#
def _chunkPath(self, *, Type, ID, no, suffix):
return self.project_dir / f"{Type}{ID}-chunk{no}{suffix}"
def _fastforward(self, *, Type, ID, suffix):
"""
Given the usual params for a chunk filename (i.e. Type,ID, suffix), we loop
thru existing chunk files and return number of the last existing chunk file as
well as the corresponding offset.
"""
no = 1
while (
chunk_fn := self._chunkPath(Type=Type, ID=ID, no=no, suffix=suffix)
).exists():
no += 1
else:
if no > 1:
no -= 1
offset = (no - 1) * self.chunker.chunkSize
return no, offset
# print(f" next chunk {no}; offset:{offset}")
def _getAttachments(
self, *, From: Path, pix_dir: Path, since: Optional[str] = None
):
"""
Save all attachments from one zml file. File can be xml or zip file.
New:
- chunks are expected to be zipped.
"""
short_path = Path(From.name).with_suffix(".xml")
if From.suffix == ".zip":
with ZipFile(From, "r") as zippy:
ET = etree.parse(zippy.open(str(short_path)))
FromM = Module(tree=ET)
else:
FromM = Module(file=From)
try:
expected = self.sar.saveAttachments(data=FromM, adir=pix_dir, since=since)
except Exception as e:
self.info("Error during saveAttachments")
raise e
# do we want to delete those files that are no longer attached?
# for img in os.listdir(pix_dir):
# img = pix_dir.joinpath(img) # need resolve here
# if img not in expected:
# print(f"image no longer attached, removing {img}")
# os.remove(img)
# currently we dont get attachments that have changed, but keep the same mulId,
# that case should be rare
def _getPart(
self, *, Id: int, label: str, module: str, Type: str, since: str = None
) -> Module:
"""
Gets a set of moduleItems depending on requested module type. Caches
results in a file and returns from file cache if that exists already.
Expects:
* Type: query type (approval, exhibit, group or loc)
* Id: Id of that query type
* module: requested target module type
* label: a label to be used as part of a filename (for cache)
* since: dateTime (optional); if provided only get items newer than
that date
Returns:
* Module objct containing the data
"""
fn = self.parts_dir / f"{label}-{module}-{Type}{Id}.xml"
if fn.exists():
print(f" {module} from cache {fn}")
return Module(file=fn)
else:
# print (f"GH TYPE {Type}")
self.info(f" {module} from remote, saving to {fn}")
if Type == "approval":
m = self.sar.getByApprovalGrp(Id=Id, module=module, since=since)
elif Type == "exhibit":
# print ("***GH Exhibit")
m = self.sar.getByExhibit(Id=Id, module=module, since=since)
elif Type == "group":
m = self.sar.getByGroup(Id=Id, module=module, since=since)
elif Type == "loc":
m = self.sar.getByLocation(Id=Id, module=module, since=since)
else:
raise TypeError("UNKNOWN type")
m.toFile(path=fn)
return m
def _init_log(self) -> None:
now = datetime.datetime.now()
log_fn = Path(self.project_dir).joinpath(now.strftime("%Y%m%d") + ".log")
logging.basicConfig(
datefmt="%Y%m%d %I:%M:%S %p",
filename=log_fn,
filemode="a", # append now since we're starting a new folder
# every day now anyways.
level=logging.DEBUG,
format="%(asctime)s: %(message)s",
)
def _mkdirs(self) -> None:
date: str = datetime.datetime.today().strftime("%Y%m%d")
project_dir: Path = Path(self.job) / date
if not project_dir.is_dir():
Path.mkdir(project_dir, parents=True)
self.project_dir = project_dir
self.pix_dir = project_dir.parent / "pix"
# We dont need parts dir when in chunk mode, so we're making it later
self.parts_dir = self.project_dir / "parts"
def _parse_conf(self, *, job: str) -> None:
"""
For a job specified on command line, executes the dsl commands in that job.
"""
self.job = job # job requested to execute from command line
self.current_job = None # definition in conf file
args: list = []
any_job: bool = False
# pretty ugly dsl parser...
with open(self.conf, mode="r") as file:
c = 0 # line counter
for line in file:
c += 1
uncomment = line.split("#", 1)[0].strip()
if uncomment.isspace() or not uncomment:
continue
line = line.expandtabs(4)
indent_lvl = int((len(line) - len(line.lstrip()) + 4) / 4)
parts: list[str] = uncomment.split()
if indent_lvl == 1: # job label
if not parts[0].endswith(":"):
raise SyntaxError(
f"Job label has to end with colon: line {c} {parts[0]}"
)
self.current_job = parts[0][:-1]
if self.current_job == job:
right_job = True
any_job = True
self._mkdirs() # also sets project_dir etc.
self._init_log()
self.info(f"Project dir: {self.project_dir}")
else:
self.project_dir: Path = Path(".")
right_job = False
continue
elif indent_lvl == 2:
cmd: str = parts[0]
if len(parts) > 1:
args = parts[1:]
else:
args = []
if right_job is True:
# print(f"**{cmd} {args}")
if cmd in allowed_commands:
getattr(self, cmd)(args)
else:
raise SyntaxError(f"ERROR: Command {cmd} not recogized")
elif indent_lvl > 2:
print(f"indent lvl: {indent_lvl} {parts}")
raise SyntaxError("ERROR: Too many indents in dsl file")
if any_job is False:
print(
f"WARNING: User-supplied job didn't match any job from the definition file!"
)