zio.http.internal.HeaderChecks.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.http.Header.HeaderType
import zio.http._
/**
* Maintains a list of operators that checks if the Headers meet the give
* constraints.
*/
trait HeaderChecks[+A] { self: HeaderOps[A] with A =>
final def hasContentType(value: CharSequence): Boolean =
header(Header.ContentType).exists(ct =>
CharSequenceExtensions.equals(ct.mediaType.fullType, value, CaseMode.Insensitive),
)
final def hasContentType(mediaType: MediaType): Boolean =
header(Header.ContentType).exists(ct => ct.mediaType == mediaType)
final def hasFormUrlencodedContentType: Boolean =
hasContentType(MediaType.application.`x-www-form-urlencoded`.fullType)
final def hasFormMultipartContentType: Boolean =
hasContentType(MediaType.multipart.`form-data`.fullType)
final def hasHeader(name: CharSequence): Boolean =
rawHeader(name).nonEmpty
final def hasHeader(headerType: HeaderType): Boolean =
header(headerType).nonEmpty
final def hasHeader(header: Header): Boolean =
self.header(header.headerType).contains(header)
final def hasJsonContentType: Boolean =
hasContentType(MediaType.application.json.fullType)
final def hasTextPlainContentType: Boolean =
hasContentType(MediaType.text.plain.fullType)
final def hasXhtmlXmlContentType: Boolean =
hasContentType(MediaType.application.`xhtml+xml`.fullType)
final def hasXmlContentType: Boolean =
hasContentType(MediaType.application.`xml`.fullType)
}