https://github.com/ppfeufer/allianceauth-afat
Another Fleet Activity Tracking tool for Alliance Auth
https://github.com/ppfeufer/allianceauth-afat
allianceauth esi eve-online fat-links fleet fleet-activity-tracking fleet-tracking
Last synced: 4 months ago
JSON representation
Another Fleet Activity Tracking tool for Alliance Auth
- Host: GitHub
- URL: https://github.com/ppfeufer/allianceauth-afat
- Owner: ppfeufer
- License: gpl-3.0
- Created: 2020-08-27T18:43:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-20T14:58:43.000Z (about 1 year ago)
- Last Synced: 2025-03-20T15:44:35.616Z (about 1 year ago)
- Topics: allianceauth, esi, eve-online, fat-links, fleet, fleet-activity-tracking, fleet-tracking
- Language: Python
- Homepage:
- Size: 7.1 MB
- Stars: 0
- Watchers: 2
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Alliance Auth AFAT — Another Fleet Activity Tracker
[](https://pypi.org/project/allianceauth-afat/)
[](https://pypi.org/project/allianceauth-afat/)
[](https://pypi.org/project/allianceauth-afat/)
[](https://pypi.org/project/allianceauth-afat/)

[](https://results.pre-commit.ci/latest/github/ppfeufer/allianceauth-afat/master)
[](http://black.readthedocs.io/en/latest/)
[](https://github.com/ppfeufer/allianceauth-afat/actions/workflows/automated-checks.yml)
[](https://codecov.io/gh/ppfeufer/allianceauth-afat)
[](https://weblate.ppfeufer.de/engage/alliance-auth-apps/)
[](https://github.com/ppfeufer/aa-forum/blob/master/CODE_OF_CONDUCT.md)
[](https://discord.gg/fjnHAmk)
[](https://ko-fi.com/N4N8CL1BY)
An Improved FAT/PAP System for
[Alliance Auth](https://gitlab.com/allianceauth/allianceauth).
______________________________________________________________________
- [Features and Highlights](#features-and-highlights)
- [Screenshots](#screenshots)
- [Dashboard](#dashboard)
- [Fat Link List](#fat-link-list)
- [Fat Link Details](#fat-link-details)
- [Add Fat Link View for FCs](#add-fat-link-view-for-fcs)
- [Smart Filter: FATs in Time Period](#smart-filter-fats-in-time-period)
- [Installation](#installation)
- [Bare Metal Installation](#bare-metal-installation)
- [Step 1: Install the App](#step-1-install-the-app)
- [Step 2: Update Your AA Settings](#step-2-update-your-aa-settings)
- [Step 3: Finalizing the Installation](#step-3-finalizing-the-installation)
- [Docker Installation](#docker-installation)
- [Step 1: Add the App](#step-1-add-the-app)
- [Step 2: Update Your AA Settings](#step-2-update-your-aa-settings-1)
- [Step 3: Build Auth and Restart Your Containers](#step-3-build-auth-and-restart-your-containers)
- [Step 4: Finalizing the Installation](#step-4-finalizing-the-installation)
- [Updating](#updating)
- [Bare Metal Installation](#bare-metal-installation-1)
- [Docker Installation](#docker-installation-1)
- [Common Steps](#common-steps)
- [Data Migration](#data-migration)
- [Import From Native FAT](#import-from-native-fat)
- [Bare Metal Installation](#bare-metal-installation-2)
- [Docker Installation](#docker-installation-2)
- [Settings](#settings)
- [Permissions](#permissions)
- [Changelog](#changelog)
- [Translation Status](#translation-status)
- [Contributing](#contributing)
- [Credits](#credits)
______________________________________________________________________
- Automatic tracking of participation on FAT links created via ESI
- Multiple ESI fleets (with your alts)
- Manually end ESI tracking per fleet
- Fleet type classification (can be added in the admin backend)
- Ship type overview per FAT link
- Graphical statistics views
- Re-open FAT link if the FAT link has expired and is within the defined grace time
(only for clickable FAT links)
- Manually add pilots to clickable FAT links, in case they missed clicking the link
(for a period of 24 hours after the FAT links original expiry time)
- Log for the following actions (Logs are kept for a certain time, 60 days per default):
- Create FAT link
- Change FAT link
- Remove FAT link
- Re-open FAT link
- Manually add pilot to FAT link
- Remove pilot from FAT link
- Smart filter for integration with [Secure Groups](https://github.com/Solar-Helix-Independent-Transport/allianceauth-secure-groups)
- FATs in time period
AFAT will work alongside the built-in native FAT System and ImicusFAT.
However, data doesn't share, but you can migrate their data to AFAT, for more
information, see below.




### Smart Filter: FATs in Time Period

> [!Important]
>
> This app is a plugin for [Alliance Auth](https://gitlab.com/allianceauth/allianceauth). \
> If you don't have Alliance Auth running already, please install it first before
> proceeding. (See the official [AA installation guide](https://allianceauth.readthedocs.io/en/latest/installation/allianceauth.html) for details)
> [!IMPORTANT]
>
> This app is utilising features that are only available in Alliance Auth >= 4.12.0.
> Please make sure to update your Alliance Auth instance before installing this app,
> otherwise, an update to Alliance Auth will be pulled in unsupervised.
> [!NOTE]
>
> For users migrating from Alliance Auth's built-in FAT systems,
> please read the [specific instructions](#data-migration).
Make sure you're in the virtual environment (venv) of your Alliance Auth installation.
Then install the latest version:
```shell
pip install allianceauth-afat==5.0.0
```
#### Step 2: Update Your AA Settings
Configure your AA settings in your `local.py` as follows:
- Modify `INSTALLED_APPS` to include the following entries
```python
INSTALLED_APPS = [
# ...
"eve_sde", # Only if not already added for another app
"afat",
# ...
]
```
- Add the Scheduled Tasks
```python
# This line right below the `INSTALLED_APPS` list, and only if not already added for another app
INSTALLED_APPS = ["modeltranslation"] + INSTALLED_APPS
# AFAT - https://github.com/ppfeufer/allianceauth-afat
if "afat" in INSTALLED_APPS:
CELERYBEAT_SCHEDULE["afat_update_esi_fatlinks"] = {
"task": "afat.tasks.update_esi_fatlinks",
"schedule": crontab(minute="*/1"),
}
CELERYBEAT_SCHEDULE["afat_logrotate"] = {
"task": "afat.tasks.logrotate",
"schedule": crontab(minute="0", hour="1"),
}
if "eve_sde" in INSTALLED_APPS:
# Run at 12:00 UTC each day
CELERYBEAT_SCHEDULE["EVE SDE :: Check for SDE Updates"] = {
"task": "eve_sde.tasks.check_for_sde_updates",
"schedule": crontab(minute="0", hour="12"),
}
```
#### Step 3: Finalizing the Installation
Run migrations, copy static files and load EVE SDE data
```shell
python manage.py collectstatic
python manage.py migrate
python manage.py esde_load_sde
```
Add the app to your `conf/requirements.txt`:
```text
allianceauth-afat==5.0.0
```
#### Step 2: Update Your AA Settings
Configure your AA settings (`conf/local.py`) as follows:
- Modify `INSTALLED_APPS` to include the following entries
```python
INSTALLED_APPS = [
# ...
"eve_sde", # Only if not already added for another app
"afat",
# ...
]
```
- Add the Scheduled Tasks
```python
# This line right below the `INSTALLED_APPS` list, and only if not already added for another app
INSTALLED_APPS = ["modeltranslation"] + INSTALLED_APPS
# AFAT - https://github.com/ppfeufer/allianceauth-afat
if "afat" in INSTALLED_APPS:
CELERYBEAT_SCHEDULE["afat_update_esi_fatlinks"] = {
"task": "afat.tasks.update_esi_fatlinks",
"schedule": crontab(minute="*/1"),
}
CELERYBEAT_SCHEDULE["afat_logrotate"] = {
"task": "afat.tasks.logrotate",
"schedule": crontab(minute="0", hour="1"),
}
if "eve_sde" in INSTALLED_APPS:
# Run at 12:00 UTC each day
CELERYBEAT_SCHEDULE["EVE SDE :: Check for SDE Updates"] = {
"task": "eve_sde.tasks.check_for_sde_updates",
"schedule": crontab(minute="0", hour="12"),
}
```
#### Step 3: Build Auth and Restart Your Containers
```shell
docker compose build --no-cache
docker compose --env-file=.env up -d
```
#### Step 4: Finalizing the Installation
Run migrations, copy static files and load EVE SDE data:
```shell
docker compose exec allianceauth_gunicorn bash
auth collectstatic
auth migrate
auth esde_load_sde
```
To update your existing installation of AFAT, first enable your
virtual environment (venv) of your Alliance Auth installation.
```shell
pip install allianceauth-afat==5.0.0
python manage.py collectstatic
python manage.py migrate
redis-cli flushall
```
Finally, restart your supervisor services for AA
To update your existing installation of AFAT, all you need to do is to update the
respective line in your `conf/requirements.txt` file to the latest version.
```text
allianceauth-afat==5.0.0
```
Now rebuild your containers:
```shell
docker compose build
docker compose --env-file=.env up -d
```
After that, run the following commands to update your database and static files:
```shell
docker compose exec allianceauth_gunicorn bash
auth collectstatic
auth migrate
```
It is possible that some versions need some more changes. Always read the
[release notes](https://github.com/ppfeufer/allianceauth-afat/releases) to find out more.
Right after the **initial** installation and running migrations,
you can import the data from Alliance Auth's native FAT system if
you have used it until now.
To import from the native FAT module, run the following:
```shell
python myauth/manage.py afat_import_from_allianceauth_fat
```
```shell
docker compose exec allianceauth_gunicorn bash
auth afat_import_from_allianceauth_fat
```
To customize the module, the following settings can be managed in your admin backend:
| Setting | Description | Default Value |
| :--------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------ |
| Use doctrines from fittings module | Whether to use the doctrines from the Fittings modules in the doctrine dropdown or from AFATs own doctrine list. (Note: The [fittings module](https://gitlab.com/colcrunch/fittings) needs to be installed for this.) | No |
| Default FAT link expiry time | Default expiry time for clickable FAT links in Minutes | 60 |
| Default FAT link reopen grace time | Time in minutes a FAT link can be re-opened after it has expired | 60 |
| Default FAT link reopen duration | Time in minutes a FAT link is re-opened | 60 |
| Default log duration | Time in days before log entries are being removed from the DB | 60 |
| Name | Description | Notes |
| :---------------------- | :--------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| basic_access | Can access the AFAT module | Your line member probably want this permission, so they can see the module and click the FAT links they are given. They also can see their own statistics with this permission. |
| manage_afat | Can manage the AFAT module | Your Military lead probably should get this permission |
| add_fatlink | Can create FAT Links | Your regular FC or who ever should be able to add FAT links should have this permission |
| stats_corporation_own | Can see own corporation statistics | |
| stats_corporation_other | Can see statistics of other corporations | |
| logs_view | Can view the modules logs | |
To keep track of all changes, please read the
[Changelog](https://github.com/ppfeufer/allianceauth-afat/blob/master/CHANGELOG.md).
[](https://weblate.ppfeufer.de/engage/alliance-auth-apps/)
Do you want to help translate this app into your language or improve the existing
translation? - [Join our team of translators][weblate engage]!
You want to contribute to this project? That's cool!
Please make sure to read the [contribution guidelines](https://github.com/ppfeufer/allianceauth-afat/blob/master/CONTRIBUTING.md).\
(I promise, it's not much, just some basics)
AFAT is maintained by @ppfeufer and is based on
[ImicusFAT](https://gitlab.com/evictus.iou/allianceauth-imicusfat)
by @exiom with @Aproia and @ppfeufer which is based on
[allianceauth-bfat](https://gitlab.com/colcrunch/allianceauth-bfat) by @colcrunch
Both of these modules are no longer maintained and are deprecated. Both modules will
not run with the latest stable releases of Alliance Auth.
[weblate engage]: https://weblate.ppfeufer.de/engage/alliance-auth-apps/ "Weblate Translations"