# AllianceAuth CharLink
[](https://pypi.org/project/aa-charlink/)

A simple app for AllianceAuth that allows users to link each character to all the AllianceAuth apps with only 1 login action.
## Overview
### Basic usage
1. Select which app you want to link your character to

2. Login on CPP site
3. Character linked to the selected apps

### Auditing
Users with the appropriate permission (see [permissions](#permissions)) can audit the linked characters of the users of their corporation, alliance or auth state. A link will appear on top of the main page of the app and will redirect to a page with a table of all the linked characters of the users of the selected corporation.
A user can be audited by clicking on the link on the `Main Character` column.
App Audit: Users can now audit character based on the apps they have access to. Select the app you want to audit from the dropdown menu in the audit page.
Admin App status: users with `is_superuser` can now see the list of imported apps and the ones with issues with the import.
## Installation
1. Install the app with
```shell
pip install aa-charlink
```
2. Add `'charlink',` to your `INSTALLED_APPS` in `local.py`
3. Run migrations and collectstatic
```shell
python manage.py migrate
python manage.py collectstatic
```
## Current apps
I've opened an [issue](https://github.com/Maestro-Zacht/aa-charlink/issues/1) to track the apps that have a default integration in CharLink and the WIPs. If you want another app to be supported, please comment on the issue, reach me on the [AllianceAuth discord server](https://discord.gg/fjnHAmk) or ask the developer of the app to implement an [integration via hook](#hook-integration).
## Hook integration
From version 1.1.0, CharLink supports hook integration. If you want to integrate your app with CharLink, you need to register a hook in the `auth_hooks.py` file:
```python
@hooks.register('charlink')
def register_charlink_hook():
return 'testauth.testapp.charlink_hook'
```
The hook has to return a string with the import path of the module containing the app integration. The module must contain a variable called `app_import` which is an instance of `charlink.app_imports.utils.AppImport`. You can find the documentation of the class in the [`utils.py`](./charlink/app_imports/utils.py) and some examples in the [imports folder](./charlink/imports).
## Settings
| Name | Description | Default |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| `CHARLINK_IGNORE_APPS` | List of apps to ignore. Use the name of the app as it is called in `INSTALLED_APPS` if you want to ignore all the entries for that app, or any of the options in the [following section]( #ignoring-single-entries) for ignoring a single entry | `[]` |
### Ignoring single entries
The following apps have more than 1 entry and you can ignore individual entries by adding the relative option below:
- `AllianceAuth Contacts`
- `Alliance Contacts`: `aa_contacts.alliance`
- `Corporation Contacts`: `aa_contacts.corporation`
- `Corptools`
- `Character Audit`: `corptools.default`
- `Corporation Audit`: `corptools.structures`
- `MiningTaxes`
- `Mining Taxes`: `miningtaxes.default`
- `Mining Taxes Admin`: `miningtaxes.admin`
- `AFAT`
- `AFAT Read Fleet`: `afat.readfleet`
- `AFAT Click Tracking`: `afat.clickfat`
- `Market Manager`
- `Market Manager - Character Login`: `marketmanager.character`
- `Market Manager - Corporation Login`: `marketmanager.corporation`
## Permissions
| Name | Description |
| ------------------------ | ---------------------------------------------------------- |
| `charlink.view_corp` | Can view linked character of members of their corporation. |
| `charlink.view_alliance` | Can view linked character of members of their alliance. |
| `charlink.view_state` | Can view linked character of members of their auth state. |
## Login page url
If you want to setup a template override to link the "Add character" button to the login page of this package, set the `a` element to:
```html
<a href="{% url 'charlink:index' %}" class="btn btn-primary flex-fill m-1" title="{% translate 'Add Character' %}">
<span class="d-md-inline m-2">{% translate 'Add Character' %}</span>
</a>
```
## Known issues
- For AFAT is not possible to check if the added character has a token which is still valid, it only checks if the character has ever added a token with the required scopes.
Raw data
{
"_id": null,
"home_page": null,
"name": "aa-charlink",
"maintainer": null,
"docs_url": null,
"requires_python": "~=3.10",
"maintainer_email": null,
"keywords": "allianceauth, eveonline, allianceauth_charlink, charlink",
"author": null,
"author_email": "Matteo Ghia <matteo.ghia@yahoo.it>",
"download_url": "https://files.pythonhosted.org/packages/8e/e2/988bc0ef57fe565021039b16ffde888d9ae40501e6e925e4f8937bf5e883/aa_charlink-1.9.1.tar.gz",
"platform": null,
"description": "# AllianceAuth CharLink\n\n[](https://pypi.org/project/aa-charlink/)\n\n\n\nA simple app for AllianceAuth that allows users to link each character to all the AllianceAuth apps with only 1 login action.\n\n## Overview\n\n### Basic usage\n\n1. Select which app you want to link your character to\n \n2. Login on CPP site\n3. Character linked to the selected apps\n \n\n### Auditing\n\nUsers with the appropriate permission (see [permissions](#permissions)) can audit the linked characters of the users of their corporation, alliance or auth state. A link will appear on top of the main page of the app and will redirect to a page with a table of all the linked characters of the users of the selected corporation.\n\nA user can be audited by clicking on the link on the `Main Character` column.\n\nApp Audit: Users can now audit character based on the apps they have access to. Select the app you want to audit from the dropdown menu in the audit page.\nAdmin App status: users with `is_superuser` can now see the list of imported apps and the ones with issues with the import.\n\n## Installation\n\n1. Install the app with\n\n ```shell\n pip install aa-charlink\n ```\n\n2. Add `'charlink',` to your `INSTALLED_APPS` in `local.py`\n3. Run migrations and collectstatic\n\n ```shell\n python manage.py migrate\n python manage.py collectstatic\n ```\n\n## Current apps\n\nI've opened an [issue](https://github.com/Maestro-Zacht/aa-charlink/issues/1) to track the apps that have a default integration in CharLink and the WIPs. If you want another app to be supported, please comment on the issue, reach me on the [AllianceAuth discord server](https://discord.gg/fjnHAmk) or ask the developer of the app to implement an [integration via hook](#hook-integration).\n\n## Hook integration\n\nFrom version 1.1.0, CharLink supports hook integration. If you want to integrate your app with CharLink, you need to register a hook in the `auth_hooks.py` file:\n\n```python\n@hooks.register('charlink')\ndef register_charlink_hook():\n return 'testauth.testapp.charlink_hook'\n```\n\nThe hook has to return a string with the import path of the module containing the app integration. The module must contain a variable called `app_import` which is an instance of `charlink.app_imports.utils.AppImport`. You can find the documentation of the class in the [`utils.py`](./charlink/app_imports/utils.py) and some examples in the [imports folder](./charlink/imports).\n\n## Settings\n\n| Name | Description | Default |\n| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |\n| `CHARLINK_IGNORE_APPS` | List of apps to ignore. Use the name of the app as it is called in `INSTALLED_APPS` if you want to ignore all the entries for that app, or any of the options in the [following section]( #ignoring-single-entries) for ignoring a single entry | `[]` |\n\n### Ignoring single entries\n\nThe following apps have more than 1 entry and you can ignore individual entries by adding the relative option below:\n\n- `AllianceAuth Contacts`\n - `Alliance Contacts`: `aa_contacts.alliance`\n - `Corporation Contacts`: `aa_contacts.corporation`\n- `Corptools`\n - `Character Audit`: `corptools.default`\n - `Corporation Audit`: `corptools.structures`\n- `MiningTaxes`\n - `Mining Taxes`: `miningtaxes.default`\n - `Mining Taxes Admin`: `miningtaxes.admin`\n- `AFAT`\n - `AFAT Read Fleet`: `afat.readfleet`\n - `AFAT Click Tracking`: `afat.clickfat`\n- `Market Manager`\n - `Market Manager - Character Login`: `marketmanager.character`\n - `Market Manager - Corporation Login`: `marketmanager.corporation`\n\n## Permissions\n\n| Name | Description |\n| ------------------------ | ---------------------------------------------------------- |\n| `charlink.view_corp` | Can view linked character of members of their corporation. |\n| `charlink.view_alliance` | Can view linked character of members of their alliance. |\n| `charlink.view_state` | Can view linked character of members of their auth state. |\n\n## Login page url\n\nIf you want to setup a template override to link the \"Add character\" button to the login page of this package, set the `a` element to:\n\n```html\n<a href=\"{% url 'charlink:index' %}\" class=\"btn btn-primary flex-fill m-1\" title=\"{% translate 'Add Character' %}\">\n <span class=\"d-md-inline m-2\">{% translate 'Add Character' %}</span>\n</a>\n\n```\n\n## Known issues\n\n- For AFAT is not possible to check if the added character has a token which is still valid, it only checks if the character has ever added a token with the required scopes.\n\n",
"bugtrack_url": null,
"license": null,
"summary": "Character Linker for Alliance Auth",
"version": "1.9.1",
"project_urls": {
"Changelog": "https://github.com/Maestro-Zacht/aa-charlink/releases",
"Homepage": "https://github.com/Maestro-Zacht/aa-charlink",
"Source": "https://github.com/Maestro-Zacht/aa-charlink",
"Tracker": "https://github.com/Maestro-Zacht/aa-charlink/issues"
},
"split_keywords": [
"allianceauth",
" eveonline",
" allianceauth_charlink",
" charlink"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "b0bb51841e3ec13d27ffc0f85304673d2e325684f52a495ef3e45c20e50ce0e7",
"md5": "b1644a1a30b79a2d9bb9e6cbff6fd539",
"sha256": "10dcc8948038c2178ed16bc24e0b65eac6b6ddd3727828f384735f34d9bac624"
},
"downloads": -1,
"filename": "aa_charlink-1.9.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b1644a1a30b79a2d9bb9e6cbff6fd539",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "~=3.10",
"size": 76756,
"upload_time": "2025-02-18T21:12:14",
"upload_time_iso_8601": "2025-02-18T21:12:14.090563Z",
"url": "https://files.pythonhosted.org/packages/b0/bb/51841e3ec13d27ffc0f85304673d2e325684f52a495ef3e45c20e50ce0e7/aa_charlink-1.9.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ee2988bc0ef57fe565021039b16ffde888d9ae40501e6e925e4f8937bf5e883",
"md5": "63993493370b3f770c33404ab3bf7e6c",
"sha256": "8d7789661541bdea07d21867c5dc69b4c69343bbfebc716f6be1ef7f16a574f2"
},
"downloads": -1,
"filename": "aa_charlink-1.9.1.tar.gz",
"has_sig": false,
"md5_digest": "63993493370b3f770c33404ab3bf7e6c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "~=3.10",
"size": 47646,
"upload_time": "2025-02-18T21:12:16",
"upload_time_iso_8601": "2025-02-18T21:12:16.282381Z",
"url": "https://files.pythonhosted.org/packages/8e/e2/988bc0ef57fe565021039b16ffde888d9ae40501e6e925e4f8937bf5e883/aa_charlink-1.9.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-18 21:12:16",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Maestro-Zacht",
"github_project": "aa-charlink",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"tox": true,
"lcname": "aa-charlink"
}