All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencms.db.CmsLoginMessage Maven / Gradle / Ivy

Go to download

OpenCms is an enterprise-ready, easy to use website content management system based on Java and XML technology. Offering a complete set of features, OpenCms helps content managers worldwide to create and maintain beautiful websites fast and efficiently.

There is a newer version: 17.0
Show newest version
/*
 * This library is part of OpenCms -
 * the Open Source Content Management System
 *
 * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
 *
 * This library 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 library 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.
 *
 * For further information about Alkacon Software GmbH & Co. KG, please see the
 * company website: http://www.alkacon.com
 *
 * For further information about OpenCms, please see the
 * project website: http://www.opencms.org
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package org.opencms.db;

import org.opencms.main.CmsIllegalArgumentException;
import org.opencms.main.CmsRuntimeException;
import org.opencms.util.CmsStringUtil;

import java.util.GregorianCalendar;

/**
 * A message to display when a user logs in to the system.

* * @since 6.0.0 */ public class CmsLoginMessage { /** The default end time (if none has been set). This is December 31, 2039. */ public static final long DEFAULT_TIME_END = new GregorianCalendar(2039, 11, 31).getTimeInMillis(); /** The default start time (if none has been set). This is January 1, 2000. */ public static final long DEFAULT_TIME_START = new GregorianCalendar(2000, 0, 1).getTimeInMillis(); /** Indicates if the message is enabled or not. */ private boolean m_enabled; /** Indicates if the configuration of this message is finalized (frozen). */ private boolean m_frozen; /** Controls if logins are forbidden while this message is active. */ private boolean m_loginForbidden; /** The message to display on a login. */ private String m_message; /** The time when to finish displaying this message. */ private long m_timeEnd; /** The time when to start displaying this message. */ private long m_timeStart; /** * Creates a new login message with all default values.

*/ public CmsLoginMessage() { m_timeStart = DEFAULT_TIME_START; m_timeEnd = DEFAULT_TIME_END; } /** * Creates a new login message with the given parameters.

* * @param timeStart the time when to start displaying this message * @param timeEnd the time when to finish displaying this message * @param message the message to display * @param loginForbidden controls if logins are forbidden while this message is active */ public CmsLoginMessage(long timeStart, long timeEnd, String message, boolean loginForbidden) { setTimeStart(timeStart); setTimeEnd(timeEnd); m_enabled = true; setMessage(message); m_loginForbidden = loginForbidden; } /** * Creates a new login message with the given parameters.

* * @param message the message to display * @param loginForbidden controls if logins are forbidden while this message is active */ public CmsLoginMessage(String message, boolean loginForbidden) { this(DEFAULT_TIME_START, DEFAULT_TIME_END, message, loginForbidden); } /** * @see java.lang.Object#clone() */ @Override public Object clone() { CmsLoginMessage result = new CmsLoginMessage(); result.m_timeStart = m_timeStart; result.m_timeEnd = m_timeEnd; result.m_loginForbidden = m_loginForbidden; result.m_message = m_message; result.m_enabled = m_enabled; return result; } /** * Returns the message.

* * @return the message */ public String getMessage() { return m_message; } /** * Returns the time the message ends.

* * @return the time the message ends */ public long getTimeEnd() { return m_timeEnd; } /** * Returns the time the message starts.

* * @return the time the message starts */ public long getTimeStart() { return m_timeStart; } /** * Returns true if this message is currently active.

* * A message is active if it is enabled and * the current time is after the message start time and before the message end time.

* * @return true if this message is currently active */ public boolean isActive() { if (!m_enabled) { return false; } long currentTime = System.currentTimeMillis(); return ((currentTime > m_timeStart) && (currentTime < m_timeEnd)); } /** * Returns true if this login message is the enabled.

* * @return true if this login message is the enabled */ public boolean isEnabled() { return m_enabled; } /** * Returns true if logins are currently forbidden according to the settings * of this message.

* * This checks the time settings using {@link #isActive()} and * {@link #isEnabled()} as well as the * {@link #isLoginForbidden()} flag.

* * @return true if logins are currently forbidden according to the settings of this message */ public boolean isLoginCurrentlyForbidden() { return m_loginForbidden && isActive(); } /** * Returns true if logins are forbidden while this message is active.

* * @return true if logins are forbidden while this message is active */ public boolean isLoginForbidden() { return m_loginForbidden; } /** * Sets the enabled status of this message.

* * @param enabled the enabled status to set */ public void setEnabled(boolean enabled) { checkFrozen(); m_enabled = enabled; } /** * Sets the flag that controls if logins are forbidden while this message is active.

* * @param loginForbidden the flag to set */ public void setLoginForbidden(boolean loginForbidden) { checkFrozen(); m_loginForbidden = loginForbidden; } /** * Sets the message to display.

* * @param message the message to set */ public void setMessage(String message) { checkFrozen(); if (isEnabled() && CmsStringUtil.isEmptyOrWhitespaceOnly(message)) { throw new CmsIllegalArgumentException(Messages.get().container(Messages.ERR_LOGIN_MESSAGE_BAD_MESSAGE_0)); } m_message = message; } /** * Sets the time when to finish displaying this message.

* * @param timeEnd the time to set */ public void setTimeEnd(long timeEnd) { checkFrozen(); if (timeEnd < 0) { throw new CmsIllegalArgumentException( Messages.get().container(Messages.ERR_LOGIN_MESSAGE_BAD_TIME_1, new Long(timeEnd))); } if (timeEnd == 0) { timeEnd = DEFAULT_TIME_END; } if ((m_timeStart > 0) && (timeEnd <= m_timeStart)) { throw new CmsIllegalArgumentException(Messages.get().container(Messages.ERR_LOGIN_MESSAGE_BAD_END_TIME_0)); } m_timeEnd = timeEnd; } /** * Sets the time when to start displaying this message.

* * @param timeStart the time to set */ public void setTimeStart(long timeStart) { checkFrozen(); if (timeStart < 0) { throw new CmsIllegalArgumentException( Messages.get().container(Messages.ERR_LOGIN_MESSAGE_BAD_TIME_1, new Long(timeStart))); } if (timeStart == 0) { timeStart = DEFAULT_TIME_START; } m_timeStart = timeStart; } /** * Checks if this message is frozen.

* * @throws CmsRuntimeException in case the message is already frozen */ protected void checkFrozen() throws CmsRuntimeException { if (m_frozen) { throw new CmsRuntimeException(Messages.get().container(Messages.ERR_LOGIN_MESSAGE_FROZEN_0)); } } /** * Freezes the configuration of this login message object to prevent later changes.

*/ protected void setFrozen() { m_frozen = true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy