Difference between revisions of "Extensions:Alias Logins"
Jump to navigation
Jump to search
m Tag: 2017 source edit |
m (Add the "this is in V3" warning box thingamabob) Tag: 2017 source edit |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | {{Extensioninfobox|title=Alias Logins|desc=Allows the usage of Auth Alias' as stand-in for passwords for logging in and registering|auth=moif|status=stable|github={{Github|repo=lorekeeper-extensions|user=AW0005|branch=extension/alias-logins}}|LKVer=2.1.0|migration=yes|package=no}} | + | {{Extensioninfobox|title=Alias Logins|desc=Allows the usage of Auth Alias' as stand-in for passwords for logging in and registering|auth=moif|status=stable|github={{Github|repo=lorekeeper-extensions|user=AW0005|branch=extension/alias-logins}}|LKVer=2.1.0|migration=yes|package=no|dev300=yes}} |
+ | |||
+ | {| style="margin: 4px auto; width: 80%; border: 1px solid #9ADC38; background: #A1F524;" | ||
+ | |- | ||
+ | | '''<u>THIS EXTENSION IS PART OF v3.0.0</u>''' | ||
+ | |- | ||
+ | | This extension has been merged into the v3.0.0 branch as [https://github.com/corowne/lorekeeper/pull/493 Alias Login]. | ||
+ | |} | ||
Adds the ability to allow users to login or register accounts via the same OAuth2 mechanism previously used for Aliases. Does require configuration updates to the Aliases you turn it on for, please see below for details. | Adds the ability to allow users to login or register accounts via the same OAuth2 mechanism previously used for Aliases. Does require configuration updates to the Aliases you turn it on for, please see below for details. | ||
Line 10: | Line 17: | ||
# <code>php artisan optimize</code> | # <code>php artisan optimize</code> | ||
# In "config/lorekeeper/sites.php" update the login field to 1 for the auths you wish to use. | # In "config/lorekeeper/sites.php" update the login field to 1 for the auths you wish to use. | ||
− | # For each of those Auths you will need to refer back to their setup instructions ( [[Category:Social_Media_Authentication]] ) and make sure that you update any redirect link lists to also include "https://your-site.com/login/callback/provider-name" ''and'' "https://www.your-site.com/login/callback/provider-name" making sure to swap out for your site name and the provider name (toyhouse, deviantart, etc) for each one as appropriate. | + | # For each of those Auths you will need to refer back to their setup instructions ( [[http://wiki.lorekeeper.me/index.php?title=Category:Social_Media_Authentication| Social Media Authentication]] ) and make sure that you update any redirect link lists to also include "https://your-site.com/login/callback/provider-name" ''and'' "https://www.your-site.com/login/callback/provider-name" making sure to swap out for your site name and the provider name (toyhouse, deviantart, etc) for each one as appropriate. |
# If you want to use twitter specifically, where you used the API key and secret before as described in [[Auth: Twitter]] you'll need to get the client id and secret instead, from the "User authentication settings" in your app on the twitter developer portal, and replace those in your .env file. | # If you want to use twitter specifically, where you used the API key and secret before as described in [[Auth: Twitter]] you'll need to get the client id and secret instead, from the "User authentication settings" in your app on the twitter developer portal, and replace those in your .env file. | ||
Line 22: | Line 29: | ||
File:Screen_Shot_2023-01-06_at_11.54.14_PM.png | File:Screen_Shot_2023-01-06_at_11.54.14_PM.png | ||
</gallery> | </gallery> | ||
+ | |||
+ | == See Also == | ||
+ | * [[Updating:_to_3.0.0]] |
Latest revision as of 12:38, 14 November 2024
Description | Allows the usage of Auth Alias' as stand-in for passwords for logging in and registering |
---|---|
Author(s) | moif |
Status | stable |
Github | AW0005/lorekeeper-extensions/extension/alias-logins |
LK Version | 2.1.0 |
Contains a Migration | |
Is part of LK v3.0.0's release | |
THIS EXTENSION IS PART OF v3.0.0 |
This extension has been merged into the v3.0.0 branch as Alias Login. |
Adds the ability to allow users to login or register accounts via the same OAuth2 mechanism previously used for Aliases. Does require configuration updates to the Aliases you turn it on for, please see below for details.
This does not currently support tumblr.
Contents
Installation
- Pull the extension, deal with conflicts
php artisan migrate
php artisan optimize
- In "config/lorekeeper/sites.php" update the login field to 1 for the auths you wish to use.
- For each of those Auths you will need to refer back to their setup instructions ( [Social Media Authentication] ) and make sure that you update any redirect link lists to also include "https://your-site.com/login/callback/provider-name" and "https://www.your-site.com/login/callback/provider-name" making sure to swap out for your site name and the provider name (toyhouse, deviantart, etc) for each one as appropriate.
- If you want to use twitter specifically, where you used the API key and secret before as described in Auth: Twitter you'll need to get the client id and secret instead, from the "User authentication settings" in your app on the twitter developer portal, and replace those in your .env file.
If you add the same url, but with the url for your local testing environment, you should be able to test this locally too.
Usage
IMPORTANT Any existing users that want to make use of this feature will need to remove their existing aliases and re-add them for the ones that allow login. This is because the extension uses a more unique id snowflake from each service to identify users than what was stored prior for aliases.