TemplateConfig.java

/*
 * Copyright (C) 2003-2013 eXo Platform SAS.
 *
 * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see<http://www.gnu.org/licenses/>.
 */
package org.exoplatform.commons.api.notification.plugin.config;

import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

public class TemplateConfig {
  public static final String  DEFAULT_SRC_RESOURCE_BUNDLE_KEY = "locale.notification.template.Notification";
  
  public static final String  DEFAULT_SRC_RESOURCE_TEMPLATE_KEY = "war:/notification/templates";

  public static final String  SUBJECT_KEY              = "subject";

  public static final String  DIGEST_KEY               = "digest";

  public static final String  DIGEST_ONE_KEY           = "digest.one";

  public static final String  DIGEST_THREE_KEY         = "digest.three";

  public static final String  DIGEST_MORE_KEY          = "digest.more";

  public static final String  FOOTER_KEY               = "footer";

  private String              providerId;

  private String              bundlePath;

  private String              templatePath;

  private Map<String, String> keyMapping               = new HashMap<String, String>();

  public TemplateConfig() {
    bundlePath = DEFAULT_SRC_RESOURCE_BUNDLE_KEY;
  }

  public TemplateConfig(String providerId) {
    this();
    this.providerId = providerId;
  }

  /**
   * @return the providerId
   */
  public String getProviderId() {
    return providerId;
  }

  /**
   * @param providerId the providerId to set
   */
  public TemplateConfig setProviderId(String providerId) {
    this.providerId = providerId;
    return this;
  }

  /**
   * @return the bundlePath
   */
  public String getBundlePath() {
    return bundlePath;
  }

  /**
   * @param bundlePath the bundlePath to set
   */
  public void setBundlePath(String bundlePath) {
    this.bundlePath = bundlePath;
  }

  /**
   * @return the templatePath
   */
  public String getTemplatePath() {
    if(templatePath == null) {
      templatePath = new StringBuffer(DEFAULT_SRC_RESOURCE_TEMPLATE_KEY)
                                .append("/").append(providerId).append(".gtmpl").toString();
    }
    return templatePath;
  }

  /**
   * @param templatePath the templatePath to set
   */
  public void setTemplatePath(String templatePath) {
    this.templatePath = templatePath;
  }

  /**
   * @return the keyMapping
   */
  public Map<String, String> getKeyMapping() {
    return keyMapping;
  }

  /**
   * @param keyMapping the keyMapping to set
   */
  public void setKeyMapping(Map<String, String> keyMapping) {
    this.keyMapping = keyMapping;
  }

  public TemplateConfig addKeyMapping(String key, String value) {
    this.keyMapping.put(key, value);
    return this;
  }

  public String getKeyValue(String key, String defaultValue) {
    if (keyMapping.containsKey(key)) {
      return keyMapping.get(key);
    }
    return defaultValue;
  }

  @Override
  public boolean equals(Object obj) {
    if (obj instanceof TemplateConfig) {
      return ((TemplateConfig) obj).getProviderId().equals(this.getProviderId());
    }
    return false;
  }

  @Override
  public int hashCode() {
    return Objects.hash(providerId);
  }
}