2022-08-18 13:29:42 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
use Illuminate\Support\Facades\Config;
|
|
|
|
|
|
|
|
use App\Models\{ProviderOauth,Site,User};
|
|
|
|
use App\Jobs\AccountingAccountSync as Job;
|
|
|
|
|
2023-05-12 10:09:51 +00:00
|
|
|
/**
|
|
|
|
* Synchronise Customers with Accounts
|
|
|
|
*/
|
2022-08-18 13:29:42 +00:00
|
|
|
class AccountingAccountSync extends Command
|
|
|
|
{
|
2023-05-12 10:09:51 +00:00
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $signature = 'accounting:account:sync'
|
2022-08-18 13:29:42 +00:00
|
|
|
.' {siteid : Site ID}'
|
|
|
|
.' {provider : Provider Name}'
|
|
|
|
.' {user : User Email}';
|
|
|
|
|
2023-05-12 10:09:51 +00:00
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = 'Synchronise accounts with accounting system';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2022-08-18 13:29:42 +00:00
|
|
|
$site = Site::findOrFail($this->argument('siteid'));
|
|
|
|
Config::set('site',$site);
|
|
|
|
|
|
|
|
$uo = User::where('email',$this->argument('user'))->singleOrFail();
|
|
|
|
|
2023-05-12 10:09:51 +00:00
|
|
|
$so = ProviderOauth::where('name',$this->argument('provider'))->singleOrFail();
|
|
|
|
if (! ($to=$so->token($uo)))
|
2022-08-18 13:29:42 +00:00
|
|
|
abort(500,sprintf('Unknown Tokens for [%s]',$uo->email));
|
|
|
|
|
2023-05-12 10:09:51 +00:00
|
|
|
Job::dispatchSync($to);
|
|
|
|
}
|
2022-08-18 13:29:42 +00:00
|
|
|
}
|