aa-charlink


Nameaa-charlink JSON
Version 1.2.0 PyPI version JSON
download
home_pageNone
SummaryCharacter Linker for Alliance Auth
upload_time2024-04-15 20:23:06
maintainerNone
docs_urlNone
authorNone
requires_python~=3.8
licenseNone
keywords allianceauth eveonline allianceauth_charlink charlink
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # AllianceAuth CharLink

[![PyPI](https://img.shields.io/pypi/v/aa-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
   ![Charlink Homepage](https://raw.githubusercontent.com/Maestro-Zacht/aa-charlink/e5dd9519cd3772b19505f4ca4b02771774d2a695/docs/images/charlink_homepage.png)
2. Login on CPP site
3. Character linked to the selected apps
   ![Success](https://raw.githubusercontent.com/Maestro-Zacht/aa-charlink/e5dd9519cd3772b19505f4ca4b02771774d2a695/docs/images/charlink_success.png)

### 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.

NEW: Users can now audit the apps they have access to. Select the app you want to audit from the dropdown menu in the audit page.

## 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` | `[]`    |

## 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-block btn-info" title="Add Character">{% translate 'Add Character' %}</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.8",
    "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/a5/5b/91740b15a256393ff02dafb7504a98c041eec1d745aee4caef786d4cd75e/aa_charlink-1.2.0.tar.gz",
    "platform": null,
    "description": "# AllianceAuth CharLink\n\n[![PyPI](https://img.shields.io/pypi/v/aa-charlink)](https://pypi.org/project/aa-charlink/)\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   ![Charlink Homepage](https://raw.githubusercontent.com/Maestro-Zacht/aa-charlink/e5dd9519cd3772b19505f4ca4b02771774d2a695/docs/images/charlink_homepage.png)\n2. Login on CPP site\n3. Character linked to the selected apps\n   ![Success](https://raw.githubusercontent.com/Maestro-Zacht/aa-charlink/e5dd9519cd3772b19505f4ca4b02771774d2a695/docs/images/charlink_success.png)\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\nNEW: Users can now audit the apps they have access to. Select the app you want to audit from the dropdown menu in the audit page.\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` | `[]`    |\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-block btn-info\" title=\"Add Character\">{% translate 'Add Character' %}</a>\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.2.0",
    "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": "",
            "digests": {
                "blake2b_256": "9460245a350ae1eb2bac5ec56466cc02a671be530b0307186f58d55aa5fc213e",
                "md5": "8bf9c82cbb435a3cac8a7697f17bd679",
                "sha256": "1242fb4b3b336d0e601cd131b537526c2e47a26e0754861a09e9be657d961819"
            },
            "downloads": -1,
            "filename": "aa_charlink-1.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8bf9c82cbb435a3cac8a7697f17bd679",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.8",
            "size": 59244,
            "upload_time": "2024-04-15T20:23:05",
            "upload_time_iso_8601": "2024-04-15T20:23:05.363261Z",
            "url": "https://files.pythonhosted.org/packages/94/60/245a350ae1eb2bac5ec56466cc02a671be530b0307186f58d55aa5fc213e/aa_charlink-1.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a55b91740b15a256393ff02dafb7504a98c041eec1d745aee4caef786d4cd75e",
                "md5": "43ba18c53724f02e882de7c8baa4230d",
                "sha256": "474c1bd0c7c10783a486fac88ef05d721b740788381ae6ae7f15f61bf2804231"
            },
            "downloads": -1,
            "filename": "aa_charlink-1.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "43ba18c53724f02e882de7c8baa4230d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.8",
            "size": 37784,
            "upload_time": "2024-04-15T20:23:06",
            "upload_time_iso_8601": "2024-04-15T20:23:06.714259Z",
            "url": "https://files.pythonhosted.org/packages/a5/5b/91740b15a256393ff02dafb7504a98c041eec1d745aee4caef786d4cd75e/aa_charlink-1.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-15 20:23:06",
    "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"
}
        
Elapsed time: 0.22832s