1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-22 04:17:03 +00:00

apps.Switch(apps.Hosts...) example

This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-08-18 04:17:53 +03:00
parent 589c8c6242
commit 5481b9a6c1
19 changed files with 164 additions and 114 deletions

View File

@@ -1,4 +1,5 @@
127.0.0.1 mydomain.com
127.0.0.1 www.mydomain.com
127.0.0.1 otherdomain.com
# Windows: Drive:/Windows/system32/drivers/etc/hosts, on Linux: /etc/hosts

View File

@@ -1,30 +0,0 @@
package main
import (
"fmt"
"strings"
"testing"
"github.com/kataras/iris/v12/httptest"
)
func TestSubdomainRedirectWWW(t *testing.T) {
app := newApp()
root := strings.TrimSuffix(addr, ":80")
e := httptest.New(t, app)
tests := []struct {
path string
response string
}{
{"/", fmt.Sprintf("This is the www.%s endpoint.", root)},
{"/users", fmt.Sprintf("This is the www.%s/users endpoint.", root)},
{"/users/login", fmt.Sprintf("This is the www.%s/users/login endpoint.", root)},
}
for _, test := range tests {
e.GET(test.path).Expect().Status(httptest.StatusOK).Body().Equal(test.response)
e.GET(test.path).WithURL("www.mydomain.com").Expect().Status(httptest.StatusOK).Body().Equal(test.response)
}
}

View File

@@ -0,0 +1,7 @@
module github.com/kataras/iris/_examples/routing/subdomains/redirect/multi-instances
go 1.15
require github.com/kataras/iris/v12 v12.1.9-0.20200817185317-589c8c6242ce
replace github.com/kataras/iris/v12 => ../../../../../

View File

@@ -1,82 +1,70 @@
package main
import (
"net/http"
_ "github.com/kataras/iris/_examples/routing/subdomains/redirect/multi-instances/other"
_ "github.com/kataras/iris/_examples/routing/subdomains/redirect/multi-instances/root"
"github.com/kataras/iris/v12"
"github.com/kataras/iris/v12/apps"
)
// In this example, you wanna use three different applications exposed as one.
// The first one is the "other" package, the second is the "root",
// the third is the switcher application which will expose the above.
// Unlike the previous example, on this one we will NOT redirect,
// the Hosts switcher will just pass the request to the matched Application to handle.
// This is NOT an alternative of your favorite load balancer.
// Read the comments carefully, if you need more information
// you can head over to the "apps" package's godocs and tests.
func main() {
app := iris.New()
hosts := map[string]*iris.Application{
"mydomain.com": createRoot("www.mydomain.com"), // redirects to www.
"www.mydomain.com": createWWW(),
"test.mydomain.com": createTest(),
}
for _, r := range hosts {
r.Build()
}
app.Downgrade(func(w http.ResponseWriter, r *http.Request) {
host := r.Host
if host == "" {
host = r.URL.Host
}
if router, ok := hosts[host]; ok {
router.ServeHTTP(w, r)
return
}
http.NotFound(w, r)
// The `apps.Hosts` switch provider:
// The pattern. A regexp for matching the host part of incoming requests.
// The target. An iris.Application instance (created by iris.New())
// OR
// You can use the Application's name (app.SetName("myapp")).
// Example:
// package rootdomain
// func init() {
// app := iris.New().SetName("root app")
// ...
// }
// On the main package add an empty import statement: ` _ import "rootdomain"`
// And set the "root app" as the key to reference that application (of the same program).
// Thats the target we wanna use now ^ (see ../hosts file).
// OR
// An external host or a local running in the same machine but different port or host behind proxy.
switcher := apps.Switch(apps.Hosts{
{"^(www.)?mydomain.com$", "root app"},
{"^otherdomain.com$", "other app"},
})
// The registration order matters, so we can register a fallback server (when host no match)
// using "*". However, you have alternatives by using the Switch Iris Application value
// (let's call it "switcher"):
// 1. Handle the not founds, e.g. switcher.OnErrorCode(404, ...)
// 2. Use the switcher.WrapRouter, e.g. to log the flow of a request of all hosts exposed.
// 3. Just register routes to match, e.g. switcher.Get("/", ...)
switcher.Get("/", fallback)
// OR
// Change the response code to 502
// instead of 404 and write a message:
// switcher.OnErrorCode(iris.StatusNotFound, fallback)
app.Listen(":80")
// The switcher is a common Iris Application, so you have access to the Iris features.
// And it should be listening to a host:port in order to match and serve its apps.
//
// http://mydomain.com (OK)
// http://www.mydomain.com (OK)
// http://mydomain.com/dsa (404)
// http://no.mydomain.com (502 Bad Host)
//
// http://otherdomain.com (OK)
// http://www.otherdomain.com (502 Bad Host)
// http://otherdomain.com/dsa (404 JSON)
// ...
switcher.Listen(":80")
}
func createRoot(redirectTo string) *iris.Application {
app := iris.New()
app.Downgrade(func(w http.ResponseWriter, r *http.Request) {
fullScheme := "http://"
if r.TLS != nil {
fullScheme = "https://"
}
http.Redirect(w, r, fullScheme+redirectTo+r.URL.RequestURI(), iris.StatusMovedPermanently)
})
return app
}
func createWWW() *iris.Application {
app := iris.New()
app.Get("/", index)
users := app.Party("/users")
users.Get("/", usersIndex)
users.Get("/login", getLogin)
return app
}
func createTest() *iris.Application {
app := iris.New()
app.Get("/", func(ctx iris.Context) {
ctx.WriteString("Test Index")
})
return app
}
func index(ctx iris.Context) {
ctx.Writef("This is the www.mydomain.com endpoint.")
}
func usersIndex(ctx iris.Context) {
ctx.Writef("This is the www.mydomain.com/users endpoint.")
}
func getLogin(ctx iris.Context) {
ctx.Writef("This is the www.mydomain.com/users/login endpoint.")
func fallback(ctx iris.Context) {
ctx.StatusCode(iris.StatusBadGateway)
ctx.Writef("Bad Host %s", ctx.Host())
}

View File

@@ -0,0 +1,30 @@
package other
import (
"time"
"github.com/kataras/iris/v12"
)
func init() {
app := iris.New()
app.SetName("other app")
app.OnAnyErrorCode(handleErrors)
app.Get("/", index)
}
func index(ctx iris.Context) {
ctx.HTML("Other Index (App Name: <b>%s</b> | Host: <b>%s</b>)",
ctx.Application().String(), ctx.Host())
}
func handleErrors(ctx iris.Context) {
errCode := ctx.GetStatusCode()
ctx.JSON(iris.Map{
"Server": ctx.Application().String(),
"Code": errCode,
"Message": iris.StatusText(errCode),
"Timestamp": time.Now().Unix(),
})
}

View File

@@ -0,0 +1,15 @@
package root
import "github.com/kataras/iris/v12"
func init() {
app := iris.New()
app.SetName("root app")
app.Get("/", index)
}
func index(ctx iris.Context) {
ctx.HTML("Main Root Index (App Name: <b>%s</b> | Host: <b>%s</b>)",
ctx.Application().String(), ctx.Host())
}