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 uploader
|
2017-11-30 15:49:46 +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):
|
2018-08-04 15:08:32 +00:00
|
|
|
last_name = last_name[0].encode('utf-8')
|
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):
|
2018-08-04 15:08:32 +00:00
|
|
|
middle_name = middle_name[0].encode('utf-8')
|
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):
|
2018-08-04 15:08:32 +00:00
|
|
|
first_name = first_name[0].encode('utf-8')
|
2017-02-04 13:28:18 +00:00
|
|
|
else:
|
2017-02-15 17:09:17 +00:00
|
|
|
first_name = u''
|
2018-08-04 15:08:32 +00:00
|
|
|
return (first_name.decode('utf-8') + u' '
|
|
|
|
+ middle_name.decode('utf-8') + u' '
|
|
|
|
+ last_name.decode('utf-8')).encode('utf-8')
|
2017-02-04 13:28:18 +00:00
|
|
|
|
2017-03-05 09:40:39 +00:00
|
|
|
author = str(", ".join(map(get_author, authors)))
|
2017-02-04 13:28:18 +00:00
|
|
|
|
|
|
|
title = tree.xpath('/fb:FictionBook/fb:description/fb:title-info/fb:book-title/text()', namespaces=ns)
|
|
|
|
if len(title):
|
2018-08-04 15:08:32 +00:00
|
|
|
title = str(title[0].encode('utf-8'))
|
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):
|
2018-08-04 15:08:32 +00:00
|
|
|
description = str(description[0].encode('utf-8'))
|
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,
|
2018-08-04 15:08:32 +00:00
|
|
|
title=title.decode('utf-8'),
|
|
|
|
author=author.decode('utf-8'),
|
2016-12-23 08:53:39 +00:00
|
|
|
cover=None,
|
2018-08-04 15:08:32 +00:00
|
|
|
description=description.decode('utf-8'),
|
2016-12-23 08:53:39 +00:00
|
|
|
tags="",
|
|
|
|
series="",
|
2017-03-02 11:59:35 +00:00
|
|
|
series_id="",
|
2017-03-02 14:57:02 +00:00
|
|
|
languages="")
|