2017-01-29 20:06:08 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
2016-06-18 13:50:32 +00:00
|
|
|
|
|
|
|
from lxml import etree
|
|
|
|
import os
|
|
|
|
import uploader
|
2017-02-04 13:28:18 +00:00
|
|
|
import StringIO
|
2016-06-18 13:50:32 +00:00
|
|
|
|
2017-02-15 17:09:17 +00:00
|
|
|
|
2017-02-04 13:28:18 +00:00
|
|
|
def get_fb2_info(tmp_file_path, original_file_extension):
|
2016-06-18 13:50:32 +00:00
|
|
|
|
|
|
|
ns = {
|
2016-12-23 08:53:39 +00:00
|
|
|
'fb': 'http://www.gribuser.ru/xml/fictionbook/2.0',
|
|
|
|
'l': 'http://www.w3.org/1999/xlink',
|
2016-06-18 13:50:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fb2_file = open(tmp_file_path)
|
|
|
|
tree = etree.fromstring(fb2_file.read())
|
|
|
|
|
|
|
|
authors = tree.xpath('/fb:FictionBook/fb:description/fb:title-info/fb:author', namespaces=ns)
|
2016-12-23 08:53:39 +00:00
|
|
|
|
2016-06-18 13:50:32 +00:00
|
|
|
def get_author(element):
|
2017-02-15 17:09:17 +00:00
|
|
|
last_name = element.xpath('fb:last-name/text()', namespaces=ns)
|
2017-02-04 13:28:18 +00:00
|
|
|
if len(last_name):
|
2017-02-15 17:09:17 +00:00
|
|
|
last_name = last_name[0]
|
2017-02-04 13:28:18 +00:00
|
|
|
else:
|
2017-02-15 17:09:17 +00:00
|
|
|
last_name = u''
|
|
|
|
middle_name = element.xpath('fb:middle-name/text()', namespaces=ns)
|
2017-02-04 13:28:18 +00:00
|
|
|
if len(middle_name):
|
2017-02-15 17:09:17 +00:00
|
|
|
middle_name = middle_name[0]
|
2017-02-04 13:28:18 +00:00
|
|
|
else:
|
2017-02-15 17:09:17 +00:00
|
|
|
middle_name = u''
|
|
|
|
first_name = element.xpath('fb:first-name/text()', namespaces=ns)
|
2017-02-04 13:28:18 +00:00
|
|
|
if len(first_name):
|
2017-02-15 17:09:17 +00:00
|
|
|
first_name = first_name[0]
|
2017-02-04 13:28:18 +00:00
|
|
|
else:
|
2017-02-15 17:09:17 +00:00
|
|
|
first_name = u''
|
|
|
|
return first_name + ' ' + middle_name + ' ' + last_name
|
2017-02-04 13:28:18 +00:00
|
|
|
|
|
|
|
author = unicode(", ".join(map(get_author, authors)))
|
|
|
|
|
|
|
|
title = tree.xpath('/fb:FictionBook/fb:description/fb:title-info/fb:book-title/text()', namespaces=ns)
|
|
|
|
if len(title):
|
2017-02-15 17:09:17 +00:00
|
|
|
title = unicode(title[0])
|
2017-02-04 13:28:18 +00:00
|
|
|
else:
|
2017-02-15 17:09:17 +00:00
|
|
|
title = u''
|
2017-02-04 13:28:18 +00:00
|
|
|
description = tree.xpath('/fb:FictionBook/fb:description/fb:publish-info/fb:book-name/text()', namespaces=ns)
|
|
|
|
if len(description):
|
2017-02-15 17:09:17 +00:00
|
|
|
description = unicode(description[0])
|
2017-02-04 13:28:18 +00:00
|
|
|
else:
|
2017-02-15 17:09:17 +00:00
|
|
|
description = u''
|
2016-06-18 13:50:32 +00:00
|
|
|
|
|
|
|
return uploader.BookMeta(
|
2016-12-23 08:53:39 +00:00
|
|
|
file_path=tmp_file_path,
|
|
|
|
extension=original_file_extension,
|
2017-02-04 13:28:18 +00:00
|
|
|
title=title.encode('utf-8').decode('utf-8'),
|
|
|
|
author=author.encode('utf-8').decode('utf-8'),
|
2016-12-23 08:53:39 +00:00
|
|
|
cover=None,
|
|
|
|
description=description,
|
|
|
|
tags="",
|
|
|
|
series="",
|
2016-06-18 13:50:32 +00:00
|
|
|
series_id="")
|