mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
e0128d204d
Fix https://github.com/iris-contrib/community-board/issues/12 . Read more: https://github.com/kataras/iris/blob/master/HISTORY.md#th-15-june-2017--v720 Former-commit-id: 398cb69fdc7e5367b147693371287ffb7b912feb
172 lines
7.4 KiB
Go
172 lines
7.4 KiB
Go
// Copyright 2017 Gerasimos Maropoulos, ΓΜ. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package router
|
|
|
|
import (
|
|
"github.com/kataras/iris/context"
|
|
) // Party is here to separate the concept of
|
|
// api builder and the sub api builder.
|
|
|
|
// Party is just a group joiner of routes which have the same prefix and share same middleware(s) also.
|
|
// Party could also be named as 'Join' or 'Node' or 'Group' , Party chosen because it is fun.
|
|
//
|
|
// Look the "APIBuilder" for its implementation.
|
|
type Party interface {
|
|
// Party creates and returns a new child Party with the following features.
|
|
Party(relativePath string, handlers ...context.Handler) Party
|
|
|
|
// Use appends Handler(s) to the current Party's routes and child routes.
|
|
// If the current Party is the root, then it registers the middleware to all child Parties' routes too.
|
|
Use(handlers ...context.Handler)
|
|
|
|
// Done appends to the very end, Handler(s) to the current Party's routes and child routes
|
|
// The difference from .Use is that this/or these Handler(s) are being always running last.
|
|
Done(handlers ...context.Handler)
|
|
|
|
// Handle registers a route to the server's router.
|
|
// if empty method is passed then handler(s) are being registered to all methods, same as .Any.
|
|
//
|
|
// Returns the read-only route information.
|
|
Handle(method string, registeredPath string, handlers ...context.Handler) (*Route, error)
|
|
|
|
// None registers an "offline" route
|
|
// see context.ExecRoute(routeName) and
|
|
// party.Routes().Online(handleResultregistry.*Route, "GET") and
|
|
// Offline(handleResultregistry.*Route)
|
|
//
|
|
// Returns the read-only route information.
|
|
None(path string, handlers ...context.Handler) (*Route, error)
|
|
|
|
// Get registers a route for the Get http method.
|
|
//
|
|
// Returns the read-only route information.
|
|
Get(path string, handlers ...context.Handler) (*Route, error)
|
|
// Post registers a route for the Post http method.
|
|
//
|
|
// Returns the read-only route information.
|
|
Post(path string, handlers ...context.Handler) (*Route, error)
|
|
// Put registers a route for the Put http method.
|
|
//
|
|
// Returns the read-only route information.
|
|
Put(path string, handlers ...context.Handler) (*Route, error)
|
|
// Delete registers a route for the Delete http method.
|
|
//
|
|
// Returns the read-only route information.
|
|
Delete(path string, handlers ...context.Handler) (*Route, error)
|
|
// Connect registers a route for the Connect http method.
|
|
//
|
|
// Returns the read-only route information.
|
|
Connect(path string, handlers ...context.Handler) (*Route, error)
|
|
// Head registers a route for the Head http method.
|
|
//
|
|
// Returns the read-only route information.
|
|
Head(path string, handlers ...context.Handler) (*Route, error)
|
|
// Options registers a route for the Options http method.
|
|
//
|
|
// Returns the read-only route information.
|
|
Options(path string, handlers ...context.Handler) (*Route, error)
|
|
// Patch registers a route for the Patch http method.
|
|
//
|
|
// Returns the read-only route information.
|
|
Patch(path string, handlers ...context.Handler) (*Route, error)
|
|
// Trace registers a route for the Trace http method.
|
|
//
|
|
// Returns the read-only route information.
|
|
Trace(path string, handlers ...context.Handler) (*Route, error)
|
|
// Any registers a route for ALL of the http methods
|
|
// (Get,Post,Put,Head,Patch,Options,Connect,Delete).
|
|
Any(registeredPath string, handlers ...context.Handler) error
|
|
|
|
// StaticHandler returns a new Handler which is ready
|
|
// to serve all kind of static files.
|
|
//
|
|
// Note:
|
|
// The only difference from package-level `StaticHandler`
|
|
// is that this `StaticHandler` receives a request path which
|
|
// is appended to the party's relative path and stripped here.
|
|
//
|
|
// Usage:
|
|
// app := iris.New()
|
|
// ...
|
|
// mySubdomainFsServer := app.Party("mysubdomain.")
|
|
// h := mySubdomainFsServer.StaticHandler("./static_files", false, false)
|
|
// /* http://mysubdomain.mydomain.com/static/css/style.css */
|
|
// mySubdomainFsServer.Get("/static", h)
|
|
// ...
|
|
//
|
|
StaticHandler(systemPath string, showList bool, enableGzip bool, exceptRoutes ...*Route) context.Handler
|
|
|
|
// StaticServe serves a directory as web resource
|
|
// it's the simpliest form of the Static* functions
|
|
// Almost same usage as StaticWeb
|
|
// accepts only one required parameter which is the systemPath,
|
|
// the same path will be used to register the GET and HEAD method routes.
|
|
// If second parameter is empty, otherwise the requestPath is the second parameter
|
|
// it uses gzip compression (compression on each request, no file cache).
|
|
//
|
|
// Returns the GET *Route.
|
|
StaticServe(systemPath string, requestPath ...string) (*Route, error)
|
|
// StaticContent registers a GET and HEAD method routes to the requestPath
|
|
// that are ready to serve raw static bytes, memory cached.
|
|
//
|
|
// Returns the GET *Route.
|
|
StaticContent(requestPath string, cType string, content []byte) (*Route, error)
|
|
|
|
// StaticEmbedded used when files are distributed inside the app executable, using go-bindata mostly
|
|
// First parameter is the request path, the path which the files in the vdir will be served to, for example "/static"
|
|
// Second parameter is the (virtual) directory path, for example "./assets"
|
|
// Third parameter is the Asset function
|
|
// Forth parameter is the AssetNames function.
|
|
//
|
|
// Returns the GET *Route.
|
|
//
|
|
// Example: https://github.com/kataras/iris/tree/master/_examples/intermediate/serve-embedded-files
|
|
StaticEmbedded(requestPath string, vdir string, assetFn func(name string) ([]byte, error), namesFn func() []string) (*Route, error)
|
|
|
|
// Favicon serves static favicon
|
|
// accepts 2 parameters, second is optional
|
|
// favPath (string), declare the system directory path of the __.ico
|
|
// requestPath (string), it's the route's path, by default this is the "/favicon.ico" because some browsers tries to get this by default first,
|
|
// you can declare your own path if you have more than one favicon (desktop, mobile and so on)
|
|
//
|
|
// this func will add a route for you which will static serve the /yuorpath/yourfile.ico to the /yourfile.ico
|
|
// (nothing special that you can't handle by yourself).
|
|
// Note that you have to call it on every favicon you have to serve automatically (desktop, mobile and so on).
|
|
//
|
|
// Returns the GET *Route.
|
|
Favicon(favPath string, requestPath ...string) (*Route, error)
|
|
// StaticWeb returns a handler that serves HTTP requests
|
|
// with the contents of the file system rooted at directory.
|
|
//
|
|
// first parameter: the route path
|
|
// second parameter: the system directory
|
|
// third OPTIONAL parameter: the exception routes
|
|
// (= give priority to these routes instead of the static handler)
|
|
// for more options look router.StaticHandler.
|
|
//
|
|
// router.StaticWeb("/static", "./static")
|
|
//
|
|
// As a special case, the returned file server redirects any request
|
|
// ending in "/index.html" to the same path, without the final
|
|
// "index.html".
|
|
//
|
|
// StaticWeb calls the StaticHandler(systemPath, listingDirectories: false, gzip: false ).
|
|
//
|
|
// Returns the GET *Route.
|
|
StaticWeb(requestPath string, systemPath string, exceptRoutes ...*Route) (*Route, error)
|
|
|
|
// Layout oerrides the parent template layout with a more specific layout for this Party
|
|
// returns this Party, to continue as normal
|
|
// Usage:
|
|
// app := iris.New()
|
|
// my := app.Party("/my").Layout("layouts/mylayout.html")
|
|
// {
|
|
// my.Get("/", func(ctx context.Context) {
|
|
// ctx.MustRender("page1.html", nil)
|
|
// })
|
|
// }
|
|
Layout(tmplLayoutFile string) Party
|
|
}
|