forked from labstack/echo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Static back as middleware Signed-off-by: Vishal Rana <[email protected]>
- Loading branch information
Showing
6 changed files
with
145 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
package middleware | ||
|
||
import ( | ||
"fmt" | ||
"net/http" | ||
"path" | ||
"strings" | ||
|
||
"github.com/labstack/echo" | ||
) | ||
|
||
type ( | ||
// StaticConfig defines the config for static middleware. | ||
StaticConfig struct { | ||
// Root is the directory from where the static content is served. | ||
// Required. | ||
Root string `json:"root"` | ||
|
||
// Index is the list of index files to be searched and used when serving | ||
// a directory. | ||
// Optional with default value as []string{"index.html"}. | ||
Index []string `json:"index"` | ||
|
||
// Browse is a flag to enable/disable directory browsing. | ||
// Optional with default value as false. | ||
Browse bool `json:"browse"` | ||
} | ||
) | ||
|
||
var ( | ||
// DefaultStaticConfig is the default static middleware config. | ||
DefaultStaticConfig = StaticConfig{ | ||
Index: []string{"index.html"}, | ||
Browse: false, | ||
} | ||
) | ||
|
||
// Static returns a static middleware to serves static content from the provided | ||
// root directory. | ||
func Static(root string) echo.MiddlewareFunc { | ||
c := DefaultStaticConfig | ||
c.Root = root | ||
return StaticWithConfig(c) | ||
} | ||
|
||
// StaticWithConfig returns a static middleware from config. | ||
// See `Static()`. | ||
func StaticWithConfig(config StaticConfig) echo.MiddlewareFunc { | ||
// Defaults | ||
if config.Index == nil { | ||
config.Index = DefaultStaticConfig.Index | ||
} | ||
|
||
return func(next echo.HandlerFunc) echo.HandlerFunc { | ||
return func(c echo.Context) error { | ||
fs := http.Dir(config.Root) | ||
p := c.Request().URL().Path() | ||
if strings.Contains(c.Path(), "*") { // If serving from a group, e.g. `/static*`. | ||
p = c.P(0) | ||
} | ||
file := path.Clean(p) | ||
f, err := fs.Open(file) | ||
if err != nil { | ||
return next(c) | ||
} | ||
defer f.Close() | ||
fi, err := f.Stat() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if fi.IsDir() { | ||
/* NOTE: | ||
Not checking the Last-Modified header as it caches the response `304` when | ||
changing different directories for the same path. | ||
*/ | ||
d := f | ||
|
||
// Index file | ||
// TODO: search all files | ||
file = path.Join(file, config.Index[0]) | ||
f, err = fs.Open(file) | ||
if err != nil { | ||
return next(c) | ||
} | ||
if config.Browse { | ||
dirs, err := d.Readdir(-1) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Create a directory index | ||
rs := c.Response() | ||
rs.Header().Set(echo.HeaderContentType, echo.MIMETextHTMLCharsetUTF8) | ||
if _, err = fmt.Fprintf(rs, "<pre>\n"); err != nil { | ||
return err | ||
} | ||
for _, d := range dirs { | ||
name := d.Name() | ||
color := "#212121" | ||
if d.IsDir() { | ||
color = "#e91e63" | ||
name += "/" | ||
} | ||
if _, err = fmt.Fprintf(rs, "<a href=\"%s\" style=\"color: %s;\">%s</a>\n", name, color, name); err != nil { | ||
return err | ||
} | ||
} | ||
_, err = fmt.Fprintf(rs, "</pre>\n") | ||
return err | ||
} | ||
if fi, err = f.Stat(); err != nil { // Index file | ||
return err | ||
} | ||
} | ||
return c.ServeContent(f, fi.Name(), fi.ModTime()) | ||
} | ||
} | ||
} |