2020-12-23 19:53:13 +01:00
|
|
|
# django_ynh
|
|
|
|
|
|
|
|
Current state is broken, because we are **planing** ;)
|
|
|
|
|
|
|
|
[![Integration level](https://dash.yunohost.org/integration/django_ynh.svg)](https://dash.yunohost.org/appci/app/django_ynh) ![](https://ci-apps.yunohost.org/ci/badges/django_ynh.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/django_ynh.maintain.svg)
|
|
|
|
[![Install django_ynh with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=django_ynh)
|
|
|
|
|
|
|
|
> *This package allows you to install django_ynh quickly and simply on a YunoHost server.
|
|
|
|
If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/install) to learn how to install it.*
|
|
|
|
|
|
|
|
Pull requests welcome ;)
|
|
|
|
|
2020-12-29 10:54:06 +01:00
|
|
|
|
2020-12-23 19:53:13 +01:00
|
|
|
## Overview
|
|
|
|
|
|
|
|
Glue code to package django projects as yunohost apps.
|
|
|
|
|
2020-12-29 15:04:36 +01:00
|
|
|
This repository is:
|
2020-12-29 10:54:06 +01:00
|
|
|
|
|
|
|
* The Python package [django-ynh](https://pypi.org/project/django-ynh/) with helpers for integrate a Django project as YunoHost package
|
2020-12-29 15:04:36 +01:00
|
|
|
* A example [YunoHost Application](https://install-app.yunohost.org/?app=django_ynh) that can be installed
|
2020-12-29 10:54:06 +01:00
|
|
|
|
|
|
|
|
2020-12-29 15:04:36 +01:00
|
|
|
### Features
|
2020-12-29 10:54:06 +01:00
|
|
|
|
2020-12-29 15:04:36 +01:00
|
|
|
* SSOwat integration (see below)
|
|
|
|
* Helper to create first super user for `scripts/install`
|
|
|
|
* Run Django development server with a local generated YunoHost package installation (called `local_test`)
|
|
|
|
* Run `pytest` against `local_test` "installation"
|
2020-12-29 10:54:06 +01:00
|
|
|
|
|
|
|
|
2020-12-29 15:04:36 +01:00
|
|
|
#### SSO authentication
|
2020-12-23 19:53:13 +01:00
|
|
|
|
|
|
|
[SSOwat](https://github.com/YunoHost/SSOwat) is fully supported:
|
|
|
|
|
|
|
|
* First user (`$YNH_APP_ARG_ADMIN`) will be created as Django's super user
|
|
|
|
* All new users will be created as normal users
|
|
|
|
* Login via SSO is fully supported
|
|
|
|
* User Email, First / Last name will be updated from SSO data
|
|
|
|
|
2020-12-29 15:04:36 +01:00
|
|
|
### usage
|
|
|
|
|
|
|
|
To create/update the first user in `install`/`upgrade`, e.g.:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./manage.py create_superuser --username="$admin" --email="$admin_mail"
|
|
|
|
```
|
|
|
|
This Create/update Django superuser and set a unusable password.
|
|
|
|
A password is not needed, because auth done via SSOwat ;)
|
|
|
|
|
|
|
|
Main parts in `settings.py`:
|
|
|
|
```python
|
|
|
|
from django_ynh.secret_key import get_or_create_secret as __get_or_create_secret
|
|
|
|
|
|
|
|
# Function that will be called to finalize a user profile:
|
|
|
|
YNH_SETUP_USER = 'setup_user.setup_project_user'
|
|
|
|
|
|
|
|
SECRET_KEY = __get_or_create_secret(FINAL_HOME_PATH / 'secret.txt') # /opt/yunohost/$app/secret.txt
|
|
|
|
|
|
|
|
INSTALLED_APPS = [
|
|
|
|
#...
|
|
|
|
'django_ynh',
|
|
|
|
#...
|
|
|
|
]
|
|
|
|
|
|
|
|
MIDDLEWARE = [
|
|
|
|
#... after AuthenticationMiddleware ...
|
|
|
|
#
|
|
|
|
# login a user via HTTP_REMOTE_USER header from SSOwat:
|
|
|
|
'django_ynh.sso_auth.auth_middleware.SSOwatRemoteUserMiddleware',
|
|
|
|
#...
|
|
|
|
]
|
|
|
|
|
|
|
|
# Keep ModelBackend around for per-user permissions and superuser
|
|
|
|
AUTHENTICATION_BACKENDS = (
|
|
|
|
'axes.backends.AxesBackend', # AxesBackend should be the first backend!
|
|
|
|
#
|
|
|
|
# Authenticate via SSO and nginx 'HTTP_REMOTE_USER' header:
|
|
|
|
'django_ynh.sso_auth.auth_backend.SSOwatUserBackend',
|
|
|
|
#
|
|
|
|
# Fallback to normal Django model backend:
|
|
|
|
'django.contrib.auth.backends.ModelBackend',
|
|
|
|
)
|
|
|
|
|
|
|
|
LOGIN_REDIRECT_URL = None
|
|
|
|
LOGIN_URL = '/yunohost/sso/'
|
|
|
|
LOGOUT_REDIRECT_URL = '/yunohost/sso/'
|
|
|
|
```
|
|
|
|
|
2020-12-23 19:53:13 +01:00
|
|
|
|
2020-12-28 20:15:38 +01:00
|
|
|
## history
|
|
|
|
|
2020-12-29 12:45:19 +01:00
|
|
|
* [compare v0.1.2...master](https://github.com/YunoHost-Apps/django_ynh/compare/v0.1.2...master) **dev**
|
2020-12-28 20:15:38 +01:00
|
|
|
* tbc
|
2020-12-29 15:04:36 +01:00
|
|
|
* [v0.1.2 - 29.12.2020](https://github.com/YunoHost-Apps/django_ynh/compare/v0.1.1...v0.1.2)
|
2020-12-29 12:06:04 +01:00
|
|
|
* Bugfixes
|
|
|
|
* [v0.1.1 - 29.12.2020](https://github.com/YunoHost-Apps/django_ynh/compare/v0.1.0...v0.1.1)
|
2020-12-29 11:49:52 +01:00
|
|
|
* Refactor "create_superuser" to a manage command, useable via "django_ynh" in `INSTALLED_APPS`
|
|
|
|
* Generate "conf/requirements.txt" and use this file for install
|
|
|
|
* rename own settings and urls (in `/conf/`)
|
2020-12-28 20:15:38 +01:00
|
|
|
* [v0.1.0 - 28.12.2020](https://github.com/YunoHost-Apps/django_ynh/compare/f578f14...v0.1.0)
|
|
|
|
* first working state
|
|
|
|
* [23.12.2020](https://github.com/YunoHost-Apps/django_ynh/commit/f578f144a3a6d11d7044597c37d550d29c247773)
|
|
|
|
* init the project
|
|
|
|
|
|
|
|
|
2020-12-23 19:53:13 +01:00
|
|
|
## Links
|
|
|
|
|
2020-12-29 15:04:36 +01:00
|
|
|
* Report a bug about this package: https://github.com/YunoHost-Apps/django_ynh
|
|
|
|
* YunoHost website: https://yunohost.org/
|
|
|
|
* PyPi package: https://pypi.org/project/django-ynh/
|
|
|
|
|
|
|
|
These projects used `django_ynh`:
|
|
|
|
|
|
|
|
* https://github.com/YunoHost-Apps/pyinventory_ynh
|
|
|
|
* https://github.com/YunoHost-Apps/django-for-runners_ynh
|
2020-12-23 19:53:13 +01:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
# Developer info
|
|
|
|
|
|
|
|
## package installation / debugging
|
|
|
|
|
|
|
|
Please send your pull request to https://github.com/YunoHost-Apps/django_ynh
|
|
|
|
|
|
|
|
Try 'main' branch, e.g.:
|
|
|
|
```bash
|
|
|
|
sudo yunohost app install https://github.com/YunoHost-Apps/django_ynh/tree/master --debug
|
|
|
|
or
|
|
|
|
sudo yunohost app upgrade django_ynh -u https://github.com/YunoHost-Apps/django_ynh/tree/master --debug
|
|
|
|
```
|
|
|
|
|
|
|
|
Try 'testing' branch, e.g.:
|
|
|
|
```bash
|
|
|
|
sudo yunohost app install https://github.com/YunoHost-Apps/django_ynh/tree/testing --debug
|
|
|
|
or
|
|
|
|
sudo yunohost app upgrade django_ynh -u https://github.com/YunoHost-Apps/django_ynh/tree/testing --debug
|
|
|
|
```
|
|
|
|
|
|
|
|
To remove call e.g.:
|
|
|
|
```bash
|
|
|
|
sudo yunohost app remove django_ynh
|
|
|
|
```
|
|
|
|
|
|
|
|
Backup / remove / restore cycle, e.g.:
|
|
|
|
```bash
|
|
|
|
yunohost backup create --apps django_ynh
|
|
|
|
yunohost backup list
|
|
|
|
archives:
|
|
|
|
- django_ynh-pre-upgrade1
|
|
|
|
- 20201223-163434
|
|
|
|
yunohost app remove django_ynh
|
|
|
|
yunohost backup restore 20201223-163434 --apps django_ynh
|
|
|
|
```
|
|
|
|
|
|
|
|
Debug installation, e.g.:
|
|
|
|
```bash
|
|
|
|
root@yunohost:~# ls -la /var/www/django_ynh/
|
|
|
|
total 18
|
|
|
|
drwxr-xr-x 4 root root 4 Dec 8 08:36 .
|
|
|
|
drwxr-xr-x 6 root root 6 Dec 8 08:36 ..
|
|
|
|
drwxr-xr-x 2 root root 2 Dec 8 08:36 media
|
|
|
|
drwxr-xr-x 7 root root 8 Dec 8 08:40 static
|
|
|
|
|
|
|
|
root@yunohost:~# ls -la /opt/yunohost/django_ynh/
|
|
|
|
total 58
|
|
|
|
drwxr-xr-x 5 django_ynh django_ynh 11 Dec 8 08:39 .
|
|
|
|
drwxr-xr-x 3 root root 3 Dec 8 08:36 ..
|
|
|
|
-rw-r--r-- 1 django_ynh django_ynh 460 Dec 8 08:39 gunicorn.conf.py
|
|
|
|
-rw-r--r-- 1 django_ynh django_ynh 0 Dec 8 08:39 local_settings.py
|
|
|
|
-rwxr-xr-x 1 django_ynh django_ynh 274 Dec 8 08:39 manage.py
|
|
|
|
-rw-r--r-- 1 django_ynh django_ynh 171 Dec 8 08:39 secret.txt
|
|
|
|
drwxr-xr-x 6 django_ynh django_ynh 6 Dec 8 08:37 venv
|
|
|
|
-rw-r--r-- 1 django_ynh django_ynh 115 Dec 8 08:39 wsgi.py
|
2020-12-28 12:35:36 +01:00
|
|
|
-rw-r--r-- 1 django_ynh django_ynh 4737 Dec 8 08:39 django_ynh_demo_settings.py
|
2020-12-23 19:53:13 +01:00
|
|
|
|
|
|
|
root@yunohost:~# cd /opt/yunohost/django_ynh/
|
|
|
|
root@yunohost:/opt/yunohost/django_ynh# source venv/bin/activate
|
|
|
|
(venv) root@yunohost:/opt/yunohost/django_ynh# ./manage.py check
|
|
|
|
django_ynh v0.8.2 (Django v2.2.17)
|
2020-12-28 12:35:36 +01:00
|
|
|
DJANGO_SETTINGS_MODULE='django_ynh_demo_settings'
|
2020-12-23 19:53:13 +01:00
|
|
|
PROJECT_PATH:/opt/yunohost/django_ynh/venv/lib/python3.7/site-packages
|
|
|
|
BASE_PATH:/opt/yunohost/django_ynh
|
|
|
|
System check identified no issues (0 silenced).
|
|
|
|
|
|
|
|
root@yunohost:~# tail -f /var/log/django_ynh/django_ynh.log
|
|
|
|
root@yunohost:~# cat /etc/systemd/system/django_ynh.service
|
|
|
|
|
|
|
|
root@yunohost:~# systemctl reload-or-restart django_ynh
|
|
|
|
root@yunohost:~# journalctl --unit=django_ynh --follow
|
|
|
|
```
|
|
|
|
|
|
|
|
## local test
|
|
|
|
|
|
|
|
For quicker developing of django_ynh in the context of YunoHost app,
|
|
|
|
it's possible to run the Django developer server with the settings
|
|
|
|
and urls made for YunoHost installation.
|
|
|
|
|
|
|
|
e.g.:
|
|
|
|
```bash
|
|
|
|
~$ git clone https://github.com/YunoHost-Apps/django_ynh.git
|
|
|
|
~$ cd django_ynh/
|
|
|
|
~/django_ynh$ make
|
|
|
|
install-poetry install or update poetry
|
|
|
|
install install django_ynh via poetry
|
|
|
|
update update the sources and installation
|
|
|
|
local-test Run local_test.py to run django_ynh locally
|
|
|
|
~/django_ynh$ make install-poetry
|
|
|
|
~/django_ynh$ make install
|
|
|
|
~/django_ynh$ make local-test
|
|
|
|
```
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
|
|
|
|
* SQlite database will be used
|
|
|
|
* A super user with username `test` and password `test` is created
|
|
|
|
* The page is available under `http://127.0.0.1:8000/app_path/`
|