Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* JBoss, Home of Professional Open Source.
* Copyright 2012, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.as.server.mgmt;
import io.undertow.server.ListenerRegistry;
import io.undertow.server.handlers.ChannelUpgradeHandler;
import java.net.BindException;
import java.net.InetSocketAddress;
import java.util.ArrayList;
import java.util.List;
import org.jboss.as.controller.ControlledProcessStateService;
import org.jboss.as.controller.ModelController;
import org.jboss.as.domain.http.server.ConsoleMode;
import org.jboss.as.domain.http.server.ManagementHttpServer;
import org.jboss.as.domain.management.SecurityRealm;
import org.jboss.as.network.ManagedBinding;
import org.jboss.as.network.ManagedBindingRegistry;
import org.jboss.as.network.NetworkInterfaceBinding;
import org.jboss.as.network.SocketBinding;
import org.jboss.as.network.SocketBindingManager;
import org.jboss.as.server.ServerMessages;
import org.jboss.as.server.mgmt.domain.HttpManagement;
import org.jboss.msc.inject.Injector;
import org.jboss.msc.service.Service;
import org.jboss.msc.service.ServiceName;
import org.jboss.msc.service.StartContext;
import org.jboss.msc.service.StartException;
import org.jboss.msc.service.StopContext;
import org.jboss.msc.service.ValueService;
import org.jboss.msc.value.ImmediateValue;
import org.jboss.msc.value.InjectedValue;
/**
*
* @author Kabir Khan
*/
public class UndertowHttpManagementService implements Service {
public static final ServiceName SERVICE_NAME = ServiceName.JBOSS.append("serverManagement", "controller", "management", "http");
public static final String SERVER_NAME = "wildfly-managment";
public static final String HTTP_MANAGEMENT = "http-management";
public static final String HTTPS_MANAGEMENT = "https-management";
public static final ServiceName HTTP_UPGRADE_SERVICE_NAME = ServiceName.JBOSS.append("http-upgrade-registry", HTTP_MANAGEMENT);
public static final ServiceName HTTPS_UPGRADE_SERVICE_NAME = ServiceName.JBOSS.append("http-upgrade-registry", HTTPS_MANAGEMENT);
public static final String JBOSS_REMOTING = "jboss-remoting";
public static final String MANAGEMENT_ENDPOINT = "management-endpoint";
private final InjectedValue listenerRegistry = new InjectedValue<>();
private final InjectedValue modelControllerValue = new InjectedValue();
private final InjectedValue injectedSocketBindingValue = new InjectedValue();
private final InjectedValue injectedSecureSocketBindingValue = new InjectedValue();
private final InjectedValue interfaceBindingValue = new InjectedValue();
private final InjectedValue injectedSocketBindingManager = new InjectedValue();
private final InjectedValue portValue = new InjectedValue();
private final InjectedValue securePortValue = new InjectedValue();
private final InjectedValue securityRealmServiceValue = new InjectedValue();
private final InjectedValue controlledProcessStateServiceValue = new InjectedValue();
private final ConsoleMode consoleMode;
private final String consoleSlot;
private ManagementHttpServer serverManagement;
private SocketBindingManager socketBindingManager;
private boolean useUnmanagedBindings = false;
private ManagedBinding basicManagedBinding;
private ManagedBinding secureManagedBinding;
private HttpManagement httpManagement = new HttpManagement() {
public InetSocketAddress getHttpSocketAddress(){
return basicManagedBinding == null ? null : basicManagedBinding.getBindAddress();
}
public InetSocketAddress getHttpsSocketAddress() {
return secureManagedBinding == null ? null : secureManagedBinding.getBindAddress();
}
@Override
public int getHttpPort() {
if (basicManagedBinding != null) {
return basicManagedBinding.getBindAddress().getPort();
}
Integer port = portValue.getOptionalValue();
if (port != null) {
return port;
}
return -1;
}
@Override
public NetworkInterfaceBinding getHttpNetworkInterfaceBinding() {
NetworkInterfaceBinding binding = interfaceBindingValue.getOptionalValue();
if (binding == null) {
SocketBinding socketBinding = injectedSocketBindingValue.getOptionalValue();
if (socketBinding != null) {
binding = socketBinding.getNetworkInterfaceBinding();
}
}
return binding;
}
@Override
public int getHttpsPort() {
if (secureManagedBinding != null) {
return secureManagedBinding.getBindAddress().getPort();
}
Integer securePort = securePortValue.getOptionalValue();
if (securePort != null) {
// return securePort;
}
return -1;
}
@Override
public NetworkInterfaceBinding getHttpsNetworkInterfaceBinding() {
NetworkInterfaceBinding binding = interfaceBindingValue.getOptionalValue();
if (binding == null) {
SocketBinding socketBinding = injectedSecureSocketBindingValue.getOptionalValue();
if (socketBinding != null) {
binding = socketBinding.getNetworkInterfaceBinding();
}
}
return binding;
}
public boolean hasConsole() {
return consoleMode.hasConsole();
}
};
public UndertowHttpManagementService(ConsoleMode consoleMode, String consoleSlot) {
this.consoleMode = consoleMode;
this.consoleSlot = consoleSlot;
}
/**
* Starts the service.
*
* @param context The start context
* @throws StartException If any errors occur
*/
public synchronized void start(StartContext context) throws StartException {
final ModelController modelController = modelControllerValue.getValue();
final ControlledProcessStateService controlledProcessStateService = controlledProcessStateServiceValue.getValue();
socketBindingManager = injectedSocketBindingManager.getOptionalValue();
final SecurityRealm securityRealmService = securityRealmServiceValue.getOptionalValue();
InetSocketAddress bindAddress = null;
InetSocketAddress secureBindAddress = null;
SocketBinding basicBinding = injectedSocketBindingValue.getOptionalValue();
SocketBinding secureBinding = injectedSecureSocketBindingValue.getOptionalValue();
final NetworkInterfaceBinding interfaceBinding = interfaceBindingValue.getOptionalValue();
if (interfaceBinding != null) {
useUnmanagedBindings = true;
final int port = portValue.getOptionalValue();
if (port > 0) {
bindAddress = new InetSocketAddress(interfaceBinding.getAddress(), port);
}
final int securePort = securePortValue.getOptionalValue();
if (securePort > 0) {
secureBindAddress = new InetSocketAddress(interfaceBinding.getAddress(), securePort);
}
} else {
if (basicBinding != null) {
bindAddress = basicBinding.getSocketAddress();
}
if (secureBinding != null) {
secureBindAddress = secureBinding.getSocketAddress();
}
}
List listeners = new ArrayList<>();
//TODO: rethink this whole ListenerRegistry business
if(bindAddress != null) {
ListenerRegistry.Listener http = new ListenerRegistry.Listener("http", HTTP_MANAGEMENT, SERVER_NAME, bindAddress);
http.setContextInformation("socket-binding", basicBinding);
listeners.add(http);
}
if(secureBindAddress != null) {
ListenerRegistry.Listener https = new ListenerRegistry.Listener("https", HTTPS_MANAGEMENT, SERVER_NAME, bindAddress);
https.setContextInformation("socket-binding", secureBinding);
listeners.add(https);
}
final ChannelUpgradeHandler upgradeHandler = new ChannelUpgradeHandler();
context.getChildTarget().addService(HTTP_UPGRADE_SERVICE_NAME, new ValueService