Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adinhodovic/django-admin-shellx
A Django Admin Web Shell using Xterm.js and Django Channels.
https://github.com/adinhodovic/django-admin-shellx
django django-admin django-application python terminal xterm
Last synced: about 1 month ago
JSON representation
A Django Admin Web Shell using Xterm.js and Django Channels.
- Host: GitHub
- URL: https://github.com/adinhodovic/django-admin-shellx
- Owner: adinhodovic
- License: mit
- Created: 2024-02-16T19:59:11.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-29T13:04:02.000Z (8 months ago)
- Last Synced: 2024-09-28T16:40:12.274Z (about 2 months ago)
- Topics: django, django-admin, django-application, python, terminal, xterm
- Language: Python
- Homepage:
- Size: 3.86 MB
- Stars: 79
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django Admin Shell
A Django Web Shell using Xterm.js and Django Channels.
Note: This package depends on websockets therefore you'll need to use an ASGI application to use it. If you are not using Django channels then read through the official [Channels' documentation on installing Channels](https://channels.readthedocs.io/en/latest/installation.html), also see the [Channels' documentation on running ASGI applications](https://channels.readthedocs.io/en/latest/deploying.html).
## Demo
![GIF](./images/django-admin-shellx-demo.gif)
_The demo is from [Django.wtf's](https://django.wtf/) admin._## Features
- Fully responsive terminal using Xterm.js.
- Accessible through the admin.
- Authentication with Django auth, configurable to allow only superusers.
- The commands written are tied to a user.
- Saves command in a new model and create favorite commands.
- Filterable command history.
- LogEntry of all commands ran.
- Custom admin site to add Terminal links to the admin.
- Full screen mode.
- Working autocomplete.## Installation
Install the package using pip:
```bash
pip install django-admin-shellx
```Add `django_admin_shellx` to your `INSTALLED_APPS`:
```python
INSTALLED_APPS = [
# ...
'django_admin_shellx',
# ...
]
```The package uses websockets for real-time communication between a pseudo-shell on the server and
Xterm.js in the browser. Django doesn't handle websockets natively, so we have to deploy a second WSGI server for
this purpose.We will have to add an ASGI configuration file for the websocket server:
```python
import osfrom channels.auth import AuthMiddlewareStack
from channels.routing import ProtocolTypeRouter, URLRouter
from channels.security.websocket import AllowedHostsOriginValidator
from django.core.asgi import get_asgi_application# Follows the path of cookiecutter-django
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings.production")# The ASGI application
django_application = get_asgi_application()# Remember to import the urlpatters after the asgi application!
# pylint: disable=wrong-import-position
from django_admin_shellx.urls import websocket_urlpatternsapplication = ProtocolTypeRouter(
{
"websocket": AllowedHostsOriginValidator(
AuthMiddlewareStack(URLRouter(websocket_urlpatterns))
),
}
)
```When running the server in production you'll have:
1. A Django server which serves all of your traditional HTTP traffic (wsgi.py).
2. A Websocket server which serves the terminal traffic (asgi.py).
3. A reverse proxy which routes traditional traffic to the HTTP server and all websocket traffic
(**prefixed with /ws**) to your websocket server.To start the traditional server you'll use Gunicorn as usual.
To start the websocket server you use [Daphne](https://github.com/django/daphne).
```sh
daphne config.asgi:application -b 0.0.0.0 -p 80
```Lastly, we'll need to use a custom admin site to add a link to the terminal, add the following to your `INSTALLED_APPS`:
```python
INSTALLED_APPS = [
...
"django_admin_shellx",
"django_admin_shellx_custom_admin.apps.CustomAdminConfig",
]
```Ensure to remove the default `admin` app from the `INSTALLED_APPS` if you are using the custom admin site.
```python
INSTALLED_APPS = [
...
# 'django.contrib.admin',
...
]
```The above is optional and only adds a `view` button to the admin that links to the terminal. Otherwise, there will not be a link since it's not a model and can not be added to the admin. The terminal will either be accessible through the path `/admin/django_admin_shellx/terminalcommand/terminal/` and if you use the custom admin site, it will be accessible through a link in the admin.
## Usage
Head over to the admin and click on the `Terminal` link. You'll be presented with a terminal that you can use to run commands. The default commands are `./manage.py shell_plus`, `./manage.py shell` and `/bin/bash`. You can change the default commands by setting the `DJANGO_ADMIN_SHELLX_COMMAND` setting.
Each command is saved in the database and can be accessed through the admin. You can also add new commands through the admin and favorite existing commands. Each command ran is also saved as a [LogEntry](https://docs.djangoproject.com/en/dev/ref/contrib/admin/#logentry-objects).
### Settings
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| DJANGO_ADMIN_SHELLX_SUPERUSER_ONLY | Only allow superusers to access the admin shellx. | `boolean` | `True` | no |
| DJANGO_ADMIN_SHELLX_COMMANDS | The default commands to use when opening the terminal. | `list[list[str]]` | [["./manage.py", "shell_plus"], ["./manage.py", "shell"], ["/bin/bash"]] | no |
| DJANGO_ADMIN_SHELLX_WS_PORT | The port to use for the websocket. | `int` | None | no |