You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
794 B
Python
31 lines
794 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
from tempfile import gettempdir
|
|
import hashlib
|
|
from collections import namedtuple
|
|
import book_formats
|
|
|
|
BookMeta = namedtuple('BookMeta', 'file_path, extension, title, author, cover, description, tags, series, series_id, languages')
|
|
|
|
"""
|
|
:rtype: BookMeta
|
|
"""
|
|
|
|
|
|
def upload(file):
|
|
tmp_dir = os.path.join(gettempdir(), 'calibre_web')
|
|
|
|
if not os.path.isdir(tmp_dir):
|
|
os.mkdir(tmp_dir)
|
|
|
|
filename = file.filename
|
|
filename_root, file_extension = os.path.splitext(filename)
|
|
md5 = hashlib.md5()
|
|
md5.update(filename.encode('utf-8'))
|
|
tmp_file_path = os.path.join(tmp_dir, md5.hexdigest())
|
|
file.save(tmp_file_path)
|
|
meta = book_formats.process(tmp_file_path, filename_root, file_extension)
|
|
return meta
|