summaryrefslogtreecommitdiff
path: root/cask/src/cask/endpoints/StaticEndpoints.scala
blob: 1e11055dfc7198bbb4ace1a705e34ce936ca8631 (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
33
34
35
36
37
38
39
40
package cask.endpoints

import cask.router.HttpEndpoint
import cask.model.Request

class staticFiles(val path: String) extends HttpEndpoint[String, Seq[String]]{
  val methods = Seq("get")
  type InputParser[T] = QueryParamReader[T]
  override def subpath = true
  def wrapFunction(ctx: Request, delegate: Delegate): OuterReturned = {
    delegate(Map()).map(t =>
      cask.model.StaticFile(
        (cask.internal.Util.splitPath(t) ++ ctx.remainingPathSegments)
          .filter(s => s != "." && s != "..")
          .mkString("/")
      )
    )
  }

  def wrapPathSegment(s: String): Seq[String] = Seq(s)
}

class staticResources(val path: String, resourceRoot: ClassLoader = getClass.getClassLoader)
  extends HttpEndpoint[String, Seq[String]]{
  val methods = Seq("get")
  type InputParser[T] = QueryParamReader[T]
  override def subpath = true
  def wrapFunction(ctx: Request, delegate: Delegate): OuterReturned = {
    delegate(Map()).map(t =>
      cask.model.StaticResource(
        (cask.internal.Util.splitPath(t) ++ ctx.remainingPathSegments)
          .filter(s => s != "." && s != "..")
          .mkString("/"),
        resourceRoot
      )
    )
  }

  def wrapPathSegment(s: String): Seq[String] = Seq(s)
}