123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU 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 com.l2jserver.loginserver.mail;
- import java.io.BufferedInputStream;
- import java.io.File;
- import java.io.FileInputStream;
- import java.io.IOException;
- import java.util.Map;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import javax.xml.parsers.DocumentBuilderFactory;
- import javolution.util.FastMap;
- import org.w3c.dom.Document;
- import org.w3c.dom.Node;
- import com.l2jserver.Config;
- /**
- * @author mrTJO
- */
- public class MailSystem
- {
- private static final Logger _log = Logger.getLogger(MailSystem.class.getName());
- private final Map<String, MailContent> _mailData = new FastMap<String, MailContent>();
-
- public static MailSystem getInstance()
- {
- return SingletonHolder._instance;
- }
-
- public MailSystem()
- {
- loadMails();
- }
-
- public void sendMail(String account, String messageId, String... args)
- {
- BaseMail mail = new BaseMail(account, messageId, args);
- mail.run();
- }
-
- private void loadMails()
- {
- DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
- factory.setValidating(false);
- factory.setIgnoringComments(true);
- File file = new File(Config.DATAPACK_ROOT, "data/mail/MailList.xml");
- Document doc = null;
- if (file.exists())
- {
- try
- {
- doc = factory.newDocumentBuilder().parse(file);
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "Could not parse MailList.xml file: " + e.getMessage(), e);
- return;
- }
-
- Node n = doc.getFirstChild();
- File mailFile;
- for (Node d = n.getFirstChild(); d != null; d = d.getNextSibling())
- {
- if (d.getNodeName().equals("mail"))
- {
- String mailId = d.getAttributes().getNamedItem("id").getNodeValue();
- String subject = d.getAttributes().getNamedItem("subject").getNodeValue();
- String maFile = d.getAttributes().getNamedItem("file").getNodeValue();
-
- mailFile = new File(Config.DATAPACK_ROOT, "data/mail/" + maFile);
- try (FileInputStream fis = new FileInputStream(mailFile); BufferedInputStream bis = new BufferedInputStream(fis);)
- {
- int bytes = bis.available();
- byte[] raw = new byte[bytes];
-
- bis.read(raw);
- String html = new String(raw, "UTF-8");
- html = html.replaceAll("\r\n", "\n");
- html = html.replace("%servermail%", Config.EMAIL_SERVERINFO_ADDRESS);
- html = html.replace("%servername%", Config.EMAIL_SERVERINFO_NAME);
-
- _mailData.put(mailId, new MailContent(subject, html));
- }
- catch (IOException e)
- {
- _log.warning("IOException while reading " + maFile);
- }
- }
- }
- _log.info("eMail System Loaded");
- }
- else
- {
- _log.warning("Cannot load eMail System - Missing file MailList.xml");
- }
- }
-
- public class MailContent
- {
- private final String _subject;
- private final String _text;
-
- /**
- * @param subject
- * @param text
- */
- public MailContent(String subject, String text)
- {
- _subject = subject;
- _text = text;
- }
-
- public String getSubject()
- {
- return _subject;
- }
-
- public String getText()
- {
- return _text;
- }
- }
-
- public MailContent getMailContent(String mailId)
- {
- return _mailData.get(mailId);
- }
-
- private static class SingletonHolder
- {
- protected static final MailSystem _instance = new MailSystem();
- }
- }
|