cleanup
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Jobs;
|
namespace App\Jobs\Commands\Bonds;
|
||||||
|
|
||||||
//Internal Library
|
//Internal Library
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
@@ -1,143 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Jobs\Commands\NotUsed;
|
|
||||||
|
|
||||||
//Internal Libraries
|
|
||||||
use Illuminate\Bus\Queueable;
|
|
||||||
use Illuminate\Queue\SerializesModels;
|
|
||||||
use Illuminate\Queue\InteractsWithQueue;
|
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Foundation\Bus\Dispatchable;
|
|
||||||
use Log;
|
|
||||||
|
|
||||||
//App Library
|
|
||||||
use Seat\Eseye\Exceptions\RequestFailedException;
|
|
||||||
use App\Library\Esi\Esi;
|
|
||||||
use App\Library\Lookups\LookupHelper;
|
|
||||||
|
|
||||||
//App Models
|
|
||||||
use App\Models\RentalMoonLedger;
|
|
||||||
use App\Models\RentalMoonObserver;
|
|
||||||
|
|
||||||
class FetchRentalMoonLedgerJob implements ShouldQueue
|
|
||||||
{
|
|
||||||
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Timeout in seconds
|
|
||||||
*
|
|
||||||
* @var int
|
|
||||||
*/
|
|
||||||
public $timeout = 3600;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retries
|
|
||||||
*
|
|
||||||
* @var int
|
|
||||||
*/
|
|
||||||
public $retries = 3;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new job instance.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
//
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Execute the job.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function handle()
|
|
||||||
{
|
|
||||||
//Declare variables
|
|
||||||
$esiHelper = new Esi;
|
|
||||||
$lookup = new LookupHelper;
|
|
||||||
$response = null;
|
|
||||||
$structureInfo = null;
|
|
||||||
$entries = array();
|
|
||||||
|
|
||||||
//Get the configuration for the main site
|
|
||||||
$config = config('esi');
|
|
||||||
|
|
||||||
//Check for the esi scope
|
|
||||||
if(!$esiHelper->HaveEsiScope($config['primary'], 'esi-industry.read_corporation_mining.v1') || !$esiHelper->HaveEsiScope($config['primary'], 'esi-universe.read_structures.v1')) {
|
|
||||||
Log::critical('The primary character does not have the necessary scopes for FetchRentalMoonLedgerCommand.');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Get the refresh token if scope checks have passed
|
|
||||||
$refreshToken = $esiHelper->GetRefreshtoken($config['primary']);
|
|
||||||
|
|
||||||
//Get the character data from the lookup table if possible or esi
|
|
||||||
$character = $lookup->GetCharacterInfo($config['primary']);
|
|
||||||
|
|
||||||
//Get all of the rental moon observers from the database
|
|
||||||
$observers = RentalMoonObserver::all();
|
|
||||||
|
|
||||||
//Dump the mining ledger table for rental moons
|
|
||||||
RentalMoonLedger::truncate();
|
|
||||||
|
|
||||||
//Foreach observer get the ledger
|
|
||||||
foreach($observers as $observer) {
|
|
||||||
//Get the observer name.
|
|
||||||
$observerInfo = Structure::where([
|
|
||||||
'structure_id' => $observer->observer_id,
|
|
||||||
])->first();
|
|
||||||
|
|
||||||
try {
|
|
||||||
$ledgers = $esi->invoke('get', '/corporation/{corporation_id}/mining/observers/{observer_id}/', [
|
|
||||||
'corporation_id' => $character->corporation_id,
|
|
||||||
'observer_id' => $observer->observer_id,
|
|
||||||
]);
|
|
||||||
} catch(RequestFailedException $e) {
|
|
||||||
//If an exception has occurred, then log it
|
|
||||||
Log::critical('FetchRentalMoonLedger command failed to get the mining ledger for observer id: ' . $observer->observer_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
if($ledgers != null) {
|
|
||||||
foreach($ledgers as $ledger) {
|
|
||||||
//Get the ore name from the lookup table
|
|
||||||
$ore = $lookup->ItemIdToName($ledger->type_id);
|
|
||||||
|
|
||||||
//Get the character name from the lookup helper using the characterId
|
|
||||||
$charInfo = $lookup->GetCharacterInfo($ledger->character_id);
|
|
||||||
//Get the corporation information
|
|
||||||
$corpInfo = $lookup->GetCorporationInfo($charInfo->corporation_id);
|
|
||||||
|
|
||||||
//Get the recorded corporation information
|
|
||||||
$recordedCorpInfo = $lookup->GetCorporationInfo($ledger->recorded_corporation_id);
|
|
||||||
|
|
||||||
$entries[] = [
|
|
||||||
'corporation_id' => $corpInfo->corporation_id,
|
|
||||||
'corporation_name' => $corpInfo->name,
|
|
||||||
'character_id' => $ledger->character_id,
|
|
||||||
'character_name' => $charInfo->name,
|
|
||||||
'observer_id' => $observer->observer_id,
|
|
||||||
'observer_name' => $observerInfo->name,
|
|
||||||
'type_id' => $ledger->type_id,
|
|
||||||
'ore' => $ore,
|
|
||||||
'quantity' => $ledger->quantity,
|
|
||||||
'recorded_corporation_id' => $ledger->recorded_corporation_id,
|
|
||||||
'recorded_corporation_name' => $recordedCorpInfo->name,
|
|
||||||
'last_updated' => $ledger->last_updated,
|
|
||||||
'created_at' => $ledger->last_updated . ' 23:59:59',
|
|
||||||
'updated_at' => $ledger->last_updated . ' 23:59:59',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
//Insert or ignore each of the records saved into the array through the foreach loop
|
|
||||||
RentalMoonLedger::insertOrIgnore($entries);
|
|
||||||
|
|
||||||
Log::info(
|
|
||||||
'FetchRentalMoonLedgerJob inserted up to ' .count($entires) . ' new ledger entries.'
|
|
||||||
);
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,97 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Jobs\Commands\NotUsed;
|
|
||||||
|
|
||||||
use Illuminate\Bus\Queueable;
|
|
||||||
use Illuminate\Queue\SerializesModels;
|
|
||||||
use Illuminate\Queue\InteractsWithQueue;
|
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Foundation\Bus\Dispatchable;
|
|
||||||
use Log;
|
|
||||||
|
|
||||||
//App Library
|
|
||||||
use Seat\Eseye\Exceptions\RequestFailedException;
|
|
||||||
use App\Library\Esi\Esi;
|
|
||||||
use App\Library\Lookups\LookupHelper;
|
|
||||||
|
|
||||||
|
|
||||||
//App Models
|
|
||||||
use App\Models\Moon\RentalMoonObserver;
|
|
||||||
|
|
||||||
class FetchRentalMoonObserversJob implements ShouldQueue
|
|
||||||
{
|
|
||||||
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Timeout in seconds
|
|
||||||
*
|
|
||||||
* @var int
|
|
||||||
*/
|
|
||||||
public $timeout = 3600;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retries
|
|
||||||
*
|
|
||||||
* @var int
|
|
||||||
*/
|
|
||||||
public $retries = 3;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new job instance.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
//
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Execute the job.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function handle()
|
|
||||||
{
|
|
||||||
//Declare some variables
|
|
||||||
$lookup = new LookupHelper;
|
|
||||||
$esi = new Esi;
|
|
||||||
$obss = array();
|
|
||||||
|
|
||||||
//Get the configuration for the main site
|
|
||||||
$config = config('esi');
|
|
||||||
|
|
||||||
//Check for the esi scope
|
|
||||||
if(!$esiHelper->HaveEsiScope($config['primary'], 'esi-industry.read_corporation_mining.v1') || !$esiHelper->HaveEsiScope($config['primary'], 'esi-universe.read_structures.v1')) {
|
|
||||||
Log::critical('The primary character does not have the necessary scopes for FetchRentalMoonObservers.');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Get the refresh token for spatial forces
|
|
||||||
$refreshToken = $esiHelper->GetRefreshToken($config['primary']);
|
|
||||||
|
|
||||||
//Get the character data from the lookup table if possible or esi
|
|
||||||
$character = $lookup->GetCharacterInfo($config['primary']);
|
|
||||||
|
|
||||||
//Get the mining observers for spatial forces from esi
|
|
||||||
try {
|
|
||||||
$responses = $esi->invoke('get', '/corporation/{corporation_id}/mining/observers/', [
|
|
||||||
'corporation_id' => $character->corporation_id,
|
|
||||||
]);
|
|
||||||
} catch(RequestFailedException $e) {
|
|
||||||
Log::critical('RentalMoonObservers failed to get the moon observers for Spatial Forces.');
|
|
||||||
}
|
|
||||||
|
|
||||||
//Run through the mining observers, and add them to the database as needed
|
|
||||||
foreach($responses as $observer) {
|
|
||||||
//Populate the array with the data, so we can do an insert or ignore after the foreach loop is completed.
|
|
||||||
$obss[] = [
|
|
||||||
'observer_id' => $observer->observer_id,
|
|
||||||
'observer_type' => $observer->observer_type,
|
|
||||||
'last_updated' => $esi->DecodeDate($observer->last_updated)
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
RentalMoonObserver::insertOrIgnore($obss);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -107,47 +107,6 @@ class UpdateMoonRentalPaidState implements ShouldQueue
|
|||||||
'paid' => 'No',
|
'paid' => 'No',
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
//If the moon hasn't been paid for in two weeks, then remove the renter,
|
|
||||||
//then send the renter and w4rp leadership a mail.
|
|
||||||
if($paidUntil->greaterThanOrEqualTo($today->subWeeks(2))) {
|
|
||||||
//Declare the lookup helper as it will be needed
|
|
||||||
$lookupHelper = new LookupHelper;
|
|
||||||
|
|
||||||
//Get the character id for Minerva Arbosa and Rock Onzo
|
|
||||||
$minerva = $lookupHelper->CharacterNameToId('Minerva Arbosa');
|
|
||||||
$rock = $lookupHelper->CharacterNameToId('Rock Onzo');
|
|
||||||
|
|
||||||
//Remove the renter
|
|
||||||
AllianceMoonRental::where([
|
|
||||||
'region' => $rental->region,
|
|
||||||
'system' => $rental->system,
|
|
||||||
'planet' => $rental->planet,
|
|
||||||
'moon' => $rental->moon,
|
|
||||||
])->update([
|
|
||||||
'rental_type' => 'Not Rented',
|
|
||||||
'rental_until' => null,
|
|
||||||
'rental_contact_id' => 0,
|
|
||||||
'rental_contact_type' => null,
|
|
||||||
'paid' => 'Not Rented',
|
|
||||||
'paid_until' => null,
|
|
||||||
]);
|
|
||||||
|
|
||||||
//Send a mail over to the alliance leadership, and the former renter with
|
|
||||||
//why the moon was removed.
|
|
||||||
$subject = "W4RP Moon Rental Cancelled";
|
|
||||||
|
|
||||||
//Dispatch the mail job
|
|
||||||
ProcessSendEveMailJob::dispatch($body, (int)$rental->rental_contact_id, 'character', $subject, $config['primary'])->onQueue('mail')->delay(Carbon::now()->addSeconds($mailDelay));
|
|
||||||
$mailDelay += 30;
|
|
||||||
if($minerva != null) {
|
|
||||||
ProcessSendEveMailJob::dispatch($body, (int)$minerva, 'character', $subject, $config['primary'])->onQueue('mail')->delay(Carbon::now()->addSeconds($mailDelay));
|
|
||||||
$mailDelay += 30;
|
|
||||||
}
|
|
||||||
if($rock != null) {
|
|
||||||
ProcessSendEveMailJob::dispatch($body, (int)$rock, 'character', $subject, $config['primary'])->onQueue('mail')->delay(Carbon::now()->addSeconds($mailDelay));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,103 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Jobs\Commands\RentalMoons;
|
|
||||||
|
|
||||||
//Internal Library
|
|
||||||
use Illuminate\Bus\Queueable;
|
|
||||||
use Illuminate\Queue\SerializesModels;
|
|
||||||
use Illuminate\Queue\InteractsWithQueue;
|
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Foundation\Bus\Dispatchable;
|
|
||||||
use Log;
|
|
||||||
use Carbon\Carbon;
|
|
||||||
|
|
||||||
//Library
|
|
||||||
use App\Library\Esi\Esi;
|
|
||||||
use Seat\Eseye\Exceptions\RequestFailedException;
|
|
||||||
|
|
||||||
//Models
|
|
||||||
use App\Models\MoonRentals\AllianceRentalMoon;
|
|
||||||
use App\Models\Esi\EsiScope;
|
|
||||||
use App\Models\Esi\EsiToken;
|
|
||||||
|
|
||||||
class UpdateRentalMoonPullJob implements ShouldQueue
|
|
||||||
{
|
|
||||||
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new job instance.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
//Set the queue connection
|
|
||||||
$this->connection = 'redis';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Execute the job.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function handle()
|
|
||||||
{
|
|
||||||
//Setup the configuration variable for ESI
|
|
||||||
$config = config('esi');
|
|
||||||
//Setup the esi helper variable
|
|
||||||
$esiHelper = new Esi;
|
|
||||||
|
|
||||||
//Check for the esi scope
|
|
||||||
if(!$esiHelper->HaveEsiScope($config['primary'], 'esi-industry.read_corporation_mining.v1')) {
|
|
||||||
//Send a mail to the holding toon to update the esi scopes
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Is this valid?
|
|
||||||
AllianceRentalMoon::update([
|
|
||||||
'next_moon_pull' => null,
|
|
||||||
]);
|
|
||||||
|
|
||||||
//Reset all table entries to clear out the next moon pull entry
|
|
||||||
$allMoons = AllianceRentalMoon::all();
|
|
||||||
//Cycle through all of the moons, and make the next moon pull null
|
|
||||||
foreach($allMoons as $moon) {
|
|
||||||
AllianceRentalMoon::where([
|
|
||||||
'system' => $moon->system,
|
|
||||||
'planet' => $moon->planet,
|
|
||||||
'moon' => $moon->moon,
|
|
||||||
])->update([
|
|
||||||
'next_moon_pull' => null,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
//Get the refresh token
|
|
||||||
$token = $esiHelper->GetRefreshToken($config['primary']);
|
|
||||||
//Setup the esi authentication container
|
|
||||||
$esi = $esiHelper->SetupEsiAuthentication($token);
|
|
||||||
|
|
||||||
try {
|
|
||||||
$responses = $esi->invoke('get', '/corporation/{corporation_id}/mining/extractions/', [
|
|
||||||
'corporation_id' => 98287666,
|
|
||||||
]);
|
|
||||||
} catch(RequestExceptionFailed $e) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach($response as $response) {
|
|
||||||
//Get whether the structure is being used by the alliance or not.
|
|
||||||
$usage = AllianceRentalMoon::where([
|
|
||||||
'structure_id' => $response->structure_id,
|
|
||||||
'rental_type' => 'Alliance',
|
|
||||||
])->count();
|
|
||||||
|
|
||||||
if($usage > 0) {
|
|
||||||
AllianceRentalMoon::where([
|
|
||||||
'structure_id' => $response->structure_id,
|
|
||||||
])->update([
|
|
||||||
'next_moon_pull' => $response->chunk_arrival_time,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,67 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Library\Fleets;
|
|
||||||
|
|
||||||
//Internal Libraries
|
|
||||||
use Log;
|
|
||||||
|
|
||||||
//Seat Stuff
|
|
||||||
use Seat\Eseye\Cache\NullCache;
|
|
||||||
use Seat\Eseye\Configuration;
|
|
||||||
use Seat\Eseye\Containers\EsiAuthentication;
|
|
||||||
use Seat\Eseye\Eseye;
|
|
||||||
use Seat\Eseye\Exceptions\RequestFailedException;
|
|
||||||
|
|
||||||
//Libraries
|
|
||||||
use App\library\Esi\Esi;
|
|
||||||
|
|
||||||
//Models
|
|
||||||
use App\Models\Fleets\AllianceFleet;
|
|
||||||
use App\Models\Fleets\AllianceFleetMember;
|
|
||||||
|
|
||||||
class FleetHelper {
|
|
||||||
//Variables
|
|
||||||
private $esi;
|
|
||||||
|
|
||||||
//Constructi
|
|
||||||
public function __construct($charId) {
|
|
||||||
//Declare a variable for use by the constructor
|
|
||||||
$esiHelper = new Esi;
|
|
||||||
|
|
||||||
//Check for the ESI scope
|
|
||||||
$check = $esiHelper->HaveEsiScope($charId, 'esi-fleets.read_fleet.v1');
|
|
||||||
if($check) {
|
|
||||||
//Setup the ESI authentication container
|
|
||||||
$this->esi = $esiHelper->SetupEsiAuthentication();
|
|
||||||
} else {
|
|
||||||
$this->esi = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//Get fleet information
|
|
||||||
public function GetFleetInfo($fleetId) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
//Get fleet members
|
|
||||||
public function GetFleetMembers($fleetId) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
//Get fleet wings
|
|
||||||
public function GetFleetWings($fleetId) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
//Update fleet time
|
|
||||||
public function UpdateFleetTime($fleetId) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
//Update fleet character names
|
|
||||||
public function UpdateFleetCharacters($fleetId) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
|
||||||
@@ -1,74 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Library\Market;
|
|
||||||
|
|
||||||
//Internal Library
|
|
||||||
use Log;
|
|
||||||
use Carbon\Carbon;
|
|
||||||
|
|
||||||
//Library
|
|
||||||
use App\Library\Esi\Esi;
|
|
||||||
|
|
||||||
class MarketHelper {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Private variables
|
|
||||||
*
|
|
||||||
* @var esi
|
|
||||||
*/
|
|
||||||
private $esi;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class Construct
|
|
||||||
*/
|
|
||||||
public function __construct($esi = null) {
|
|
||||||
$this->esi = $esi;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the regional market orders
|
|
||||||
*
|
|
||||||
* @var region
|
|
||||||
*/
|
|
||||||
public function GetRegionalMarketOrders($region) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Price an item out and return the different price schemes
|
|
||||||
*
|
|
||||||
* @var itemId
|
|
||||||
*/
|
|
||||||
public function PriceItem($itemId) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the market group infromation
|
|
||||||
*
|
|
||||||
* @var group
|
|
||||||
*/
|
|
||||||
public function GetMarketGroup($group) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the public contract items
|
|
||||||
*
|
|
||||||
* @var contractId
|
|
||||||
*/
|
|
||||||
public function GetPublicContractItem($contractId) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get market price for an item
|
|
||||||
*
|
|
||||||
* @var itemId
|
|
||||||
*/
|
|
||||||
public function GetMarketPrice($itemId) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
|
||||||
@@ -1,85 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Library\RegionalContracts;
|
|
||||||
|
|
||||||
//Internal Library
|
|
||||||
use Log;
|
|
||||||
use Carbon\Carbon;
|
|
||||||
|
|
||||||
//Library
|
|
||||||
use App\Library\Esi\Esi;
|
|
||||||
|
|
||||||
class RegionalContractHelper {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Region variable
|
|
||||||
*
|
|
||||||
* @var int
|
|
||||||
*/
|
|
||||||
private $region;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* ESI Variable
|
|
||||||
*
|
|
||||||
* @var esi
|
|
||||||
*/
|
|
||||||
private $esi;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Construct
|
|
||||||
*/
|
|
||||||
public function __construct($region, $esi) {
|
|
||||||
$this->region = $region;
|
|
||||||
$this->esi = $esi;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the contracts within a region
|
|
||||||
*
|
|
||||||
* @var private
|
|
||||||
*/
|
|
||||||
public function GetContracts() {
|
|
||||||
|
|
||||||
//Get the public contracts from the ESI
|
|
||||||
$responses = $this->esi->invoke('get', '/contracts/public/{region_id}/', [
|
|
||||||
'region_id' => $this->region,
|
|
||||||
]);
|
|
||||||
|
|
||||||
//Send the contracts back to the calling function
|
|
||||||
return $responses;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Price the regional contract
|
|
||||||
*
|
|
||||||
* @var buyout
|
|
||||||
* @var contract_id
|
|
||||||
* @var date_expired
|
|
||||||
* @var date_issued
|
|
||||||
* @var days_to_complete
|
|
||||||
* @var end_location_id
|
|
||||||
* @var issuer_id
|
|
||||||
* @var price
|
|
||||||
* @var title
|
|
||||||
* @var type [unknown, item_exchange, auction, courier, loan]
|
|
||||||
* @var volume
|
|
||||||
*/
|
|
||||||
public function PriceContract($contract) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Function to get the items in a contract from ESI
|
|
||||||
*
|
|
||||||
* @var id
|
|
||||||
*/
|
|
||||||
public function GetContractItems($contractId) {
|
|
||||||
$items = $this->esi->invoke('get', '/contracts/public/items/{contract_id}/', [
|
|
||||||
'contract_id' => $contractId,
|
|
||||||
]);
|
|
||||||
|
|
||||||
return $items;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Models\Fleets;
|
|
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model;
|
|
||||||
|
|
||||||
class AllianceFleet extends Model
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Table Name
|
|
||||||
*/
|
|
||||||
protected $table = 'alliance_fleets';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Timestamps
|
|
||||||
*/
|
|
||||||
public $timestamps = true;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The attributes that are mass assignable
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $fillable = [
|
|
||||||
'fleet_id',
|
|
||||||
'fleet_commander_id',
|
|
||||||
'fleet_commander_name',
|
|
||||||
'member_count',
|
|
||||||
'fleet_opened_time',
|
|
||||||
'fleet_closed_time',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Models\Fleets;
|
|
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model;
|
|
||||||
|
|
||||||
class AllianceFleetMember extends Model
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Table Name
|
|
||||||
*/
|
|
||||||
protected $table = 'alliance_fleet_members';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Timestamps
|
|
||||||
*/
|
|
||||||
public $timestamps = true;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The attributes that are mass assignable
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $fillable = [
|
|
||||||
'fleet_id',
|
|
||||||
'character_id',
|
|
||||||
'character_name',
|
|
||||||
'fleet_joined_time',
|
|
||||||
'fleet_leaved_time',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@@ -25,6 +25,7 @@ class RentalMoonInvoice extends Model
|
|||||||
'character_name',
|
'character_name',
|
||||||
'corporation_id',
|
'corporation_id',
|
||||||
'corporation_name',
|
'corporation_name',
|
||||||
|
'invoice_id',
|
||||||
'rental_moons',
|
'rental_moons',
|
||||||
'invoice_amount',
|
'invoice_amount',
|
||||||
'due_date',
|
'due_date',
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
class ModifyAllianceMoonRentalInvoicesTable extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::table('alliance_moon_rental_invoices', function (Blueprint $table) {
|
||||||
|
$table->bigInteger('invoice_id');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::table('alliance_moon_rental_invoices', function (Blueprint $table) {
|
||||||
|
$table->dropColumn('invoice_id');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
8
vendor/composer/autoload_classmap.php
vendored
8
vendor/composer/autoload_classmap.php
vendored
@@ -14,6 +14,7 @@ return array(
|
|||||||
'App\\Console\\Commands\\Eve\\ItemPricesUpdateCommand' => $baseDir . '/app/Console/Commands/Eve/ItemPricesUpdateCommand.php',
|
'App\\Console\\Commands\\Eve\\ItemPricesUpdateCommand' => $baseDir . '/app/Console/Commands/Eve/ItemPricesUpdateCommand.php',
|
||||||
'App\\Console\\Commands\\Files\\MoonFormatter' => $baseDir . '/app/Console/Commands/Files/MoonFormatter.php',
|
'App\\Console\\Commands\\Files\\MoonFormatter' => $baseDir . '/app/Console/Commands/Files/MoonFormatter.php',
|
||||||
'App\\Console\\Commands\\Files\\UpdateItemCompositionFromSDECommand' => $baseDir . '/app/Console/Commands/Files/UpdateItemCompositionFromSDECommand.php',
|
'App\\Console\\Commands\\Files\\UpdateItemCompositionFromSDECommand' => $baseDir . '/app/Console/Commands/Files/UpdateItemCompositionFromSDECommand.php',
|
||||||
|
'App\\Console\\Commands\\Finances\\AllianceBondsCommand' => $baseDir . '/app/Console/Commands/Finances/AllianceBondsCommand.php',
|
||||||
'App\\Console\\Commands\\Finances\\HoldingFinancesCommand' => $baseDir . '/app/Console/Commands/Finances/HoldingFinancesCommand.php',
|
'App\\Console\\Commands\\Finances\\HoldingFinancesCommand' => $baseDir . '/app/Console/Commands/Finances/HoldingFinancesCommand.php',
|
||||||
'App\\Console\\Commands\\Finances\\SovBillsCommand' => $baseDir . '/app/Console/Commands/Finances/SovBillsCommand.php',
|
'App\\Console\\Commands\\Finances\\SovBillsCommand' => $baseDir . '/app/Console/Commands/Finances/SovBillsCommand.php',
|
||||||
'App\\Console\\Commands\\Flex\\FlexStructureCommand' => $baseDir . '/app/Console/Commands/Flex/FlexStructureCommand.php',
|
'App\\Console\\Commands\\Flex\\FlexStructureCommand' => $baseDir . '/app/Console/Commands/Flex/FlexStructureCommand.php',
|
||||||
@@ -35,6 +36,8 @@ return array(
|
|||||||
'App\\Http\\Controllers\\Dashboard\\AdminDashboardController' => $baseDir . '/app/Http/Controllers/Dashboard/AdminDashboardController.php',
|
'App\\Http\\Controllers\\Dashboard\\AdminDashboardController' => $baseDir . '/app/Http/Controllers/Dashboard/AdminDashboardController.php',
|
||||||
'App\\Http\\Controllers\\Dashboard\\DashboardController' => $baseDir . '/app/Http/Controllers/Dashboard/DashboardController.php',
|
'App\\Http\\Controllers\\Dashboard\\DashboardController' => $baseDir . '/app/Http/Controllers/Dashboard/DashboardController.php',
|
||||||
'App\\Http\\Controllers\\Dashboard\\StatisticsController' => $baseDir . '/app/Http/Controllers/Dashboard/StatisticsController.php',
|
'App\\Http\\Controllers\\Dashboard\\StatisticsController' => $baseDir . '/app/Http/Controllers/Dashboard/StatisticsController.php',
|
||||||
|
'App\\Http\\Controllers\\Finances\\AdminWarpedBondsController' => $baseDir . '/app/Http/Controllers/Finances/AdminWarpedBondsController.php',
|
||||||
|
'App\\Http\\Controllers\\Finances\\WarpedBondsController' => $baseDir . '/app/Http/Controllers/Finances/WarpedBondsController.php',
|
||||||
'App\\Http\\Controllers\\Flex\\FlexAdminController' => $baseDir . '/app/Http/Controllers/Flex/FlexAdminController.php',
|
'App\\Http\\Controllers\\Flex\\FlexAdminController' => $baseDir . '/app/Http/Controllers/Flex/FlexAdminController.php',
|
||||||
'App\\Http\\Controllers\\Logistics\\FuelController' => $baseDir . '/app/Http/Controllers/Logistics/FuelController.php',
|
'App\\Http\\Controllers\\Logistics\\FuelController' => $baseDir . '/app/Http/Controllers/Logistics/FuelController.php',
|
||||||
'App\\Http\\Controllers\\Logistics\\StructureRequestAdminController' => $baseDir . '/app/Http/Controllers/Logistics/StructureRequestAdminController.php',
|
'App\\Http\\Controllers\\Logistics\\StructureRequestAdminController' => $baseDir . '/app/Http/Controllers/Logistics/StructureRequestAdminController.php',
|
||||||
@@ -59,6 +62,7 @@ return array(
|
|||||||
'App\\Http\\Middleware\\TrimStrings' => $baseDir . '/app/Http/Middleware/TrimStrings.php',
|
'App\\Http\\Middleware\\TrimStrings' => $baseDir . '/app/Http/Middleware/TrimStrings.php',
|
||||||
'App\\Http\\Middleware\\TrustProxies' => $baseDir . '/app/Http/Middleware/TrustProxies.php',
|
'App\\Http\\Middleware\\TrustProxies' => $baseDir . '/app/Http/Middleware/TrustProxies.php',
|
||||||
'App\\Http\\Middleware\\VerifyCsrfToken' => $baseDir . '/app/Http/Middleware/VerifyCsrfToken.php',
|
'App\\Http\\Middleware\\VerifyCsrfToken' => $baseDir . '/app/Http/Middleware/VerifyCsrfToken.php',
|
||||||
|
'App\\Jobs\\Commands\\Bonds\\ProcessAllianceBond' => $baseDir . '/app/Jobs/Commands/Bonds/ProcessAllianceBond.php',
|
||||||
'App\\Jobs\\Commands\\Eve\\ItemPricesUpdateJob' => $baseDir . '/app/Jobs/Commands/Eve/ItemPricesUpdateJob.php',
|
'App\\Jobs\\Commands\\Eve\\ItemPricesUpdateJob' => $baseDir . '/app/Jobs/Commands/Eve/ItemPricesUpdateJob.php',
|
||||||
'App\\Jobs\\Commands\\Moons\\FetchMoonLedgerJob' => $baseDir . '/app/Jobs/Commands/Moons/FetchMoonLedgerJob.php',
|
'App\\Jobs\\Commands\\Moons\\FetchMoonLedgerJob' => $baseDir . '/app/Jobs/Commands/Moons/FetchMoonLedgerJob.php',
|
||||||
'App\\Jobs\\Commands\\Moons\\FetchMoonObserverJob' => $baseDir . '/app/Jobs/Commands/Moons/FetchMoonObserverJob.php',
|
'App\\Jobs\\Commands\\Moons\\FetchMoonObserverJob' => $baseDir . '/app/Jobs/Commands/Moons/FetchMoonObserverJob.php',
|
||||||
@@ -92,10 +96,8 @@ return array(
|
|||||||
'App\\Library\\Fleets\\FleetHelper' => $baseDir . '/app/Library/Fleets/FleetHelper.php',
|
'App\\Library\\Fleets\\FleetHelper' => $baseDir . '/app/Library/Fleets/FleetHelper.php',
|
||||||
'App\\Library\\JumpBridges\\JumpBridgeHelper' => $baseDir . '/app/Library/JumpBridges/JumpBridgeHelper.php',
|
'App\\Library\\JumpBridges\\JumpBridgeHelper' => $baseDir . '/app/Library/JumpBridges/JumpBridgeHelper.php',
|
||||||
'App\\Library\\Lookups\\LookupHelper' => $baseDir . '/app/Library/Lookups/LookupHelper.php',
|
'App\\Library\\Lookups\\LookupHelper' => $baseDir . '/app/Library/Lookups/LookupHelper.php',
|
||||||
'App\\Library\\Market\\MarketHelper' => $baseDir . '/app/Library/Market/MarketHelper.php',
|
|
||||||
'App\\Library\\Moons\\MiningLedgerHelper' => $baseDir . '/app/Library/Moons/MiningLedgerHelper.php',
|
'App\\Library\\Moons\\MiningLedgerHelper' => $baseDir . '/app/Library/Moons/MiningLedgerHelper.php',
|
||||||
'App\\Library\\Moons\\MoonCalc' => $baseDir . '/app/Library/Moons/MoonCalc.php',
|
'App\\Library\\Moons\\MoonCalc' => $baseDir . '/app/Library/Moons/MoonCalc.php',
|
||||||
'App\\Library\\RegionalContracts\\RegionalContractHelper' => $baseDir . '/app/Library/RegionalContracts/RegionalContractHelper.php',
|
|
||||||
'App\\Library\\SRP\\SRPHelper' => $baseDir . '/app/Library/SRP/SRPHelper.php',
|
'App\\Library\\SRP\\SRPHelper' => $baseDir . '/app/Library/SRP/SRPHelper.php',
|
||||||
'App\\Library\\Structures\\StructureHelper' => $baseDir . '/app/Library/Structures/StructureHelper.php',
|
'App\\Library\\Structures\\StructureHelper' => $baseDir . '/app/Library/Structures/StructureHelper.php',
|
||||||
'App\\Library\\Taxes\\TaxesHelper' => $baseDir . '/app/Library/Taxes/TaxesHelper.php',
|
'App\\Library\\Taxes\\TaxesHelper' => $baseDir . '/app/Library/Taxes/TaxesHelper.php',
|
||||||
@@ -112,7 +114,9 @@ return array(
|
|||||||
'App\\Models\\Esi\\EsiScope' => $baseDir . '/app/Models/Esi/EsiScope.php',
|
'App\\Models\\Esi\\EsiScope' => $baseDir . '/app/Models/Esi/EsiScope.php',
|
||||||
'App\\Models\\Esi\\EsiToken' => $baseDir . '/app/Models/Esi/EsiToken.php',
|
'App\\Models\\Esi\\EsiToken' => $baseDir . '/app/Models/Esi/EsiToken.php',
|
||||||
'App\\Models\\Eve\\EveRegion' => $baseDir . '/app/Models/Eve/EveRegion.php',
|
'App\\Models\\Eve\\EveRegion' => $baseDir . '/app/Models/Eve/EveRegion.php',
|
||||||
|
'App\\Models\\Finances\\AllianceBond' => $baseDir . '/app/Models/Finances/AllianceBond.php',
|
||||||
'App\\Models\\Finances\\AllianceMarketJournal' => $baseDir . '/app/Models/Finances/AllianceMarketJournal.php',
|
'App\\Models\\Finances\\AllianceMarketJournal' => $baseDir . '/app/Models/Finances/AllianceMarketJournal.php',
|
||||||
|
'App\\Models\\Finances\\Bondee' => $baseDir . '/app/Models/Finances/Bondee.php',
|
||||||
'App\\Models\\Finances\\JumpBridgeJournal' => $baseDir . '/app/Models/Finances/JumpBridgeJournal.php',
|
'App\\Models\\Finances\\JumpBridgeJournal' => $baseDir . '/app/Models/Finances/JumpBridgeJournal.php',
|
||||||
'App\\Models\\Finances\\OfficeFeesJournal' => $baseDir . '/app/Models/Finances/OfficeFeesJournal.php',
|
'App\\Models\\Finances\\OfficeFeesJournal' => $baseDir . '/app/Models/Finances/OfficeFeesJournal.php',
|
||||||
'App\\Models\\Finances\\PISaleJournal' => $baseDir . '/app/Models/Finances/PISaleJournal.php',
|
'App\\Models\\Finances\\PISaleJournal' => $baseDir . '/app/Models/Finances/PISaleJournal.php',
|
||||||
|
|||||||
8
vendor/composer/autoload_static.php
vendored
8
vendor/composer/autoload_static.php
vendored
@@ -544,6 +544,7 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9
|
|||||||
'App\\Console\\Commands\\Eve\\ItemPricesUpdateCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Eve/ItemPricesUpdateCommand.php',
|
'App\\Console\\Commands\\Eve\\ItemPricesUpdateCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Eve/ItemPricesUpdateCommand.php',
|
||||||
'App\\Console\\Commands\\Files\\MoonFormatter' => __DIR__ . '/../..' . '/app/Console/Commands/Files/MoonFormatter.php',
|
'App\\Console\\Commands\\Files\\MoonFormatter' => __DIR__ . '/../..' . '/app/Console/Commands/Files/MoonFormatter.php',
|
||||||
'App\\Console\\Commands\\Files\\UpdateItemCompositionFromSDECommand' => __DIR__ . '/../..' . '/app/Console/Commands/Files/UpdateItemCompositionFromSDECommand.php',
|
'App\\Console\\Commands\\Files\\UpdateItemCompositionFromSDECommand' => __DIR__ . '/../..' . '/app/Console/Commands/Files/UpdateItemCompositionFromSDECommand.php',
|
||||||
|
'App\\Console\\Commands\\Finances\\AllianceBondsCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Finances/AllianceBondsCommand.php',
|
||||||
'App\\Console\\Commands\\Finances\\HoldingFinancesCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Finances/HoldingFinancesCommand.php',
|
'App\\Console\\Commands\\Finances\\HoldingFinancesCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Finances/HoldingFinancesCommand.php',
|
||||||
'App\\Console\\Commands\\Finances\\SovBillsCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Finances/SovBillsCommand.php',
|
'App\\Console\\Commands\\Finances\\SovBillsCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Finances/SovBillsCommand.php',
|
||||||
'App\\Console\\Commands\\Flex\\FlexStructureCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Flex/FlexStructureCommand.php',
|
'App\\Console\\Commands\\Flex\\FlexStructureCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Flex/FlexStructureCommand.php',
|
||||||
@@ -565,6 +566,8 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9
|
|||||||
'App\\Http\\Controllers\\Dashboard\\AdminDashboardController' => __DIR__ . '/../..' . '/app/Http/Controllers/Dashboard/AdminDashboardController.php',
|
'App\\Http\\Controllers\\Dashboard\\AdminDashboardController' => __DIR__ . '/../..' . '/app/Http/Controllers/Dashboard/AdminDashboardController.php',
|
||||||
'App\\Http\\Controllers\\Dashboard\\DashboardController' => __DIR__ . '/../..' . '/app/Http/Controllers/Dashboard/DashboardController.php',
|
'App\\Http\\Controllers\\Dashboard\\DashboardController' => __DIR__ . '/../..' . '/app/Http/Controllers/Dashboard/DashboardController.php',
|
||||||
'App\\Http\\Controllers\\Dashboard\\StatisticsController' => __DIR__ . '/../..' . '/app/Http/Controllers/Dashboard/StatisticsController.php',
|
'App\\Http\\Controllers\\Dashboard\\StatisticsController' => __DIR__ . '/../..' . '/app/Http/Controllers/Dashboard/StatisticsController.php',
|
||||||
|
'App\\Http\\Controllers\\Finances\\AdminWarpedBondsController' => __DIR__ . '/../..' . '/app/Http/Controllers/Finances/AdminWarpedBondsController.php',
|
||||||
|
'App\\Http\\Controllers\\Finances\\WarpedBondsController' => __DIR__ . '/../..' . '/app/Http/Controllers/Finances/WarpedBondsController.php',
|
||||||
'App\\Http\\Controllers\\Flex\\FlexAdminController' => __DIR__ . '/../..' . '/app/Http/Controllers/Flex/FlexAdminController.php',
|
'App\\Http\\Controllers\\Flex\\FlexAdminController' => __DIR__ . '/../..' . '/app/Http/Controllers/Flex/FlexAdminController.php',
|
||||||
'App\\Http\\Controllers\\Logistics\\FuelController' => __DIR__ . '/../..' . '/app/Http/Controllers/Logistics/FuelController.php',
|
'App\\Http\\Controllers\\Logistics\\FuelController' => __DIR__ . '/../..' . '/app/Http/Controllers/Logistics/FuelController.php',
|
||||||
'App\\Http\\Controllers\\Logistics\\StructureRequestAdminController' => __DIR__ . '/../..' . '/app/Http/Controllers/Logistics/StructureRequestAdminController.php',
|
'App\\Http\\Controllers\\Logistics\\StructureRequestAdminController' => __DIR__ . '/../..' . '/app/Http/Controllers/Logistics/StructureRequestAdminController.php',
|
||||||
@@ -589,6 +592,7 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9
|
|||||||
'App\\Http\\Middleware\\TrimStrings' => __DIR__ . '/../..' . '/app/Http/Middleware/TrimStrings.php',
|
'App\\Http\\Middleware\\TrimStrings' => __DIR__ . '/../..' . '/app/Http/Middleware/TrimStrings.php',
|
||||||
'App\\Http\\Middleware\\TrustProxies' => __DIR__ . '/../..' . '/app/Http/Middleware/TrustProxies.php',
|
'App\\Http\\Middleware\\TrustProxies' => __DIR__ . '/../..' . '/app/Http/Middleware/TrustProxies.php',
|
||||||
'App\\Http\\Middleware\\VerifyCsrfToken' => __DIR__ . '/../..' . '/app/Http/Middleware/VerifyCsrfToken.php',
|
'App\\Http\\Middleware\\VerifyCsrfToken' => __DIR__ . '/../..' . '/app/Http/Middleware/VerifyCsrfToken.php',
|
||||||
|
'App\\Jobs\\Commands\\Bonds\\ProcessAllianceBond' => __DIR__ . '/../..' . '/app/Jobs/Commands/Bonds/ProcessAllianceBond.php',
|
||||||
'App\\Jobs\\Commands\\Eve\\ItemPricesUpdateJob' => __DIR__ . '/../..' . '/app/Jobs/Commands/Eve/ItemPricesUpdateJob.php',
|
'App\\Jobs\\Commands\\Eve\\ItemPricesUpdateJob' => __DIR__ . '/../..' . '/app/Jobs/Commands/Eve/ItemPricesUpdateJob.php',
|
||||||
'App\\Jobs\\Commands\\Moons\\FetchMoonLedgerJob' => __DIR__ . '/../..' . '/app/Jobs/Commands/Moons/FetchMoonLedgerJob.php',
|
'App\\Jobs\\Commands\\Moons\\FetchMoonLedgerJob' => __DIR__ . '/../..' . '/app/Jobs/Commands/Moons/FetchMoonLedgerJob.php',
|
||||||
'App\\Jobs\\Commands\\Moons\\FetchMoonObserverJob' => __DIR__ . '/../..' . '/app/Jobs/Commands/Moons/FetchMoonObserverJob.php',
|
'App\\Jobs\\Commands\\Moons\\FetchMoonObserverJob' => __DIR__ . '/../..' . '/app/Jobs/Commands/Moons/FetchMoonObserverJob.php',
|
||||||
@@ -622,10 +626,8 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9
|
|||||||
'App\\Library\\Fleets\\FleetHelper' => __DIR__ . '/../..' . '/app/Library/Fleets/FleetHelper.php',
|
'App\\Library\\Fleets\\FleetHelper' => __DIR__ . '/../..' . '/app/Library/Fleets/FleetHelper.php',
|
||||||
'App\\Library\\JumpBridges\\JumpBridgeHelper' => __DIR__ . '/../..' . '/app/Library/JumpBridges/JumpBridgeHelper.php',
|
'App\\Library\\JumpBridges\\JumpBridgeHelper' => __DIR__ . '/../..' . '/app/Library/JumpBridges/JumpBridgeHelper.php',
|
||||||
'App\\Library\\Lookups\\LookupHelper' => __DIR__ . '/../..' . '/app/Library/Lookups/LookupHelper.php',
|
'App\\Library\\Lookups\\LookupHelper' => __DIR__ . '/../..' . '/app/Library/Lookups/LookupHelper.php',
|
||||||
'App\\Library\\Market\\MarketHelper' => __DIR__ . '/../..' . '/app/Library/Market/MarketHelper.php',
|
|
||||||
'App\\Library\\Moons\\MiningLedgerHelper' => __DIR__ . '/../..' . '/app/Library/Moons/MiningLedgerHelper.php',
|
'App\\Library\\Moons\\MiningLedgerHelper' => __DIR__ . '/../..' . '/app/Library/Moons/MiningLedgerHelper.php',
|
||||||
'App\\Library\\Moons\\MoonCalc' => __DIR__ . '/../..' . '/app/Library/Moons/MoonCalc.php',
|
'App\\Library\\Moons\\MoonCalc' => __DIR__ . '/../..' . '/app/Library/Moons/MoonCalc.php',
|
||||||
'App\\Library\\RegionalContracts\\RegionalContractHelper' => __DIR__ . '/../..' . '/app/Library/RegionalContracts/RegionalContractHelper.php',
|
|
||||||
'App\\Library\\SRP\\SRPHelper' => __DIR__ . '/../..' . '/app/Library/SRP/SRPHelper.php',
|
'App\\Library\\SRP\\SRPHelper' => __DIR__ . '/../..' . '/app/Library/SRP/SRPHelper.php',
|
||||||
'App\\Library\\Structures\\StructureHelper' => __DIR__ . '/../..' . '/app/Library/Structures/StructureHelper.php',
|
'App\\Library\\Structures\\StructureHelper' => __DIR__ . '/../..' . '/app/Library/Structures/StructureHelper.php',
|
||||||
'App\\Library\\Taxes\\TaxesHelper' => __DIR__ . '/../..' . '/app/Library/Taxes/TaxesHelper.php',
|
'App\\Library\\Taxes\\TaxesHelper' => __DIR__ . '/../..' . '/app/Library/Taxes/TaxesHelper.php',
|
||||||
@@ -642,7 +644,9 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9
|
|||||||
'App\\Models\\Esi\\EsiScope' => __DIR__ . '/../..' . '/app/Models/Esi/EsiScope.php',
|
'App\\Models\\Esi\\EsiScope' => __DIR__ . '/../..' . '/app/Models/Esi/EsiScope.php',
|
||||||
'App\\Models\\Esi\\EsiToken' => __DIR__ . '/../..' . '/app/Models/Esi/EsiToken.php',
|
'App\\Models\\Esi\\EsiToken' => __DIR__ . '/../..' . '/app/Models/Esi/EsiToken.php',
|
||||||
'App\\Models\\Eve\\EveRegion' => __DIR__ . '/../..' . '/app/Models/Eve/EveRegion.php',
|
'App\\Models\\Eve\\EveRegion' => __DIR__ . '/../..' . '/app/Models/Eve/EveRegion.php',
|
||||||
|
'App\\Models\\Finances\\AllianceBond' => __DIR__ . '/../..' . '/app/Models/Finances/AllianceBond.php',
|
||||||
'App\\Models\\Finances\\AllianceMarketJournal' => __DIR__ . '/../..' . '/app/Models/Finances/AllianceMarketJournal.php',
|
'App\\Models\\Finances\\AllianceMarketJournal' => __DIR__ . '/../..' . '/app/Models/Finances/AllianceMarketJournal.php',
|
||||||
|
'App\\Models\\Finances\\Bondee' => __DIR__ . '/../..' . '/app/Models/Finances/Bondee.php',
|
||||||
'App\\Models\\Finances\\JumpBridgeJournal' => __DIR__ . '/../..' . '/app/Models/Finances/JumpBridgeJournal.php',
|
'App\\Models\\Finances\\JumpBridgeJournal' => __DIR__ . '/../..' . '/app/Models/Finances/JumpBridgeJournal.php',
|
||||||
'App\\Models\\Finances\\OfficeFeesJournal' => __DIR__ . '/../..' . '/app/Models/Finances/OfficeFeesJournal.php',
|
'App\\Models\\Finances\\OfficeFeesJournal' => __DIR__ . '/../..' . '/app/Models/Finances/OfficeFeesJournal.php',
|
||||||
'App\\Models\\Finances\\PISaleJournal' => __DIR__ . '/../..' . '/app/Models/Finances/PISaleJournal.php',
|
'App\\Models\\Finances\\PISaleJournal' => __DIR__ . '/../..' . '/app/Models/Finances/PISaleJournal.php',
|
||||||
|
|||||||
Reference in New Issue
Block a user