'required', ]; } public function credentialData(array $input): array { return [ 'token' => $input['token'], ]; } public function data(array $input): array { return [ 'plan' => $input['plan'], 'region' => $input['region'], ]; } /** * @throws CouldNotConnectToProvider */ public function connect(?array $credentials = null): bool { $connect = Http::withToken($credentials['token'])->get($this->apiUrl.'/account'); if (! $connect->ok()) { throw new CouldNotConnectToProvider('DigitalOcean'); } return true; } public function plans(?string $region): array { return collect(config('serverproviders.digitalocean.plans')) ->mapWithKeys(fn ($value) => [$value['value'] => $value['title']]) ->toArray(); } public function regions(): array { return collect(config('serverproviders.digitalocean.regions')) ->mapWithKeys(fn ($value) => [$value['value'] => $value['title']]) ->toArray(); } /** * @throws ServerProviderError */ public function create(): void { $this->generateKeyPair(); $createSshKey = Http::withToken($this->server->serverProvider->credentials['token']) ->post($this->apiUrl.'/account/keys', [ 'public_key' => $this->server->sshKey()['public_key'], 'name' => str($this->server->name)->slug().'-'.$this->server->id, ]); if ($createSshKey->status() != 201) { throw new ServerProviderError('DigitalOcean SSH Key'); } $create = Http::withToken($this->server->serverProvider->credentials['token']) ->post($this->apiUrl.'/droplets', [ 'name' => str($this->server->name)->slug(), 'region' => $this->server->provider_data['region'], 'size' => $this->server->provider_data['plan'], 'image' => config('serverproviders.digitalocean.images')[$this->server->os], 'backups' => false, 'ipv6' => false, 'monitoring' => false, 'ssh_keys' => [$createSshKey->json()['ssh_key']['id']], ]); if ($create->status() != 202) { $msg = __('Failed to create server on DigitalOcean'); Log::error('Failed to create server on DigitalOcean', $create->json()); throw new ServerProviderError($msg); } $providerData = $this->server->provider_data; $providerData['droplet_id'] = $create->json()['droplet']['id']; $this->server->provider_data = $providerData; $this->server->save(); } public function isRunning(): bool { $status = Http::withToken($this->server->serverProvider->credentials['token']) ->get($this->apiUrl.'/droplets/'.$this->server->provider_data['droplet_id']); if (! $status->ok()) { return false; } if (! $this->server->ip && count($status->json()['droplet']['networks']['v4']) > 0) { foreach ($status->json()['droplet']['networks']['v4'] as $v4) { if ($v4['type'] == 'public') { $this->server->ip = $v4['ip_address']; } else { $this->server->local_ip = $v4['ip_address']; } } $this->server->save(); } return $status->json()['droplet']['status'] == 'active'; } /** * @throws Exception */ public function delete(): void { if (isset($this->server->provider_data['droplet_id'])) { $delete = Http::withToken($this->server->serverProvider->credentials['token']) ->delete($this->apiUrl.'/droplets/'.$this->server->provider_data['droplet_id']); if (! $delete->ok()) { Notifier::send($this->server, new FailedToDeleteServerFromProvider($this->server)); } } } }