A high-performance Echo middleware library for routing based on the host. This library facilitates the configuration of different routes and behaviors for distinct hostnames, enhancing the ability to host multi-tenant applications on a single server.
Add the module to your project by running:
go get github.com/YidiDev/echo-host-route
The following example demonstrates how to use the library to define various routes based on the host name. This helps in setting up multiple applications or APIs served from the same server, each with its specific routing configuration.
package main
import (
"github.com/YidiDev/echo-host-route"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"log"
"net/http"
"os"
)
// defineHost1Routes sets up the routes specific to host1.com.
func defineHost1Routes(group *echo.Group) {
// Route to handle request to root URL of host1, returns greeting message.
group.GET("/", func(c echo.Context) error {
return c.String(http.StatusOK, "Hello from host1")
})
// Route to handle request to /hi URL of host1, returns a different greeting message.
group.GET("/hi", func(c echo.Context) error {
return c.String(http.StatusOK, "Hi from host1")
})
}
// defineHost2Routes sets up the routes specific to host2.com.
func defineHost2Routes(group *echo.Group) {
// Route to handle request to root URL of host2, returns greeting message.
group.GET("/", func(c echo.Context) error {
return c.String(http.StatusOK, "Hello from host2")
})
// Route to handle request to /hi URL of host2, includes log statement and returns a greeting message.
group.GET("/hi", func(c echo.Context) error {
log.Println("Important stuff")
return c.String(http.StatusOK, "Hi from host2")
})
}
// routeNotFoundSpecifier defines behavior for unspecified routes.
func routeNotFoundSpecifier(_ string, group *echo.Group) error {
// Route handler for unspecified routes, returns a not-found message.
group.RouteNotFound("/*", func(c echo.Context) error {
return c.String(http.StatusNotFound, "No known route")
})
return nil
}
// init function sets up logging output to standard output.
func init() {
log.SetOutput(os.Stdout)
}
// main function initializes the Echo instance and sets up host-based routing.
func main() {
e := echo.New() // Create a new Echo instance.
e.Use(middleware.Recover()) // Middleware to recover from panics.
hostConfigs := []hostroute.HostConfig{
{Host: "host1.com", Prefix: "1", RouterFactory: defineHost1Routes},
{Host: "host2.com", Prefix: "2", RouterFactory: defineHost2Routes},
}
genericHosts := []string{"host3.com", "host4.com"}
// Setup host-based routes and handle any errors during setup.
err := hostroute.SetupHostBasedRoutes(e, hostConfigs, genericHosts, true, routeNotFoundSpecifier)
if err != nil {
log.Fatal(err) // Log fatal error if setup fails.
}
// Start the server on port 8080.
e.Start(":8080")
}
The HostConfig
struct is used to define the configuration for a specific host:
Host
: The hostname for which the configuration is defined.Prefix
: A prefix to use for routes specific to this host when accessed on a generic host.RouterFactory
: A function that sets up routing for this host, taking an*echo.Group
instance to define its routes.
Generic hosts are hosts that will have access to all routes defined in all the host configs and any others defined on the default router. This is useful for:
- Local Testing: to be able to access all routes without changing the host.
- Consolidated Access: Handle routes from multiple applications on a single host. For example:
- You have two applications hosted on one Go server: one at
application1.example.com
and the other atapplication2.example.com
. However, you also want people to be able to access both applications by going toexample.com/application1
orexample.com/application2
.
- You have two applications hosted on one Go server: one at
The secureAgainstUnknownHosts
boolean flag controls how the middleware handles requests from unknown hosts:
true
: Requests from unknown hosts will receive a 404 Not Found Response. This is useful for securing your application against unexpected or unauthorized hosts.false
: Requests from unknown hosts will be passed through the primary router. This is useful if you want to catch and handle such requests manually.
This param is optional and allows for unlimited inputs. Each input should be a func(*echo.Group) error
. This is meant for specifying functions that SetupHostBasedRoutes
should run on every host group after creating it. Common use cases of this are:
- Configuring a
RouteNotFound
Handler. - Configuring Host Specific Middleware. This can be done in the
HostConfig
in theRouterFactory
. Alternatively, it could be done here. This may be useful if you want to centralize a lot of the host-specific middleware.
-
Host-specific Routes: Routes are defined uniquely for each host using a specific
RouterFactory
. TheHostConfig
struct includes the hostname, path prefix, and a function to define routes for that host.hostConfigs := []hostroute.HostConfig{ {Host: "host1.com", Prefix: "1", RouterFactory: defineHost1Routes}, {Host: "host2.com", Prefix: "2", RouterFactory: defineHost2Routes}, }
-
Generic Hosts: Generic hosts allow for fallback to common routes defined in the primary router.
genericHosts := []string{"host3.com", "host4.com"}
-
Secure Against Unknown Hosts: Secure your application by handling unknown hosts, preventing them from accessing unintended routes.
hostroute.SetupHostBasedRoutes(r, hostConfigs, genericHosts, true)
This project has a sister project for Gin framework users. If you are using Gin, check out the Echo Host Route Library for similar functionality.
Contributions are always welcome! If you're interested in contributing to the project, please take a look at our Contributing Guidelines file for guidelines on how to get started. We appreciate your help in improving the library!