mirror of
https://github.com/janeczku/calibre-web
synced 2024-10-31 15:20:28 +00:00
cf00b4eebf
OPDS cannot be downloaded Fix #973 (wrong blueprint selected with wrong authentication type) Read books with link to calibre wern't detected correct Fix #971 (Refactoring error "is" is not equal to "==" for sqlalchemy)
55 lines
1.9 KiB
Plaintext
55 lines
1.9 KiB
Plaintext
{
|
|
"pubdate": "{{entry.pubdate}}",
|
|
"title": "{{entry.title}}",
|
|
"format_metadata": {
|
|
{% for format in entry.data %}
|
|
"{{format.format}}": {
|
|
"mtime": "{{entry.last_modified}}",
|
|
"size": {{format.uncompressed_size}},
|
|
"path": ""
|
|
}{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
},
|
|
"formats": [
|
|
{% for format in entry.data %}
|
|
"{{format.format}}"{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
],
|
|
"series": null,
|
|
"cover": "{{url_for('opds.feed_get_cover', book_id=entry.id)}}",
|
|
"languages": [
|
|
{% for lang in entry.languages %}
|
|
"{{lang.lang_code}}"{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
],
|
|
"comments": "{% if entry.comments|length > 0 %}{{entry.comments[0].text.replace('"', '\\"')|safe}}{% endif %}",
|
|
"tags": [
|
|
{% for tag in entry.tags %}
|
|
"{{tag.name}}"{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
],
|
|
"application_id": {{entry.id}},
|
|
"series_index": {% if entry.series|length > 0 %}"{{entry.series_index}}"{% else %}null{% endif %},
|
|
"last_modified": "{{entry.last_modified}}",
|
|
"author_sort": "{{entry.author_sort}}",
|
|
"uuid": "{{entry.uuid}}",
|
|
"timestamp": "{{entry.timestamp}}",
|
|
"thumbnail": "{{url_for('opds.feed_get_cover', book_id=entry.id)}}",
|
|
"main_format": {
|
|
"{{entry.data[0].format|lower}}": "{{ url_for('opds.opds_download_link', book_id=entry.id, book_format=entry.data[0].format|lower)}}"
|
|
},
|
|
"rating":{% if entry.ratings.__len__() > 0 %} "{{entry.ratings[0].rating}}.0"{% else %}0.0{% endif %},
|
|
"authors": [
|
|
{% for author in entry.authors %}
|
|
"{{author.name.replace('|',',')}}"{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
],
|
|
"other_formats": {
|
|
{% if entry.data.__len__() > 1 %}
|
|
{% for format in entry.data[1:] %}
|
|
"{{format.format|lower}}": "{{ url_for('opds.opds_download_link', book_id=entry.id, book_format=format.format|lower)}}"{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
{% endif %} },
|
|
"title_sort": "{{entry.sort}}"
|
|
}
|