Documentation
¶
Index ¶
- Constants
- func Bytes2Str(b []byte) string
- func ClearFilePath(pathStr string) string
- func GetExeDir() string
- func GetWD() string
- func RegisterType(value interface{})
- func RegisterTypeName(name string, value interface{})
- func Str2Bytes(s string) []byte
- func StrJoin(arr ...string) string
- type ActionDef
- type Authorize
- type BufResult
- func (b *BufResult) AddHeader(key, value string)
- func (b *BufResult) Execute(w http.ResponseWriter, r *http.Request)
- func (b *BufResult) ReadFrom(r io.Reader) (n int64, err error)
- func (b *BufResult) Write(p []byte) (n int, err error)
- func (b *BufResult) WriteByte(c byte) error
- func (b *BufResult) WriteRune(r rune) (n int, err error)
- func (b *BufResult) WriteString(s string) (n int, err error)
- type CatchFunc
- type Configure
- func (config *Configure) AddFilter(urlPrefix string, filter Filter)
- func (config *Configure) AddRouteFunc(name string, fun RouteFunc)
- func (config *Configure) ConfigSession(conf *SessionConfig, provider SessionProvider)
- func (config *Configure) ConfigViewDir(viewDir string)
- func (config *Configure) ConfigViewReader(reader TplReader)
- func (config *Configure) IocSingleton(i interface{})
- func (config *Configure) IocTransient(i interface{})
- func (config *Configure) RegisterController(controller interface{}, actions ...*ActionDef)
- func (config *Configure) RegisterControllerName(controller interface{}, name string, actions ...*ActionDef)
- func (config *Configure) ResponseConfig() *ResponseConfig
- func (config *Configure) RouteMvc(routePath, defaultController, defaultAction string)
- func (config *Configure) Server() *Server
- func (config *Configure) SetConfigSettings(settingsMap map[string]string)
- func (config *Configure) SetErrorHandler(statusCode int, handler ErrHandler)
- func (config *Configure) SetStaticHandler(handler http.HandlerFunc)
- func (config *Configure) SetStaticPrefixes(prefixes []string)
- type Controller
- func (c *Controller) FileResult(path, contentType string) Result
- func (c *Controller) FormFile(name string) *UploadFile
- func (c *Controller) FormVar(key string) string
- func (c *Controller) JsonResult(data interface{}) Result
- func (c *Controller) MapContentPath(path string) string
- func (c *Controller) MapRootPath(path string) string
- func (c *Controller) QueryVar(key string) string
- func (c *Controller) Redirect(url string, permanent bool) Result
- func (c *Controller) RouteVar(key string) string
- func (c *Controller) Session() SessionStore
- func (c *Controller) SetViewData(key string, data interface{})
- func (c *Controller) TextResult(content, contentType string) Result
- func (c *Controller) View(model interface{}) Result
- func (c *Controller) ViewPath(viewPath string, model interface{}) Result
- func (c *Controller) XmlResult(data interface{}) Result
- type EmptyResult
- type ErrHandler
- type FileResult
- type Filter
- type FilterChain
- type HandlerFunc
- type HttpCtx
- func (ctx *HttpCtx) End()
- func (ctx *HttpCtx) FileResult(path string, contentType string) Result
- func (ctx *HttpCtx) FormFile(formName string) *UploadFile
- func (ctx *HttpCtx) FormVar(key string) string
- func (ctx *HttpCtx) JsonResult(data interface{}) Result
- func (ctx *HttpCtx) JsonpResult(data interface{}, callback string) Result
- func (ctx *HttpCtx) MapContentPath(urlPath string) string
- func (ctx *HttpCtx) MapRootPath(path string) string
- func (ctx *HttpCtx) QueryVar(key string) string
- func (ctx *HttpCtx) Redirect(urlStr string, permanent bool)
- func (ctx *HttpCtx) RedirectResult(urlStr string, permanent bool) Result
- func (ctx *HttpCtx) Request() *http.Request
- func (ctx *HttpCtx) Response() http.ResponseWriter
- func (ctx *HttpCtx) RouteVar(key string) string
- func (ctx *HttpCtx) Session() SessionStore
- func (ctx *HttpCtx) TextResult(content, contentType string) Result
- func (ctx *HttpCtx) XmlResult(data interface{}) Result
- type RedirectResult
- type ResponseConfig
- type Result
- type RouteColl
- type RouteFunc
- type RouteOpt
- type Server
- func (s *Server) HandleStatusCode(statusCode int, w http.ResponseWriter, r *http.Request, data interface{})
- func (s *Server) MapContentPath(virtualPath string) string
- func (s *Server) MapRootPath(virtualPath string) string
- func (s *Server) Run()
- func (s *Server) RunTLS(certFile, keyFile string)
- func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request)
- func (s *Server) StaticRequestHandler(w http.ResponseWriter, r *http.Request)
- func (s *Server) UseStarter(starter Starter)
- type SessionConfig
- type SessionManager
- type SessionProvider
- type SessionStore
- type Starter
- type TplReader
- type TryCache
- type UploadFile
- type ViewEngine
Constants ¶
const Version = "v1.1.1"
Version the current version of the mego framework
Variables ¶
This section is empty.
Functions ¶
func ClearFilePath ¶
ClearFilePath clear the pathStr and return the shortest path.
func GetExeDir ¶
func GetExeDir() string
GetExeDir get the current directory that the executable file is located in.
func RegisterType ¶
func RegisterType(value interface{})
func RegisterTypeName ¶
func RegisterTypeName(name string, value interface{})
Types ¶
type BufResult ¶
type BufResult struct { ContentType string Encoding string StatusCode int // contains filtered or unexported fields }
BufResult the buffered result
func NewBufResult ¶
NewBufResult create a new buffer result with default value buf
func (*BufResult) Execute ¶
func (b *BufResult) Execute(w http.ResponseWriter, r *http.Request)
Execute write the data in the result buffer to the response original
type Configure ¶
type Configure struct {
// contains filtered or unexported fields
}
Configure the mego configuration struct
func (*Configure) AddRouteFunc ¶
AddRouteFunc add custom route handler func to the server
func (*Configure) ConfigSession ¶
func (config *Configure) ConfigSession(conf *SessionConfig, provider SessionProvider)
ConfigSession set the session state. conf: the session configuration; provider: the session provider
func (*Configure) ConfigViewDir ¶
ConfigViewDir init the view engine directory. The filesystem template reader will be used
func (*Configure) ConfigViewReader ¶ added in v1.1.1
ConfigViewReader init the view engine via the template reader
func (*Configure) IocSingleton ¶
func (config *Configure) IocSingleton(i interface{})
IocSingleton add a singleton object to the dependency injection container
func (*Configure) IocTransient ¶
func (config *Configure) IocTransient(i interface{})
IocSingleton add a transient object type to the dependency injection container
func (*Configure) RegisterController ¶
RegisterController register controller definition to the web server
func (*Configure) RegisterControllerName ¶
func (config *Configure) RegisterControllerName(controller interface{}, name string, actions ...*ActionDef)
RegisterController register controller definition with name to the web server
func (*Configure) ResponseConfig ¶ added in v1.1.1
func (config *Configure) ResponseConfig() *ResponseConfig
ResponseConfig get the ResponseConfig entity
func (*Configure) SetConfigSettings ¶ added in v1.1.1
SetConfigSettings add the config settings to server
func (*Configure) SetErrorHandler ¶
func (config *Configure) SetErrorHandler(statusCode int, handler ErrHandler)
SetErrorHandler set the status code handler that will be used in the http response
func (*Configure) SetStaticHandler ¶
func (config *Configure) SetStaticHandler(handler http.HandlerFunc)
SetStaticHandler set the static files handler
func (*Configure) SetStaticPrefixes ¶ added in v1.1.1
type Controller ¶
type Controller struct { Request *http.Request Response http.ResponseWriter Server *Server Items map[string]interface{} // contains filtered or unexported fields }
func (*Controller) FileResult ¶ added in v1.1.1
func (c *Controller) FileResult(path, contentType string) Result
func (*Controller) FormFile ¶
func (c *Controller) FormFile(name string) *UploadFile
func (*Controller) FormVar ¶
func (c *Controller) FormVar(key string) string
func (*Controller) JsonResult ¶ added in v1.1.1
func (c *Controller) JsonResult(data interface{}) Result
func (*Controller) MapContentPath ¶
func (c *Controller) MapContentPath(path string) string
func (*Controller) MapRootPath ¶
func (c *Controller) MapRootPath(path string) string
func (*Controller) QueryVar ¶
func (c *Controller) QueryVar(key string) string
func (*Controller) RouteVar ¶
func (c *Controller) RouteVar(key string) string
func (*Controller) Session ¶
func (c *Controller) Session() SessionStore
func (*Controller) SetViewData ¶ added in v1.1.1
func (c *Controller) SetViewData(key string, data interface{})
func (*Controller) TextResult ¶ added in v1.1.1
func (c *Controller) TextResult(content, contentType string) Result
func (*Controller) View ¶
func (c *Controller) View(model interface{}) Result
func (*Controller) ViewPath ¶
func (c *Controller) ViewPath(viewPath string, model interface{}) Result
func (*Controller) XmlResult ¶ added in v1.1.1
func (c *Controller) XmlResult(data interface{}) Result
type EmptyResult ¶
type EmptyResult struct{}
EmptyResult the empty buffer result
func (*EmptyResult) Execute ¶
func (er *EmptyResult) Execute(w http.ResponseWriter, r *http.Request)
Execute do nothing
type ErrHandler ¶
type ErrHandler func(http.ResponseWriter, *http.Request, interface{})
ErrHandler define the internal s error handler func
type FileResult ¶
FileResult the file result
func (*FileResult) Execute ¶
func (fr *FileResult) Execute(w http.ResponseWriter, r *http.Request)
Execute execute the result
type Filter ¶ added in v1.1.1
type Filter interface { Init() DoFilter(ctx *HttpCtx, chain FilterChain) Destroy() }
type FilterChain ¶ added in v1.1.1
type FilterChain interface {
DoFilter(ctx *HttpCtx)
}
type HandlerFunc ¶ added in v1.1.1
type HandlerFunc func(http.ResponseWriter, *http.Request) interface{}
type HttpCtx ¶
type HttpCtx struct { Server *Server Items map[string]interface{} // contains filtered or unexported fields }
HttpCtx the mego http context struct
func (*HttpCtx) End ¶
func (ctx *HttpCtx) End()
End end the mego context and stop the rest request function
func (*HttpCtx) FileResult ¶
FileResult generate the mego result as file result
func (*HttpCtx) FormFile ¶
func (ctx *HttpCtx) FormFile(formName string) *UploadFile
FormFile get the post file info
func (*HttpCtx) FormVar ¶
FormVar get the form value from request. It's the same as ctx.Request().FormVar(key)
func (*HttpCtx) JsonResult ¶
JsonResult generate the mego result as JSON string
func (*HttpCtx) JsonpResult ¶
JsonpResult generate the mego result as jsonp string
func (*HttpCtx) MapContentPath ¶
MapContentPath Returns the physical file path that corresponds to the specified virtual path.
func (*HttpCtx) MapRootPath ¶
MapRootPath Returns the physical file path that corresponds to the specified virtual path.
func (*HttpCtx) RedirectResult ¶
Redirect get the redirect result. if the value of 'permanent' is true , the status code is 301, else the status code is 302
func (*HttpCtx) Response ¶
func (ctx *HttpCtx) Response() http.ResponseWriter
Response get the mego response
func (*HttpCtx) Session ¶
func (ctx *HttpCtx) Session() SessionStore
func (*HttpCtx) TextResult ¶
TextResult generate the mego result as plain text
type RedirectResult ¶
RedirectResult the redirect result
func (*RedirectResult) Execute ¶
func (rr *RedirectResult) Execute(w http.ResponseWriter, r *http.Request)
Execute execute the redirect result
type ResponseConfig ¶ added in v1.1.1
type ResponseConfig struct { // enable or disable the gzip compression in the server response. The default value is false GzipEnabled bool // contains filtered or unexported fields }
func (*ResponseConfig) RemoveHeader ¶ added in v1.1.1
func (resp *ResponseConfig) RemoveHeader(key string)
func (*ResponseConfig) SetHeader ¶ added in v1.1.1
func (resp *ResponseConfig) SetHeader(key, value string)
type Result ¶
type Result interface {
Execute(w http.ResponseWriter, r *http.Request)
}
Result the request result interface
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
Server the mego server struct
func NewServer ¶
NewServer create a new server
webRoot: the root of this web server. and the content root is '${webRoot}/www'
addr: the address the server is listen on
func (*Server) HandleStatusCode ¶
func (*Server) MapContentPath ¶
MapContentPath Returns the physical file path that corresponds to the specified virtual path. @param virtualPath: the virtual path starts with @return the absolute file path
func (*Server) MapRootPath ¶
MapRootPath Returns the physical file path that corresponds to the specified virtual path. @param virtualPath: the virtual path starts with @return the absolute file path
func (*Server) StaticRequestHandler ¶ added in v1.1.1
func (s *Server) StaticRequestHandler(w http.ResponseWriter, r *http.Request)
StaticRequestHandler the default static request handler. you can replace it by calling config.SetStaticHandler method
func (*Server) UseStarter ¶
UseStarter attach an starter to the server
type SessionConfig ¶
type SessionConfig struct { // CookieName the name of the session cookie CookieName string `xml:"cookieName" json:"cookieName"` // Timeout the session cookie timeout in mili-seconds Timeout int64 `xml:"timeout,attr" json:"timeout"` HTTPOnly bool `xml:"httpOnly,attr" json:"http_only"` Secure bool `xml:"secure,attr" json:"secure"` Domain string `xml:"domain,attr" json:"domain"` }
SessionConfig the session configuration struct
type SessionManager ¶
type SessionManager struct {
// contains filtered or unexported fields
}
SessionManager the session manager struct
func (*SessionManager) Destroy ¶
func (manager *SessionManager) Destroy(w http.ResponseWriter, r *http.Request)
Destroy Destroy session by its id in http request cookie.
func (*SessionManager) Start ¶
func (manager *SessionManager) Start(w http.ResponseWriter, r *http.Request) SessionStore
Start generate or read the session id from http request. if session id exists, return SessionStore with this id.
type SessionProvider ¶
type SessionProvider interface { Init(timeout time.Duration) error Read(sid string) SessionStore Destroy(sid string) error GC() }
SessionProvider contains global session methods and saved SessionStores. it can operate a SessionStore by its id.
func NewMemSessionProvider ¶
func NewMemSessionProvider() SessionProvider
NewMemSessionProvider create a new memory session provider with default config
func NewSQLSessionProvider ¶ added in v1.1.1
func NewSQLSessionProvider(driver, conn string) SessionProvider
NewSQLSessionProvider create a new sql session provider
type SessionStore ¶
type SessionStore interface { Set(key string, value interface{}) error //set session Value Get(key string) interface{} //get session Value Delete(key string) error //delete session Value Clear() error //delete all data ID() string //current session ID Flush() error //release the resource & save data to provider & return the data }
SessionStore the session store interface
type Starter ¶
type Starter interface {
Config(config *Configure)
}
Starter the mego configuration starter interface
type TplReader ¶
type TplReader interface { ReadFile(name string) ([]byte, error) Walk(walkFn func(path string, f os.FileInfo, err error) error) error }
TplReader the template reader interface for the view engine
type UploadFile ¶
type UploadFile struct { FileName string Size int64 Error error File multipart.File Header *multipart.FileHeader }
UploadFile the uploaded file struct
func (*UploadFile) Save ¶
func (file *UploadFile) Save(path string) error
Save save the posted file data as a file.
func (*UploadFile) SaveAndClose ¶
func (file *UploadFile) SaveAndClose(path string) error
SaveAndClose save the posted file as a file and then Close the posted data stream
type ViewEngine ¶
type ViewEngine struct {
// contains filtered or unexported fields
}
ViewEngine the mego view engine struct
func (*ViewEngine) Extend ¶
func (e *ViewEngine) Extend(name string, viewFunc interface{})
Extend extend the view helper functions with 'name' and 'tplFuncMap'
Source Files
¶
- assert.go
- configure.go
- controller.go
- errors.go
- filter.go
- gzipResponse.go
- httpCtx.go
- ioc.go
- iocActions.go
- iocContainer.go
- iocController.go
- iocSingleton.go
- iocTransient.go
- mego.go
- memSessionProvider.go
- memSessionStore.go
- mvcHandler.go
- result.go
- route.go
- routeFuncs.go
- server.go
- serverDefaults.go
- session.go
- sessionManager.go
- sessionProvider.go
- sessionStore.go
- sqlSessionProvider.go
- sqlSessionStore.go
- starter.go
- toplFile.go
- tplEngine.go
- tplReader.go
- trycatch.go
- uploadFile.go
- utils.go
- version.go
- viewEngine.go
- viewResult.go