mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 15:13:29 +01:00
ba75a44eb8
* Adopt Laravel coding style The Laravel framework adopts the PSR-2 coding style with some additions. Laravel apps *should* adopt this coding style as well. However, Shift allows you to customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config to your project. You may use [Shift's .php_cs][2] file as a base. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200 * Shift bindings PHP 5.5.9+ adds the new static `class` property which provides the fully qualified class name. This is preferred over using class name strings as these references are checked by the parser. * Shift core files * Shift to Throwable * Add laravel/ui dependency * Unindent vendor mail templates * Shift config files * Default config files In an effort to make upgrading the constantly changing config files easier, Shift defaulted them so you can review the commit diff for changes. Moving forward, you should use ENV variables or create a separate config file to allow the core config files to remain automatically upgradeable. * Shift Laravel dependencies * Shift cleanup * Upgrade to Laravel 7 Co-authored-by: Laravel Shift <shift@laravelshift.com>
132 lines
3.3 KiB
PHP
132 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Libraries\OAuth;
|
|
|
|
use App\Libraries\MultiDB;
|
|
use App\Libraries\OAuth\Providers\Google;
|
|
use Laravel\Socialite\Facades\Socialite;
|
|
|
|
/**
|
|
* Class OAuth.
|
|
*/
|
|
class OAuth
|
|
{
|
|
/**
|
|
* Socialite Providers.
|
|
*/
|
|
const SOCIAL_GOOGLE = 1;
|
|
const SOCIAL_FACEBOOK = 2;
|
|
const SOCIAL_GITHUB = 3;
|
|
const SOCIAL_LINKEDIN = 4;
|
|
const SOCIAL_TWITTER = 5;
|
|
const SOCIAL_BITBUCKET = 6;
|
|
|
|
/**
|
|
* @param Socialite $user
|
|
*/
|
|
public static function handleAuth(object $user, string $provider)
|
|
{
|
|
/** 1. Ensure user arrives on the correct provider **/
|
|
$query = [
|
|
'oauth_user_id' =>$user->getId(),
|
|
'oauth_provider_id'=>$provider,
|
|
];
|
|
|
|
if ($user = MultiDB::hasUser($query)) {
|
|
return $user;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/* Splits a socialite user name into first and last names */
|
|
public static function splitName($name)
|
|
{
|
|
$name = trim($name);
|
|
$last_name = (strpos($name, ' ') === false) ? '' : preg_replace('#.*\s([\w-]*)$#', '$1', $name);
|
|
$first_name = trim(preg_replace('#'.preg_quote($last_name, '/').'#', '', $name));
|
|
|
|
return [$first_name, $last_name];
|
|
}
|
|
|
|
public static function providerToString(int $social_provider) : string
|
|
{
|
|
switch ($social_provider) {
|
|
case SOCIAL_GOOGLE:
|
|
return 'google';
|
|
case SOCIAL_FACEBOOK:
|
|
return 'facebook';
|
|
case SOCIAL_GITHUB:
|
|
return 'github';
|
|
case SOCIAL_LINKEDIN:
|
|
return 'linkedin';
|
|
case SOCIAL_TWITTER:
|
|
return 'twitter';
|
|
case SOCIAL_BITBUCKET:
|
|
return 'bitbucket';
|
|
}
|
|
}
|
|
|
|
public static function providerToInt(string $social_provider) : int
|
|
{
|
|
switch ($social_provider) {
|
|
case 'google':
|
|
return SOCIAL_GOOGLE;
|
|
case 'facebook':
|
|
return SOCIAL_FACEBOOK;
|
|
case 'github':
|
|
return SOCIAL_GITHUB;
|
|
case 'linkedin':
|
|
return SOCIAL_LINKEDIN;
|
|
case 'twitter':
|
|
return SOCIAL_TWITTER;
|
|
case 'bitbucket':
|
|
return SOCIAL_BITBUCKET;
|
|
}
|
|
}
|
|
|
|
public function getProvider($provider)
|
|
{
|
|
switch ($provider) {
|
|
case 'google':
|
|
$this->provider_instance = new Google();
|
|
$this->provider_id = self::SOCIAL_GOOGLE;
|
|
|
|
return $this;
|
|
|
|
default:
|
|
return null;
|
|
break;
|
|
}
|
|
}
|
|
|
|
public function getTokenResponse($token)
|
|
{
|
|
$user = false;
|
|
|
|
$payload = $this->provider_instance->getTokenResponse($token);
|
|
|
|
$oauth_user_id = $this->provider_instance->harvestSubField($payload);
|
|
|
|
$data = [
|
|
'oauth_user_id' => $oauth_user_id,
|
|
'oauth_provider_id' => $this->provider_id,
|
|
];
|
|
|
|
if ($this->provider_instance) {
|
|
$user = MultiDB::hasUser($data);
|
|
}
|
|
|
|
return $user;
|
|
}
|
|
}
|