2016-11-06 04:24:43 +00:00
|
|
|
import helpers
|
|
|
|
|
|
|
|
def album(a, minimal=False):
|
|
|
|
j = {
|
|
|
|
'id': a.id,
|
|
|
|
'description': a.description,
|
|
|
|
'title': a.title,
|
|
|
|
}
|
|
|
|
if not minimal:
|
|
|
|
j['photos'] = [photo(p) for p in a.photos()]
|
|
|
|
j['parent'] = a.parent()
|
|
|
|
j['sub_albums'] = [child.id for child in a.children()]
|
|
|
|
|
|
|
|
return j
|
|
|
|
|
|
|
|
def photo(p, include_albums=True, include_tags=True):
|
|
|
|
tags = p.tags()
|
|
|
|
tags.sort(key=lambda x: x.name)
|
|
|
|
j = {
|
|
|
|
'id': p.id,
|
|
|
|
'extension': p.extension,
|
|
|
|
'width': p.width,
|
|
|
|
'height': p.height,
|
|
|
|
'ratio': p.ratio,
|
|
|
|
'area': p.area,
|
|
|
|
'bytes': p.bytes,
|
|
|
|
'duration_str': helpers.seconds_to_hms(p.duration) if p.duration is not None else None,
|
|
|
|
'duration': p.duration,
|
2016-11-07 02:00:30 +00:00
|
|
|
'bytes_str': p.bytestring(),
|
2016-11-06 04:24:43 +00:00
|
|
|
'has_thumbnail': bool(p.thumbnail),
|
|
|
|
'created': p.created,
|
|
|
|
'filename': p.basename,
|
|
|
|
'mimetype': p.mimetype(),
|
|
|
|
}
|
|
|
|
if include_albums:
|
|
|
|
j['albums'] = [album(a, minimal=True) for a in p.albums()]
|
|
|
|
|
|
|
|
if include_tags:
|
|
|
|
j['tags'] = [tag(t) for t in tags]
|
|
|
|
|
|
|
|
return j
|
|
|
|
|
|
|
|
def tag(t):
|
|
|
|
j = {
|
|
|
|
'id': t.id,
|
|
|
|
'name': t.name,
|
|
|
|
'qualified_name': t.qualified_name(),
|
|
|
|
}
|
2016-12-16 11:27:39 +00:00
|
|
|
return j
|