Author: chetanm
Date: Fri Nov 27 11:30:22 2015
New Revision: 1716839
URL: http://svn.apache.org/viewvc?rev=1716839&view=rev
Log:
OAK-3687 - Oak standalone application example based on Spring Boot
Felix WebConsole integration
Added:
jackrabbit/oak/trunk/oak-examples/standalone/src/main/java/org/apache/jackrabbit/oak/standalone/WebConsoleSupport.java
(with props)
Added:
jackrabbit/oak/trunk/oak-examples/standalone/src/main/java/org/apache/jackrabbit/oak/standalone/WebConsoleSupport.java
URL:
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-examples/standalone/src/main/java/org/apache/jackrabbit/oak/standalone/WebConsoleSupport.java?rev=1716839&view=auto
==============================================================================
---
jackrabbit/oak/trunk/oak-examples/standalone/src/main/java/org/apache/jackrabbit/oak/standalone/WebConsoleSupport.java
(added)
+++
jackrabbit/oak/trunk/oak-examples/standalone/src/main/java/org/apache/jackrabbit/oak/standalone/WebConsoleSupport.java
Fri Nov 27 11:30:22 2015
@@ -0,0 +1,119 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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 org.apache.jackrabbit.oak.standalone;
+
+import javax.annotation.PostConstruct;
+import javax.jcr.Credentials;
+import javax.jcr.LoginException;
+import javax.jcr.Repository;
+import javax.jcr.RepositoryException;
+import javax.jcr.Session;
+import javax.jcr.SimpleCredentials;
+
+import org.apache.felix.connect.launch.PojoServiceRegistry;
+import org.apache.felix.http.proxy.ProxyListener;
+import org.apache.felix.http.proxy.ProxyServlet;
+import org.apache.felix.webconsole.WebConsoleSecurityProvider;
+import org.apache.jackrabbit.oak.run.osgi.ServiceRegistryProvider;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import
org.springframework.boot.context.embedded.ServletListenerRegistrationBean;
+import org.springframework.boot.context.embedded.ServletRegistrationBean;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+
+/**
+ * Integrates the Felix WebConsole support with servlet container. The console
is
+ * accessible at /osgi/system/console/
+ */
+@Configuration
+public class WebConsoleSupport {
+ private final Logger log = LoggerFactory.getLogger(getClass());
+
+ /**
+ * Adding a dependency to ensure that by the time servlet
+ * is registered BundleContext is set in ServletContext
+ */
+ @Autowired
+ private Repository repository;
+
+ @Autowired
+ private ApplicationContext context;
+
+ @PostConstruct
+ private void postConstruct() throws Exception {
+ PojoServiceRegistry reg =
((ServiceRegistryProvider)repository).getServiceRegistry();
+
+ //Configure repository backed SecurityProvider
+ reg.registerService(WebConsoleSecurityProvider.class.getName(), new
RepositorySecurityProvider(), null);
+
+ //Expose the Spring Application context to Script Console access
+ reg.registerService(ApplicationContext.class.getName(), context, null);
+ }
+
+ @Bean
+ public ServletRegistrationBean felixProxyServlet() {
+ return new ServletRegistrationBean(new ProxyServlet(), "/osgi/*");
+ }
+
+ @Bean
+ public ServletListenerRegistrationBean felixListener() {
+ return new ServletListenerRegistrationBean<ProxyListener>(new
ProxyListener());
+ }
+
+ /**
+ * A simple WebConsoleSecurityProvider implementation which only allows
+ * repository admin user to perform login
+ */
+ private class RepositorySecurityProvider implements
WebConsoleSecurityProvider {
+ @Override
+ public Object authenticate(String userName, String password) {
+ final Credentials creds = new SimpleCredentials(userName,
+ (password == null) ? new char[0] : password.toCharArray());
+ Session session = null;
+ try {
+ session = repository.login(creds);
+
+ if ("admin".equals(userName)){
+ return userName;
+ }
+
+ } catch (LoginException re) {
+ log.info("authenticate: User {} failed to authenticate with
the repository " +
+ "for Web Console access", userName, re);
+ } catch (RepositoryException re) {
+ log.info("authenticate: Generic problem trying grant User {}
access to the Web Console", userName, re);
+ } finally {
+ if (session != null) {
+ session.logout();
+ }
+ }
+ return null;
+ }
+
+ @Override
+ public boolean authorize(Object user, String role) {
+ //No fine grained access control for now
+ return true;
+ }
+ }
+}
Propchange:
jackrabbit/oak/trunk/oak-examples/standalone/src/main/java/org/apache/jackrabbit/oak/standalone/WebConsoleSupport.java
------------------------------------------------------------------------------
svn:eol-style = native