2023-05-12 10:09:51 +00:00
|
|
|
<?php
|
|
|
|
|
2024-07-14 03:49:00 +00:00
|
|
|
namespace App\Console\Commands\Intuit;
|
2023-05-12 10:09:51 +00:00
|
|
|
|
|
|
|
use GuzzleHttp\Exception\ConnectException;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
use Intuit\Exceptions\ConnectionIssueException;
|
|
|
|
|
2024-07-14 03:49:00 +00:00
|
|
|
use App\Models\{ProviderOauth,User};
|
2023-05-12 10:09:51 +00:00
|
|
|
|
2024-07-14 03:49:00 +00:00
|
|
|
class InvoiceGet extends Command
|
2023-05-12 10:09:51 +00:00
|
|
|
{
|
2024-07-14 03:49:00 +00:00
|
|
|
private const provider = 'intuit';
|
|
|
|
|
2023-05-12 10:09:51 +00:00
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2024-07-14 03:49:00 +00:00
|
|
|
protected $signature = 'intuit:invoice:get'
|
|
|
|
.' {id : Invoice ID}'
|
|
|
|
.' {user? : User Email}';
|
2023-05-12 10:09:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2024-07-14 03:49:00 +00:00
|
|
|
protected $description = 'Get an invoice from the quickbooks';
|
2023-05-12 10:09:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2024-07-14 03:49:00 +00:00
|
|
|
$uo = User::where('email',$this->argument('user') ?: config('osb.admin'))->singleOrFail();
|
2023-05-12 10:09:51 +00:00
|
|
|
|
2024-07-14 03:49:00 +00:00
|
|
|
$so = ProviderOauth::where('name',self::provider)->singleOrFail();
|
2023-05-12 10:09:51 +00:00
|
|
|
if (! ($to=$so->token($uo)))
|
|
|
|
abort(500,sprintf('Unknown Tokens for [%s]',$uo->email));
|
|
|
|
|
|
|
|
try {
|
|
|
|
$api = $to->API();
|
|
|
|
dump($api->getInvoiceQuery($this->argument('id')));
|
|
|
|
|
|
|
|
} catch (ConnectException|ConnectionIssueException $e) {
|
|
|
|
$this->error($e->getMessage());
|
|
|
|
|
2024-07-14 03:49:00 +00:00
|
|
|
return self::FAILURE;
|
2023-05-12 10:09:51 +00:00
|
|
|
}
|
2024-07-14 03:49:00 +00:00
|
|
|
|
|
|
|
return self::SUCCESS;
|
2023-05-12 10:09:51 +00:00
|
|
|
}
|
|
|
|
}
|