zio.http.internal.QueryModifier.scala Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2021 - 2023 Sporta Technologies PVT LTD & the ZIO HTTP contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package zio.http.internal
import zio.Chunk
import zio.http.QueryParams
trait QueryModifier[+A] { self: QueryOps[A] with A =>
/**
* Combines two collections of query parameters together. If there are
* duplicate keys, the values from both sides are preserved, in order from
* left-to-right.
*/
def ++(that: QueryParams): A =
updateQueryParams(params => QueryParams.fromEntries(params.seq ++ that.seq: _*))
/**
* Adds the specified key/value pair to the query parameters.
*/
def addQueryParam(key: String, value: String): A =
addQueryParams(key, Chunk(value))
/**
* Adds the specified key/value pairs to the query parameters.
*/
def addQueryParams(key: String, value: Chunk[String]): A =
updateQueryParams(params => params ++ QueryParams(key -> value))
def addQueryParams(values: String): A =
updateQueryParams(params => params ++ QueryParams.decode(values))
/**
* Removes the specified key from the query parameters.
*/
def removeQueryParam(key: String): A =
updateQueryParams { params =>
QueryParams.fromEntries(params.seq.filter { entry => entry.getKey != key }: _*)
}
/**
* Removes the specified keys from the query parameters.
*/
def removeQueryParams(keys: Iterable[String]): A = updateQueryParams { params =>
val keysToRemove = keys.toSet
QueryParams.fromEntries(params.seq.filterNot { entry => keysToRemove.contains(entry.getKey) }: _*)
}
def setQueryParams(values: QueryParams): A =
updateQueryParams(_ => values)
def setQueryParams(values: String): A =
updateQueryParams(_ => QueryParams.decode(values))
def setQueryParams(queryParams: Map[String, Chunk[String]]): A =
updateQueryParams(_ => QueryParams(queryParams))
def setQueryParams(queryParams: (String, Chunk[String])*): A =
updateQueryParams(_ => QueryParams(queryParams: _*))
def updateQueryParams(f: QueryParams => QueryParams): A
}