feat: ✨ Add Extension Settings and migrations
This commit is contained in:
parent
1a8f883b63
commit
3cba1c60f8
6 changed files with 302 additions and 43 deletions
|
@ -6,9 +6,11 @@ use Spatie\LaravelSettings\Settings;
|
|||
|
||||
class PayPalSettings extends Settings
|
||||
{
|
||||
public bool $enabled = false;
|
||||
public ?string $client_id;
|
||||
public ?string $client_secret;
|
||||
|
||||
public ?string $sandbox_client_id;
|
||||
public ?string $sandbox_client_secret;
|
||||
|
||||
public static function group(): string
|
||||
{
|
||||
|
@ -20,7 +22,9 @@ class PayPalSettings extends Settings
|
|||
{
|
||||
return [
|
||||
'client_id',
|
||||
'client_secret'
|
||||
'client_secret',
|
||||
'sandbox_client_id',
|
||||
'sandbox_client_secret'
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -34,15 +38,30 @@ class PayPalSettings extends Settings
|
|||
return [
|
||||
'category_icon' => 'fas fa-dollar-sign',
|
||||
'client_id' => [
|
||||
'type' => 'text',
|
||||
'type' => 'string',
|
||||
'label' => 'Client ID',
|
||||
'description' => 'The Client ID of your PayPal App',
|
||||
],
|
||||
'client_secret' => [
|
||||
'type' => 'text',
|
||||
'type' => 'string',
|
||||
'label' => 'Client Secret',
|
||||
'description' => 'The Client Secret of your PayPal App',
|
||||
]
|
||||
],
|
||||
'enabled' => [
|
||||
'type' => 'boolean',
|
||||
'label' => 'Enabled',
|
||||
'description' => 'Enable this payment gateway',
|
||||
],
|
||||
'sandbox_client_id' => [
|
||||
'type' => 'string',
|
||||
'label' => 'Sandbox Client ID',
|
||||
'description' => 'The Sandbox Client ID used when app_env = local',
|
||||
],
|
||||
'sandbox_client_secret' => [
|
||||
'type' => 'string',
|
||||
'label' => 'Sandbox Client Secret',
|
||||
'description' => 'The Sandbox Client Secret used when app_env = local',
|
||||
],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,8 +6,6 @@ function getConfig()
|
|||
{
|
||||
return [
|
||||
"name" => "PayPal",
|
||||
"description" => "PayPal payment gateway",
|
||||
"RoutesIgnoreCsrf" => [],
|
||||
"enabled" => (config('SETTINGS::PAYMENTS:PAYPAL:SECRET') && config('SETTINGS::PAYMENTS:PAYPAL:CLIENT_ID')) || (config('SETTINGS::PAYMENTS:PAYPAL:SANDBOX_SECRET') && config('SETTINGS::PAYMENTS:PAYPAL:SANDBOX_CLIENT_ID') && env("APP_ENV") === "local"),
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,19 +1,100 @@
|
|||
<?php
|
||||
|
||||
use Spatie\LaravelSettings\Migrations\SettingsMigration;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
|
||||
class CreatePayPalSettings extends SettingsMigration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
$table_exists = DB::table('settings_old')->exists();
|
||||
|
||||
$this->migrator->addEncrypted('paypal.client_id', "1234");
|
||||
$this->migrator->addEncrypted('paypal.client_secret', "123456");
|
||||
|
||||
$this->migrator->addEncrypted('paypal.client_id', $table_exists ? $this->getOldValue('SETTINGS::PAYMENTS:PAYPAL:CLIENT_ID') : null);
|
||||
$this->migrator->addEncrypted('paypal.client_secret', $table_exists ? $this->getOldValue('SETTINGS::PAYMENTS:PAYPAL:SECRET') : null);
|
||||
$this->migrator->addEncrypted('paypal.sandbox_client_id', $table_exists ? $this->getOldValue('SETTINGS::PAYMENTS:PAYPAL:SANDBOX_CLIENT_ID') : null);
|
||||
$this->migrator->addEncrypted('paypal.sandbox_client_secret', $table_exists ? $this->getOldValue('SETTINGS::PAYMENTS:PAYPAL:SANDBOX_SECRET') : null);
|
||||
$this->migrator->add('paypal.enabled', false);
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
DB::table('settings_old')->insert([
|
||||
[
|
||||
'key' => 'SETTINGS::PAYMENTS:PAYPAL:CLIENT_ID',
|
||||
'value' => $this->getNewValue('client_id'),
|
||||
'type' => 'string',
|
||||
'description' => 'The Client ID of your PayPal App'
|
||||
],
|
||||
[
|
||||
'key' => 'SETTINGS::PAYMENTS:PAYPAL:SECRET',
|
||||
'value' => $this->getNewValue('client_secret'),
|
||||
'type' => 'string',
|
||||
'description' => 'The Client Secret of your PayPal App'
|
||||
],
|
||||
[
|
||||
'key' => 'SETTINGS::PAYMENTS:PAYPAL:SANDBOX_CLIENT_ID',
|
||||
'value' => $this->getNewValue('sandbox_client_id'),
|
||||
'type' => 'string',
|
||||
'description' => 'The Sandbox Client ID of your PayPal App'
|
||||
],
|
||||
[
|
||||
'key' => 'SETTINGS::PAYMENTS:PAYPAL:SANDBOX_SECRET',
|
||||
'value' => $this->getNewValue('sandbox_client_secret'),
|
||||
'type' => 'string',
|
||||
'description' => 'The Sandbox Client Secret of your PayPal App'
|
||||
]
|
||||
]);
|
||||
|
||||
|
||||
$this->migrator->delete('paypal.client_id');
|
||||
$this->migrator->delete('paypal.client_secret');
|
||||
$this->migrator->delete('paypal.enabled');
|
||||
$this->migrator->delete('paypal.sandbox_client_id');
|
||||
$this->migrator->delete('paypal.sandbox_client_secret');
|
||||
}
|
||||
|
||||
public function getNewValue(string $name)
|
||||
{
|
||||
$new_value = DB::table('settings')->where([['group', '=', 'paypal'], ['name', '=', $name]])->get(['payload'])->first();
|
||||
|
||||
// Some keys returns '""' as a value.
|
||||
if ($new_value->payload === '""') {
|
||||
return null;
|
||||
}
|
||||
|
||||
// remove the quotes from the string
|
||||
if (substr($new_value->payload, 0, 1) === '"' && substr($new_value->payload, -1) === '"') {
|
||||
return substr($new_value->payload, 1, -1);
|
||||
}
|
||||
|
||||
return $new_value->payload;
|
||||
}
|
||||
|
||||
public function getOldValue(string $key)
|
||||
{
|
||||
// Always get the first value of the key.
|
||||
$old_value = DB::table('settings_old')->where('key', '=', $key)->get(['value', 'type'])->first();
|
||||
|
||||
// Handle the old values to return without it being a string in all cases.
|
||||
if ($old_value->type === "string" || $old_value->type === "text") {
|
||||
if (is_null($old_value->value)) {
|
||||
return '';
|
||||
}
|
||||
|
||||
// Some values have the type string, but their values are boolean.
|
||||
if ($old_value->value === "false" || $old_value->value === "true") {
|
||||
return filter_var($old_value->value, FILTER_VALIDATE_BOOL);
|
||||
}
|
||||
|
||||
return $old_value->value;
|
||||
}
|
||||
|
||||
if ($old_value->type === "boolean") {
|
||||
return filter_var($old_value->value, FILTER_VALIDATE_BOOL);
|
||||
}
|
||||
|
||||
return filter_var($old_value->value, FILTER_VALIDATE_INT);
|
||||
}
|
||||
}
|
||||
|
|
63
app/Extensions/PaymentGateways/Stripe/StripeSettings.php
Normal file
63
app/Extensions/PaymentGateways/Stripe/StripeSettings.php
Normal file
|
@ -0,0 +1,63 @@
|
|||
<?php
|
||||
|
||||
namespace App\Extensions\PaymentGateways\Stripe;
|
||||
|
||||
use Spatie\LaravelSettings\Settings;
|
||||
|
||||
class StripeSettings extends Settings
|
||||
{
|
||||
|
||||
public bool $enabled = false;
|
||||
public ?string $secret_key;
|
||||
public ?string $endpoint_secret;
|
||||
public ?string $test_secret_key;
|
||||
public ?string $test_endpoint_secret;
|
||||
|
||||
|
||||
public static function group(): string
|
||||
{
|
||||
return 'stripe';
|
||||
}
|
||||
|
||||
public static function encrypted(): array
|
||||
{
|
||||
return [
|
||||
"secret_key",
|
||||
"endpoint_secret",
|
||||
"test_secret_key",
|
||||
"test_endpoint_secret"
|
||||
];
|
||||
}
|
||||
|
||||
public static function getOptionInputData()
|
||||
{
|
||||
return [
|
||||
'category_icon' => 'fas fa-dollar-sign',
|
||||
'secret_key' => [
|
||||
'type' => 'string',
|
||||
'label' => 'Secret Key',
|
||||
'description' => 'The Secret Key of your Stripe App',
|
||||
],
|
||||
'endpoint_secret' => [
|
||||
'type' => 'string',
|
||||
'label' => 'Endpoint Secret',
|
||||
'description' => 'The Endpoint Secret of your Stripe App',
|
||||
],
|
||||
'test_secret_key' => [
|
||||
'type' => 'string',
|
||||
'label' => 'Test Secret Key',
|
||||
'description' => 'The Test Secret Key used when app_env = local',
|
||||
],
|
||||
'test_endpoint_secret' => [
|
||||
'type' => 'string',
|
||||
'label' => 'Test Endpoint Secret',
|
||||
'description' => 'The Test Endpoint Secret used when app_env = local',
|
||||
],
|
||||
'enabled' => [
|
||||
'type' => 'boolean',
|
||||
'label' => 'Enabled',
|
||||
'description' => 'Enable this payment gateway',
|
||||
]
|
||||
];
|
||||
}
|
||||
}
|
|
@ -0,0 +1,98 @@
|
|||
<?php
|
||||
|
||||
use Spatie\LaravelSettings\Migrations\SettingsMigration;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class CreateStripeSettings extends SettingsMigration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
$table_exists = DB::table('settings_old')->exists();
|
||||
|
||||
$this->migrator->addEncrypted('stripe.secret_key', $table_exists ? $this->getOldValue('SETTINGS::PAYMENTS:STRIPE:SECRET') : null);
|
||||
$this->migrator->addEncrypted('stripe.endpoint_secret', $table_exists ? $this->getOldValue('SETTINGS::PAYMENTS:STRIPE:ENDPOINT_SECRET') : null);
|
||||
$this->migrator->addEncrypted('stripe.test_secret_key', $table_exists ? $this->getOldValue('SETTINGS::PAYMENTS:STRIPE:TEST_SECRET') : null);
|
||||
$this->migrator->addEncrypted('stripe.test_endpoint_secret', $table_exists ? $this->getOldValue('SETTINGS::PAYMENTS:STRIPE:ENDPOINT_TEST_SECRET') : null);
|
||||
$this->migrator->add('stripe.enabled', false);
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
DB::table('settings_old')->insert([
|
||||
[
|
||||
'key' => 'SETTINGS::PAYMENTS:STRIPE:SECRET',
|
||||
'value' => $this->getNewValue('secret_key'),
|
||||
'type' => 'string',
|
||||
'description' => 'The Secret Key of your Stripe App'
|
||||
],
|
||||
[
|
||||
'key' => 'SETTINGS::PAYMENTS:STRIPE:ENDPOINT_SECRET',
|
||||
'value' => $this->getNewValue('endpoint_secret'),
|
||||
'type' => 'string',
|
||||
'description' => 'The Endpoint Secret of your Stripe App'
|
||||
|
||||
],
|
||||
[
|
||||
'key' => 'SETTINGS::PAYMENTS:STRIPE:TEST_SECRET',
|
||||
'value' => $this->getNewValue('test_secret_key'),
|
||||
'type' => 'string',
|
||||
'description' => 'The Test Secret Key of your Stripe App'
|
||||
],
|
||||
[
|
||||
'key' => 'SETTINGS::PAYMENTS:STRIPE:ENDPOINT_TEST_SECRET',
|
||||
'value' => $this->getNewValue('test_endpoint_secret'),
|
||||
'type' => 'string',
|
||||
'description' => 'The Test Endpoint Secret of your Stripe App'
|
||||
]
|
||||
]);
|
||||
|
||||
$this->migrator->delete('stripe.secret_key');
|
||||
$this->migrator->delete('stripe.endpoint_secret');
|
||||
$this->migrator->delete('stripe.enabled');
|
||||
$this->migrator->delete('stripe.test_secret_key');
|
||||
$this->migrator->delete('stripe.test_endpoint_secret');
|
||||
}
|
||||
|
||||
public function getNewValue(string $name)
|
||||
{
|
||||
$new_value = DB::table('settings')->where([['group', '=', 'stripe'], ['name', '=', $name]])->get(['payload'])->first();
|
||||
|
||||
// Some keys returns '""' as a value.
|
||||
if ($new_value->payload === '""') {
|
||||
return null;
|
||||
}
|
||||
|
||||
// remove the quotes from the string
|
||||
if (substr($new_value->payload, 0, 1) === '"' && substr($new_value->payload, -1) === '"') {
|
||||
return substr($new_value->payload, 1, -1);
|
||||
}
|
||||
|
||||
return $new_value->payload;
|
||||
}
|
||||
|
||||
public function getOldValue(string $key)
|
||||
{
|
||||
// Always get the first value of the key.
|
||||
$old_value = DB::table('settings_old')->where('key', '=', $key)->get(['value', 'type'])->first();
|
||||
|
||||
// Handle the old values to return without it being a string in all cases.
|
||||
if ($old_value->type === "string" || $old_value->type === "text") {
|
||||
if (is_null($old_value->value)) {
|
||||
return '';
|
||||
}
|
||||
|
||||
// Some values have the type string, but their values are boolean.
|
||||
if ($old_value->value === "false" || $old_value->value === "true") {
|
||||
return filter_var($old_value->value, FILTER_VALIDATE_BOOL);
|
||||
}
|
||||
|
||||
return $old_value->value;
|
||||
}
|
||||
|
||||
if ($old_value->type === "boolean") {
|
||||
return filter_var($old_value->value, FILTER_VALIDATE_BOOL);
|
||||
}
|
||||
|
||||
return filter_var($old_value->value, FILTER_VALIDATE_INT);
|
||||
}
|
||||
}
|
|
@ -1,34 +1,34 @@
|
|||
<?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::dropIfExists('settings_old');
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::create('settings_old', function (Blueprint $table) {
|
||||
$table->string('key', 191)->primary();
|
||||
$table->text('value')->nullable();
|
||||
$table->string('type');
|
||||
$table->longText('description')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
};
|
||||
<?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::dropIfExists('settings_old');
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::create('settings_old', function (Blueprint $table) {
|
||||
$table->string('key', 191)->primary();
|
||||
$table->text('value')->nullable();
|
||||
$table->string('type');
|
||||
$table->longText('description')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue