This commit is contained in:
2018-11-22 22:53:12 -06:00
parent f198d44a9d
commit 3e90cb1474
2 changed files with 14 additions and 11 deletions

View File

@@ -7,6 +7,7 @@ use Illuminate\Console\Command;
use DB;
use App\Library\Finances;
use App\Library\Esi;
use App\Models\EsiScope;
use App\Models\EsiToken;
@@ -48,15 +49,17 @@ class CorpJournal extends Command
//Setup the Finances Container
$finance = new Finances();
//Get the corps with structures logged in the database
$structures = DB::table('CorpStructures')->first();
//Get the characters that have the esi-wallet.read_corporation_wallets.v1
//esi wallet scope
$characters = DB::table('EsiScopes')->where('scope', 'esi-wallet.read_corporation_wallets.v1')->get();
//For each structure let's attemp to gather the characters owning the structures and peer into their wallets.
foreach($characters as $char) {
if($char->character_id == $structures->character_id) {
$this->line('Found Character and Structure.');
}
$structures = DB::table('CorpStructures')->get();
//For each structure get the corp journals from the corporation owning the structure
foreach($structures as $structure) {
$this->line('Getting corp journal');
$this->GetJournal($structure->character_id);
}
}
private function GetJournal($charId) {
$finances = new Finances();
$finances->GetWalletJournal(1, $charId);
}
}

View File

@@ -40,8 +40,8 @@ class Esi {
$config = config('esi');
//Create the esi authentication container
$authentication = new EsiAuthentication([
'client_id' => $config['esi']['client_id'],
'secret' => $config['esi']['secret'],
'client_id' => $config['client_id'],
'secret' => $config['secret'],
]);
//Create the esi container
$esi = new Eseye($authentication);