Files
alfresco-community-repo/source/java/org/alfresco/repo/admin/SysAdminParamsImpl.java
Alan Davis 84841e063f Merged 5.2.N (5.2.1) to HEAD (5.2)
125788 rmunteanu: Merged 5.1.N (5.1.2) to 5.2.N (5.2.1)
      125606 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2)
         125515 slanglois: MNT-16155 Update source headers - add new Copyrights for Java and JSP source files + automatic check in the build


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@127810 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2016-06-03 17:08:06 +00:00

308 lines
8.4 KiB
Java

/*
* #%L
* Alfresco Repository
* %%
* Copyright (C) 2005 - 2016 Alfresco Software Limited
* %%
* This file is part of the Alfresco software.
* If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms:
*
* Alfresco 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 3 of the License, or
* (at your option) any later version.
*
* Alfresco 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 Alfresco. If not, see <http://www.gnu.org/licenses/>.
* #L%
*/
package org.alfresco.repo.admin;
import java.net.InetAddress;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
import org.alfresco.repo.transaction.TransactionServiceImpl;
import org.alfresco.service.cmr.security.PermissionService;
import org.alfresco.service.namespace.NamespaceService;
import org.alfresco.service.namespace.QName;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
/**
* Configurable system parameters.
*/
public class SysAdminParamsImpl implements SysAdminParams, ApplicationContextAware, InitializingBean
{
private static Log logger = LogFactory.getLog(SysAdminParams.class);
/** Token name to substitute current servers DNS name or TCP/IP address into a host name **/
private static final String TOKEN_LOCAL_NAME = "${localname}";
private static final QName VETO = QName.createQName(NamespaceService.APP_MODEL_1_0_URI, "SysAdminParams");
/** The local server name to which the above token will expand. */
private final String localName;
/** The application context, to get license component, if installed. */
private ApplicationContext ctx;
/** The max users. */
private Integer maxUsers;
/** The allowed users. */
private List<String> allowedUsers;
/** The allow write. */
private boolean allowWrite = true;
/** Alfresco context. */
private String alfrescoContext = "alfresco";
/** Alfresco host. */
private String alfrescoHost = "localhost";
/** Alfresco port. */
private int alfrescoPort = 8080;
/** Alfresco protocol. */
private String alfrescoProtocol = "http";
/** Share context. */
private String shareContext = "alfresco";
/** Share host. */
private String shareHost = "localhost";
/** Share port. */
private int sharePort = 8080;
/** Share protocol. */
private String shareProtocol = "http";
// The default is GROUP_EVERYONE, although this will likely be overridden by an injected value from spring.
private String sitePublicGroup = PermissionService.ALL_AUTHORITIES;
public SysAdminParamsImpl()
{
// Establish the name of the local server so we can use it in token substitutions
String srvName = "localhost";
try
{
srvName = InetAddress.getLocalHost().getHostName();
}
catch (Exception ex)
{
srvName = "localhost";
}
localName = srvName;
}
@Override
public void setApplicationContext(ApplicationContext ctx)
{
this.ctx = ctx;
}
@Override
public void afterPropertiesSet() throws Exception
{
// Set the transaction read-write state by veto
// There is no need to attempt to check the dictionary or any other component as they will handle
// their own vetoes (MNT-14579)
// No logging is required here: it is done in the TransactionService code, already
TransactionServiceImpl transactionService = (TransactionServiceImpl) ctx.getBean("transactionService");
transactionService.setAllowWrite(allowWrite, VETO);
}
/**
* Sets the list of users who are allowed to log in.
*
* @param allowedUsers
* a comma-separated list of users who are allowed to log in or <code>null</code> if all users are
* allowed to log in
*/
public void setAllowedUsers(String allowedUsers)
{
StringTokenizer tkn = new StringTokenizer(allowedUsers, ",");
int length = tkn.countTokens();
if (length > 0)
{
this.allowedUsers = new ArrayList<String>(length);
while (tkn.hasMoreTokens())
{
this.allowedUsers.add(tkn.nextToken().trim());
}
}
}
@Override
public List<String> getAllowedUserList()
{
return this.allowedUsers;
}
/**
* Sets the maximum number of users who are allowed to log in.
*
* @param maxUsers
* the maximum number of users who are allowed to log in
*/
public void setMaxUsers(int maxUsers)
{
this.maxUsers = new Integer(maxUsers);
}
@Override
public int getMaxUsers()
{
return this.maxUsers;
}
/**
* Controls where we allow write operations by non-system users on the repository.
*
* @param allowWrite
* <code>true</code> if we allow write operations by non-system users on the repository
*/
public void setAllowWrite(boolean allowWrite)
{
this.allowWrite = allowWrite;
if (!allowWrite)
{
if (logger.isInfoEnabled())
{
logger.info("'allowWrite' being set to false: Bean property setter.");
}
}
}
@Override
public boolean getAllowWrite()
{
return this.allowWrite;
}
@Override
public String getAlfrescoContext()
{
return alfrescoContext;
}
public void setAlfrescoContext(String alfrescoContext)
{
this.alfrescoContext = alfrescoContext;
}
@Override
public String getAlfrescoHost()
{
return alfrescoHost;
}
public void setAlfrescoHost(String alfrescoHost)
{
this.alfrescoHost = subsituteHost(alfrescoHost);
}
@Override
public int getAlfrescoPort()
{
return alfrescoPort;
}
public void setAlfrescoPort(int alfrescoPort)
{
this.alfrescoPort = alfrescoPort;
}
@Override
public String getAlfrescoProtocol()
{
return alfrescoProtocol;
}
public void setAlfrescoProtocol(String alfrescoProtocol)
{
this.alfrescoProtocol = alfrescoProtocol;
}
@Override
public String getShareContext()
{
return shareContext;
}
public void setShareContext(String shareContext)
{
this.shareContext = shareContext;
}
@Override
public String getShareHost()
{
return shareHost;
}
public void setShareHost(String shareHost)
{
this.shareHost = subsituteHost(shareHost);
}
@Override
public int getSharePort()
{
return sharePort;
}
public void setSharePort(int sharePort)
{
this.sharePort = sharePort;
}
@Override
public String getShareProtocol()
{
return shareProtocol;
}
public void setShareProtocol(String shareProtocol)
{
this.shareProtocol = shareProtocol;
}
/**
* Expands the special ${localname} token within a host name using the resolved DNS name for the local host.
*
* @param hostName
* the host name
* @return the string
*/
public String subsituteHost(String hostName)
{
return hostName.replace(TOKEN_LOCAL_NAME, localName);
}
@Override
public String getSitePublicGroup()
{
return this.sitePublicGroup;
}
public void setSitePublicGroup(String sitePublicGroup)
{
this.sitePublicGroup = sitePublicGroup;
}
}