SetStartStatus();
//Declare the moon calc class variable to utilize the library to update the price
$mailer = new MoonMailer;
//Create other variables
$body = null;
//Get today's date.
$today = Carbon::now();
$today->second = 1;
$today->minute = 0;
$today->hour = 0;
//Get all contacts from the rentals group
$contacts = MoonRent::select('Contact')->groupBy('Contact')->get();
//For each of the contacts totalize the moon rental, and create the mail to send to them,
//then update parameters of the moon
foreach($contacts as $contact) {
//Get the moons the renter is renting
$rentals = $moonMailer->GetRentalMoons($contact);
//Totalize the cost of the moons
$cost = $moonMailer->TotalizeMoonCost($rentals);
//Get the list of moons in a list format
$listItems = $moonMailer->GetMoonList($rentals);
//Build the mail body
$body = "Moon Rent is due for the following moons:
";
foreach($listItems as $item) {
$body .= $item . "
";
}
$body .= "The price for the next month's rent is " . $cost . "
";
$body .= "Please remit payment to Spatial Forces on the 1st should you continue to wish to rent the moon.
";
$body .= "Sincerely,
";
$body .= "Warped Intentions Leadership
";
//Dispatch the mail job
$mail = new JobSendEveMail;
$mail->sender = 93738489;
$mail->subject = "Warped Intentions Moon Rental Payment Due";
$mail->body = $body;
$mail->recipient = (int)$contact;
$mail->recipient_type = 'character';
SendEveMailJob::dispatch($mail);
//After the mail is dispatched, saved the sent mail record
$moonMailer->SaveSentRecord($mail->sender, $mail->subject, $mail->body, $mail->recipient, $mail->recipient_type);
//Delete the record from the database
foreach($rentals as $rental) {
//Delete the moon rental
$moonMailer->DeleteMoonRental($rental, $today);
//Mark the moon as not paid for the next month
$moonMailer->UpdateNotPaid($rental);
}
}
/*
//Get all of the moons from the rental list
$rentals = MoonRent::all();
//Update the price for all moon rentals before sending out the mail
foreach($rentals as $rental) {
//Get the contents of the moon to re-price it out
$moon = Moon::where([
'System' => $rental->System,
'Planet' => $rental->Planet,
'Moon' => $rental->Moon,
])->first();
//Get the updated price for the moon
$price = $moonCalc->SpatialMoonsOnlyGoo($moon->FirstOre, $moon->FirstQuantity, $moon->SecondOre, $moon->SecondQuantity,
$moon->ThirdOre, $moon->ThirdQuantity, $moon->FourthOre, $moon->FourthQuantity);
//Create the mail body depending on if the price should be in alliance or out of alliance
if($rental->Type == 'alliance') {
$body = "Moon Rent is due for " . $rental->System . " Planet: " . $rental->Planet . " Moon: " . $rental->Moon . "
";
$body .= "The price for next month's rent is " . $price['alliance'] . "
";
$body .= "Please remit payment to Spatial Forces on the 1st should you continue to wish to rent the moon.
";
$body .= "Sincerely,
";
$body .= "Spatial Forces
";
} else {
$body = "Moon Rent is due for " . $rental->System . " Planet: " . $rental->Planet . " Moon: " . $rental->Moon . "
";
$body .= "The price for next month's rent is " . $price['outofalliance'] . "
";
$body .= "Please remit payment to Spatial Forces on the 1st should you continue to wish to rent the moon.
";
$body .= "Sincerely,
";
$body .= "Spatial Forces
";
}
//Send a mail to the contact listing for the moon
$mail = new JobSendEveMail;
$mail->sender = 93738489;
$mail->subject = "Moon Rental";
$mail->body = $body;
$mail->recipient = (int)$rental->Contact;
$mail->recipient_type = 'character';
//Dispatch the job and cycle to the next moon rental
SendEveMailJob::dispatch($mail);
//After the mail is dispatched, saved the sent mail record,
$sentmail = new SentMail;
$sentmail->sender = $mail->sender;
$sentmail->subject = $mail->subject;
$sentmail->body = $mail->body;
$sentmail->recipient = $mail->recipient;
$sentmail->recipient_type = $mail->recipient_type;
$sentmail->save();
//After saving the record, delete the record from the database
if($today->greaterThanOrEqualTo($rental->RentalEnd)) {
MoonRent::where(['id' => $rental->id])->delete();
}
//Mark the moon as not paid for the next month
Moon::where([
'System' => $rental->System,
'Planet' => $rental->Planet,
'Moon' => $rental->Moon,
])->update([
'Paid' => 'No',
]);
}
*/
//Mark the job as finished
$task->SetStopStatus();
}
}