mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
125781 rmunteanu: Merged 5.1.N (5.1.2) to 5.2.N (5.2.1) 125603 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2) 125484 slanglois: MNT-16155 Update source headers - remove old Copyrights from Java and JSP dource files git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@127808 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
283 lines
7.4 KiB
Java
283 lines
7.4 KiB
Java
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;
|
|
}
|
|
|
|
}
|