summaryrefslogtreecommitdiff
path: root/cask/src/cask/endpoints/StaticEndpoints.scala
blob: 1d66b2ce6d70debc3a36e00fa2df4dbf491ac062 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package cask.endpoints

import cask.main.Endpoint
import cask.model.ParamContext

class staticFiles(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()).map(t => cask.model.StaticFile(t + "/" + ctx.remaining.mkString("/")))
  }

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

class staticResources(val path: String, resourceRoot: ClassLoader = getClass.getClassLoader) 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()).map(t =>
      cask.model.StaticResource(t + "/" + ctx.remaining.mkString("/"), resourceRoot)
    )
  }

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