Google Sheet - OAuth "client" powered integrations (#415)
* 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>
This commit is contained in:
21
database/factories/Integration/FormIntegrationFactory.php
Normal file
21
database/factories/Integration/FormIntegrationFactory.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories\Integration;
|
||||
|
||||
use App\Models\Integration\FormIntegration;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
class FormIntegrationFactory extends Factory
|
||||
{
|
||||
protected $model = FormIntegration::class;
|
||||
|
||||
public function definition()
|
||||
{
|
||||
return [
|
||||
'integration_id' => 'i_test',
|
||||
'status' => 'active',
|
||||
'logic' => [],
|
||||
'data' => [],
|
||||
];
|
||||
}
|
||||
}
|
||||
23
database/factories/OAuthProviderFactory.php
Normal file
23
database/factories/OAuthProviderFactory.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use App\Models\OAuthProvider;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
class OAuthProviderFactory extends Factory
|
||||
{
|
||||
protected $model = OAuthProvider::class;
|
||||
|
||||
public function definition()
|
||||
{
|
||||
return [
|
||||
'provider' => 'google',
|
||||
'provider_user_id' => 'u_test',
|
||||
'email' => 'user@example.com',
|
||||
'name' => 'user',
|
||||
'access_token' => 'ac_test',
|
||||
'refresh_token' => 're_test',
|
||||
];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class () extends Migration {
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('oauth_providers', function (Blueprint $table) {
|
||||
$table->string('email')->after('provider_user_id')->nullable();
|
||||
$table->string('name')->after('email')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('oauth_providers', function (Blueprint $table) {
|
||||
$table->dropColumn('email');
|
||||
$table->dropColumn('name');
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class () extends Migration {
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('oauth_providers', function (Blueprint $table) {
|
||||
$table->timestamp('token_expires_at')->nullable()->after('refresh_token');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('oauth_providers', function (Blueprint $table) {
|
||||
$table->dropColumn('token_expires_at');
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user