* fix `helpers.php` * fix `.eslintrc.cjs` * spreadsheet manager * fetch providers. set `oauth_id` for integrations * create spreadsheet on integration create event * connect OAuth accounts * display actions. connect account if missing * cleanup * handle form field change * map integration data object to `SpreadsheetData` * validate request * wip * redirect to integrations page * fix refresh token * add helper text * add extra integration info * refactor * refresh google token * fix validation * add tests * Fix linting issue * Update composer lock file --------- Co-authored-by: Julien Nahum <julien@nahum.net>
19 lines
373 B
PHP
19 lines
373 B
PHP
<?php
|
|
|
|
namespace App\Integrations\OAuth;
|
|
|
|
use App\Integrations\OAuth\Drivers\Contracts\OAuthDriver;
|
|
use App\Integrations\OAuth\Drivers\OAuthGoogleDriver;
|
|
|
|
enum OAuthProviderService: string
|
|
{
|
|
case Google = 'google';
|
|
|
|
public function getDriver(): OAuthDriver
|
|
{
|
|
return match($this) {
|
|
self::Google => new OAuthGoogleDriver()
|
|
};
|
|
}
|
|
}
|