mirror of
https://github.com/ZizzyDizzyMC/linx-server.git
synced 2026-01-23 02:14:33 +00:00
this file might be useful to add here
This commit is contained in:
parent
d869599da7
commit
c634317e2d
1 changed files with 24 additions and 0 deletions
24
fileserve.go
Normal file
24
fileserve.go
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"os"
|
||||
"path"
|
||||
|
||||
"github.com/zenazn/goji/web"
|
||||
)
|
||||
|
||||
func fileServeHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
||||
filename := c.URLParams["name"]
|
||||
absPath := path.Join(Config.filesDir, filename)
|
||||
_, err := os.Stat(absPath)
|
||||
|
||||
if os.IsNotExist(err) {
|
||||
http.Error(w, http.StatusText(404), 404)
|
||||
return
|
||||
}
|
||||
|
||||
// plug file expiry checking here
|
||||
|
||||
http.ServeFile(w, r, absPath)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue