use of com.helger.photon.core.configfile.ConfigurationFile in project phoss-directory by phax.
the class AppWebAppListener method initGlobalSettings.
@Override
protected void initGlobalSettings() {
// Internal stuff:
VendorInfo.setVendorName("Philip Helger");
VendorInfo.setVendorURL("http://www.helger.com");
VendorInfo.setVendorEmail("pd@helger.com");
VendorInfo.setVendorLocation("Vienna, Austria");
VendorInfo.setInceptionYear(2015);
if (PDServerConfiguration.isForceRoot()) {
// Enforce an empty context path according to the specs!
ServletContextPathHolder.setCustomContextPath("");
}
if (GlobalDebug.isProductionMode())
ValueEnforcer.setEnabled(false);
// By disabling these settings, less audits are created hence less calls are
// blocking
RequestTrackerSettings.setLongRunningRequestsCheckEnabled(false);
RequestTrackerSettings.setParallelRunningRequestsCheckEnabled(false);
RequestParameterManager.getInstance().setParameterHandler(new RequestParameterHandlerURLPathNamed());
AppInternalErrorHandler.doSetup();
final ConfigurationFileManager aCfgMgr = ConfigurationFileManager.getInstance();
aCfgMgr.registerConfigurationFile(new ConfigurationFile(new ClassPathResource("log4j2.xml")).setDescription("log4j configuration file").setSyntaxHighlightLanguage(EConfigurationFileSyntax.XML));
aCfgMgr.registerAll(PDServerConfiguration.getConfig());
// Job scheduling etc
if (GlobalDebug.isDebugMode())
GlobalQuartzScheduler.getInstance().addJobListener(new LoggingJobListener());
}
use of com.helger.photon.core.configfile.ConfigurationFile in project phoss-smp by phax.
the class SMPWebAppListener method initManagers.
@Override
protected void initManagers() {
{
LOGGER.info("Init of ConfigurationFileManager");
final ConfigurationFileManager aCFM = ConfigurationFileManager.getInstance();
aCFM.registerConfigurationFile(new ConfigurationFile(new ClassPathResource("log4j2.xml")).setDescription("Log4J2 configuration").setSyntaxHighlightLanguage(EConfigurationFileSyntax.XML));
aCFM.registerConfigurationFile(new ConfigurationFile(SMPWebAppConfiguration.getSettingsResource()).setDescription("SMP web application configuration").setSyntaxHighlightLanguage(EConfigurationFileSyntax.PROPERTIES));
final IReadableResource aConfigRes = SMPServerConfiguration.getConfigFile().getReadResource();
if (aConfigRes != null) {
aCFM.registerConfigurationFile(new ConfigurationFile(aConfigRes).setDescription("SMP server configuration").setSyntaxHighlightLanguage(EConfigurationFileSyntax.PROPERTIES));
}
aCFM.registerAll(PDClientConfiguration.getConfig());
}
{
LOGGER.info("Init of Directory client stuff");
// If the SMP settings change, the PD client must be re-created
SMPMetaManager.getSettingsMgr().callbacks().add(x -> PDClientProvider.getInstance().resetPDClient());
// Callback on BusinessCard manager - if something happens, notify PD
// server
final ISMPBusinessCardManager aBusinessCardMgr = SMPMetaManager.getBusinessCardMgr();
if (aBusinessCardMgr != null) {
aBusinessCardMgr.bcCallbacks().add(new ISMPBusinessCardCallback() {
public void onSMPBusinessCardCreatedOrUpdated(@Nonnull final ISMPBusinessCard aBusinessCard) {
final ISMPSettings aSettings = SMPMetaManager.getSettings();
if (aSettings.isDirectoryIntegrationEnabled() && aSettings.isDirectoryIntegrationAutoUpdate()) {
// Notify PD server: add
PDClientProvider.getInstance().getPDClient().addServiceGroupToIndex(aBusinessCard.getParticipantIdentifier());
}
}
public void onSMPBusinessCardDeleted(@Nonnull final ISMPBusinessCard aBusinessCard) {
final ISMPSettings aSettings = SMPMetaManager.getSettings();
if (aSettings.isDirectoryIntegrationEnabled() && aSettings.isDirectoryIntegrationAutoUpdate()) {
// Notify PD server: delete
PDClientProvider.getInstance().getPDClient().deleteServiceGroupFromIndex(aBusinessCard.getParticipantIdentifier());
}
}
});
// If a service information is create, updated or deleted, also update
// Business Card at PD
SMPMetaManager.getServiceInformationMgr().serviceInformationCallbacks().add(new ISMPServiceInformationCallback() {
@Override
public void onSMPServiceInformationCreated(@Nonnull final ISMPServiceInformation aServiceInformation) {
final ISMPSettings aSettings = SMPMetaManager.getSettings();
if (aSettings.isDirectoryIntegrationEnabled() && aSettings.isDirectoryIntegrationAutoUpdate()) {
// Only if a business card is present
if (aBusinessCardMgr.containsSMPBusinessCardOfServiceGroup(aServiceInformation.getServiceGroup())) {
// Notify PD server: update
PDClientProvider.getInstance().getPDClient().addServiceGroupToIndex(aServiceInformation.getServiceGroup().getParticipantIdentifier());
}
}
}
@Override
public void onSMPServiceInformationUpdated(@Nonnull final ISMPServiceInformation aServiceInformation) {
onSMPServiceInformationCreated(aServiceInformation);
}
@Override
public void onSMPServiceInformationDeleted(@Nonnull final ISMPServiceInformation aServiceInformation) {
onSMPServiceInformationCreated(aServiceInformation);
}
});
}
}
{
LOGGER.info("Init of HTTP and Proxy settings");
// Register global proxy servers
ProxySelectorProxySettingsManager.setAsDefault(true);
final IProxySettings aProxyHttp = SMPServerConfiguration.getAsHttpProxySettings();
if (aProxyHttp != null) {
// Register a handler that returns the "http" proxy, if an "http" URL is
// requested
ProxySettingsManager.registerProvider((sProtocol, sHost, nPort) -> "http".equals(sProtocol) ? new CommonsArrayList<>(aProxyHttp) : null);
}
final IProxySettings aProxyHttps = SMPServerConfiguration.getAsHttpsProxySettings();
if (aProxyHttps != null) {
// Register a handler that returns the "https" proxy, if an "https" URL
// is
// requested
ProxySettingsManager.registerProvider((sProtocol, sHost, nPort) -> "https".equals(sProtocol) ? new CommonsArrayList<>(aProxyHttps) : null);
}
}
// Special http client config
BasePageUtilsHttpClient.HttpClientConfigRegistry.register(new HttpClientConfig("directoryclient", "Directory client settings", PDHttpClientSettings::new));
LOGGER.info("Finished init of managers");
}
Aggregations