-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomponent.py
204 lines (182 loc) · 8.86 KB
/
component.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
#import xml.etree.cElementTree as ET
from lxml import etree
import rdflib
import re
import sunburnt
from utils import *
from configs import *
from rdflib import Graph, URIRef, Namespace, Literal
from HTTP4Store import HTTP4Store
class Component(object):
"""
Defines record for EAD component part objects.
Contains 3 constuctors:
- __init__, which generates from an XML fragment, an Ead object, and an optional parent Component Object
- factory method to generate from RDF
- factory method to generate from SPARQL queries
Contains output methods for:
- Import to 4store via SPARQL
- Writing RDF to file
- Writing SOLR Index entries
- Stretch goal: Writing XML for Primo imput?
"""
def __init__(self, xfrag, eadob, *args):
"""Generates a component object from an xml fragment, an EAD object & option parent component"""
namespace = "{urn:isbn:1-931666-22-9}"
self.metadata = {
'arch:aat': [], 'arch:aatsub': [], 'arch:arrange': [], 'arch:bibref': [], 'arch:bioghist': [],
'arch:family': [], 'arch:fast': [], 'arch:lccorpname': [], 'arch:lcgenre': [], 'arch:lcgeo': [],
'arch:lcpers': [], 'arch:lcsh': [],'arch:lctitle': [], 'arch:localcorp': [], 'arch:localgenre': [],
'arch:localgeo': [], 'arch:localpers': [], 'arch:localsub': [], 'arch:occupation': [],
'arch:related': [], 'arch:restrict': [], 'arch:scope': [],'arch:sepmaterial': [], 'arch:webarch': [],
'arch:hasComponent': []
}
self.headinglist = []
self.headrootlist = []
self.components = []
self.metadata['dc:identifier'] = [eadob.metadata['dc:identifier'][0] + '-' + xfrag.get('id')]
self.metadata['dc:type'] = [xfrag.get("level")]
self.metadata['dct:title'] = [gettext(xfrag.find('{0}did/{0}unittitle'.format(namespace)))]
self.metadata['arch:findingaid'] = [eadob.metadata['arch:findingaid'][0]]
self.metadata['arch:inCollection'] = [eadob.metadata['dc:identifier'][0]]
#Redoing this is a straight link, no title...
#self.metadata['arch:inCollection'] = [eadob.metadata['dc:identifier'][0], eadob.metadata['dct:title'][0]]
#self.metadata['arch:inCollection'] = [eadob.metadata['dc:identifier'][0], eadob.metadata['dct:title'][0]]
#don't want titles in these , right? Wait... These should all be ids, but then I'll... Ugh. Pain in ass! Monkey-fucker!
#Actually, it's okay, because above example "inCollection" is actually 2 elements, not an element with 2 values...
#Works for unique elements like these (inColleciton, hasParent), but *not* for repeatables like arch:hasComponent
#TODO: 20130205: Can this shizzle be made a linkeylink?
#Okay, so this guy is actually just the direct parent if that's passed (for sub-objects...)
if args:
self.metadata['arch:hasParent'] = [args[0].metadata['dc:identifier'][0]]
#So, as above, I'm dropping the title portion so that they can be linked.
#self.metadata['arch:hasParent'] = [args[0].metadata['dc:identifier'][0], args[0].metadata['dct:title'][0]]
for element in xfrag:
tag = element.tag.replace(namespace, '')
if tag == "accessrestrict":
self.metadata[fieldrenamings[tag]] = []
for i in element.findall('{0}p'.format(namespace)):
self.metadata[fieldrenamings[tag]].append(gettext(i))
if tag == "arrangement":
self.metadata[fieldrenamings[tag]] = [gettext(element, ignore=[namespace+"head"], newline=[namespace+"item"])]
if tag == "bibliography":
self.metadata[fieldrenamings[tag]] = []
for i in element.findall('{0}bibref'.format(namespace)):
self.metadata[fieldrenamings[tag]].append(gettext(i, ignore=[namespace+"head"]))
if tag == "bioghist":
self.metadata[fieldrenamings[tag]].append(gettext(element))
if tag == "controlaccess":
for ca in element:
t = ca.tag.replace(namespace, '')
s = ca.get('source')
text = re.sub(r' \|[A-Za-z] ', ' -- ', gettext(ca))
if s == 'lcsh':
self.metadata[fieldrenamings[s]].extend(text.split(' -- '))
self.headinglist.append(text)
headroot = text.split(' -- ')[0].rstrip(".")
if headroot not in self.headrootlist: self.headrootlist.append(headroot)
#need to redo this so it utilizes "field renamings"
self.metadata[fieldrenamings[tag][t][s]].append(text)
if tag == 'dao':
href = element.get('{http://www.w3.org/1999/xlink}href')
self.metadata[fieldrenamings[tag]].append(gettext(element) + ": " + href)
if tag == 'did':
## TODO 20130204: Need to update this to deal with origentities...
didmd = procdid(element)[0]
#print "Monkey" + str(didmd)
self.metadata.update(didmd)
if tag == "relatedmaterial":
if element.xpath('//n:extref', namespaces={'n': 'urn:isbn:1-931666-22-9'}):
extref = element.xpath('//n:extref', namespaces={'n': 'urn:isbn:1-931666-22-9'})[0]
href = extref.get('{http://www.w3.org/1999/xlink}href') if '{http://www.w3.org/1999/xlink}href' in extref else ""
else:
href = ""
self.metadata[fieldrenamings[tag]].append(gettext(element, ignore=[namespace+"head"], newline=[namespace+"item", namespace+"extref"]) + " " + href)
if tag == 'scopecontent':
self.metadata[fieldrenamings[tag]].append(gettext(element, ignore=[namespace+"head"]))
if tag == 'separatedmaterial':
self.metadata[fieldrenamings[tag]].append(gettext(element, ignore=[namespace+"head"]))
if tag == 'userestrict':
self.metadata[fieldrenamings[tag]].append(gettext(element, ignore=[namespace+"head"]))
if tag == 'c' and 'level' in element.attrib:
component = Component(element, eadob, self)
# TODO Add this to field renamings!
self.metadata['arch:hasComponent'].append(component.metadata['dc:identifier'][0])
self.components.append(component)
def __solrRecord__(self):
record = {}
for sf in solrfields.itervalues():
if sf != 'TODO':
record[sf] = []
for k, v in self.metadata.iteritems():
if solrfields[k] != 'TODO':
for val in v:
if len(val) > 0:
if k == "arch:hasComponent": record[solrfields[k]].append("http://localhost:3000/catalog/" + val)
elif k == "arch:hasParent": record[solrfields[k]].append("http://localhost:3000/catalog/" + val)
elif k == "arch:inCollection": record[solrfields[k]].append("http://localhost:3000/catalog/" + val)
else: record[solrfields[k]].append(val)
authors = self.metadata['arch:corpcreator'] + self.metadata['arch:perscreator']
if len(authors) > 0: record['author_display'] = "; ".join(authors)
record['title_display'] = self.metadata['dct:title']
record['type_facet'] = "Finding Aid Component / Part"
#if this finds dupes, try the next version:
#if len(self.metadata['dct:title']) > 0: record['title_display'] = self.metadata['dct:title'].join("; ")
for k, v in record.items():
if len(v) == 0:
del record[k]
return record
def makeSolr(self):
"""Sends SOLR Updates based on current schema"""
s = sunburnt.SolrInterface('http://localhost:8983/solr')
record = self.__solrRecord__()
s.add(record)
s.commit()
for c in self.components:
c.makeSolr()
def makeGraph(self):
"""Generates an internal RDF Graph of the Component Object"""
''' TODO: Should this be private?
Also, currently using Graph rather than ConjunectiveGraph because I want to persist my graph IDs:
https://rdflib.readthedocs.org/en/latest/graphs_bnodes.html
But it's possible that I want to do establish the identifiers at time of 4store persist or serialization?
Otherwise I'm naming this thing each time I graph an EAD instance, which is *not* my goal, no?
'''
self.graph = rdflib.Graph(identifier="http://chrpr.com/data/ead.rdf")
uri = URIRef("http://chrpr.com/data/" + str(self.metadata["dc:identifier"][0]) + ".rdf")
namespaces = {
"dc": Namespace("http://purl.org/dc/elements/1.1/"),
"dct": Namespace("http://purl.org/dc/terms/"),
"arch": Namespace("http://chrpr.com/arch/")
}
curies = { "dc": "DC", "dct": "DCTERMS", "arch": "ARCH" }
self.graph.bind("dc", "http://purl.org/dc/elements/1.1/")
self.graph.bind("dct", "http://purl.org/dc/terms/")
self.graph.bind("arch", "http://chrpr.com/arch/")
for k, v, in self.metadata.iteritems():
p = namespaces[k.split(":")[0]][k.split(":")[1]]
#ns = curies[k.split(":")[0]]
#p = ns[k.split(":")[1]]
#p = curies[k.split(":")[0]][k.split(":")[1]]
if len(v) > 0:
for data in v:
self.graph.add([uri, p, Literal(data, lang='en') ])
#print len(self.graph)
#print self.graph.serialize(format="turtle")
def output(self, format="turtle"):
if not hasattr(self, "graph"):
self.makeGraph()
of = "rdf/" + str(self.metadata["dc:identifier"][0]) + ".ttl"
#of2 = "rdf/" + self.metadata['arch:inCollection'][0] + "-long.ttl"
self.graph.serialize(format=format, destination = of)
for c in self.components:
c.output()
def fourstore(self):
if not hasattr(self, "graph"):
self.makeGraph()
turtle = self.graph.serialize(format="turtle")
store = HTTP4Store('http://localhost:8080')
#print turtle
r = store.append_graph("http://chrpr.net/data/ead", turtle, "turtle")
for c in self.components:
c.fourstore()