Metadata-Version: 2.4
Name: aa-fitting-mastery
Version: 0.1.7
Summary: Fitting Mastery and Skill Plan generator.
Author-email: Jay <jays.gaming.contact@gmail.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.0
Classifier: Framework :: Django :: 4.2
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
License-File: LICENSE
Requires-Dist: aa-memberaudit>=4.3.1
Requires-Dist: fittings>=2.3.0
Requires-Dist: allianceauth-app-utils>=1.18
Requires-Dist: allianceauth>=4,<5
Requires-Dist: django-esi>=8.3.1
Requires-Dist: django-eveonline-sde>=0.0.1b2
Project-URL: Changelog, https://github.com/hermesdj/aa-fitting-mastery/blob/main/CHANGELOG.md
Project-URL: Homepage, https://github.com/hermesdj/aa-fitting-mastery
Project-URL: Source, https://github.com/hermesdj/aa-fitting-mastery
Project-URL: Tracker, https://github.com/hermesdj/aa-fitting-mastery/issues

# Fitting Mastery Plugin for Alliance Auth

`aa-fitting-mastery` is an [Alliance Auth](https://allianceauth.readthedocs.io/) plugin that turns doctrine fittings into actionable skill plans.

It connects your configured doctrines and fittings from the `fittings` plugin with character and skill data from `aa-memberaudit`, then provides:

- pilot readiness views for accessible doctrine fittings,
- missing required and recommended skills,
- exportable in-game skill plans,
- configurable required and recommended skill plans per fitting,
- leadership summary views for doctrine coverage.

[![release](https://img.shields.io/pypi/v/aa-fitting-mastery?label=release)](https://pypi.org/project/aa-fitting-mastery/)
[![python](https://img.shields.io/pypi/pyversions/aa-fitting-mastery)](https://pypi.org/project/aa-fitting-mastery/)
[![django](https://img.shields.io/pypi/djversions/aa-fitting-mastery?label=django)](https://pypi.org/project/aa-fitting-mastery/)
[![license](https://img.shields.io/badge/license-MIT-green)](LICENSE)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

## Contents

- [Overview](#overview)
- [Requirements](#requirements)
- [Main features](#main-features)
- [Screenshots](#screenshots)
- [Installation](#installation)
- [Updating](#updating)
- [Configuration](#configuration)
- [Permissions](#permissions)
- [How it works](#how-it-works)
- [Settings](#settings)
- [Contributing](#contributing)

## Overview

Fitting Mastery is designed for organizations that already manage doctrine ships in `fittings` and track character skills in `aa-memberaudit`.

The plugin adds two complementary workflows:

1. **Pilot workflow**
   - members can see which of their characters can fly a doctrine fitting,
   - inspect missing required / recommended skills,
   - export missing skills in a format suitable for EVE skill plan import.

2. **Leadership workflow**
   - doctrine managers can configure fitting skill plans,
   - review suggestions to blacklist or restore skills,
   - define summary groups across corporations and alliances,
   - view doctrine coverage for a selected audience.

Access to doctrines and fittings follows the visibility rules from the `fittings` plugin so that category restrictions are respected consistently.

## Requirements

This plugin depends on the following components:

- `fittings` — required
- `aa-memberaudit` — required
- `django-eveonline-sde` / `eve_sde` — required for ship mastery and dogma data
- Alliance Auth 4.x

> **Important**
> This plugin does **not** replace `fittings` or `aa-memberaudit`.
> It builds on top of both. You need both plugins installed and working before enabling `mastery`.

## Main features

- Generate fitting skill plans from doctrine ships and their modules
- Merge **required** fitting skills with **recommended** ship mastery skills
- Add manual skills, blacklist skills, or override recommended levels per fitting
- Detect and suggest skills that can be removed from a plan
- Export missing skills in dependency-safe order for in-game EVE import
- Support multiple export languages for skill names
- Show member-facing doctrine readiness based on accessible fittings only
- Show leadership doctrine coverage across configurable corp/alliance audience groups
- Keep fitting access aligned with the access rules configured in the `fittings` plugin

## Screenshots

### Character progress

![Character progress](https://raw.githubusercontent.com/hermesdj/aa-fitting-mastery/main/docs/view-character-progress.png)

### Fitting skill plan management

![Fitting skill plans](https://raw.githubusercontent.com/hermesdj/aa-fitting-mastery/main/docs/edit-fitting-skill-plans.png)

## Installation

### 1 - Install prerequisites

Make sure your Alliance Auth installation already has these apps installed and configured:

- `fittings`
- `memberaudit`
- `eve_sde`

### 2 - Install the package

Install the plugin into your Alliance Auth virtual environment:

```bash
pip install aa-fitting-mastery
```

### 3 - Add the app to Alliance Auth

Add `mastery` to `INSTALLED_APPS` in your `local.py`:

```python
INSTALLED_APPS += [
    "mastery",
]
```

### 4 - Configure the scheduled SDE mastery update task

Add the periodic task to your `CELERYBEAT_SCHEDULE` (every day at midnight):

```python
from celery.schedules import crontab

CELERYBEAT_SCHEDULE["update_sde_masteries"] = {
    "task": "mastery.tasks.update_sde_masteries",
    "schedule": crontab(minute="0", hour="0"),
}
```

### 5 - Run migrations and collect static files

```bash
python manage.py migrate
python manage.py collectstatic
```

### 6 - Import mastery data

Import ship mastery and certificate data from the EVE SDE:

```bash
python manage.py import_sde_masteries
```

For a test run without writing to the database:

```bash
python manage.py import_sde_masteries --dry-run
```

### 7 - Restart your services

Restart your web and Celery services so the plugin and beat task are loaded.

## Updating

To update an existing installation:

```bash
pip install -U aa-fitting-mastery
python manage.py migrate
python manage.py collectstatic
```

Then restart your web and Celery services.

## Configuration

After installation, the usual setup flow is:

1. **Ensure your doctrines and fittings already exist in the `fittings` plugin**
2. Open **Manage Skill Plans** in Fitting Mastery
3. Generate or sync doctrine skill plans
4. Review each fitting and adjust:
   - mastery level,
   - manual skills,
   - blacklisted skills,
   - recommended level overrides,
   - skill suggestions
5. If you want doctrine leadership views, create audience groups in **Summary Group Settings**
6. Assign the appropriate permissions to members, doctrine managers and leadership roles

### Access model

For pilot-facing views, Fitting Mastery uses the same fittings visibility rules as the `fittings` plugin.

That means:

- users must have access to `fittings` itself,
- category restrictions remain effective,
- doctrines and fittings that are hidden in `fittings` will not be exposed by Fitting Mastery.

## Permissions

The plugin defines the following permissions:

| Code | Description |
| --- | --- |
| `basic_access` | Can access the pilot-facing Fitting Mastery pages |
| `manage_fittings` | Can manage doctrine/fitting skill plans |
| `doctrine_summary` | Can view leadership doctrine summary pages |
| `manage_summary_groups` | Can create and manage summary audience groups |

### Recommended usage

- **Members**: `basic_access`
- **Doctrine / fitting managers**: `basic_access`, `manage_fittings`
- **Leadership / FC / HR reviewers**: `basic_access`, `doctrine_summary`
- **Admins managing summary scopes**: `manage_summary_groups`

In practice, pilot-facing access is usually granted together with fitting visibility from the `fittings` plugin.

You will typically also want matching access in the `fittings` plugin, especially `fittings.access_fittings` or `fittings.manage`.

## How it works

At a high level the plugin works like this:

1. It reads the ship and module requirements from fitting dogma data
2. It reads ship mastery recommendations from imported SDE mastery data
3. It combines both into a per-fitting skill plan
4. It lets managers refine that plan with blacklists, manual additions and level overrides
5. It compares those plans against character skills from `aa-memberaudit`
6. It presents the result in pilot and leadership views

### Required vs Recommended

- **Required** skills come from fitting / module requirements and their recursive prerequisites
- **Recommended** skills come from ship mastery data, plus any manual adjustments you configure

### Summary groups

Doctrine summary views can be scoped to configurable audience groups.

Each summary group can combine:

- corporations,
- alliances,
- mixed corporation/alliance audiences.

This makes it possible to review doctrine coverage for a coalition, SIG, alliance wing or any other relevant operational scope.

### Exported skill plans

When exporting missing skills for a pilot, the plugin:

- includes all missing intermediate levels,
- adds missing prerequisites recursively,
- orders skills so prerequisites appear first,
- supports multiple languages for skill labels.

## Settings

The following setting can be added to your Alliance Auth `local.py`:

| Name | Description | Default |
| --- | --- | --- |
| `MASTERY_PLAN_ESTIMATE_SP_PER_HOUR` | Training speed used to estimate plan duration in fitting previews | `1800` |
| `MASTERY_STATUS_ELITE_RECOMMENDED_PCT` | Recommended coverage threshold for the **Elite** bucket | `100` |
| `MASTERY_STATUS_ALMOST_ELITE_RECOMMENDED_PCT` | Recommended coverage threshold for the **Almost elite** bucket | `75` |
| `MASTERY_STATUS_ALMOST_FIT_REQUIRED_PCT` | Required coverage threshold for the **Almost fit** bucket | `90` |
| `MASTERY_DEFAULT_SKILLS` | Global default required skills injected into all generated fitting plans | `[]` |

Example:

```python
MASTERY_PLAN_ESTIMATE_SP_PER_HOUR = 1800
MASTERY_STATUS_ELITE_RECOMMENDED_PCT = 100
MASTERY_STATUS_ALMOST_ELITE_RECOMMENDED_PCT = 75
MASTERY_STATUS_ALMOST_FIT_REQUIRED_PCT = 90
MASTERY_DEFAULT_SKILLS = [
    {"type_id": 28164, "required_level": 1},  # Thermodynamics I
]
```

### Default skills injected into all plans

`MASTERY_DEFAULT_SKILLS` lets you force one or more baseline skills into **every** generated fitting plan.

This is useful for alliance-wide standards such as always requiring `Thermodynamics I`, even when that skill does not come directly from fitting requirements or ship mastery data.

Format:

```python
MASTERY_DEFAULT_SKILLS = [
    {"type_id": 28164, "required_level": 1},
    {"type_id": 3436, "required_level": 4},
]
```

Behavior:

- each entry must provide `type_id` and `required_level`,
- `required_level` must be between `1` and `5`,
- if a skill already exists in the generated plan, the plugin keeps the **highest** required level,
- invalid entries are ignored safely instead of breaking plan generation.

## Contributing

Contributions are welcome.

Suggested local workflow:

1. Create a branch from `main`
2. Run tests and lint locally before opening a PR
3. Keep changes focused (feature/fix scope) and avoid unrelated refactors
4. Update `README.md` / `CHANGELOG.md` when behavior or settings change

Typical commands:

```bash
python -m pip install -e .
python -m pip install tox
tox -e py312-django42
tox -e pylint
```

Alliance Auth plugin conventions used in this project:

- Keep async/sync boundaries clear (views/services split)
- Prefer thin views and reusable service helpers
- Reuse existing partial templates for repeated UI blocks
- Preserve `fittings` visibility rules in all pilot/summary views

## Notes

- If you change doctrine skill plan configuration, regenerate or sync the affected doctrine/fitting so changes are reflected in the active skill set.
- If leadership summaries are enabled, remember to configure at least one summary audience group.
- If no mastery data has been imported yet, recommended ship skills will be incomplete until `import_sde_masteries` has been run.
- Fitting Mastery respects fitting visibility from the `fittings` plugin and will not intentionally expose restricted doctrines or fittings outside that access model.

