mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
84a64773a6
* Fixes for null values in custom values * Refactor mailing * Working on send emails from GMail API * Fixes for tests * Test for GMail * Adjustments for storing oauth token
62 lines
1.2 KiB
PHP
62 lines
1.2 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\Google;
|
|
|
|
/**
|
|
* Class Google
|
|
* @package App\Libraries\Google
|
|
*/
|
|
class Google
|
|
{
|
|
public $client;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->client = new \Google_Client();
|
|
}
|
|
|
|
public function init()
|
|
{
|
|
$this->client->setClientId(config('ninja.auth.google.client_id'));
|
|
$this->client->setClientSecret(config('ninja.auth.google.client_secret'));
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getClient()
|
|
{
|
|
return $this->client;
|
|
}
|
|
|
|
public function checkAccessToken()
|
|
{
|
|
|
|
}
|
|
|
|
public function refreshToken($user)
|
|
{
|
|
if($this->client->isAccessTokenExpired()) {
|
|
|
|
$this->client->fetchAccessTokenWithRefreshToken($user->oauth_user_refresh_token);
|
|
|
|
$access_token = $this->client->getAccessToken();
|
|
|
|
$user->oauth_user_token = $access_token;
|
|
|
|
$user->save();
|
|
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
}
|