Skip to main content

Buyback program management app for Alliance Auth

Project description

Buybacks for Alliance Auth

This is a buyback program management app for Alliance Auth (AA).

License python django

Contents

  1. Key Features
  2. Installation
    1. Install app
    2. Update Eve Online app
    3. Configure AA settings
    4. Finalize installation into AA
    5. Data import
    6. Setup permissions
    7. Setup corp
    8. Define programs
    9. Calculating
  3. Updating
  4. Tips & Tricks
  5. TODO

Overview

This app helps running buyback programs for an alliance or corporation.

Key Features

It offers the following main features:

  • Manage corporation buyback programs
  • Calculate value of the items that will be sent to the buyback program
  • Store statistics on the usage of buyback programs

Installation

Install app

Install into your Alliance Auth virtual environment from PyPI:

pip install aa-buybacks

Update Eve Online app

Update the Eve Online app used for authentication in your AA installation to include the following scopes:

esi-universe.read_structures.v1
esi-contracts.read_corporation_contracts.v1
esi-assets.read_corporation_assets.v1

Configure AA settings

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

  • Add eveuniverse and 'buybacks' to INSTALLED_APPS

  • Add these lines to bottom of your settings file:

    # settings for buybacks
    CELERYBEAT_SCHEDULE['buybacks_update_all_offices'] = {
        'task': 'buybacks.tasks.update_all_offices',
        'schedule': crontab(minute=0, hour='*/12'),
    }
    CELERYBEAT_SCHEDULE['buybacks_sync_all_contracts'] = {
        'task': 'buybacks.tasks.sync_all_contracts',
        'schedule': crontab(minute=0, hour='*'),
    }
    

Finalize installation into AA

Run migrations & copy static files

python manage.py migrate
python manage.py collectstatic

Restart your supervisor services for AA

Data import

Load EVE Online type data from ESI:

python manage.py buybacks_load_types

Setup permissions

Now you can access Alliance Auth and setup permissions for your users. This is an overview of all permissions used by this app:

Name Purpose Code
Can access this app and view buyback programs Enabling the app for a user. This permission should be enabled for everyone who is allowed to use the app (e.g. Member state) basic_access
Can setup corporation Add or updates the character for syncing offices and contracts. This should be limited to users with admins / leadership privileges. setup_retriever
Can manage buyback programs User with this permission can manage the buyback programs and view the cumulative statistics manage_programs

Setup corp

Finally you need to set a corporation with the character that will be used for fetching the corporation offices, contracts and related structures. Just click on Setup Corp and add the requested token.

Note that only users with the appropriate permission will be able to see and use this button.

Note that the respective character needs to be a director for the corporation.

Define programs

Let's say your corp has an ORE buyback program and you want to use this tool for that. First, you need to click on Create Program and fill the name of the program.

Note that only users with the appropriate permission will be able to see and use this button.

Once it is created, you should be able to add all the locations (where your corp has an office) denoting the structures or stations to create the contracts for. You might only accept the ores in certain corp refineries and don't want people to send it other structures.

You should also be able to add all the items and the percentage the corp skims on top of the price. For example, for your ORE buyback program, add Plagioclase with brokerage set at 20%.

That's it. The buybacks program is fully created and ready to be used.

Calculating

Any character can use one of the buyback programs by clicking on Use button on one of the program. Once done, they need to select the location and can copy-paste the items they want to send to the corp. When they click on Calculate, the app calculates the exact amount based on the prices defined in the program and shows them that total value.

Once they see the total value, they would need to send an in-game contract for the exact amount and then click on Notify to notify the app about it.

Once the corp accepts a contract, our contracts sync feature would automatically match the corresponding notification (based on the total price, items with quantities and the location of the contract) and store it in the statistics.

Updating

To update your existing installation of Buybacks first enable your virtual environment.

Then run the following commands from your AA project directory (the one that contains manage.py).

pip install -U aa-buybacks
python manage.py migrate
python manage.py collectstatic

Finally restart your AA supervisor services.

Tips & Tricks

  • If you want to edit the brokerage of an item in a program, you can just add the item with the new brokerage and it will update the existing one.

TODO

  • Use refined value to calculate OREs
  • Set refining percentage per item
  • Statistics filtering

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aa-buybacks-0.1.3.tar.gz (29.5 kB view hashes)

Uploaded Source

Built Distribution

aa_buybacks-0.1.3-py3-none-any.whl (40.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page