2014-08-29 21:49:50 +04:00
|
|
|
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2014-07-05 01:28:50 +04:00
|
|
|
package gin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gin-gonic/gin/binding"
|
2014-07-08 03:09:48 +04:00
|
|
|
"net/http"
|
2014-07-05 01:28:50 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
// DEPRECATED, use Bind() instead.
|
|
|
|
// Like ParseBody() but this method also writes a 400 error if the json is not valid.
|
|
|
|
func (c *Context) EnsureBody(item interface{}) bool {
|
|
|
|
return c.Bind(item)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DEPRECATED use bindings directly
|
|
|
|
// Parses the body content as a JSON input. It decodes the json payload into the struct specified as a pointer.
|
|
|
|
func (c *Context) ParseBody(item interface{}) error {
|
2014-07-08 18:57:04 +04:00
|
|
|
return binding.JSON.Bind(c.Request, item)
|
2014-07-05 01:28:50 +04:00
|
|
|
}
|
2014-07-08 03:09:48 +04:00
|
|
|
|
|
|
|
// DEPRECATED use gin.Static() instead
|
|
|
|
// ServeFiles serves files from the given file system root.
|
|
|
|
// The path must end with "/*filepath", files are then served from the local
|
|
|
|
// path /defined/root/dir/*filepath.
|
|
|
|
// For example if root is "/etc" and *filepath is "passwd", the local file
|
|
|
|
// "/etc/passwd" would be served.
|
|
|
|
// Internally a http.FileServer is used, therefore http.NotFound is used instead
|
|
|
|
// of the Router's NotFound handler.
|
|
|
|
// To use the operating system's file system implementation,
|
|
|
|
// use http.Dir:
|
|
|
|
// router.ServeFiles("/src/*filepath", http.Dir("/var/www"))
|
|
|
|
func (engine *Engine) ServeFiles(path string, root http.FileSystem) {
|
|
|
|
engine.router.ServeFiles(path, root)
|
|
|
|
}
|
2014-07-15 19:41:56 +04:00
|
|
|
|
|
|
|
// DEPRECATED use gin.LoadHTMLGlob() or gin.LoadHTMLFiles() instead
|
|
|
|
func (engine *Engine) LoadHTMLTemplates(pattern string) {
|
|
|
|
engine.LoadHTMLGlob(pattern)
|
|
|
|
}
|
2014-07-17 22:18:50 +04:00
|
|
|
|
|
|
|
// DEPRECATED. Use NotFound() instead
|
|
|
|
func (engine *Engine) NotFound404(handlers ...HandlerFunc) {
|
2014-07-18 01:42:23 +04:00
|
|
|
engine.NoRoute(handlers...)
|
2014-07-17 22:18:50 +04:00
|
|
|
}
|