mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 07:46:51 +01:00 
			
		
		
		
	 da195fd2fe
			
		
	
	
		da195fd2fe
		
			
		
	
	
	
	
		
			
			* Not found property rule * Make these “better” * Day 1 * Day 2 * Day 3 * Dat 4 * Remove disabled check * Day 4 continued * Run pint * Final changes hopefully * Pint fixes * Fix again * Reset these * Update app/Filament/Admin/Pages/Health.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> * Update app/Traits/CheckMigrationsTrait.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> --------- Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com>
		
			
				
	
	
		
			103 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Console\Commands\Server;
 | |
| 
 | |
| use App\Models\Server;
 | |
| use Illuminate\Console\Command;
 | |
| use Illuminate\Database\Eloquent\Builder;
 | |
| use Illuminate\Validation\ValidationException;
 | |
| use Illuminate\Validation\Factory as ValidatorFactory;
 | |
| use App\Repositories\Daemon\DaemonPowerRepository;
 | |
| use Exception;
 | |
| 
 | |
| class BulkPowerActionCommand extends Command
 | |
| {
 | |
|     protected $signature = 'p:server:bulk-power
 | |
|                             {action : The action to perform (start, stop, restart, kill)}
 | |
|                             {--servers= : A comma separated list of servers.}
 | |
|                             {--nodes= : A comma separated list of nodes.}';
 | |
| 
 | |
|     protected $description = 'Perform bulk power management on large groupings of servers or nodes at once.';
 | |
| 
 | |
|     public function handle(DaemonPowerRepository $powerRepository, ValidatorFactory $validator): void
 | |
|     {
 | |
|         $action = $this->argument('action');
 | |
|         $nodes = empty($this->option('nodes')) ? [] : explode(',', $this->option('nodes'));
 | |
|         $servers = empty($this->option('servers')) ? [] : explode(',', $this->option('servers'));
 | |
| 
 | |
|         $validator = $validator->make([
 | |
|             'action' => $action,
 | |
|             'nodes' => $nodes,
 | |
|             'servers' => $servers,
 | |
|         ], [
 | |
|             'action' => 'string|in:start,stop,kill,restart',
 | |
|             'nodes' => 'array',
 | |
|             'nodes.*' => 'integer|min:1',
 | |
|             'servers' => 'array',
 | |
|             'servers.*' => 'integer|min:1',
 | |
|         ]);
 | |
| 
 | |
|         if ($validator->fails()) {
 | |
|             foreach ($validator->getMessageBag()->all() as $message) {
 | |
|                 $this->output->error($message);
 | |
|             }
 | |
| 
 | |
|             throw new ValidationException($validator);
 | |
|         }
 | |
| 
 | |
|         $count = $this->getQueryBuilder($servers, $nodes)->count();
 | |
|         if (!$this->confirm(trans('command/messages.server.power.confirm', ['action' => $action, 'count' => $count])) && $this->input->isInteractive()) {
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         $bar = $this->output->createProgressBar($count);
 | |
| 
 | |
|         $this->getQueryBuilder($servers, $nodes)->get()->each(function ($server, int $index) use ($action, $powerRepository, &$bar): mixed {
 | |
|             $bar->clear();
 | |
| 
 | |
|             if (!$server instanceof Server) {
 | |
|                 return null;
 | |
|             }
 | |
| 
 | |
|             try {
 | |
|                 $powerRepository->setServer($server)->send($action);
 | |
|             } catch (Exception $exception) {
 | |
|                 $this->output->error(trans('command/messages.server.power.action_failed', [
 | |
|                     'name' => $server->name,
 | |
|                     'id' => $server->id,
 | |
|                     'node' => $server->node->name,
 | |
|                     'message' => $exception->getMessage(),
 | |
|                 ]));
 | |
|             }
 | |
| 
 | |
|             $bar->advance();
 | |
|             $bar->display();
 | |
| 
 | |
|             return null;
 | |
|         });
 | |
| 
 | |
|         $this->line('');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Returns the query builder instance that will return the servers that should be affected.
 | |
|      *
 | |
|      * @param  string[]|int[]  $servers
 | |
|      * @param  string[]|int[]  $nodes
 | |
|      */
 | |
|     protected function getQueryBuilder(array $servers, array $nodes): Builder
 | |
|     {
 | |
|         $instance = Server::query()->whereNull('status');
 | |
| 
 | |
|         if (!empty($nodes) && !empty($servers)) {
 | |
|             $instance->whereIn('id', $servers)->orWhereIn('node_id', $nodes);
 | |
|         } elseif (empty($nodes) && !empty($servers)) {
 | |
|             $instance->whereIn('id', $servers);
 | |
|         } elseif (!empty($nodes)) {
 | |
|             $instance->whereIn('node_id', $nodes);
 | |
|         }
 | |
| 
 | |
|         return $instance->with('node');
 | |
|     }
 | |
| }
 |