.circumflex-web.2.2.source-code.xsendfile.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of circumflex-web Show documentation
Show all versions of circumflex-web Show documentation
Circumflex Web Framework is a lightweight framework
for quick and robust application development using Scala
programming language.
package ru.circumflex
package web
import java.io.File
/*!# X-SendFile feature
Most modern web servers provide the `X-SendFile` feature: they take control over
the process of sending a file to the client. Your application, for example, may
check permissions, set some headers, like `Content-Disposition`, and then delegate
the hard stuff to web server.
Refer to the documentation of your favorite web server for more information.
*/
trait XSendFileHeader {
def name: String
def value(f: File): String
}
object DefaultXSendFileHeader extends XSendFileHeader {
def name = "X-SendFile"
def value(f: File): String = f.getAbsolutePath
}
trait NginxXSendFileHeader extends XSendFileHeader {
def name = "X-Accel-Redirect"
}