-
-
Notifications
You must be signed in to change notification settings - Fork 391
/
SteveConfiguration.java
208 lines (179 loc) · 7.29 KB
/
SteveConfiguration.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/*
* SteVe - SteckdosenVerwaltung - https://github.com/steve-community/steve
* Copyright (C) 2013-2024 SteVe Community Team
* All Rights Reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.rwth.idsg.steve;
import de.rwth.idsg.steve.ocpp.ws.custom.WsSessionSelectStrategy;
import de.rwth.idsg.steve.ocpp.ws.custom.WsSessionSelectStrategyEnum;
import de.rwth.idsg.steve.utils.PropertiesFileLoader;
import lombok.Builder;
import lombok.Getter;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.security.crypto.password.PasswordEncoder;
/**
* @author Sevket Goekay <[email protected]>
* @since 19.08.2014
*/
@Getter
public enum SteveConfiguration {
CONFIG;
// Root mapping for Spring
private final String springMapping = "/";
// Web frontend
private final String springManagerMapping = "/manager";
// Mapping for CXF SOAP services
private final String cxfMapping = "/services";
// Mapping for Web APIs
private final String apiMapping = "/api";
// Dummy service path
private final String routerEndpointPath = "/CentralSystemService";
// Time zone for the application and database connections
private final String timeZoneId = "UTC"; // or ZoneId.systemDefault().getId();
// -------------------------------------------------------------------------
// main.properties
// -------------------------------------------------------------------------
private final String contextPath;
private final String steveVersion;
private final String gitDescribe;
private final ApplicationProfile profile;
private final Ocpp ocpp;
private final Auth auth;
private final WebApi webApi;
private final DB db;
private final Jetty jetty;
SteveConfiguration() {
PropertiesFileLoader p = new PropertiesFileLoader("main.properties");
contextPath = sanitizeContextPath(p.getOptionalString("context.path"));
steveVersion = p.getString("steve.version");
gitDescribe = useFallbackIfNotSet(p.getOptionalString("git.describe"), null);
profile = ApplicationProfile.fromName(p.getString("profile"));
jetty = Jetty.builder()
.serverHost(p.getString("server.host"))
.gzipEnabled(p.getBoolean("server.gzip.enabled"))
.httpEnabled(p.getBoolean("http.enabled"))
.httpPort(p.getInt("http.port"))
.httpsEnabled(p.getBoolean("https.enabled"))
.httpsPort(p.getInt("https.port"))
.keyStorePath(p.getOptionalString("keystore.path"))
.keyStorePassword(p.getOptionalString("keystore.password"))
.build();
db = DB.builder()
.ip(p.getString("db.ip"))
.port(p.getInt("db.port"))
.schema(p.getString("db.schema"))
.userName(p.getString("db.user"))
.password(p.getString("db.password"))
.sqlLogging(p.getBoolean("db.sql.logging"))
.build();
PasswordEncoder encoder = new BCryptPasswordEncoder();
auth = Auth.builder()
.passwordEncoder(encoder)
.userName(p.getString("auth.user"))
.encodedPassword(encoder.encode(p.getString("auth.password")))
.build();
webApi = WebApi.builder()
.headerKey(p.getOptionalString("webapi.key"))
.headerValue(p.getOptionalString("webapi.value"))
.build();
ocpp = Ocpp.builder()
.autoRegisterUnknownStations(p.getOptionalBoolean("auto.register.unknown.stations"))
.chargeBoxIdValidationRegex(p.getOptionalString("charge-box-id.validation.regex"))
.wsSessionSelectStrategy(
WsSessionSelectStrategyEnum.fromName(p.getString("ws.session.select.strategy")))
.build();
validate();
}
public String getSteveCompositeVersion() {
if (gitDescribe == null) {
return steveVersion;
} else {
return steveVersion + "-g" + gitDescribe;
}
}
private static String useFallbackIfNotSet(String value, String fallback) {
if (value == null) {
// if the property is optional, value will be null
return fallback;
} else if (value.startsWith("${")) {
// property value variables start with "${" (if maven is not used, the value will not be set)
return fallback;
} else {
return value;
}
}
private String sanitizeContextPath(String s) {
if (s == null || "/".equals(s)) {
return "";
} else if (s.startsWith("/")) {
return s;
} else {
return "/" + s;
}
}
private void validate() {
if (!(jetty.httpEnabled || jetty.httpsEnabled)) {
throw new IllegalArgumentException(
"HTTP and HTTPS are both disabled. Well, how do you want to access the server, then?");
}
}
// -------------------------------------------------------------------------
// Class declarations
// -------------------------------------------------------------------------
// Jetty configuration
@Builder @Getter
public static class Jetty {
private final String serverHost;
private final boolean gzipEnabled;
// HTTP
private final boolean httpEnabled;
private final int httpPort;
// HTTPS
private final boolean httpsEnabled;
private final int httpsPort;
private final String keyStorePath;
private final String keyStorePassword;
}
// Database configuration
@Builder @Getter
public static class DB {
private final String ip;
private final int port;
private final String schema;
private final String userName;
private final String password;
private final boolean sqlLogging;
}
// Credentials for Web interface access
@Builder @Getter
public static class Auth {
private final PasswordEncoder passwordEncoder;
private final String userName;
private final String encodedPassword;
}
@Builder @Getter
public static class WebApi {
private final String headerKey;
private final String headerValue;
}
// OCPP-related configuration
@Builder @Getter
public static class Ocpp {
private final boolean autoRegisterUnknownStations;
private final String chargeBoxIdValidationRegex;
private final WsSessionSelectStrategy wsSessionSelectStrategy;
}
}