// ⚡️ Fiber is an Express inspired web framework written in Go with ☕️ // 🤖 Github Repository: https://github.com/gofiber/fiber // 📌 API Documentation: https://docs.gofiber.io package fiber // Register defines all router handle interface generate by Route(). type Register interface { All(handlers ...Handler) Register Get(handlers ...Handler) Register Head(handlers ...Handler) Register Post(handlers ...Handler) Register Put(handlers ...Handler) Register Delete(handlers ...Handler) Register Connect(handlers ...Handler) Register Options(handlers ...Handler) Register Trace(handlers ...Handler) Register Patch(handlers ...Handler) Register Add(method string, handlers ...Handler) Register Static(root string, config ...Static) Register Route(path string) Register } var _ (Register) = (*Registering)(nil) // Registering struct type Registering struct { app *App path string } // All registers a middleware route that will match requests // with the provided path which is stored in register struct. // // app.Route("/").All(func(c fiber.Ctx) error { // return c.Next() // }) // app.Route("/api").All(func(c fiber.Ctx) error { // return c.Next() // }) // app.Route("/api").All(handler, func(c fiber.Ctx) error { // return c.Next() // }) // // This method will match all HTTP verbs: GET, POST, PUT, HEAD etc... func (r *Registering) All(handlers ...Handler) Register { r.app.register(methodUse, r.path, handlers...) return r } // Get registers a route for GET methods that requests a representation // of the specified resource. Requests using GET should only retrieve data. func (r *Registering) Get(handlers ...Handler) Register { r.app.Add(MethodHead, r.path, handlers...).Add(MethodGet, r.path, handlers...) return r } // Head registers a route for HEAD methods that asks for a response identical // to that of a GET request, but without the response body. func (r *Registering) Head(handlers ...Handler) Register { return r.Add(MethodHead, handlers...) } // Post registers a route for POST methods that is used to submit an entity to the // specified resource, often causing a change in state or side effects on the server. func (r *Registering) Post(handlers ...Handler) Register { return r.Add(MethodPost, handlers...) } // Put registers a route for PUT methods that replaces all current representations // of the target resource with the request payload. func (r *Registering) Put(handlers ...Handler) Register { return r.Add(MethodPut, handlers...) } // Delete registers a route for DELETE methods that deletes the specified resource. func (r *Registering) Delete(handlers ...Handler) Register { return r.Add(MethodDelete, handlers...) } // Connect registers a route for CONNECT methods that establishes a tunnel to the // server identified by the target resource. func (r *Registering) Connect(handlers ...Handler) Register { return r.Add(MethodConnect, handlers...) } // Options registers a route for OPTIONS methods that is used to describe the // communication options for the target resource. func (r *Registering) Options(handlers ...Handler) Register { return r.Add(MethodOptions, handlers...) } // Trace registers a route for TRACE methods that performs a message loop-back // test along the r.Path to the target resource. func (r *Registering) Trace(handlers ...Handler) Register { return r.Add(MethodTrace, handlers...) } // Patch registers a route for PATCH methods that is used to apply partial // modifications to a resource. func (r *Registering) Patch(handlers ...Handler) Register { return r.Add(MethodPatch, handlers...) } // Add allows you to specify a HTTP method to register a route func (r *Registering) Add(method string, handlers ...Handler) Register { r.app.register(method, r.path, handlers...) return r } // Static will create a file server serving static files func (r *Registering) Static(root string, config ...Static) Register { r.app.registerStatic(r.path, root, config...) return r } // Route returns a new Register instance whose route path takes // the path in the current instance as its prefix. func (r *Registering) Route(path string) Register { // Create new group route := &Registering{app: r.app, path: getGroupPath(r.path, path)} return route }