net.oneandone.stool.util.Vhost Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of main Show documentation
Show all versions of main Show documentation
Stool's main component. Java Library, cli, setup code.
The newest version!
/*
* Copyright 1&1 Internet AG, https://github.com/1and1/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.oneandone.stool.util;
import net.oneandone.sushi.fs.World;
import net.oneandone.sushi.fs.file.FileNode;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
/** Represents one line in the "ports" file. Immutable */
public class Vhost {
private static final char SEP = ' ';
// parses []
// where name is the application name.
public static Vhost forLine(World world, String line) {
int afterEven;
int afterName;
int afterId;
int even;
String name;
String id;
FileNode docroot;
afterEven = line.indexOf(SEP);
if (afterEven == -1) {
throw new IllegalArgumentException("invalid vhost line: " + line);
}
even = Integer.parseInt(line.substring(0, afterEven));
afterName = line.indexOf(SEP, afterEven + 1);
if (afterName == -1) {
throw new IllegalArgumentException("invalid vhost line: " + line);
}
name = line.substring(afterEven + 1, afterName);
afterId = line.indexOf(SEP, afterName + 1);
if (afterId == -1) {
id = line.substring(afterName + 1);
docroot = null;
} else {
id = line.substring(afterName + 1, afterId);
docroot = world.file(line.substring(afterId + 1));
}
return new Vhost(even, name, id, docroot);
}
public final int even;
/** name of vhost, i.e. the application */
public final String name;
/** stage id */
public final String id;
/** null for ports that have no domain */
public final FileNode docroot;
public Vhost(int even, String name, String id, FileNode docroot) {
if (name.indexOf(SEP) != -1) {
throw new IllegalArgumentException(name);
}
if (id.indexOf('.') == -1) {
throw new IllegalArgumentException(id);
}
this.even = even;
this.name = name;
this.id = id;
this.docroot = docroot;
}
public boolean isWebapp() {
return docroot != null;
}
public boolean isArtifact() {
return docroot != null && docroot.getName().equals("ROOT");
}
public int httpPort() {
return even;
}
public int httpsPort() {
return even + 1;
}
public String httpUrl(boolean vhosts, String stageName, String hostname) {
return "http://" + fqdnHttpPort(vhosts, stageName, hostname);
}
public String fqdnHttpPort(boolean vhosts, String stageName, String hostname) {
return fqdn(vhosts, stageName, hostname) + ":" + httpPort();
}
public String httpsUrl(boolean vhosts, String stageName, String hostname) {
return "https://" + fqdnHttpsPort(vhosts, stageName, hostname);
}
public String fqdnHttpsPort(boolean vhosts, String stageName, String hostname) {
return fqdn(vhosts, stageName, hostname) + ":" + httpsPort();
}
public String fqdn(boolean vhosts, String stageName, String hostname) {
if (vhosts) {
return name + "." + stageName + "." + hostname;
} else {
return hostname;
}
}
public String toLine() {
// CAUTION: just
// even + SEP
// is an integer addition!
return Integer.toString(even) + SEP + name + SEP + id + (docroot == null ? "" : Character.toString(SEP) + docroot.getAbsolute());
}
public String toString() {
return toLine();
}
/** null if not modified */
public Vhost set(Integer newEven, FileNode newDocroot) {
if (Objects.equals(this.docroot, newDocroot) && (newEven == null || newEven == even)) {
return null;
}
return new Vhost(newEven == null ? even : newEven, name, id, newDocroot);
}
public String context(String stageName, String hostname, String url) {
String result;
String context;
result = null;
for (String str : doMap(stageName, hostname, url).values()) {
context = getContext(str);
if (result == null) {
result = context;
} else if (!result.equals(context)) {
throw new IllegalStateException("ambiguous context: " + result + " vs " + context);
}
}
if (result == null) {
throw new IllegalStateException("context not found: " + url);
}
if (!result.isEmpty() && !result.startsWith("/")) {
throw new IllegalStateException(hostname + " " + url + " " + result);
}
return result;
}
public Map urlMap(String stageName, String hostname, String url) {
Map result;
result = new LinkedHashMap<>();
for (Map.Entry entry : doMap(stageName, hostname, url).entrySet()) {
result.put(entry.getKey(), hideContext(entry.getValue()));
}
return result;
}
private static String hideContext(String url) {
int beforeHost;
int afterHost;
int context;
beforeHost = url.indexOf("://");
if (beforeHost == -1) {
return url;
}
afterHost = url.indexOf("/", beforeHost + 3);
if (afterHost == -1) {
return url;
}
context = url.indexOf("//", afterHost + 1);
if (context == -1) {
return url;
}
return url.substring(0, context) + url.substring(context + 1);
}
/** return path as used in Tomcat context element - either empty of starts with a slash */
private static String getContext(String url) {
int beforeHost;
int afterHost;
int context;
beforeHost = url.indexOf("://");
if (beforeHost == -1) {
return "";
}
afterHost = url.indexOf("/", beforeHost + 3);
if (afterHost == -1) {
return "";
}
context = url.indexOf("//", afterHost + 1);
return context == -1 ? "" : url.substring(afterHost, context);
}
private Map doMap(String stageName, String hostname, String url) {
Map result;
Map map;
List all;
List http;
List https;
result = new LinkedHashMap<>();
map = new HashMap<>();
map.put('h', hostname);
map.put('a', name);
map.put('s', stageName);
map.put('p', "%p");
all = Url.parse(url).sustitute(map).map();
http = new ArrayList<>();
https = new ArrayList<>();
for (String u : all) {
if (u.startsWith("https:")) {
https.add(u.replace("%p", Integer.toString(httpsPort())));
} else {
http.add(u.replace("%p", Integer.toString(httpPort())));
}
}
add(name, "", http, result);
add(name, " SSL", https, result);
return result;
}
private static void add(String nameBase, String nameSuffix, List all, Map result) {
String name;
int no;
no = 0;
for (String u : all) {
if (all.size() > 1) {
no++;
name = nameBase + "-" + no;
} else {
name = nameBase;
}
name = name + nameSuffix;
result.put(name, u);
}
}
}