Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
douban-api-proxy
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
douban-api-proxy
Commits
1ae778d8
Commit
1ae778d8
authored
Dec 12, 2020
by
Ozzieisaacs
Browse files
Options
Browse Files
Download
Plain Diff
Fix #1753 (errorhandling on route serve_book)
parents
b8336c03
f4412ee9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
web.py
cps/web.py
+4
-1
No files found.
cps/web.py
View file @
1ae778d8
...
...
@@ -1496,7 +1496,9 @@ def get_robots():
def
serve_book
(
book_id
,
book_format
,
anyname
):
book_format
=
book_format
.
split
(
"."
)[
0
]
book
=
calibre_db
.
get_book
(
book_id
)
data
=
calibre_db
.
get_book_format
(
book
.
id
,
book_format
.
upper
())
data
=
calibre_db
.
get_book_format
(
book_id
,
book_format
.
upper
())
if
not
data
:
abort
(
404
)
log
.
info
(
'Serving book:
%
s'
,
data
.
name
)
if
config
.
config_use_google_drive
:
headers
=
Headers
()
...
...
@@ -1513,6 +1515,7 @@ def serve_book(book_id, book_format, anyname):
return
send_from_directory
(
os
.
path
.
join
(
config
.
config_calibre_dir
,
book
.
path
),
data
.
name
+
"."
+
book_format
)
@
web
.
route
(
"/download/<int:book_id>/<book_format>"
,
defaults
=
{
'anyname'
:
'None'
})
@
web
.
route
(
"/download/<int:book_id>/<book_format>/<anyname>"
)
@
login_required_if_no_ano
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment