|
18 | 18 |
|
19 | 19 | import com.mysql.cj.util.StringUtils;
|
20 | 20 |
|
| 21 | +import de.agitos.agiprx.DependencyInjector; |
| 22 | +import de.agitos.agiprx.bean.Config; |
21 | 23 | import de.agitos.agiprx.bean.processor.HAProxyProcessor;
|
22 | 24 | import de.agitos.agiprx.model.Backend;
|
23 | 25 | import de.agitos.agiprx.model.BackendContainer;
|
| 26 | +import de.agitos.agiprx.util.Assert; |
24 | 27 |
|
25 |
| -public class HAProxyBackendFormatter { |
| 28 | +public class HAProxyBackendFormatter implements DependencyInjector { |
| 29 | + |
| 30 | + private static HAProxyBackendFormatter BEAN; |
| 31 | + |
| 32 | + private Integer haProxyHttpsRedirectCode; |
| 33 | + |
| 34 | + public HAProxyBackendFormatter() { |
| 35 | + |
| 36 | + Assert.singleton(this, BEAN); |
| 37 | + BEAN = this; |
| 38 | + |
| 39 | + haProxyHttpsRedirectCode = Config.getBean().getInteger("haproxy.httpsRedirectCode", 301); |
| 40 | + } |
| 41 | + |
| 42 | + @Override |
| 43 | + public void postConstruct() { |
| 44 | + } |
| 45 | + |
| 46 | + public static HAProxyBackendFormatter getBean() { |
| 47 | + return BEAN; |
| 48 | + } |
26 | 49 |
|
27 | 50 | public void formatBackend(Backend backend, StringBuilder buf) {
|
28 | 51 | formatBackend(backend, buf, "");
|
@@ -68,7 +91,8 @@ public void formatBackend(Backend backend, StringBuilder buf, String linePrefix)
|
68 | 91 | }
|
69 | 92 |
|
70 | 93 | private void addConditionalSSLRedirect(StringBuilder buf, String linePrefix) {
|
71 |
| - buf.append(linePrefix).append("\t").append("redirect scheme https if !{ ssl_fc } "); |
| 94 | + buf.append(linePrefix).append("\t").append("redirect scheme https code ").append(haProxyHttpsRedirectCode) |
| 95 | + .append(" if !{ ssl_fc } "); |
72 | 96 | buf.append("{ req.hdr(host),lower,map_str(")
|
73 | 97 | .append(HAProxyProcessor.CONFIG_PATH + HAProxyProcessor.DOMAIN_TO_CERT_FILE).append(") -m found }")
|
74 | 98 | .append("\n");
|
|
0 commit comments