Skip to main content

An Alliance Auth app that tracks and applies taxes for mining

Project description

Mining Taxes

An Alliance Auth app for tracking mining activities and charging taxes.

pipeline pre-commit Code style: black

Credit to AA's memberaudit and buyback plugins which formed the foundation for this plugin.

Screenshots

monthly oreprices leaderboards

Features

  • Monthly leaderboards to show top miners.
  • Supports multiple corps under one system (Add one character with the accountant role per corp in the admin setup)
  • Supports corp moon mining tracking.
  • Able to track when unrecognized characters are mining your corp's private moons.
  • Tax credit system to offset, zero, or award tax credits to a given user.
  • Supports separate tax rates for Regular Ore, Mercoxit, Gas, Ice, R64, R32, R16, R8, and R4.
  • Tracks tax payments into the corp master wallet filtering with a user defined phrase.
  • Set a monthly interest rate that penalizes for unpaid tax balances.
  • Automatic monthly notifications and monthly interest applied with unpaid balance.
  • Supports Fuzzworks and Janice for daily price updates.
  • Supports refined price calculation versus raw ore prices (the higher price will be the taxed price).
  • Supports multiple mining characters under one user.
  • Monthly statistics and detailed tax calculations available to each user and auditor.
  • Provides a current Ore price chart that is updated each day with the latest prices.
  • Export tax information in CSV format.

Installation instructions

  • If you would like to use Janice for pricing information, obtain an API key by following the instructions at the top of the Swagger documentation and FAQ.
  • Install using pip: pip install aa-miningtaxes
  • Add miningtaxes and django_celery_results to INSTALLED_APPS in myauth/settings/local.py
  • Run migrations: python manage.py migrate
  • Collect and deploy static assets: python manage.py collectstatic
  • Preload pricing information python manage.py miningtaxes_preload_prices
  • Set local settings
CELERY_RESULT_BACKEND = 'django-db'
CELERY_CACHE_BACKEND = 'django-cache'

MININGTAXES_PRICE_JANICE_API_KEY = "XXXX"
MININGTAXES_PRICE_METHOD = "Janice"

CELERYBEAT_SCHEDULE['miningtaxes_update_daily'] = {
    'task': 'miningtaxes.tasks.update_daily',
    'schedule':  crontab(minute=0, hour='1'),
}

# Notifiy everyone of their current taxes on the second day of every month.
CELERYBEAT_SCHEDULE['miningtaxes_notifications'] = {
    'task': 'miningtaxes.tasks.notify_taxes_due',
    'schedule': crontab(0, 0, day_of_month='2'),
}

# Charge interest and notify everyone on the 15th of every month.
CELERYBEAT_SCHEDULE['miningtaxes_apply_interest'] = {
    'task': 'miningtaxes.tasks.apply_interest',
    'schedule': crontab(0, 0, day_of_month='15'),
}
  • Navigate to the admin panel and setup the accountants (1 per corp)

Post-Setup instructions

  • After you have setup your accountants (1 per corp) in the Admin Setup panel, invite all the members of your corp to add their characters.
  • If you enable MININGTAXES_TAX_ONLY_CORP_MOONS, remember that only moon mining of your corp moons will be taxes and other moons will be ignored.
  • After everyone in the corp has added their characters, consider running to the miningtaxes_zero_all command to zero out everyone's taxes to prevent mining activity from the past from being taxed.
  • When a new user joins your corp and adds their character to the plugin, also consider going into the audit tables and providing a tax credit so that it will zero out their past mining activity.

Local settings

Name Description Default
MININGTAXES_UNKNOWN_TAX_RATE The tax rate when a new type of ore is encountered that has not yet been added to the plugin in float (eg 0.10 means 10%) 0.10
MININGTAXES_TAX_ONLY_CORP_MOONS Only tax corporate moons using moon observers as opposed to all moons appearing in the personal mining ledgers. True
MININGTAXES_UPDATE_LEDGER_STALE Minutes after which a character's mining ledger is considered stale 240
MININGTAXES_REFINED_RATE Refining rate for ores. 0.9063
MININGTAXES_ALWAYS_TAX_REFINED Always tax the refined rate instead of the raw ore price (if higher) False
MININGTAXES_PRICE_METHOD By default Fuzzwork API will be used for pricing, if this is set to "Janice" then the Janice API will be used. Fuzzwork
MININGTAXES_PRICE_JANICE_API_KEY The API key to access Janice API.
MININGTAXES_PRICE_SOURCE_ID Station ID for fetching base prices. Supports IDs listed on Fuzzworks API. Does not work with Janice API! 60003760
MININGTAXES_ALLOW_ANALYTICS Allow analytics to be sent for plugin usage. True
MININGTAXES_BLACKLIST List of system names that taxes should be ignored in. Case sensitive. []
MININGTAXES_TAX_HISEC Include taxing for mining activity in High Security Space True
MININGTAXES_TAX_LOSEC Include taxing for mining activity in Low Security Space True
MININGTAXES_TAX_NULLSEC Include taxing for mining activity in Null Security Space True
MININGTAXES_TAX_JSPACE Include taxing for mining activity in J-Space (Wormhole) True
MININGTAXES_TAX_POCHVEN Include taxing for mining activity in Pochven (Trig Space) True

Permissions

Name Purpose Example Target Audience
basic_access Can access this app and see own tax information, current ore prices, and FAQ. Member State
auditor_access Can view everyone's tax information and see statistics on taxes. Auditors
admin_access Can set tax rate and add characters with the accountant role to pull information from the corp Master Wallet and the corp moons. Leadership

Commands

Name Description
miningtaxes_preload_prices Preload all ores and refined materials from chosen Pricing API (Fuzzworks or Janice).
miningtaxes_zero_all Zero the tax balance of ALL characters.
miningtaxes_update_manual Trigger a manual update for all data

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-miningtaxes-1.3.2.tar.gz (646.9 kB view hashes)

Uploaded Source

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