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

org.opencms.notification.CmsPublishNotification 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.notification;

import org.opencms.file.CmsObject;
import org.opencms.file.CmsUser;
import org.opencms.i18n.CmsMessages;
import org.opencms.main.OpenCms;
import org.opencms.report.I_CmsReport;

import java.util.Iterator;
import java.util.List;

/**
 * Class to send a notification to an OpenCms user with a summary of warnings and
 * errors occurred while publishing the project.

* * @since 6.5.3 */ public class CmsPublishNotification extends A_CmsNotification { /** The path to the xml content with the subject, header and footer of the notification e-mail.

*/ public static final String NOTIFICATION_CONTENT = "notification/publish-notification"; /** The report containing the errors and warnings to put into the notification. */ private I_CmsReport m_report; /** * Creates a new CmsPublishNotification.

* * @param cms the cms object to use * @param receiver the notification receiver * @param report the report to write the output to */ public CmsPublishNotification(CmsObject cms, CmsUser receiver, I_CmsReport report) { super(cms, receiver); m_report = report; } /** * @see org.opencms.notification.A_CmsNotification#generateHtmlMsg() */ @Override protected String generateHtmlMsg() { StringBuffer buffer = new StringBuffer(); CmsMessages messages = Messages.get().getBundle(getLocale()); // add warnings to the notification if (m_report.hasWarning()) { buffer.append(""); buffer.append(messages.key(Messages.GUI_PUBLISH_WARNING_HEADER_0)); buffer.append("
\n"); appendList(buffer, m_report.getWarnings()); buffer.append("
\n"); } // add errors to the notification if (m_report.hasError()) { buffer.append(""); buffer.append(messages.key(Messages.GUI_PUBLISH_ERROR_HEADER_0)); buffer.append("
\n"); appendList(buffer, m_report.getErrors()); buffer.append("
\n"); } return buffer.toString(); } /** * @see org.opencms.notification.A_CmsNotification#getNotificationContent() */ @Override protected String getNotificationContent() { return OpenCms.getSystemInfo().getConfigFilePath(m_cms, NOTIFICATION_CONTENT); } /** * Appends the contents of a list to the buffer with every entry in a new line.

* * @param buffer The buffer were the entries of the list will be appended. * @param list The list with the entries to append to the buffer. */ private void appendList(StringBuffer buffer, List list) { Iterator iter = list.iterator(); while (iter.hasNext()) { Object entry = iter.next(); buffer.append(entry).append("
\n"); } } }