connection = $connection; $this->dynamic = $dynamic; $this->encrypter = $encrypter; $this->repository = $repository; } /** * Updates a password for a given database. * * @param \Pterodactyl\Models\Database|int $database * @param string $password * @return bool * * @throws \Pterodactyl\Exceptions\Model\DataValidationException * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException */ public function handle($database, string $password): bool { if (! $database instanceof Database) { $database = $this->repository->find($database); } $this->dynamic->set('dynamic', $database->database_host_id); $this->connection->beginTransaction(); $updated = $this->repository->withoutFreshModel()->update($database->id, [ 'password' => $this->encrypter->encrypt($password), ]); $this->repository->dropUser($database->username, $database->remote); $this->repository->createUser($database->username, $database->remote, $password); $this->repository->assignUserToDatabase($database->database, $database->username, $database->remote); $this->repository->flush(); unset($password); $this->connection->commit(); return $updated; } }