<?php namespace App\Console\Commands; use Illuminate\Console\Command; use Illuminate\Support\Facades\Config; use App\Models\{ProviderOauth,Site,User}; use App\Jobs\AccountingPaymentSync as Job; class AccountingPaymentSync extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'accounting:payment:sync' .' {siteid : Site ID}' .' {provider : Provider Name}' .' {user : User Email}'; /** * The console command description. * * @var string */ protected $description = 'Synchronise payments with accounting system'; /** * Execute the console command. * * @return int */ public function handle() { $site = Site::findOrFail($this->argument('siteid')); Config::set('site',$site); $uo = User::where('email',$this->argument('user'))->singleOrFail(); $so = ProviderOauth::where('name',$this->argument('provider'))->singleOrFail(); if (! ($to=$so->token($uo))) abort(500,sprintf('Unknown Tokens for [%s]',$uo->email)); $api = $to->API(); foreach ($api->getPayments() as $acc) Job::dispatchSync($to,$acc); } }