spray.routing.directives.PathDirectives.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spray-routing Show documentation
Show all versions of spray-routing Show documentation
A suite of lightweight Scala libraries for building and consuming RESTful web services on top of Akka
The newest version!
/*
* Copyright © 2011-2013 the spray project
*
* 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 spray.routing
package directives
import shapeless._
trait PathDirectives extends PathMatchers with ImplicitPathMatcherConstruction {
import BasicDirectives._
import RouteDirectives._
import PathMatcher._
/**
* Tries to consume a leading slash from the unmatched path of the [[spray.routing.RequestContext]]
* before applying the given matcher. The matcher has to match the remaining path completely
* or leave only a single trailing slash.
* If matched the value extracted by the PathMatcher is extracted on the directive level.
*/
def path[L <: HList](pm: PathMatcher[L]): Directive[L] = pathPrefix(pm ~ PathEnd)
/**
* Tries to consume a leading slash from the unmatched path of the [[spray.routing.RequestContext]]
* before applying the given matcher. The matcher has to match a prefix of the remaining path.
* If matched the value extracted by the PathMatcher is extracted on the directive level.
*/
def pathPrefix[L <: HList](pm: PathMatcher[L]): Directive[L] = rawPathPrefix(Slash ~ pm)
/**
* Applies the given matcher directly to the unmatched path of the [[spray.routing.RequestContext]]
* (i.e. without implicitly consuming a leading slash).
* The matcher has to match a prefix of the remaining path.
* If matched the value extracted by the PathMatcher is extracted on the directive level.
*/
def rawPathPrefix[L <: HList](pm: PathMatcher[L]): Directive[L] =
extract(ctx ⇒ pm(ctx.unmatchedPath)).flatMap {
case Matched(rest, values) ⇒ hprovide(values) & mapRequestContext(_.copy(unmatchedPath = rest))
case Unmatched ⇒ reject
}
/**
* Checks whether the unmatchedPath of the [[spray.RequestContext]] has a prefix matched by the
* given PathMatcher. In analogy to the `pathPrefix` directive a leading slash is implied.
*/
def pathPrefixTest[L <: HList](pm: PathMatcher[L]): Directive[L] = rawPathPrefixTest(Slash ~ pm)
/**
* Checks whether the unmatchedPath of the [[spray.RequestContext]] has a prefix matched by the
* given PathMatcher. However, as opposed to the `pathPrefix` directive the matched path is not
* actually "consumed".
*/
def rawPathPrefixTest[L <: HList](pm: PathMatcher[L]): Directive[L] =
extract(ctx ⇒ pm(ctx.unmatchedPath)).flatMap {
case Matched(_, values) ⇒ hprovide(values)
case Unmatched ⇒ reject
}
/**
* Rejects the request if the unmatchedPath of the [[spray.RequestContext]] does not have a suffix
* matched the given PathMatcher. If matched the value extracted by the PathMatcher is extracted
* and the matched parts of the path are consumed.
* Note that, for efficiency reasons, the given PathMatcher must match the desired suffix in reversed-segment
* order, i.e. `pathSuffix("baz" / "bar")` would match `/foo/bar/baz`!
*/
def pathSuffix[L <: HList](pm: PathMatcher[L]): Directive[L] =
extract(ctx ⇒ pm(ctx.unmatchedPath.reverse)).flatMap {
case Matched(rest, values) ⇒ hprovide(values) & mapRequestContext(_.copy(unmatchedPath = rest.reverse))
case Unmatched ⇒ reject
}
/**
* Checks whether the unmatchedPath of the [[spray.RequestContext]] has a suffix matched by the
* given PathMatcher. However, as opposed to the pathSuffix directive the matched path is not
* actually "consumed".
* Note that, for efficiency reasons, the given PathMatcher must match the desired suffix in reversed-segment
* order, i.e. `pathSuffixTest("baz" / "bar")` would match `/foo/bar/baz`!
*/
def pathSuffixTest[L <: HList](pm: PathMatcher[L]): Directive[L] =
extract(ctx ⇒ pm(ctx.unmatchedPath.reverse)).flatMap {
case Matched(_, values) ⇒ hprovide(values)
case Unmatched ⇒ reject
}
/**
* Rejects the request if the unmatchedPath of the [[spray.RequestContext]] is non-empty,
* or said differently: only passes on the request to its inner route if the request path
* has been matched completely.
*/
def pathEnd: Directive0 = rawPathPrefix(PathEnd)
/**
* Only passes on the request to its inner route if the request path has been matched
* completely or only consists of exactly one remaining slash.
*/
def pathEndOrSingleSlash: Directive0 = rawPathPrefix(Slash.? ~ PathEnd)
/**
* Only passes on the request to its inner route if the request path
* consists of exactly one remaining slash.
*/
def pathSingleSlash: Directive0 = pathPrefix(PathEnd)
}
object PathDirectives extends PathDirectives
© 2015 - 2025 Weber Informatics LLC | Privacy Policy