]> git.argeo.org Git - lgpl/argeo-commons.git/blob - FirstInit.java
6175e4d030c79abe9d99d7eaec0561391f1677fa
[lgpl/argeo-commons.git] / FirstInit.java
1 package org.argeo.cms.internal.kernel;
2
3 import static org.argeo.cms.internal.kernel.KernelUtils.getFrameworkProp;
4
5 import java.io.File;
6 import java.io.FileFilter;
7 import java.io.IOException;
8 import java.net.InetAddress;
9 import java.net.URI;
10 import java.nio.file.Files;
11 import java.nio.file.Path;
12 import java.security.KeyStore;
13 import java.util.ArrayList;
14 import java.util.Arrays;
15 import java.util.Dictionary;
16 import java.util.Hashtable;
17 import java.util.List;
18
19 import javax.security.auth.x500.X500Principal;
20
21 import org.apache.commons.io.FileUtils;
22 import org.apache.commons.logging.Log;
23 import org.apache.commons.logging.LogFactory;
24 import org.argeo.cms.CmsException;
25 import org.argeo.cms.internal.jcr.RepoConf;
26 import org.argeo.node.NodeConstants;
27 import org.argeo.osgi.useradmin.UserAdminConf;
28 import org.eclipse.equinox.http.jetty.JettyConstants;
29
30 /**
31 * Interprets framework properties in order to generate the initial deploy
32 * configuration.
33 */
34 class FirstInit {
35 private final static Log log = LogFactory.getLog(FirstInit.class);
36
37 public FirstInit() {
38 log.info("## FIRST INIT ##");
39 }
40
41 /** Override the provided config with the framework properties */
42 Dictionary<String, Object> getNodeRepositoryConfig(Dictionary<String, Object> provided) {
43 Dictionary<String, Object> props = provided != null ? provided : new Hashtable<String, Object>();
44 for (RepoConf repoConf : RepoConf.values()) {
45 Object value = getFrameworkProp(NodeConstants.NODE_REPO_PROP_PREFIX + repoConf.name());
46 if (value != null)
47 props.put(repoConf.name(), value);
48 }
49 props.put(NodeConstants.CN, NodeConstants.NODE);
50 // props.put(NodeConstants.JCR_REPOSITORY_ALIAS, NodeConstants.NODE);
51 return props;
52 }
53
54 /** Override the provided config with the framework properties */
55 Dictionary<String, Object> getHttpServerConfig(Dictionary<String, Object> provided) {
56 String httpPort = getFrameworkProp("org.osgi.service.http.port");
57 String httpsPort = getFrameworkProp("org.osgi.service.http.port.secure");
58 /// TODO make it more generic
59 String httpHost = getFrameworkProp(JettyConstants.PROPERTY_PREFIX + JettyConstants.HTTP_HOST);
60 String httpsHost = getFrameworkProp(JettyConstants.PROPERTY_PREFIX + JettyConstants.HTTPS_HOST);
61
62 final Hashtable<String, Object> props = new Hashtable<String, Object>();
63 // try {
64 if (httpPort != null || httpsPort != null) {
65 if (httpPort != null) {
66 props.put(JettyConstants.HTTP_PORT, httpPort);
67 props.put(JettyConstants.HTTP_ENABLED, true);
68 }
69 if (httpsPort != null) {
70 props.put(JettyConstants.HTTPS_PORT, httpsPort);
71 props.put(JettyConstants.HTTPS_ENABLED, true);
72 Path keyStorePath = KernelUtils.getOsgiInstancePath(KernelConstants.DEFAULT_KEYSTORE_PATH);
73 String keyStorePassword = getFrameworkProp(
74 JettyConstants.PROPERTY_PREFIX + JettyConstants.SSL_PASSWORD);
75 if (keyStorePassword == null)
76 keyStorePassword = "changeit";
77 if (!Files.exists(keyStorePath))
78 createSelfSignedKeyStore(keyStorePath, keyStorePassword);
79 props.put(JettyConstants.SSL_KEYSTORETYPE, "PKCS12");
80 props.put(JettyConstants.SSL_KEYSTORE, keyStorePath.toString());
81 props.put(JettyConstants.SSL_PASSWORD, keyStorePassword);
82 props.put(JettyConstants.SSL_WANTCLIENTAUTH, true);
83 }
84 if (httpHost != null)
85 props.put(JettyConstants.HTTP_HOST, httpHost);
86 if (httpsHost != null)
87 props.put(JettyConstants.HTTPS_HOST, httpHost);
88
89 props.put(NodeConstants.CN, NodeConstants.DEFAULT);
90 }
91 return props;
92 }
93
94 List<Dictionary<String, Object>> getUserDirectoryConfigs() {
95 List<Dictionary<String, Object>> res = new ArrayList<>();
96 File nodeBaseDir = KernelUtils.getOsgiInstancePath(KernelConstants.DIR_NODE).toFile();
97 List<String> uris = new ArrayList<>();
98
99 // node roles
100 String nodeRolesUri = getFrameworkProp(NodeConstants.ROLES_URI);
101 String baseNodeRoleDn = NodeConstants.ROLES_BASEDN;
102 if (nodeRolesUri == null) {
103 nodeRolesUri = baseNodeRoleDn + ".ldif";
104 File nodeRolesFile = new File(nodeBaseDir, nodeRolesUri);
105 if (!nodeRolesFile.exists())
106 try {
107 FileUtils.copyInputStreamToFile(getClass().getResourceAsStream(baseNodeRoleDn + ".ldif"),
108 nodeRolesFile);
109 } catch (IOException e) {
110 throw new CmsException("Cannot copy demo resource", e);
111 }
112 // nodeRolesUri = nodeRolesFile.toURI().toString();
113 }
114 uris.add(nodeRolesUri);
115
116 // Business roles
117 String userAdminUris = getFrameworkProp(NodeConstants.USERADMIN_URIS);
118 if (userAdminUris == null) {
119 String demoBaseDn = "dc=example,dc=com";
120 userAdminUris = demoBaseDn + ".ldif";
121 File businessRolesFile = new File(nodeBaseDir, userAdminUris);
122 if (!businessRolesFile.exists())
123 try {
124 FileUtils.copyInputStreamToFile(getClass().getResourceAsStream(demoBaseDn + ".ldif"),
125 businessRolesFile);
126 } catch (IOException e) {
127 throw new CmsException("Cannot copy demo resource", e);
128 }
129 // userAdminUris = businessRolesFile.toURI().toString();
130 log.warn("## DEV Using dummy base DN " + demoBaseDn);
131 // TODO downgrade security level
132 }
133 for (String userAdminUri : userAdminUris.split(" "))
134 uris.add(userAdminUri);
135
136 // Interprets URIs
137 for (String uri : uris) {
138 URI u;
139 try {
140 u = new URI(uri);
141 if (u.getPath() == null)
142 throw new CmsException("URI " + uri + " must have a path in order to determine base DN");
143 if (u.getScheme() == null) {
144 if (uri.startsWith("/") || uri.startsWith("./") || uri.startsWith("../"))
145 u = new File(uri).getCanonicalFile().toURI();
146 else if (!uri.contains("/")) {
147 // u = KernelUtils.getOsgiInstanceUri(KernelConstants.DIR_NODE + '/' + uri);
148 u = new URI(uri);
149 } else
150 throw new CmsException("Cannot interpret " + uri + " as an uri");
151 } else if (u.getScheme().equals(UserAdminConf.SCHEME_FILE)) {
152 u = new File(u).getCanonicalFile().toURI();
153 }
154 } catch (Exception e) {
155 throw new CmsException("Cannot interpret " + uri + " as an uri", e);
156 }
157 Dictionary<String, Object> properties = UserAdminConf.uriAsProperties(u.toString());
158 res.add(properties);
159 }
160
161 return res;
162 }
163
164 /**
165 * Called before node initialisation, in order populate OSGi instance are with
166 * some files (typically LDIF, etc).
167 */
168 static void prepareInstanceArea() {
169 String nodeInit = getFrameworkProp(NodeConstants.NODE_INIT);
170 if (nodeInit == null)
171 nodeInit = "../../init";
172 if (nodeInit.startsWith("http")) {
173 // remoteFirstInit(nodeInit);
174 return;
175 }
176
177 // TODO use java.nio.file
178 File initDir;
179 if (nodeInit.startsWith("."))
180 initDir = KernelUtils.getExecutionDir(nodeInit);
181 else
182 initDir = new File(nodeInit);
183 // TODO also uncompress archives
184 if (initDir.exists())
185 try {
186 FileUtils.copyDirectory(initDir, KernelUtils.getOsgiInstanceDir(), new FileFilter() {
187
188 @Override
189 public boolean accept(File pathname) {
190 if (pathname.getName().equals(".svn") || pathname.getName().equals(".git"))
191 return false;
192 return true;
193 }
194 });
195 log.info("CMS initialized from " + initDir.getCanonicalPath());
196 } catch (IOException e) {
197 throw new CmsException("Cannot initialize from " + initDir, e);
198 }
199 }
200
201 private void createSelfSignedKeyStore(Path keyStorePath, String keyStorePassword) {
202 // for (Provider provider : Security.getProviders())
203 // System.out.println(provider.getName());
204 File keyStoreFile = keyStorePath.toFile();
205 char[] ksPwd = keyStorePassword.toCharArray();
206 char[] keyPwd = Arrays.copyOf(ksPwd, ksPwd.length);
207 if (!keyStoreFile.exists()) {
208 try {
209 keyStoreFile.getParentFile().mkdirs();
210 KeyStore keyStore = PkiUtils.getKeyStore(keyStoreFile, ksPwd);
211 PkiUtils.generateSelfSignedCertificate(keyStore,
212 new X500Principal("CN=" + InetAddress.getLocalHost().getHostName() + ",OU=UNSECURE,O=UNSECURE"),
213 1024, keyPwd);
214 PkiUtils.saveKeyStore(keyStoreFile, ksPwd, keyStore);
215 if (log.isDebugEnabled())
216 log.debug("Created self-signed unsecure keystore " + keyStoreFile);
217 } catch (Exception e) {
218 if (keyStoreFile.length() == 0)
219 keyStoreFile.delete();
220 log.error("Cannot create keystore " + keyStoreFile, e);
221 }
222 } else {
223 throw new CmsException("Keystore " + keyStorePath + " already exists");
224 }
225 }
226
227 }