Browse Apps

Structure Timers II

An app for keeping track of Eve Online structure timers


Structure Timers II

An app for keeping track of Eve Online structure timers with Alliance Auth and Discord.

release python django CI/CD Pipeline codecov license pre-commit Code style: black chat

Contents

Overview

Structure Timers II is an enhanced version of the Alliance Auth's Structure Timers app. It offers many additional and useful features and an improved UI. It also provides integrations with several other community apps, e.g. aa-structures.

Features

Here is an overview of Structure Timers II's main features.

  • Create and edit timers for structure and moon mining events
  • Add notes and screenshots to timers (e.g. with the structure's fitting)
  • Get automatic notifications about upcoming timers on Discord
  • Restrict timer access to your corporation, alliance or users with special clearance ("OPSEC")
  • Find timers quickly with filters and full text search
  • Automatic cleanup of elapsed timers
  • Integrated with several other community apps

Structure Timers II is integrated with the following community apps:

Screenshots

List of timers

timerboard

Details for a timer

timerboard

Creating a new timer

timerboard

Notification on Discord

notification

Installation

Step 1 - Check Preconditions

Please make sure you meet all preconditions before proceeding:

  1. Structure Timers is a plugin for Alliance Auth. If you don't have Alliance Auth running already, please install it first before proceeding. (see the official AA installation guide for details)

  2. Structure Timers needs the app django-eveuniverse to function. Please make sure it is installed, before continuing.

Note that Structure Timers is compatible with Alliance Auth's Structure Timer app and can be installed in parallel.

Step 2 - Install app

Make sure you are in the virtual environment (venv) of your Alliance Auth installation. Then install the newest release from PyPI:

pip install aa-structuretimers

Step 3 - Configure settings

Configure your Auth settings (local.py) as follows:

  • Add 'structuretimers' to INSTALLED_APPS
  • Add the following lines to your settings file:
CELERYBEAT_SCHEDULE['structuretimers_housekeeping'] = {
    'task': 'structuretimers.tasks.housekeeping',
    'schedule': 10800,  # 3 hours
}
CELERYBEAT_SCHEDULE['structuretimers_dispatch_scheduled_notifications'] = {
    'task': 'structuretimers.tasks.dispatch_scheduled_notifications',
    'schedule': 60,
}

Note: structuretimers_dispatch_scheduled_notifications must be added for scheduled notifications to be delivered at all, since notifications are no longer self-scheduling via Celery ETA. If you are upgrading from an earlier version, make sure to add this periodic task alongside your existing structuretimers_housekeeping entry.

  • Optional: Add additional settings if you want to change any defaults. See Settings for the full list.

Step 4 - Finalize installation

Run migrations & copy static files

python manage.py migrate
python manage.py collectstatic

Restart your supervisor services for Auth

Step 5 - Preload Eve Universe data

In order to be able to select solar systems and structure types for timers you need to preload some data from ESI once. If you already have run those commands previously you can skip this step.

Load Eve Online map:

python manage.py eveuniverse_load_data map
python manage.py structuretimers_load_eve

You may want to wait until the data loading is complete before starting to create new timers.

Step 6 - Migrate existing timers

If you have already been using the classic app from Auth, you can migrate your existing timers over to Structure Timers II. Just run the following command:

python manage.py structuretimers_migrate_timers

[!NOTE] We suggest migration timers before setting up notification rules to avoid potential notification spam for migrated timers.

Step 7 - Setup notification rules

If you want to receive notifications about timers on Discord you can setup notification rules on the admin site. e.g. you can setup a rule to send notifications 60 minutes before a timer elapses. Please see Notification Rules for details.

Step 8 - Setup permissions

Another important step is to setup permissions, to ensure the right people have access features. Please see Permissions for an overview of all permissions.

Settings

Here is a list of available settings for this app. They can be configured by adding them to your Auth settings file (local.py).

[!TIP] All settings are optional and the app will use the documented default settings if they are not used.

Name Description Default
STRUCTURETIMERS_MAX_AGE_FOR_NOTIFICATIONS Grace period in minutes. A scheduled notification will still be sent if its timer elapsed less than this many minutes ago, and discarded as outdated otherwise 15
STRUCTURETIMERS_NOTIFICATIONS_ENABLED Whether notifications for timers are scheduled at all True
STRUCTURETIMERS_TIMERS_OBSOLETE_AFTER_DAYS Minimum age in days for a timer to be considered obsolete. Obsolete timers will automatically be deleted. If you want to keep all timers, set to None 30
STRUCTURETIMERS_DEFAULT_PAGE_LENGTH Default page size for timerboard. Must be an integer value from the available options in the app. 10
STRUCTURETIMERS_PAGING_ENABLED Whether paging is enabled on the timerboard. True
STRUCTURETIMER_NOTIFICATION_SET_AVATAR Whether structuretimers sets the name and avatar icon of a webhook. When False the webhook will use its own values as set on the platform. True

Notification Rules

In Structure Timers II you can receive automatic notifications on Discord for timers by setting up notification rules. Notification rules allow you to define in detail what event and which kind of timers should trigger notifications.

[!NOTE] In general all rules are independent from each other and all enabled rules will be executed for every timer one by one.

Example setup

Here is an example for a basic setup of rules:

Example 1: Notify about every newly created timer without ping (e.g. into a scouts channel)

  • Trigger: New timer created
  • Scheduled Time: -
  • Webhook: YOUR-WEBHOOK
  • Ping Type: (no ping)

Example 2: Notify 45 minutes before any timer elapses with ping (e.g. into the FC channel)

  • Trigger: Scheduled time reached
  • Scheduled Time: T - 45 minutes
  • Webhook: YOUR-WEBHOOK
  • Ping Type: @here

Key concepts

Here are some key concepts. For all details please see the onscreen help text when creating rules.

Triggers

Notifications can be triggered by two kinds of events:

  • When a new timers is created
  • When the remaining time of timer has reached a defined threshold (e.g. 10 minutes before timer elapses)

Webhooks

Each rule has exactly one webhook. You can of course define multiple rules for the same webhook or define rules for different webhooks.

Timer clauses

Almost every property of a timer can be used to define rules. For example you can define to get notifications only for timers which hostile objective or only for final timers.

Setting a timer clause is optional - clauses that aren't set will always match any timer.

Staging system

You can define one or multiple staging systems. Then you can see the distance in jumps and LY from your currently selected staging system to any timer (except for WH systems).

Staging systems can be added or modified on the admin site under: Structure Timers/Staging Systems.

Permissions

Here are all relevant permissions:

Codename Description
general - Can access this app and see timers Basic permission required by anyone to access this app. Gives access to the list of timers (which timers a user sees can depend on other permissions and settings for a timers)
general - Can create new timers and edit own timers Users with this permission can create new timers and edit or delete their own timers.
general - Can edit and delete any timer Users with this permission can edit and delete any timer.
general - Can create and see opsec timers Users with this permission can create and view timers that are opsec restricted.

Management commands

The following management commands are available:

  • structuretimers_load_eve: Preload all eve objects required for this app to function
  • structuretimers_migrate_timers: Migrate pending timers from Alliance Auth's Structure Timers app

No reviews yet...

Python Requirements

Required Python packages to be installed and other Python requirement.

App Dependencies


Required apps:

Used by apps:

    -

Dependencies to other apps registered in this app directory.

Classifiers

  • Environment :: Web Environment
  • Framework :: Django
  • Framework :: Django :: 4.2
  • Framework :: Django :: 5.2
  • Intended Audience :: End Users/Desktop
  • Operating System :: OS Independent
  • Programming Language :: Python
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Topic :: Internet :: WWW/HTTP
  • Topic :: Internet :: WWW/HTTP :: Dynamic Content

Version

3.2.0

License

?

Homepage

  https://github.com/AllianceAuth-Apps/aa-structuretimers

PyPI

  https://pypi.org/project/aa-structuretimers/

Last updated

1 day, 9 hours ago

First published

6 years ago

Category

Plugin Apps

Rating

-

Authors

Erik Kalkoken

Maintainers

Erik Kalkoken Erik Kalkoken

Please login to see more options.