Social Authentication
Under the hood this container uses Laravel Socialite.
Installation
In the following instructions we assume we have a fresh Apiato installation.
composer require apiato/social-auth-container
Now run php artisan migrate
Add this values to $fillable array in your User
model
protected $fillable = [
...
'social_provider',
'social_nickname',
'social_id',
'social_token',
'social_token_secret',
'social_refresh_token',
'social_expires_in',
'social_avatar',
'social_avatar_original',
...
];
Optionally add this to your user transformer to add social auth fields to your user repsonses:
'social_auth_provider' => $user->social_provider,
'social_nickname' => $user->social_nickname,
'social_id' => $user->social_id,
'social_avatar' => [
'avatar' => $user->social_avatar,
'original' => $user->social_avatar_original,
]
It is recommended to have 2 separate transformers (private & public) for the User e.g. UserPrivateProfileTransformer
& UserTransformer
and add above data to the private transformer not the public one. By doing it this way you can hide
your User's personal data.
Default Supported Auth Provide
How Social Authentication Works
- The Client (Mobile or Web) sends a request to the Social Auth Provider (Facebook, Twitter...).
- The Social Auth Provider returns a Token.
- The Client makes a call to the server (our server) and passes the Token.
- The Server fetches the user data from the Social Auth Provider using Token.
- The Server create new User from the collected social data and return the Authenticated User (If the user already created then it just returns it).
Setup Social Authentication
- Create an App on the supported Social Auth provider.
- For Facebook: https://developers.facebook.com/apps
- For Twitter: https://apps.twitter.com/app
- For Google: https://console.developers.google.com/apis/credentials
-
For any supported provider you want to use, add their credentials to
config/services.php
. read more -
Make a request from your client to get the
oauth
info. (Each Social provider returns different response and keys).
Example Twitter Response:
{
"User": {
"tokentoken": "1212",
"tokentokenSecret": "3434",
"tokenid": "777",
"tokennickname": "John_Doe",
"tokenname": "John Doe",
"tokenemail": null,
"tokenavatar": "https://pbs.twimg.com/images/888/PENrcePC.jpg",
"tokenuser": "token",
"avatar_original": "https://pbs.twimg.com/images/999/PENrcePC.jpg"
}
}
This step should be done by your client App, which could be a Web, Mobile or other kind of client Apps.
-
Use
auth/{provider}
route and theoauth
info to make a call from your server to the Social Provider in order to get the User info. For more details about theauth/{provider}
route parameters checkout the generated documentation or visitapp/Containers/Vendor/Socialauth/UI/API/Routes/AuthenticateAll.v1.private.php
. -
The endpoint above should return the User and his Personal Access Token.
Example Google Response:
{
"data": {
// user data
.
.
.
// additional social data if you have updated your transformer as mentioned above
"social_auth_provider": "google",
"social_id": "113834952367767922133",
"social_avatar": {
"avatar": "https:\/\/lh6.googleusercontent.com\/-OSItz6IHbSw\/AAA\/AMZuucltEs\/s96-c\/photo.jpg",
"original": "https:\/\/lh6.googleusercontent.com\/-OSItz6IHbSw\/AAA\/AMZuucltEs\/s96-c\/photo.jpg"
}
},
"meta": {
"include": [
"roles"
],
"custom": {
"token_type": "personal",
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9...."
}
}
}
For testing purposes Apiato provides two web endpoints
/auth/{provider}/redirect
which act as a client (step 3 above)/auth/{provider}/callback
which you can use in your provider's developer dashboard for callback url.
Use those endpoints from your browser (replace the provider with any of the supported providersfacebook
,twitter
,...) to get theoauth
info and user data respectively.
Social Authentication Container Customization
You can customize this container by publishing its config and modifying its values
php artisan vendor:publish
Config file will be copied to app/Ship/Configs/vendor-socialAuth.php
Support new Auth Provider
- Publish the configs
- Create your new auth provider
by implementing the
App\Containers\Vendor\SocialAuth\Contracts\SocialAuthProvider
contract.
To get an idea about how to implement your own provider you can check out supported providers hereapp/Containers/Vendor/SocialAuth/SocialAuthProviders
. - Add your new provider to
providers
array in thevendor-socialAuth
config.
'providers' => [
...
'something' => Location\Of\Your\Provider\SomthingSocialAuthProvider::class,
],
Changing default used Repository, Transformer & DB user table name
This container depends on Apiato default user repository, transformer & database user table name. If you changed those defaults you can update and provide them in the configs.