2024-07-21 05:51:06 +00:00
# Or try 'iiab-update -f' for a more rapid upgrade of IIAB Calibre-Web:
#
# https://wiki.iiab.io/go/FAQ#Can_I_upgrade_IIAB_software%3F
2024-07-18 06:19:52 +00:00
# https://github.com/iiab/calibre-web/wiki#upgrading
# https://github.com/iiab/iiab/blob/master/scripts/iiab-update
2024-07-21 05:51:06 +00:00
# https://github.com/iiab/iiab/tree/master/roles/calibre-web#upgrading
2024-07-18 06:19:52 +00:00
2023-06-10 13:10:47 +00:00
- name : Record (initial) disk space used
shell : df -B1 --output=used / | tail -1
2023-05-27 07:26:04 +00:00
register : df1
2024-07-21 05:51:06 +00:00
- name : Stop 'calibre-web' systemd service for safety (RED ERROR CAN BE IGNORED!)
systemd :
name : calibre-web
state : stopped
ignore_errors : True # Shows red errors, and continue...
#failed_when: False # Hides red errors, and continue...
2023-11-29 21:44:29 +00:00
- name : "Install packages: imagemagick, python3-netifaces"
2019-09-14 22:09:30 +00:00
package :
2020-03-09 17:51:26 +00:00
name :
- imagemagick
2023-03-20 18:08:59 +00:00
- python3-netifaces
2019-09-14 22:09:30 +00:00
state : present
2023-03-20 03:18:48 +00:00
# https://github.com/iiab/iiab/pull/3496#issuecomment-1475094542
2023-03-20 18:08:59 +00:00
#- name: "Install packages: python3-dev, gcc to compile 'netifaces'"
# package:
# name:
# - python3-dev # header files
# - gcc # compiler
# state: present
# when: python_version is version('3.10', '>=')
2023-07-15 18:50:53 +00:00
2020-02-02 17:30:19 +00:00
- name : Allow ImageMagick to read PDFs, per /etc/ImageMagick-6/policy.xml, to create book cover thumbnails
2019-09-14 22:09:30 +00:00
lineinfile :
path : /etc/ImageMagick-6/policy.xml
regexp : '<policy domain="coder" rights="none" pattern="PDF" />'
backrefs : yes
line : ' <policy domain="coder" rights="read" pattern="PDF" />'
state : present
2021-07-06 21:59:07 +00:00
- name : "Create 3 Calibre-Web folders to store data and config files: {{ calibreweb_home }}, {{ calibreweb_venv_path }}, {{ calibreweb_config }} (all set to {{ calibreweb_user }}:{{ apache_user }}) (default to 0755)"
2019-09-14 22:09:30 +00:00
file :
2020-02-02 17:30:19 +00:00
state : directory
2019-09-14 22:09:30 +00:00
path : "{{ item }}"
2020-02-02 17:30:19 +00:00
owner : "{{ calibreweb_user }}" # root
group : "{{ apache_user }}" # www-data on debuntu
2019-09-14 22:09:30 +00:00
with_items :
2020-02-02 17:30:19 +00:00
- "{{ calibreweb_home }}" # /library/calibre-web
- "{{ calibreweb_config }}" # /library/calibre-web/config
2019-09-14 22:09:30 +00:00
2023-07-15 18:50:53 +00:00
# FYI since May 2021, Calibre-Web (major releases) can be installed with pip:
# https://pypi.org/project/calibreweb/
# https://github.com/janeczku/calibre-web/issues/456
# https://github.com/janeczku/calibre-web/issues/677
# https://github.com/janeczku/calibre-web/pull/927
# https://github.com/janeczku/calibre-web/pull/1459
2024-07-23 02:18:55 +00:00
- name : "Remove previous virtual environment {{ calibreweb_venv_path }} -- if 'calibreweb_venv_wipe: True'"
file :
path : "{{ calibreweb_venv_path }}" # /usr/local/calibre-web-py3
state : absent
when : calibreweb_venv_wipe
- name : Does {{ calibreweb_venv_path }} exist?
stat :
path : "{{ calibreweb_venv_path }}"
register : calibreweb_venv
- name : git clone Calibre-Web ({{ calibreweb_version }}) from {{ calibreweb_repo_url }} to {{ calibreweb_venv_path }} (~122 MB initially, ~191+ or ~203+ MB later) -- if {{ calibreweb_venv_path }} doesns't exist
2019-09-14 22:09:30 +00:00
git :
2024-01-01 04:37:51 +00:00
repo : "{{ calibreweb_repo_url }}" # e.g. https://github.com/iiab/calibre-web or https://github.com/janeczku/calibre-web
2022-03-07 14:22:46 +00:00
dest : "{{ calibreweb_venv_path }}"
2024-07-23 02:18:55 +00:00
#force: True # CLAIM: "If true, any modified files in the working repository will be discarded" -- REALITY: even if `force: no`, Ansible destructively reclones (also removing all test branch commits etc!) -- unless a git credential is provided to Ansible?
#depth: 1 # 2023-11-04: Full clone for now, to help @deldesir & wider community testing
2024-07-21 05:51:06 +00:00
version : "{{ calibreweb_version }}" # e.g. master, 0.6.22
2024-07-23 02:18:55 +00:00
when : not calibreweb_venv.stat.exists
- name : cd {{ calibreweb_venv_path }} ; git pull {{ calibreweb_repo_url }} {{ calibreweb_version }} --no-rebase --no-edit -- if {{ calibreweb_venv_path }} exists
command : git pull "{{ calibreweb_repo_url }}" "{{ calibreweb_version }}" --no-rebase --no-edit
args :
chdir : "{{ calibreweb_venv_path }}"
when : calibreweb_venv.stat.exists
2023-11-29 21:44:29 +00:00
2024-07-21 07:24:26 +00:00
- debug :
msg :
- "NEED BETTER/EXPERIMENTAL YouTube SCRAPING? RUN THE NEXT LINE -- for the latest yt-dlp 'nightly' release:"
- sudo pipx inject --pip-args='--upgrade --pre' -f xklb yt-dlp[default]
2024-01-11 04:38:21 +00:00
- name : If Calibre-Web is being enhanced with audio/video "books" too, install/upgrade additional prereqs -- SEE https://github.com/iiab/calibre-web/wiki
2023-11-29 21:44:29 +00:00
shell : |
if [ -f {{ calibreweb_venv_path }}/scripts/lb-wrapper ]; then
apt install ffmpeg pipx -y
2023-12-04 20:06:18 +00:00
if lb --version; then
2024-07-18 06:09:33 +00:00
pipx reinstall xklb
2023-12-04 20:06:18 +00:00
else
pipx install xklb
ln -sf /root/.local/bin/lb /usr/local/bin/lb
2024-04-30 22:22:34 +00:00
if [ -f /root/.local/share/pipx/venvs/xklb/bin/yt-dlp ]; then
ln -sf /root/.local/share/pipx/venvs/xklb/bin/yt-dlp /usr/local/bin/yt-dlp
elif [ -f /root/.local/pipx/venvs/xklb/bin/yt-dlp ]; then
ln -sf /root/.local/pipx/venvs/xklb/bin/yt-dlp /usr/local/bin/yt-dlp
else
echo "ERROR: yt-dlp NOT FOUND"
fi
2023-12-04 20:06:18 +00:00
fi
2024-07-21 07:24:26 +00:00
# NEED BETTER/EXPERIMENTAL YouTube SCRAPING? UNCOMMENT THE NEXT LINE -- for the latest yt-dlp "nightly" release:
2024-07-18 06:09:33 +00:00
# pipx inject --pip-args="--upgrade --pre" -f xklb yt-dlp[default]
2024-07-21 06:46:48 +00:00
#
# https://github.com/yt-dlp/yt-dlp-nightly-builds/releases
# https://pypi.org/project/yt-dlp/#history
2024-01-11 04:23:15 +00:00
cp {{ calibreweb_venv_path }}/scripts/lb-wrapper /usr/local/bin/
chmod a+x /usr/local/bin/lb-wrapper
2023-11-29 21:44:29 +00:00
fi
2019-09-14 22:09:30 +00:00
2023-03-20 03:18:48 +00:00
- name : Download Calibre-Web dependencies from 'requirements.txt' into python3 virtual environment {{ calibreweb_venv_path }}
2020-02-14 06:59:56 +00:00
pip :
2019-09-14 22:09:30 +00:00
requirements : "{{ calibreweb_venv_path }}/requirements.txt"
2020-02-06 12:19:05 +00:00
virtualenv : "{{ calibreweb_venv_path }}" # /usr/local/calibre-web-py3
2023-10-01 22:34:19 +00:00
#virtualenv_site_packages: no
2023-04-16 18:43:16 +00:00
virtualenv_command : python3 -m venv --system-site-packages {{ calibreweb_venv_path }}
2023-10-01 22:34:19 +00:00
extra_args: --prefer-binary # 2023-10-01 : Lifesaver when recent wheels (e.g. piwheels.org) are inevitably not yet built! SEE #3560
2023-03-20 18:08:59 +00:00
2023-10-11 19:13:28 +00:00
# 2023-10-11: RasPiOS Bookworm doc for Python with venv (PEP 668 now enforced!)
2024-07-19 08:34:16 +00:00
# https://www.raspberrypi.com/documentation/computers/os.html#use-python-on-a-raspberry-pi
# https://www.raspberrypi.com/documentation/computers/os.html#install-python-packages-using-apt
# https://www.raspberrypi.com/documentation/computers/os.html#install-python-libraries-using-pip
2023-10-11 19:13:28 +00:00
2022-04-29 02:53:26 +00:00
# VIRTUALENV EXAMPLE COMMANDS:
2024-05-31 04:27:54 +00:00
# python3 -m venv /usr/local/calibre-web-py3 (create venv)
2022-04-29 02:53:26 +00:00
# cd /usr/local/calibre-web-py3
2024-05-31 04:27:54 +00:00
# . bin/activate (or 'source bin/activate' -- this prepends '/usr/local/calibre-web-py3/bin' to yr PATH)
2023-07-25 02:55:16 +00:00
# python3 -m pip list ('pip list' sufficient *IF* path set above!)
2022-04-29 02:53:26 +00:00
# python3 -m pip freeze > /tmp/requirements.txt
# python3 -m pip install -r requirements.txt
# deactivate
2023-07-25 02:55:16 +00:00
# https://pip.pypa.io/en/stable/user_guide/#requirements-files
# https://pip.pypa.io/en/latest/reference/requirements-file-format/
2019-09-14 22:09:30 +00:00
2020-02-02 17:30:19 +00:00
- name : Install /etc/systemd/system/calibre-web.service from template
2019-09-14 22:09:30 +00:00
template :
2020-02-02 17:30:19 +00:00
src : calibre-web.service.j2
dest : /etc/systemd/system/calibre-web.service
2019-09-14 22:09:30 +00:00
- name : Does /library/calibre-web/metadata.db exist?
stat :
path : /library/calibre-web/metadata.db
register : metadatadb
2020-02-02 17:48:20 +00:00
- name : Provision/Copy both default metadata files (metadata.db, metadata_db_prefs_backup.json) into {{ calibreweb_home }} IF metadata.db did not exist
2019-09-14 22:09:30 +00:00
copy :
src : "{{ item }}"
2020-02-02 17:30:19 +00:00
dest : "{{ calibreweb_home }}" # /library/calibre-web
owner : "{{ calibreweb_user }}" # root
group : "{{ apache_user }}" # www-data on debuntu
2019-09-14 22:09:30 +00:00
backup : yes
with_items :
- roles/calibre-web/files/metadata.db
- roles/calibre-web/files/metadata_db_prefs_backup.json
when : not metadatadb.stat.exists
2022-03-07 14:43:41 +00:00
- name : Does /library/calibre-web/config/app.db exist?
stat :
path : /library/calibre-web/config/app.db
register : appdb
- name : Provision/Copy default admin settings to {{ calibreweb_config }}/app.db IF it did not exist
2019-09-14 22:09:30 +00:00
copy :
src : roles/calibre-web/files/app.db
2020-02-02 17:30:19 +00:00
dest : "{{ calibreweb_config }}" # /library/calibre-web/config
owner : "{{ calibreweb_user }}" # root
group : "{{ apache_user }}" # www-data on debuntu
2019-09-14 22:09:30 +00:00
backup : yes
2022-03-07 14:43:41 +00:00
when : not appdb.stat.exists
2019-09-14 22:09:30 +00:00
2023-03-20 14:23:46 +00:00
2020-01-30 09:00:00 +00:00
# RECORD Calibre-Web AS INSTALLED
2023-06-10 13:10:47 +00:00
- name : Record (final) disk space used
shell : df -B1 --output=used / | tail -1
2023-05-27 07:26:04 +00:00
register : df2
2023-06-10 13:10:47 +00:00
- name : Add 'calibreweb_disk_usage = {{ df2.stdout|int - df1.stdout|int }}' to {{ iiab_ini_file }}
2023-05-27 07:26:04 +00:00
ini_file :
path : "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
section : calibre-web
option : calibreweb_disk_usage
2023-06-10 13:10:47 +00:00
value : "{{ df2.stdout|int - df1.stdout|int }}"
2023-05-27 07:26:04 +00:00
2020-01-30 09:00:00 +00:00
- name : "Set 'calibreweb_installed: True'"
set_fact :
calibreweb_installed : True
2020-01-12 23:15:33 +00:00
- name : "Add 'calibreweb_installed: True' to {{ iiab_state_file }}"
2019-09-14 22:09:30 +00:00
lineinfile :
2020-02-04 00:54:04 +00:00
path : "{{ iiab_state_file }}" # /etc/iiab/iiab_state.yml
2019-09-14 22:09:30 +00:00
regexp : '^calibreweb_installed'
2019-10-07 17:11:21 +00:00
line: 'calibreweb_installed : True '