
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions. You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root. For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
101 lines
2.8 KiB
PHP
101 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Models\Product;
|
|
use App\Models\Server;
|
|
use App\Models\User;
|
|
use App\Notifications\ServersSuspendedNotification;
|
|
use Illuminate\Console\Command;
|
|
|
|
class ChargeCreditsCommand extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'credits:charge';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Charge all users with active servers';
|
|
|
|
/**
|
|
* A list of users that have to be notified
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $usersToNotify = [];
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function handle()
|
|
{
|
|
Server::whereNull('suspended')->chunk(10, function ($servers) {
|
|
/** @var Server $server */
|
|
foreach ($servers as $server) {
|
|
/** @var Product $product */
|
|
$product = $server->product;
|
|
/** @var User $user */
|
|
$user = $server->user;
|
|
|
|
//charge credits / suspend server
|
|
if ($user->credits >= $product->getHourlyPrice()) {
|
|
$this->line("<fg=blue>{$user->name}</> Current credits: <fg=green>{$user->credits}</> Credits to be removed: <fg=red>{$product->getHourlyPrice()}</>");
|
|
$user->decrement('credits', $product->getHourlyPrice());
|
|
} else {
|
|
try {
|
|
//suspend server
|
|
$this->line("<fg=yellow>{$server->name}</> from user: <fg=blue>{$user->name}</> has been <fg=red>suspended!</>");
|
|
$server->suspend();
|
|
|
|
//add user to notify list
|
|
if (! in_array($user, $this->usersToNotify)) {
|
|
array_push($this->usersToNotify, $user);
|
|
}
|
|
} catch (\Exception $exception) {
|
|
$this->error($exception->getMessage());
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
return $this->notifyUsers();
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function notifyUsers()
|
|
{
|
|
if (! empty($this->usersToNotify)) {
|
|
/** @var User $user */
|
|
foreach ($this->usersToNotify as $user) {
|
|
$this->line("<fg=yellow>Notified user:</> <fg=blue>{$user->name}</>");
|
|
$user->notify(new ServersSuspendedNotification());
|
|
}
|
|
}
|
|
|
|
//reset array
|
|
$this->usersToNotify = [];
|
|
|
|
return true;
|
|
}
|
|
}
|