mirror of
https://github.com/janeczku/calibre-web
synced 2024-12-26 10:00:37 +00:00
Merge remote-tracking branch 'multiload/master'
This commit is contained in:
commit
ee5677f376
@ -55,11 +55,20 @@
|
|||||||
<ul class="nav navbar-nav navbar-right" id="main-nav">
|
<ul class="nav navbar-nav navbar-right" id="main-nav">
|
||||||
{% if g.user.is_authenticated or g.user.is_anonymous %}
|
{% if g.user.is_authenticated or g.user.is_anonymous %}
|
||||||
{% if g.user.role_upload() or g.user.role_admin()%}
|
{% if g.user.role_upload() or g.user.role_admin()%}
|
||||||
|
{% if g.allow_upload %}
|
||||||
|
<li>
|
||||||
|
<form id="form-upload-multi" class="navbar-form" action="{{ url_for('upload') }}" method="post" enctype="multipart/form-data">
|
||||||
|
<div class="form-group">
|
||||||
|
<span class="btn btn-default btn-file">{{_('Upload')}} multiple books<input id="btn-upload-multi" name="btn-upload" type="file" multiple></span>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
{% if g.allow_upload %}
|
{% if g.allow_upload %}
|
||||||
<li>
|
<li>
|
||||||
<form id="form-upload" class="navbar-form" action="{{ url_for('upload') }}" method="post" enctype="multipart/form-data">
|
<form id="form-upload" class="navbar-form" action="{{ url_for('upload') }}" method="post" enctype="multipart/form-data">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<span class="btn btn-default btn-file">{{_('Upload')}} <input id="btn-upload" name="btn-upload" type="file"></span>
|
<span class="btn btn-default btn-file">{{_('Upload')}} a single book<input id="btn-upload" name="btn-upload" type="file"></span>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</li>
|
</li>
|
||||||
@ -98,6 +107,14 @@
|
|||||||
</div>
|
</div>
|
||||||
{%endif%}
|
{%endif%}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
<div id="loader" hidden="true">
|
||||||
|
<center>
|
||||||
|
<h3>Uploading...</h3>
|
||||||
|
<span>please don't refresh the page</span>.
|
||||||
|
<br />
|
||||||
|
<img src="{{ url_for('static', filename='img/loader.gif') }}">
|
||||||
|
</center>
|
||||||
|
</div>
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
{% if g.user.is_authenticated or g.user.is_anonymous %}
|
{% if g.user.is_authenticated or g.user.is_anonymous %}
|
||||||
@ -224,11 +241,16 @@
|
|||||||
<script src="{{ url_for('static', filename='js/libs/jquery.form.js') }}"></script>
|
<script src="{{ url_for('static', filename='js/libs/jquery.form.js') }}"></script>
|
||||||
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
|
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(function() {
|
$(function () {
|
||||||
$("#btn-upload").change(function() {
|
$("#btn-upload").change(function () {
|
||||||
$("#form-upload").submit();
|
$("#loader").show();
|
||||||
});
|
$("#form-upload").submit();
|
||||||
});
|
});
|
||||||
|
$("#btn-upload-multi").change(function () {
|
||||||
|
$("#loader").show();
|
||||||
|
$("#form-upload-multi").submit();
|
||||||
|
});
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{% block js %}{% endblock %}
|
{% block js %}{% endblock %}
|
||||||
|
227
cps/web.py
227
cps/web.py
@ -3174,128 +3174,127 @@ def upload():
|
|||||||
if not config.config_uploading:
|
if not config.config_uploading:
|
||||||
abort(404)
|
abort(404)
|
||||||
# create the function for sorting...
|
# create the function for sorting...
|
||||||
db.session.connection().connection.connection.create_function("title_sort", 1, db.title_sort)
|
|
||||||
db.session.connection().connection.connection.create_function('uuid4', 0, lambda: str(uuid4()))
|
|
||||||
if request.method == 'POST' and 'btn-upload' in request.files:
|
if request.method == 'POST' and 'btn-upload' in request.files:
|
||||||
requested_file = request.files['btn-upload']
|
for requested_file in request.files.getlist("btn-upload"):
|
||||||
if '.' in requested_file.filename:
|
db.session.connection().connection.connection.create_function("title_sort", 1, db.title_sort)
|
||||||
file_ext = requested_file.filename.rsplit('.', 1)[-1].lower()
|
db.session.connection().connection.connection.create_function('uuid4', 0, lambda: str(uuid4()))
|
||||||
if file_ext not in ALLOWED_EXTENSIONS:
|
if '.' in requested_file.filename:
|
||||||
flash(
|
file_ext = requested_file.filename.rsplit('.', 1)[-1].lower()
|
||||||
_('File extension "%s" is not allowed to be uploaded to this server' %
|
if file_ext not in ALLOWED_EXTENSIONS:
|
||||||
file_ext),
|
flash(
|
||||||
category="error"
|
_('File extension "%s" is not allowed to be uploaded to this server' %
|
||||||
)
|
file_ext),
|
||||||
return redirect(url_for('index'))
|
category="error"
|
||||||
else:
|
)
|
||||||
flash(_('File to be uploaded must have an extension'), category="error")
|
return redirect(url_for('index'))
|
||||||
return redirect(url_for('index'))
|
|
||||||
meta = uploader.upload(requested_file)
|
|
||||||
|
|
||||||
title = meta.title
|
|
||||||
author = meta.author
|
|
||||||
tags = meta.tags
|
|
||||||
series = meta.series
|
|
||||||
series_index = meta.series_id
|
|
||||||
title_dir = helper.get_valid_filename(title)
|
|
||||||
author_dir = helper.get_valid_filename(author)
|
|
||||||
data_name = title_dir
|
|
||||||
filepath = config.config_calibre_dir + os.sep + author_dir + os.sep + title_dir
|
|
||||||
saved_filename = filepath + os.sep + data_name + meta.extension.lower()
|
|
||||||
|
|
||||||
if not os.path.exists(filepath):
|
|
||||||
try:
|
|
||||||
os.makedirs(filepath)
|
|
||||||
except OSError:
|
|
||||||
flash(_(u"Failed to create path %s (Permission denied)." % filepath), category="error")
|
|
||||||
return redirect(url_for('index'))
|
|
||||||
try:
|
|
||||||
copyfile(meta.file_path, saved_filename)
|
|
||||||
except OSError:
|
|
||||||
flash(_(u"Failed to store file %s (Permission denied)." % saved_filename), category="error")
|
|
||||||
return redirect(url_for('index'))
|
|
||||||
try:
|
|
||||||
os.unlink(meta.file_path)
|
|
||||||
except OSError:
|
|
||||||
flash(_(u"Failed to delete file %s (Permission denied)." % meta.file_path), category="warning")
|
|
||||||
|
|
||||||
file_size = os.path.getsize(saved_filename)
|
|
||||||
if meta.cover is None:
|
|
||||||
has_cover = 0
|
|
||||||
basedir = os.path.dirname(__file__)
|
|
||||||
copyfile(os.path.join(basedir, "static/generic_cover.jpg"), os.path.join(filepath, "cover.jpg"))
|
|
||||||
else:
|
|
||||||
has_cover = 1
|
|
||||||
move(meta.cover, os.path.join(filepath, "cover.jpg"))
|
|
||||||
|
|
||||||
is_author = db.session.query(db.Authors).filter(db.Authors.name == author).first()
|
|
||||||
if is_author:
|
|
||||||
db_author = is_author
|
|
||||||
else:
|
|
||||||
db_author = db.Authors(author, helper.get_sorted_author(author), "")
|
|
||||||
db.session.add(db_author)
|
|
||||||
|
|
||||||
db_series = None
|
|
||||||
is_series = db.session.query(db.Series).filter(db.Series.name == series).first()
|
|
||||||
if is_series:
|
|
||||||
db_series = is_series
|
|
||||||
elif series != '':
|
|
||||||
db_series = db.Series(series, "")
|
|
||||||
db.session.add(db_series)
|
|
||||||
|
|
||||||
# add language actually one value in list
|
|
||||||
input_language = meta.languages
|
|
||||||
db_language = None
|
|
||||||
if input_language != "":
|
|
||||||
input_language = isoLanguages.get(name=input_language).part3
|
|
||||||
hasLanguage = db.session.query(db.Languages).filter(db.Languages.lang_code == input_language).first()
|
|
||||||
if hasLanguage:
|
|
||||||
db_language = hasLanguage
|
|
||||||
else:
|
else:
|
||||||
db_language = db.Languages(input_language)
|
flash(_('File to be uploaded must have an extension'), category="error")
|
||||||
db.session.add(db_language)
|
return redirect(url_for('index'))
|
||||||
# combine path and normalize path from windows systems
|
meta = uploader.upload(requested_file)
|
||||||
path = os.path.join(author_dir, title_dir).replace('\\', '/')
|
|
||||||
db_book = db.Books(title, "", db_author.sort, datetime.datetime.now(), datetime.datetime(101, 1, 1),
|
|
||||||
series_index, datetime.datetime.now(), path, has_cover, db_author, [], db_language)
|
|
||||||
db_book.authors.append(db_author)
|
|
||||||
if db_series:
|
|
||||||
db_book.series.append(db_series)
|
|
||||||
if db_language is not None:
|
|
||||||
db_book.languages.append(db_language)
|
|
||||||
db_data = db.Data(db_book, meta.extension.upper()[1:], file_size, data_name)
|
|
||||||
db_book.data.append(db_data)
|
|
||||||
|
|
||||||
db.session.add(db_book)
|
title = meta.title
|
||||||
db.session.flush() # flush content get db_book.id avalible
|
author = meta.author
|
||||||
# add comment
|
tags = meta.tags
|
||||||
upload_comment = Markup(meta.description).unescape()
|
series = meta.series
|
||||||
if upload_comment != "":
|
series_index = meta.series_id
|
||||||
db.session.add(db.Comments(upload_comment, db_book.id))
|
title_dir = helper.get_valid_filename(title)
|
||||||
db.session.commit()
|
author_dir = helper.get_valid_filename(author)
|
||||||
|
data_name = title_dir
|
||||||
|
filepath = config.config_calibre_dir + os.sep + author_dir + os.sep + title_dir
|
||||||
|
saved_filename = filepath + os.sep + data_name + meta.extension.lower()
|
||||||
|
|
||||||
input_tags = tags.split(',')
|
if not os.path.exists(filepath):
|
||||||
input_tags = list(map(lambda it: it.strip(), input_tags))
|
try:
|
||||||
modify_database_object(input_tags, db_book.tags, db.Tags, db.session, 'tags')
|
os.makedirs(filepath)
|
||||||
|
except OSError:
|
||||||
|
flash(_(u"Failed to create path %s (Permission denied)." % filepath), category="error")
|
||||||
|
return redirect(url_for('index'))
|
||||||
|
try:
|
||||||
|
copyfile(meta.file_path, saved_filename)
|
||||||
|
except OSError:
|
||||||
|
flash(_(u"Failed to store file %s (Permission denied)." % saved_filename), category="error")
|
||||||
|
return redirect(url_for('index'))
|
||||||
|
try:
|
||||||
|
os.unlink(meta.file_path)
|
||||||
|
except OSError:
|
||||||
|
flash(_(u"Failed to delete file %s (Permission denied)." % meta.file_path), category="warning")
|
||||||
|
|
||||||
if db_language is not None: # display Full name instead of iso639.part3
|
file_size = os.path.getsize(saved_filename)
|
||||||
db_book.languages[0].language_name = _(meta.languages)
|
if meta.cover is None:
|
||||||
author_names = []
|
has_cover = 0
|
||||||
for author in db_book.authors:
|
basedir = os.path.dirname(__file__)
|
||||||
author_names.append(author.name)
|
copyfile(os.path.join(basedir, "static/generic_cover.jpg"), os.path.join(filepath, "cover.jpg"))
|
||||||
if config.config_use_google_drive:
|
else:
|
||||||
updateGdriveCalibreFromLocal()
|
has_cover = 1
|
||||||
cc = db.session.query(db.Custom_Columns).filter(db.Custom_Columns.datatype.notin_(db.cc_exceptions)).all()
|
move(meta.cover, os.path.join(filepath, "cover.jpg"))
|
||||||
if current_user.role_edit() or current_user.role_admin():
|
|
||||||
return render_title_template('book_edit.html', book=db_book, authors=author_names, cc=cc,
|
is_author = db.session.query(db.Authors).filter(db.Authors.name == author).first()
|
||||||
title=_(u"edit metadata"))
|
if is_author:
|
||||||
book_in_shelfs = []
|
db_author = is_author
|
||||||
return render_title_template('detail.html', entry=db_book, cc=cc, title=db_book.title,
|
else:
|
||||||
books_shelfs=book_in_shelfs, )
|
db_author = db.Authors(author, helper.get_sorted_author(author), "")
|
||||||
|
db.session.add(db_author)
|
||||||
|
|
||||||
|
db_series = None
|
||||||
|
is_series = db.session.query(db.Series).filter(db.Series.name == series).first()
|
||||||
|
if is_series:
|
||||||
|
db_series = is_series
|
||||||
|
elif series != '':
|
||||||
|
db_series = db.Series(series, "")
|
||||||
|
db.session.add(db_series)
|
||||||
|
|
||||||
|
# add language actually one value in list
|
||||||
|
input_language = meta.languages
|
||||||
|
db_language = None
|
||||||
|
if input_language != "":
|
||||||
|
input_language = isoLanguages.get(name=input_language).part3
|
||||||
|
hasLanguage = db.session.query(db.Languages).filter(db.Languages.lang_code == input_language).first()
|
||||||
|
if hasLanguage:
|
||||||
|
db_language = hasLanguage
|
||||||
|
else:
|
||||||
|
db_language = db.Languages(input_language)
|
||||||
|
db.session.add(db_language)
|
||||||
|
# combine path and normalize path from windows systems
|
||||||
|
path = os.path.join(author_dir, title_dir).replace('\\', '/')
|
||||||
|
db_book = db.Books(title, "", db_author.sort, datetime.datetime.now(), datetime.datetime(101, 1, 1),
|
||||||
|
series_index, datetime.datetime.now(), path, has_cover, db_author, [], db_language)
|
||||||
|
db_book.authors.append(db_author)
|
||||||
|
if db_series:
|
||||||
|
db_book.series.append(db_series)
|
||||||
|
if db_language is not None:
|
||||||
|
db_book.languages.append(db_language)
|
||||||
|
db_data = db.Data(db_book, meta.extension.upper()[1:], file_size, data_name)
|
||||||
|
db_book.data.append(db_data)
|
||||||
|
|
||||||
|
db.session.add(db_book)
|
||||||
|
db.session.flush() # flush content get db_book.id avalible
|
||||||
|
# add comment
|
||||||
|
upload_comment = Markup(meta.description).unescape()
|
||||||
|
if upload_comment != "":
|
||||||
|
db.session.add(db.Comments(upload_comment, db_book.id))
|
||||||
|
db.session.commit()
|
||||||
|
|
||||||
|
input_tags = tags.split(',')
|
||||||
|
input_tags = list(map(lambda it: it.strip(), input_tags))
|
||||||
|
modify_database_object(input_tags, db_book.tags, db.Tags, db.session, 'tags')
|
||||||
|
|
||||||
|
if db_language is not None: # display Full name instead of iso639.part3
|
||||||
|
db_book.languages[0].language_name = _(meta.languages)
|
||||||
|
author_names = []
|
||||||
|
for author in db_book.authors:
|
||||||
|
author_names.append(author.name)
|
||||||
|
if config.config_use_google_drive:
|
||||||
|
updateGdriveCalibreFromLocal()
|
||||||
|
if len(request.files.getlist("btn-upload")) < 2:
|
||||||
|
cc = db.session.query(db.Custom_Columns).filter(db.Custom_Columns.datatype.notin_(db.cc_exceptions)).all()
|
||||||
|
if current_user.role_edit() or current_user.role_admin():
|
||||||
|
return render_title_template('book_edit.html', book=db_book, authors=author_names, cc=cc,title=_(u"edit metadata"))
|
||||||
|
book_in_shelfs = []
|
||||||
|
return render_title_template('detail.html', entry=db_book, cc=cc, title=db_book.title, books_shelfs=book_in_shelfs, )
|
||||||
|
return redirect(url_for("index"))
|
||||||
else:
|
else:
|
||||||
return redirect(url_for("index"))
|
return redirect(url_for("index"))
|
||||||
|
|
||||||
|
|
||||||
def start_gevent():
|
def start_gevent():
|
||||||
from gevent.wsgi import WSGIServer
|
from gevent.wsgi import WSGIServer
|
||||||
global gevent_server
|
global gevent_server
|
||||||
|
Loading…
Reference in New Issue
Block a user