summaryrefslogtreecommitdiff
path: root/cask/src/cask/endpoints/StaticEndpoints.scala
blob: 048f89a83468bd6381c6045f6ab1239602eea48b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cask.endpoints

import cask.internal.Router
import cask.main.Endpoint
import cask.model.{Response, ParamContext}

class static(val path: String) extends Endpoint {
  type Output = String
  val methods = Seq("get")
  type Input = Seq[String]
  type InputParser[T] = QueryParamReader[T]
  override def subpath = true
  def wrapFunction(ctx: ParamContext, delegate: Delegate): Returned = {
    delegate(Map()) match{
      case Router.Result.Success(t) => Router.Result.Success(cask.model.Static(t + "/" + ctx.remaining.mkString("/")))
      case e: Router.Result.Error => e
    }
  }

  def wrapPathSegment(s: String): Input = Seq(s)
}