'integer', 'database_host_id' => 'integer', 'max_connections' => 'integer', ]; public static array $validationRules = [ 'server_id' => 'required|numeric|exists:servers,id', 'database_host_id' => 'required|exists:database_hosts,id', 'database' => 'required|string|alpha_dash|between:3,48', 'username' => 'string|alpha_dash|between:3,100', 'max_connections' => 'nullable|integer', 'remote' => 'required|string|regex:/^[\w\-\/.%:]+$/', 'password' => 'string', ]; /** * {@inheritDoc} */ public function getRouteKeyName(): string { return $this->getKeyName(); } /** * Resolves the database using the ID by checking if the value provided is a HashID * string value, or just the ID to the database itself. * * @param mixed $value * @param string|null $field * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function resolveRouteBinding($value, $field = null): ?\Illuminate\Database\Eloquent\Model { if (is_scalar($value) && ($field ?? $this->getRouteKeyName()) === 'id') { $value = ctype_digit((string) $value) ? $value : Container::getInstance()->make(HashidsInterface::class)->decodeFirst($value); } return $this->where($field ?? $this->getRouteKeyName(), $value)->firstOrFail(); } /** * Gets the host database server associated with a database. */ public function host(): BelongsTo { return $this->belongsTo(DatabaseHost::class, 'database_host_id'); } /** * Gets the server associated with a database. */ public function server(): BelongsTo { return $this->belongsTo(Server::class); } }