database = $database; $this->repository = $repository; $this->writer = $writer; $this->daemonServerRepository = $daemonServerRepository; } /** * Suspends a server on the system. * * @param int|\Pterodactyl\Models\Server $server * @param string $action * @return bool * * @throws \Pterodactyl\Exceptions\DisplayException * @throws \Pterodactyl\Exceptions\Model\DataValidationException * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException */ public function toggle($server, $action = self::ACTION_SUSPEND) { if (! $server instanceof Server) { $server = $this->repository->find($server); } if (! in_array($action, [self::ACTION_SUSPEND, self::ACTION_UNSUSPEND])) { throw new InvalidArgumentException(sprintf( 'Action must be either ' . self::ACTION_SUSPEND . ' or ' . self::ACTION_UNSUSPEND . ', %s passed.', $action )); } if ( $action === self::ACTION_SUSPEND && $server->suspended || $action === self::ACTION_UNSUSPEND && ! $server->suspended ) { return true; } $this->database->beginTransaction(); $this->repository->withoutFreshModel()->update($server->id, [ 'suspended' => $action === self::ACTION_SUSPEND, ]); try { $this->daemonServerRepository->setServer($server)->$action(); $this->database->commit(); return true; } catch (RequestException $exception) { $response = $exception->getResponse(); $this->writer->warning($exception); throw new DisplayException(trans('admin/server.exceptions.daemon_exception', [ 'code' => is_null($response) ? 'E_CONN_REFUSED' : $response->getStatusCode(), ])); } } }