1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00

Merge pull request #1284 from holta/lokole

Lokole offline email, with IIAB integration & explanatory Ansible output
This commit is contained in:
A Holt 2018-11-04 01:22:24 -05:00 committed by GitHub
commit ae2aa7ffd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 249 additions and 0 deletions

View file

@ -27,6 +27,12 @@
when: ejabberd_install
tags: ejabberd
- name: LOKOLE
include_role:
name: lokole
when: lokole_install
tags: lokole
- name: NEXTCLOUD
include_role:
name: nextcloud

22
roles/lokole/README.rst Normal file
View file

@ -0,0 +1,22 @@
=============
Lokole README
=============
This Ansible role installs the `Lokole web app <https://github.com/ascoderu/opwen-webapp>`_ within Internet-in-a-Box. Lokole is a project by the Canadian-Congolese non-profit `Ascoderu <https://ascoderu.ca>`_.
The Lokole is a simple email client that offers functionality like:
1. Self-service creation of user accounts
2. Read emails sent to the account
3. Write emails including rich formatting
4. Send attachments
Using It
--------
Lokole should be accessible at http://box/lokole
Known Issues
------------
Please see `#1282 <https://github.com/iiab/iiab/pull/1282#issuecomment-435622419>`_.

View file

@ -0,0 +1,21 @@
# Info needed to install Lokole
lokole_version: "0.1.24"
lokole_install_path: "{{ content_base }}/lokole" # /library/lokole
lokole_venv: "{{ lokole_install_path }}/venv" # /library/lokole/venv
# Info needed to run Lokole
lokole_user: lokole
lokole_run_directory: "/home/{{ lokole_user }}/state"
lokole_install: True
lokole_enabled: True
lokole_url: /lokole
lokole_full_url: "http://{{ iiab_hostname }}.{{ iiab_domain }}{{ lokole_url }}" # http://box.lan/lokole
lokole_domain_socket: "{{ lokole_run_directory }}/lokole_gunicorn.sock"
# Global variables provided by setup-lokole.sh L157-166
# https://github.com/ascoderu/opwen-webapp/blob/master/setup/setup-lokole.sh#L157
opwen_server_locale: "{{ default_language }}"
opwen_server_timezone: "{{ local_tz }}"

View file

@ -0,0 +1,125 @@
- name: "Install 7 packages for Lokole: python3, python3-pip, python3-venv, python3-dev, libffi-dev, libssl-dev, bcrypt"
apt:
name:
- python3
- python3-pip
- python3-venv
- python3-dev
- libffi-dev
- libssl-dev
- bcrypt
state: present
tags:
- install
- name: pip install opwen_email_client (Lokole) {{ lokole_version }} from PyPI to {{ lokole_venv }}
pip:
name: opwen_email_client
version: "{{ lokole_version }}"
virtualenv: "{{ lokole_venv }}"
virtualenv_command: python3 -m venv "{{ lokole_venv }}"
tags:
- install
when: internet_available
- name: Compile translations
shell: |
python_version=$(python3 -c 'from sys import version_info; print("%s.%s" % (version_info.major, version_info.minor));';)
{{ lokole_venv }}/bin/pybabel compile -d {{ item }}/translations
with_items:
- "{{ lokole_venv }}/lib/python${python_version}/site-packages/opwen_email_client/webapp"
tags:
- install
- name: Create dir {{ lokole_run_directory }}
file:
path: "{{ lokole_run_directory }}"
state: directory
tags:
- configure
- name: Install {{ lokole_run_directory }}/webapp_secrets.sh from template, to configure Lokole
template:
src: webapp_secrets.sh.j2
dest: "{{ lokole_run_directory }}/webapp_secrets.sh"
tags:
- configure
- name: Install {{ lokole_run_directory }}/webapp.sh from template, to configure Gunicorn
template:
src: webapp.sh.j2
dest: "{{ lokole_run_directory }}/webapp.sh"
mode: a+x
tags:
- configure
- name: Install unit file /etc/systemd/system/lokole.service from template
template:
src: lokole.service.j2
dest: /etc/systemd/system/lokole.service
tags:
- systemd
- name: Enable & Restart 'lokole' systemd service, with daemon_reload, if lokole_enabled
systemd:
daemon_reload: yes
name: lokole
enabled: yes
state: restarted
when: lokole_enabled
- name: Disable 'lokole' service, if not lokole_enabled
systemd:
name: lokole
enabled: no
state: stopped
when: not lokole_enabled
- name: Install /etc/{{ apache_config_dir }}/lokole.conf from template, for http://box/lokole
template:
src: lokole.conf.j2
dest: "/etc/{{ apache_config_dir }}/lokole.conf"
- name: Symlink /etc/apache2/sites-enabled/lokole.conf to /etc/{{ apache_config_dir }}/lokole.conf, if lokole_enabled (debuntu)
file:
src: "/etc/{{ apache_config_dir }}/lokole.conf"
path: /etc/apache2/sites-enabled/lokole.conf
state: link
when: lokole_enabled and is_debuntu
- name: Remove /etc/apache2/sites-enabled/lokole.conf, if not lokole_enabled (debuntu)
file:
path: /etc/apache2/sites-enabled/lokole.conf
state: absent
when: not lokole_enabled and is_debuntu
- name: Remove /etc/{{ apache_config_dir }}/lokole.conf, if not lokole_enabled (OS's other than debuntu)
file:
path: "/etc/{{ apache_config_dir }}/lokole.conf"
state: absent
when: (not lokole_enabled) and (not is_debuntu)
- name: Restart Apache ({{ apache_service }}) to enable/disable http://box/lokole
service:
name: "{{ apache_service }}"
state: restarted
- name: Add 'lokole' variable values to {{ iiab_ini_file }}
ini_file:
path: "{{ iiab_ini_file }}"
section: lokole
option: "{{ item.option }}"
value: "{{ item.value }}"
with_items:
- option: name
value: lokole
- option: description
value: '"Lokole is an email service that works offline, for rural communities."'
- option: lokole_run_directory
value: "{{ lokole_run_directory }}"
- option: lokole_url
value: "{{ lokole_url }}"
- option: lokole_full_url
value: "{{ lokole_full_url }}"
- option: lokole_enabled
value: "{{ lokole_enabled }}"

View file

@ -0,0 +1,3 @@
- name: Run Lokole's install.yml if lokole_install
include_tasks: install.yml
when: lokole_install

View file

@ -0,0 +1,29 @@
# Root directory goes to Lokole web server
RedirectMatch ^{{ lokole_url }}$ {{ lokole_url }}/
ProxyRequests off
ProxyPass {{ lokole_url }}/ unix:{{ lokole_domain_socket }}|http://{{ iiab_hostname }}.{{ iiab_domain }}/
<Location {{ lokole_url }}/>
ProxyPassReverse /
ProxyHTMLEnable On
ProxyHTMLURLMap / {{ lokole_url }}/
RequestHeader unset Accept-Encoding
</Location>
# /static directory is stored on filesystem
Alias {{ lokole_url }}/static {{ lokole_install_path }}
<Directory {{ lokole_install_path }}>
Options Indexes FollowSymLinks
# Don't allow modifications in static directory
Require all granted
<LimitExcept GET HEAD OPTIONS>
Require all denied
</LimitExcept>
</Directory>
# Disable TRACE to prevent cross-site tracing
TraceEnable off

View file

@ -0,0 +1,16 @@
[Unit]
Description=Provides the Lokole Server
#Requires=lokole.socket
After=network.target
[Service]
Type=simple
ExecStart=/bin/bash {{ lokole_run_directory }}/webapp.sh
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s TERM $MAINPID
User=root
Group=root
PrivateTmp=true
[Install]
WantedBy=multi-user.target

View file

@ -0,0 +1,9 @@
#!/usr/bin/env sh
. '{{lokole_run_directory}}/webapp_secrets.sh'
'{{lokole_venv}}/bin/gunicorn' \
--timeout='300' \
--workers='{{ [4, ansible_memtotal_mb / 200] | min | int }}' \
--bind='unix:{{ lokole_domain_socket }}' \
--log-level='error' \
'opwen_email_client.webapp:app'

View file

@ -0,0 +1,4 @@
export OPWEN_STATE_DIRECTORY='{{lokole_run_directory}}'
export OPWEN_SESSION_KEY='{{ lookup('password', '/dev/null chars=ascii_letters,digits,_ length=32') }}'
export OPWEN_PASSWORD_SALT='{{ lookup('password', '/dev/null chars=ascii_letters,digits,_ length=16') }}'
export OPWEN_CLIENT_NAME='iiab-{{ iiab_hostname }}'

View file

@ -32,6 +32,7 @@
- { role: kalite }
- { role: kiwix }
- { role: kolibri }
- { role: lokole }
- { role: mediawiki }
- { role: mongodb }
- { role: monit }

View file

@ -290,6 +290,10 @@ elgg_mysql_password: elgg4kids
ejabberd_install: False
ejabberd_enabled: False
# Lokole (email)
lokole_install: True
lokole_enabled: False
# Nextcloud
nextcloud_install: True
nextcloud_enabled: False

View file

@ -170,6 +170,9 @@ elgg_enabled: True
ejabberd_install: True
ejabberd_enabled: False
lokole_install: True
lokole_enabled: True
nextcloud_install: True
nextcloud_enabled: True

View file

@ -170,6 +170,9 @@ elgg_enabled: True
ejabberd_install: False
ejabberd_enabled: False
lokole_install: False
lokole_enabled: False
nextcloud_install: True
nextcloud_enabled: True

View file

@ -170,6 +170,9 @@ elgg_enabled: False
ejabberd_install: False
ejabberd_enabled: False
lokole_install: False
lokole_enabled: False
nextcloud_install: False
nextcloud_enabled: False