Example #1
0
func (cmd *Push) removeRoutes(app models.Application, routeActor actors.RouteActor) {
	if len(app.Routes) == 0 {
		cmd.ui.Say("App %s is a worker, skipping route creation", terminal.EntityNameColor(app.Name))
	} else {
		routeActor.UnbindAll(app)
	}
}
Example #2
0
File: push.go Project: yingkitw/cli
func (cmd *Push) updateRoutes(routeActor actors.RouteActor, app models.Application, appParams models.AppParams) {
	defaultRouteAcceptable := len(app.Routes) == 0
	routeDefined := appParams.Domains != nil || !appParams.IsHostEmpty() || appParams.NoHostname

	if appParams.NoRoute {
		if len(app.Routes) == 0 {
			cmd.ui.Say(T("App {{.AppName}} is a worker, skipping route creation",
				map[string]interface{}{"AppName": terminal.EntityNameColor(app.Name)}))
		} else {
			routeActor.UnbindAll(app)
		}
		return
	}

	if routeDefined || defaultRouteAcceptable {
		if appParams.Domains == nil {
			domain := cmd.findDomain(nil)
			appParams.UseRandomPort = isTcp(domain)
			cmd.processDomainsAndBindRoutes(appParams, routeActor, app, domain)
		} else {
			for _, d := range *(appParams.Domains) {
				domain := cmd.findDomain(&d)
				appParams.UseRandomPort = isTcp(domain)
				cmd.processDomainsAndBindRoutes(appParams, routeActor, app, domain)
			}
		}
	}
}
Example #3
0
File: push.go Project: ramirito/cli
func (cmd *Push) removeRoutes(app models.Application, routeActor actors.RouteActor) {
	if len(app.Routes) == 0 {
		cmd.ui.Say(T("App {{.AppName}} is a worker, skipping route creation",
			map[string]interface{}{"AppName": terminal.EntityNameColor(app.Name)}))
	} else {
		routeActor.UnbindAll(app)
	}
}
Example #4
0
File: push.go Project: ramirito/cli
func (cmd *Push) updateRoutes(routeActor actors.RouteActor, app models.Application, appParams models.AppParams, noHostName bool) {
	defaultRouteAcceptable := len(app.Routes) == 0
	routeDefined := appParams.Domain != nil || appParams.Host != nil || noHostName

	domain := cmd.findDomain(appParams.Domain)
	hostname := cmd.hostnameForApp(appParams.Host, appParams.UseRandomHostname, app.Name, noHostName)

	if appParams.NoRoute {
		cmd.removeRoutes(app, routeActor)
	} else if routeDefined || defaultRouteAcceptable {
		route := routeActor.FindOrCreateRoute(hostname, domain)
		routeActor.BindRoute(app, route)
	}
}
Example #5
0
File: push.go Project: yingkitw/cli
func (cmd *Push) createAndBindRoute(
	host *string,
	UseRandomRoute bool,
	UseRandomPort bool,
	routeActor actors.RouteActor,
	app models.Application,
	noHostName bool,
	domain models.DomainFields,
	routePath *string,
) {
	var hostname string
	if !noHostName {
		switch {
		case host != nil:
			hostname = *host
		case UseRandomPort:
			//do nothing
		case UseRandomRoute:
			hostname = hostNameForString(app.Name) + "-" + cmd.wordGenerator.Babble()
		default:
			hostname = hostNameForString(app.Name)
		}
	}

	var route models.Route
	if routePath != nil {
		route = routeActor.FindOrCreateRoute(hostname, domain, *routePath, UseRandomPort)
	} else {
		route = routeActor.FindOrCreateRoute(hostname, domain, "", UseRandomPort)
	}
	routeActor.BindRoute(app, route)
}
Example #6
0
File: push.go Project: plamenai/cli
func (cmd *Push) createAndBindRoute(host *string, UseRandomHostname bool, routeActor actors.RouteActor, app models.Application, noHostName bool, domain models.DomainFields, routePath *string) {
	hostname := cmd.hostnameForApp(host, UseRandomHostname, app.Name, noHostName)
	var route models.Route
	if routePath != nil {
		route = routeActor.FindOrCreateRoute(hostname, domain, *routePath)
	} else {
		route = routeActor.FindOrCreateRoute(hostname, domain, "")
	}
	routeActor.BindRoute(app, route)
}
Example #7
0
func (cmd *Push) createAndBindRoute(host *string, UseRandomHostname bool, routeActor actors.RouteActor, app models.Application, noHostName bool, domain models.DomainFields) {
	hostname := cmd.hostnameForApp(host, UseRandomHostname, app.Name, noHostName)
	route := routeActor.FindOrCreateRoute(hostname, domain)
	routeActor.BindRoute(app, route)
}
Example #8
0
func (cmd *Push) createAndBindRoute(host *string, UseRandomHostname bool, routeActor actors.RouteActor, app models.Application, noHostName bool, domain models.DomainFields) {
	hostname := cmd.hostnameForApp(host, UseRandomHostname, app.Name, noHostName)
	path := "" // not currently configurable in the manifest
	route := routeActor.FindOrCreateRoute(hostname, domain, path)
	routeActor.BindRoute(app, route)
}