DC fixups for Pictures
[librarian.git] / librarian / dcparser.py
1 # -*- coding: utf-8 -*-
2 #
3 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 #
6 from xml.parsers.expat import ExpatError
7 from datetime import date
8 import time
9
10 from librarian import (ValidationError, NoDublinCore, ParseError, DCNS, RDFNS,
11                        WLURI)
12
13 import lxml.etree as etree # ElementTree API using libxml2
14 from lxml.etree import XMLSyntaxError
15
16
17 # ==============
18 # = Converters =
19 # ==============
20 class Person(object):
21     """Single person with last name and a list of first names."""
22     def __init__(self, last_name, *first_names):
23         self.last_name = last_name
24         self.first_names = first_names
25
26     @classmethod
27     def from_text(cls, text):
28         parts = [ token.strip() for token in text.split(',') ]
29         if len(parts) == 1:
30             surname = parts[0]
31             names = []
32         elif len(parts) != 2:
33             raise ValueError("Invalid person name. There should be at most one comma: \"%s\"." % text)
34         else:
35             surname = parts[0]
36             if len(parts[1]) == 0:
37                 # there is no non-whitespace data after the comma
38                 raise ValueError("Found a comma, but no names given: \"%s\" -> %r." % (text, parts))
39             names = [ name for name in parts[1].split() if len(name) ] # all non-whitespace tokens
40         return cls(surname, *names)
41
42     def readable(self):
43         return u" ".join(self.first_names + (self.last_name,))
44
45     def __eq__(self, right):
46         return self.last_name == right.last_name and self.first_names == right.first_names
47
48     def __cmp__(self, other):
49         return cmp((self.last_name, self.first_names), (other.last_name, other.first_names))
50
51     def __hash__(self):
52         return hash((self.last_name, self.first_names))
53
54     def __unicode__(self):
55         if len(self.first_names) > 0:
56             return '%s, %s' % (self.last_name, ' '.join(self.first_names))
57         else:
58             return self.last_name
59
60     def __repr__(self):
61         return 'Person(last_name=%r, first_names=*%r)' % (self.last_name, self.first_names)
62
63 def as_date(text):
64     try:
65         try:
66             t = time.strptime(text, '%Y-%m-%d')
67         except ValueError:
68             t = time.strptime(text, '%Y')
69         return date(t[0], t[1], t[2])
70     except ValueError, e:
71         raise ValueError("Unrecognized date format. Try YYYY-MM-DD or YYYY.")
72
73 def as_person(text):
74     return Person.from_text(text)
75
76 def as_unicode(text):
77     if isinstance(text, unicode):
78         return text
79     else:
80         return text.decode('utf-8')
81
82 class Field(object):
83     def __init__(self, uri, attr_name, type=as_unicode, multiple=False, salias=None, **kwargs):
84         self.uri = uri
85         self.name = attr_name
86         self.validator = type
87         self.multiple = multiple
88         self.salias = salias
89
90         self.required = kwargs.get('required', True) and not kwargs.has_key('default')
91         self.default = kwargs.get('default', [] if multiple else [None])
92
93     def validate_value(self, val):
94         try:
95             if self.multiple:
96                 if self.validator is None:
97                     return val
98                 return [ self.validator(v) if v is not None else v for v in val ]
99             elif len(val) > 1:
100                 raise ValidationError("Multiple values not allowed for field '%s'" % self.uri)
101             elif len(val) == 0:
102                 raise ValidationError("Field %s has no value to assign. Check your defaults." % self.uri)
103             else:
104                 if self.validator is None or val[0] is None:
105                     return val[0]
106                 return self.validator(val[0])
107         except ValueError, e:
108             raise ValidationError("Field '%s' - invald value: %s" % (self.uri, e.message))
109
110     def validate(self, fdict):
111         if not fdict.has_key(self.uri):
112             if not self.required:
113                 f = self.default
114             else:
115                 raise ValidationError("Required field %s not found" % self.uri)
116         else:
117             f = fdict[self.uri]
118
119         return self.validate_value(f)
120
121     def __eq__(self, other):
122         if isinstance(other, Field) and other.name == self.name:
123             return True
124         return False
125
126
127 class DCInfo(type):
128     def __new__(meta, classname, bases, class_dict):
129         fields = class_dict['FIELDS']
130
131         for base in bases[::-1]:
132             if hasattr(base, 'FIELDS'):
133                 for field in base.FIELDS[::-1]:
134                     try:
135                         fields.index(field)
136                     except ValueError:
137                         fields = (field,) + fields
138
139         class_dict['FIELDS'] = fields
140         return super(DCInfo, meta).__new__(meta, classname, bases, class_dict)
141
142
143 class WorkInfo(object):
144     __metaclass__ = DCInfo
145
146     FIELDS = (
147         Field( DCNS('creator'), 'author', as_person),
148         Field( DCNS('title'), 'title'),
149         Field( DCNS('type'), 'type', required=False, multiple=True),
150
151         Field( DCNS('contributor.editor'), 'editors', \
152             as_person, salias='editor', multiple=True, default=[]),
153         Field( DCNS('contributor.technical_editor'), 'technical_editors',
154             as_person, salias='technical_editor', multiple=True, default=[]),
155
156         Field( DCNS('date'), 'created_at', as_date),
157         Field( DCNS('date.pd'), 'released_to_public_domain_at', as_date, required=False),
158         Field( DCNS('publisher'), 'publisher'),
159
160         Field( DCNS('language'), 'language'),
161         Field( DCNS('description'), 'description', required=False),
162
163         Field( DCNS('source'), 'source_name', required=False),
164         Field( DCNS('source.URL'), 'source_url', required=False),
165         Field( DCNS('identifier.url'), 'url', WLURI),
166
167         Field( DCNS('rights.license'), 'license', required=False),
168         Field( DCNS('rights'), 'license_description'),
169
170         )
171
172     @classmethod
173     def from_string(cls, xml):
174         from StringIO import StringIO
175         return cls.from_file(StringIO(xml))
176
177     @classmethod
178     def from_file(cls, xmlfile):
179         desc_tag = None
180         try:
181             iter = etree.iterparse(xmlfile, ['start', 'end'])
182             for (event, element) in iter:
183                 if element.tag == RDFNS('RDF') and event == 'start':
184                     desc_tag = element
185                     break
186
187             if desc_tag is None:
188                 raise NoDublinCore("DublinCore section not found. \
189                     Check if there are rdf:RDF and rdf:Description tags.")
190
191             # continue 'till the end of RDF section
192             for (event, element) in iter:
193                 if element.tag == RDFNS('RDF') and event == 'end':
194                     break
195
196             # if there is no end, Expat should yell at us with an ExpatError
197
198             # extract data from the element and make the info
199             return cls.from_element(desc_tag)
200         except XMLSyntaxError, e:
201             raise ParseError(e)
202         except ExpatError, e:
203             raise ParseError(e)
204
205     @classmethod
206     def from_element(cls, rdf_tag):
207         # the tree is already parsed, so we don't need to worry about Expat errors
208         field_dict = {}
209         desc = rdf_tag.find(".//" + RDFNS('Description'))
210
211         if desc is None:
212             raise NoDublinCore("No DublinCore section found.")
213
214         for e in desc.getchildren():
215             fv = field_dict.get(e.tag, [])
216             fv.append(e.text)
217             field_dict[e.tag] = fv
218
219         print field_dict
220         return cls(desc.attrib, field_dict)
221
222     def __init__(self, rdf_attrs, dc_fields):
223         """rdf_attrs should be a dictionary-like object with any attributes of the RDF:Description.
224         dc_fields - dictionary mapping DC fields (with namespace) to list of text values for the
225         given field. """
226
227         self.about = rdf_attrs.get(RDFNS('about'))
228         self.fmap = {}
229
230         for field in self.FIELDS:
231             value = field.validate( dc_fields )
232             setattr(self, 'prop_' + field.name, value)
233             self.fmap[field.name] = field
234             if field.salias: self.fmap[field.salias] = field
235
236         self.validate()
237
238     def validate(self):
239         self.url.validate_language(self.language)
240
241     def __getattribute__(self, name):
242         try:
243             field = object.__getattribute__(self, 'fmap')[name]
244             value = object.__getattribute__(self, 'prop_'+field.name)
245             if field.name == name:
246                 return value
247             else: # singular alias
248                 if not field.multiple:
249                     raise "OUCH!! for field %s" % name
250
251                 return value[0]
252         except (KeyError, AttributeError):
253             return object.__getattribute__(self, name)
254
255     def __setattr__(self, name, newvalue):
256         try:
257             field = object.__getattribute__(self, 'fmap')[name]
258             if field.name == name:
259                 object.__setattr__(self, 'prop_'+field.name, newvalue)
260             else: # singular alias
261                 if not field.multiple:
262                     raise "OUCH! while setting field %s" % name
263
264                 object.__setattr__(self, 'prop_'+field.name, [newvalue])
265         except (KeyError, AttributeError):
266             return object.__setattr__(self, name, newvalue)
267
268     def update(self, field_dict):
269         """Update using field_dict. Verify correctness, but don't check if all
270         required fields are present."""
271         for field in self.FIELDS:
272             if field_dict.has_key(field.name):
273                 setattr(self, field.name, field_dict[field.name])
274
275     def to_etree(self, parent = None):
276         """XML representation of this object."""
277         #etree._namespace_map[str(self.RDF)] = 'rdf'
278         #etree._namespace_map[str(self.DC)] = 'dc'
279
280         if parent is None:
281             root = etree.Element(RDFNS('RDF'))
282         else:
283             root = parent.makeelement(RDFNS('RDF'))
284
285         description = etree.SubElement(root, RDFNS('Description'))
286
287         if self.about:
288             description.set(RDFNS('about'), self.about)
289
290         for field in self.FIELDS:
291             v = getattr(self, field.name, None)
292             if v is not None:
293                 if field.multiple:
294                     if len(v) == 0: continue
295                     for x in v:
296                         e = etree.Element(field.uri)
297                         if x is not None:
298                             e.text = unicode(x)
299                         description.append(e)
300                 else:
301                     e = etree.Element(field.uri)
302                     e.text = unicode(v)
303                     description.append(e)
304
305         return root
306
307     def serialize(self):
308         rdf = {}
309         rdf['about'] = { 'uri': RDFNS('about'), 'value': self.about }
310
311         dc = {}
312         for field in self.FIELDS:
313             v = getattr(self, field.name, None)
314             if v is not None:
315                 if field.multiple:
316                     if len(v) == 0: continue
317                     v = [ unicode(x) for x in v if x is not None ]
318                 else:
319                     v = unicode(v)
320
321                 dc[field.name] = {'uri': field.uri, 'value': v}
322         rdf['fields'] = dc
323         return rdf
324
325     def to_dict(self):
326         result = {'about': self.about}
327         for field in self.FIELDS:
328             v = getattr(self, field.name, None)
329
330             if v is not None:
331                 if field.multiple:
332                     if len(v) == 0: continue
333                     v = [ unicode(x) for x in v if x is not None ]
334                 else:
335                     v = unicode(v)
336                 result[field.name] = v
337
338             if field.salias:
339                 v = getattr(self, field.salias)
340                 if v is not None: result[field.salias] = unicode(v)
341
342         return result
343
344
345 class BookInfo(WorkInfo):
346     FIELDS = (
347         Field( DCNS('audience'), 'audiences', salias='audience', multiple=True,
348                 required=False),
349
350         Field( DCNS('subject.period'), 'epochs', salias='epoch', multiple=True),
351         Field( DCNS('subject.type'), 'kinds', salias='kind', multiple=True),
352         Field( DCNS('subject.genre'), 'genres', salias='genre', multiple=True),
353                 
354         Field( DCNS('contributor.translator'), 'translators', \
355             as_person,  salias='translator', multiple=True, default=[]),
356         Field( DCNS('relation.hasPart'), 'parts', WLURI, multiple=True, required=False),
357     )
358
359
360 def parse(file_name, cls=BookInfo):
361     return cls.from_file(file_name)