src/org/sonews/storage/DrupalMessage.java
author František Kučera <franta-hg@frantovo.cz>
Tue Oct 25 14:10:55 2011 +0200 (2011-10-25)
changeset 109 03cc47e9daee
parent 106 dc04a3c2c557
child 116 4ddc1020a154
permissions -rw-r--r--
Drupal: klient nemusí posílat In-Reply-To hlavičku, ale jen References, kde je víc messageID – vezmeme to poslední.
franta-hg@72
     1
/*
franta-hg@72
     2
 *   SONEWS News Server
franta-hg@72
     3
 *   see AUTHORS for the list of contributors
franta-hg@72
     4
 *
franta-hg@72
     5
 *   This program is free software: you can redistribute it and/or modify
franta-hg@72
     6
 *   it under the terms of the GNU General Public License as published by
franta-hg@72
     7
 *   the Free Software Foundation, either version 3 of the License, or
franta-hg@72
     8
 *   (at your option) any later version.
franta-hg@72
     9
 *
franta-hg@72
    10
 *   This program is distributed in the hope that it will be useful,
franta-hg@72
    11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@72
    12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
franta-hg@72
    13
 *   GNU General Public License for more details.
franta-hg@72
    14
 *
franta-hg@72
    15
 *   You should have received a copy of the GNU General Public License
franta-hg@72
    16
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
franta-hg@72
    17
 */
franta-hg@72
    18
package org.sonews.storage;
franta-hg@72
    19
franta-hg@75
    20
import java.io.BufferedReader;
franta-hg@102
    21
import java.io.ByteArrayInputStream;
franta-hg@72
    22
import java.io.ByteArrayOutputStream;
franta-hg@72
    23
import java.io.IOException;
franta-hg@75
    24
import java.io.InputStream;
franta-hg@75
    25
import java.io.InputStreamReader;
franta-hg@75
    26
import java.io.PrintStream;
franta-hg@74
    27
import java.io.StringReader;
franta-hg@74
    28
import java.io.StringWriter;
franta-hg@72
    29
import java.io.UnsupportedEncodingException;
franta-hg@72
    30
import java.sql.ResultSet;
franta-hg@72
    31
import java.sql.SQLException;
franta-hg@72
    32
import java.util.ArrayList;
franta-hg@109
    33
import java.util.Arrays;
franta-hg@72
    34
import java.util.Date;
franta-hg@72
    35
import java.util.Enumeration;
franta-hg@74
    36
import java.util.logging.Level;
franta-hg@74
    37
import java.util.logging.Logger;
franta-hg@109
    38
import java.util.regex.Matcher;
franta-hg@109
    39
import java.util.regex.Pattern;
franta-hg@72
    40
import javax.mail.Header;
franta-hg@72
    41
import javax.mail.MessagingException;
franta-hg@72
    42
import javax.mail.Multipart;
franta-hg@72
    43
import javax.mail.Session;
franta-hg@72
    44
import javax.mail.internet.InternetAddress;
franta-hg@72
    45
import javax.mail.internet.MimeBodyPart;
franta-hg@72
    46
import javax.mail.internet.MimeMessage;
franta-hg@72
    47
import javax.mail.internet.MimeMultipart;
franta-hg@104
    48
import javax.xml.parsers.DocumentBuilder;
franta-hg@104
    49
import javax.xml.parsers.DocumentBuilderFactory;
franta-hg@104
    50
import javax.xml.parsers.ParserConfigurationException;
franta-hg@74
    51
import javax.xml.transform.Transformer;
franta-hg@103
    52
import javax.xml.transform.TransformerException;
franta-hg@74
    53
import javax.xml.transform.TransformerFactory;
franta-hg@104
    54
import javax.xml.transform.dom.DOMSource;
franta-hg@74
    55
import javax.xml.transform.stream.StreamResult;
franta-hg@74
    56
import javax.xml.transform.stream.StreamSource;
franta-hg@102
    57
import org.sonews.daemon.NNTPConnection;
franta-hg@74
    58
import org.sonews.util.io.Resource;
franta-hg@104
    59
import org.w3c.dom.Document;
franta-hg@104
    60
import org.xml.sax.SAXException;
franta-hg@72
    61
franta-hg@72
    62
/**
franta-hg@72
    63
 * This is MimeMessage which enables custom Message-ID header
franta-hg@72
    64
 * (this header will not be overwritten by the default one like in MimeMessage).
franta-hg@72
    65
 * 
franta-hg@72
    66
 * Also add header and body separate serialization.
franta-hg@72
    67
 * 
franta-hg@72
    68
 * And can be deserialized from SQL ResultSet
franta-hg@72
    69
 * 
franta-hg@72
    70
 * @author František Kučera (frantovo.cz)
franta-hg@72
    71
 */
franta-hg@72
    72
public class DrupalMessage extends MimeMessage {
franta-hg@72
    73
franta-hg@74
    74
	private static final Logger log = Logger.getLogger(DrupalMessage.class.getName());
franta-hg@72
    75
	private static final String MESSAGE_ID_HEADER = "Message-ID";
franta-hg@72
    76
	private static final String CRLF = "\r\n";
franta-hg@72
    77
	public static final String CHARSET = "UTF-8";
franta-hg@72
    78
	private static final String XHTML_CONTENT_TYPE = "text/html; charset=" + CHARSET;
franta-hg@100
    79
	private static final String ZNAKČKA_KONCE_ŘÁDKU = "◆";
franta-hg@72
    80
	private String messageID;
franta-hg@102
    81
	private Long parentID;
franta-hg@102
    82
	private Long groupID;
franta-hg@104
    83
	private TransformerFactory transformerFactory;
franta-hg@104
    84
	private DocumentBuilderFactory documentBuilderFactory;
franta-hg@104
    85
franta-hg@104
    86
	/**
franta-hg@104
    87
	 * Initializes XML factories (Transformer, DocumentBuilder).
franta-hg@104
    88
	 */
franta-hg@104
    89
	private void initFactories() {
franta-hg@104
    90
		transformerFactory = TransformerFactory.newInstance();
franta-hg@104
    91
		documentBuilderFactory = DocumentBuilderFactory.newInstance();
franta-hg@104
    92
		/**
franta-hg@104
    93
		 * Komentáře nás nepotřebujeme 
franta-hg@104
    94
		 * (a museli bychom je brát v úvahu při dělení odstavců:
franta-hg@104
    95
		 * v současné verzi XSLT odstavcovače by nám případný komentář
franta-hg@104
    96
		 * rozdělil text na dva odstavce, přestože to má být odstavec jede).
franta-hg@104
    97
		 */
franta-hg@104
    98
		documentBuilderFactory.setIgnoringComments(true);
franta-hg@104
    99
	}
franta-hg@72
   100
franta-hg@72
   101
	/**
franta-hg@72
   102
	 * Constructs MIME message from SQL result.
franta-hg@72
   103
	 * @param rs ResultSet containing message data. No {@link ResultSet#next()} will be called, just values from current row will be read.
franta-hg@72
   104
	 * @param constructBody true if whole message should be constructed | false if we need only message headers (body will be dummy).
franta-hg@72
   105
	 */
franta-hg@104
   106
	public DrupalMessage(ResultSet rs, String myDomain, boolean constructBody) throws SQLException, UnsupportedEncodingException, MessagingException, TransformerException, IOException, ParserConfigurationException, SAXException {
franta-hg@72
   107
		super(Session.getDefaultInstance(System.getProperties()));
franta-hg@104
   108
		initFactories();
franta-hg@72
   109
franta-hg@102
   110
		groupID = rs.getLong("group_id");
franta-hg@102
   111
		addHeader("Message-id", constructMessageId(rs.getInt("id"), groupID, rs.getString("group_name"), myDomain));
franta-hg@72
   112
		addHeader("Newsgroups", rs.getString("group_name"));
franta-hg@74
   113
		setFrom(new InternetAddress(rs.getString("sender_email"), rs.getString("sender_name")));
franta-hg@72
   114
		setSubject(rs.getString("subject"));
franta-hg@72
   115
		setSentDate(new Date(rs.getLong("created")));
franta-hg@74
   116
franta-hg@102
   117
		parentID = rs.getLong("parent_id");
franta-hg@74
   118
		if (parentID > 0) {
franta-hg@72
   119
			String parentMessageID = constructMessageId(parentID, rs.getInt("group_id"), rs.getString("group_name"), myDomain);
franta-hg@72
   120
			addHeader("In-Reply-To", parentMessageID);
franta-hg@72
   121
			addHeader("References", parentMessageID);
franta-hg@72
   122
		}
franta-hg@72
   123
franta-hg@72
   124
		if (constructBody) {
franta-hg@72
   125
			Multipart multipart = new MimeMultipart("alternative");
franta-hg@72
   126
			setContent(multipart);
franta-hg@72
   127
franta-hg@82
   128
			/** XHTML part */
franta-hg@82
   129
			MimeBodyPart htmlPart = new MimeBodyPart();
franta-hg@103
   130
			String xhtmlText = readXhtmlText(
franta-hg@103
   131
					rs.getString("text"),
franta-hg@103
   132
					rs.getString("subject"),
franta-hg@103
   133
					rs.getInt("parent_id"),
franta-hg@103
   134
					rs.getString("urlBase"),
franta-hg@103
   135
					rs.getString("wwwRead"),
franta-hg@103
   136
					rs.getString("wwwPost"));
franta-hg@82
   137
			htmlPart.setContent(xhtmlText, XHTML_CONTENT_TYPE);
franta-hg@84
   138
franta-hg@74
   139
			/** Plain text part */
franta-hg@72
   140
			MimeBodyPart textPart = new MimeBodyPart();
franta-hg@106
   141
			String plainText = formatedToPlainText(xhtmlText);
franta-hg@89
   142
			textPart.setText(plainText);
franta-hg@89
   143
			//addHeader("Lines", String.valueOf(plainText.split("\n").length));
franta-hg@87
   144
franta-hg@87
   145
			/**
franta-hg@87
   146
			 * Thunderbirdu záleží, v jakém pořadí části jsou 
franta-hg@87
   147
			 * (když je prostý text druhý, html se nezobrazí),
franta-hg@87
   148
			 * KNode zobrazuje HTML správně, i když je na prvním místě.
franta-hg@87
   149
			 */
franta-hg@72
   150
			multipart.addBodyPart(textPart);
franta-hg@87
   151
			multipart.addBodyPart(htmlPart);
franta-hg@72
   152
		} else {
franta-hg@82
   153
			/** empty body, just headers */
franta-hg@72
   154
			setText("");
franta-hg@72
   155
		}
franta-hg@72
   156
	}
franta-hg@72
   157
franta-hg@102
   158
	/**
franta-hg@102
   159
	 * Constructs MIME message from article posted by user.
franta-hg@102
   160
	 * @param article article that came through NNTP.
franta-hg@102
   161
	 * @throws MessagingException 
franta-hg@102
   162
	 */
franta-hg@102
   163
	public DrupalMessage(Article article) throws MessagingException {
franta-hg@102
   164
		super(Session.getDefaultInstance(System.getProperties()), serializeArticle(article));
franta-hg@104
   165
		initFactories();
franta-hg@102
   166
franta-hg@109
   167
		String[] replyToHeaders = getHeader("In-Reply-To");
franta-hg@109
   168
		String[] referencesHeaders = getHeader("References");
franta-hg@109
   169
		String parentMessageID;
franta-hg@109
   170
		if (replyToHeaders != null && replyToHeaders.length == 1) {
franta-hg@109
   171
			parentMessageID = replyToHeaders[0];
franta-hg@109
   172
		} else if (referencesHeaders != null && referencesHeaders.length == 1) {
franta-hg@109
   173
			Pattern p = Pattern.compile("(\\s*<.*>)*\\s*(<.*>)");
franta-hg@109
   174
			Matcher m = p.matcher(referencesHeaders[0]);
franta-hg@109
   175
franta-hg@109
   176
			if (m.matches()) {
franta-hg@109
   177
				parentMessageID = m.group(2);
franta-hg@109
   178
			} else {
franta-hg@109
   179
				throw new MessagingException("Message posted by user had invalid References header: " + referencesHeaders[0]);
franta-hg@109
   180
			}
franta-hg@102
   181
		} else {
franta-hg@109
   182
			throw new MessagingException("Message posted by user must have exactly one In-Reply-To header. Reply-To headers: " + Arrays.toString(replyToHeaders) + " Referemces headers: " + Arrays.toString(referencesHeaders));
franta-hg@102
   183
		}
franta-hg@109
   184
franta-hg@109
   185
		parentID = parseArticleID(parentMessageID);
franta-hg@109
   186
		groupID = parseGroupID(parentMessageID);
franta-hg@102
   187
	}
franta-hg@102
   188
franta-hg@102
   189
	private static InputStream serializeArticle(Article a) {
franta-hg@102
   190
		byte articleHeaders[] = a.getHeaderSource().getBytes();
franta-hg@102
   191
		byte delimiter[] = (NNTPConnection.NEWLINE + NNTPConnection.NEWLINE).getBytes();
franta-hg@102
   192
		byte body[] = a.getBody();
franta-hg@102
   193
franta-hg@102
   194
		byte message[] = new byte[articleHeaders.length + delimiter.length + body.length];
franta-hg@102
   195
franta-hg@102
   196
		System.arraycopy(articleHeaders, 0, message, 0, articleHeaders.length);
franta-hg@102
   197
		System.arraycopy(delimiter, 0, message, articleHeaders.length, delimiter.length);
franta-hg@102
   198
		System.arraycopy(body, 0, message, articleHeaders.length + delimiter.length, body.length);
franta-hg@102
   199
franta-hg@102
   200
		return new ByteArrayInputStream(message);
franta-hg@102
   201
	}
franta-hg@102
   202
franta-hg@106
   203
	/**
franta-hg@106
   204
	 * @param xhtmlText well-formed XHTML
franta-hg@106
   205
	 * @return plain text representation of this formated text
franta-hg@106
   206
	 */
franta-hg@106
   207
	private String formatedToPlainText(String xhtmlText) {
franta-hg@89
   208
		try {
franta-hg@104
   209
			Transformer textTransformer = transformerFactory.newTransformer(new StreamSource(Resource.getAsStream("helpers/mimeTextPart.xsl")));
franta-hg@89
   210
franta-hg@89
   211
			StringReader input = new StringReader(xhtmlText);
franta-hg@89
   212
			StringWriter output = new StringWriter(xhtmlText.length());
franta-hg@89
   213
			textTransformer.transform(new StreamSource(input), new StreamResult(output));
franta-hg@89
   214
franta-hg@89
   215
			return output.toString();
franta-hg@89
   216
		} catch (Exception e) {
franta-hg@89
   217
			/**
franta-hg@89
   218
			 * TODO: lepší ošetření chyby
franta-hg@89
   219
			 */
franta-hg@89
   220
			log.log(Level.WARNING, "Error while transforming article to plain text", e);
franta-hg@106
   221
			return "Při transformaci příspěvku bohužel došlo k chybě.";
franta-hg@89
   222
		}
franta-hg@72
   223
	}
franta-hg@72
   224
franta-hg@104
   225
	private DOMSource readDOM(String xml) throws ParserConfigurationException, SAXException, IOException {
franta-hg@104
   226
		DocumentBuilder db = documentBuilderFactory.newDocumentBuilder();
franta-hg@104
   227
		Document d = db.parse(new ByteArrayInputStream(xml.getBytes("UTF-8")));
franta-hg@104
   228
		return new DOMSource(d);
franta-hg@104
   229
	}
franta-hg@104
   230
franta-hg@105
   231
	private String readXhtmlText(String sourceText, String subject, long parentId, String urlBase, String wwwRead, String wwwPost) throws TransformerException, IOException, ParserConfigurationException, SAXException {
franta-hg@72
   232
		/**
franta-hg@82
   233
		 * TODO: 
franta-hg@104
   234
		 *		- znovupoužívat XSL transformér (nejen v instanci)
franta-hg@82
   235
		 *		- používat cache, ukládat si vygenerované články
franta-hg@72
   236
		 */
franta-hg@105
   237
		String wrappedText = makeSimpleXHTML(sourceText);
franta-hg@103
   238
franta-hg@104
   239
		Transformer paragraphTransformer = transformerFactory.newTransformer(new StreamSource(Resource.getAsStream("helpers/mimeXhtmlPart-make-paragraphs.xsl")));
franta-hg@103
   240
		String paragraphedText;
franta-hg@103
   241
		boolean tidyWasUsed = false;
franta-hg@74
   242
		try {
franta-hg@105
   243
			StringWriter output = new StringWriter(2 * wrappedText.length());
franta-hg@105
   244
			paragraphTransformer.transform(readDOM(wrappedText), new StreamResult(output));
franta-hg@103
   245
			paragraphedText = output.toString();
franta-hg@103
   246
		} catch (Exception e) {
franta-hg@103
   247
			log.log(Level.FINER, "HTML input was shitty – Tidy had to be called.", e);
franta-hg@105
   248
			StringWriter output = new StringWriter(2 * wrappedText.length());
franta-hg@105
   249
			paragraphTransformer.transform(readDOM(tidyXhtml(wrappedText)), new StreamResult(output));
franta-hg@103
   250
			paragraphedText = output.toString();
franta-hg@103
   251
			tidyWasUsed = true;
franta-hg@103
   252
		}
franta-hg@75
   253
franta-hg@104
   254
		Transformer xhtmlTransformer = transformerFactory.newTransformer(new StreamSource(Resource.getAsStream("helpers/mimeXhtmlPart.xsl")));
franta-hg@103
   255
		xhtmlTransformer.setParameter("isRoot", (parentId == 0));
franta-hg@103
   256
		xhtmlTransformer.setParameter("title", subject);
franta-hg@103
   257
		xhtmlTransformer.setParameter("urlBase", urlBase);
franta-hg@103
   258
		xhtmlTransformer.setParameter("wwwRead", wwwRead);
franta-hg@103
   259
		xhtmlTransformer.setParameter("wwwPost", wwwPost);
franta-hg@103
   260
		xhtmlTransformer.setParameter("headComment", String.format("Drupal-NNTP bridge. Transformed: %1$tc. Tidy had to be used: %2$b", new Date(), tidyWasUsed));
franta-hg@105
   261
		StringReader paragraphedReader = new StringReader(paragraphedText);
franta-hg@105
   262
		StringWriter xhtmlWriter = new StringWriter(2 * paragraphedText.length());
franta-hg@105
   263
		xhtmlTransformer.transform(new StreamSource(paragraphedReader), new StreamResult(xhtmlWriter));
franta-hg@75
   264
franta-hg@105
   265
		return xhtmlWriter.toString();
franta-hg@72
   266
	}
franta-hg@72
   267
franta-hg@103
   268
	/**
franta-hg@103
   269
	 * Does not parse XML works just with text.
franta-hg@103
   270
	 * @param body XHTML fragment that should be put between &lt;body&gt; and &lt;/body&gt;
franta-hg@103
   271
	 * @return simple XHTML document (body wrapped in html and body tags)
franta-hg@103
   272
	 */
franta-hg@84
   273
	private static String makeSimpleXHTML(String body) {
franta-hg@84
   274
		return "<html xmlns=\"http://www.w3.org/1999/xhtml\"><body>" + body + "</body></html>";
franta-hg@84
   275
	}
franta-hg@84
   276
franta-hg@75
   277
	/**
franta-hg@103
   278
	 * Does not parse XML works just with text.
franta-hg@103
   279
	 * @param xhtml whole XHTML page
franta-hg@103
   280
	 * @return content between &lt;body&gt; and &lt;/body&gt; tags.
franta-hg@103
   281
	 */
franta-hg@103
   282
	private static String makeFragmentXHTML(String xhtml) {
franta-hg@103
   283
		final String startTag = "<body>";
franta-hg@103
   284
		final String endTag = "</body>";
franta-hg@103
   285
franta-hg@103
   286
		int start = xhtml.indexOf(startTag) + startTag.length();
franta-hg@103
   287
		int end = xhtml.lastIndexOf(endTag);
franta-hg@103
   288
franta-hg@103
   289
		return xhtml.substring(start, end);
franta-hg@103
   290
	}
franta-hg@103
   291
franta-hg@103
   292
	/**
franta-hg@75
   293
	 * TODO: refaktorovat, přesunout
franta-hg@75
   294
	 */
franta-hg@75
   295
	private static String tidyXhtml(String inputText) throws IOException {
franta-hg@89
   296
		/*
franta-hg@89
   297
		 * Viz https://sourceforge.net/tracker/index.php?func=detail&aid=3424437&group_id=27659&atid=390966
franta-hg@89
   298
		 *
franta-hg@89
   299
		 * TODO:
franta-hg@89
   300
		 *		- použít delší zástupný řetězec, ne jen jeden znak
franta-hg@89
   301
		 *		- umísťovat ho jen tam, kde už nějaký text je (ne mezi >\s*<)
franta-hg@89
   302
		 */
franta-hg@100
   303
		inputText = označKonceŘádků(inputText);
franta-hg@82
   304
franta-hg@75
   305
		Runtime r = Runtime.getRuntime();
franta-hg@82
   306
		Process p = r.exec(new String[]{"tidy", // http://tidy.sourceforge.net
franta-hg@82
   307
					"-asxml", // well formed XHTML
franta-hg@82
   308
					"-numeric", // číselné entity
franta-hg@82
   309
					"-utf8", // kódování
franta-hg@82
   310
					"--show-warnings", "false", // žádná varování nás nezajímají
franta-hg@82
   311
					"--show-errors", "0", // ani chyby
franta-hg@82
   312
					"--doctype", "omit", // doctype nepotřebujeme (doplníme si případně vlastní v XSLT)
franta-hg@82
   313
					"--logical-emphasis", "true", // em a strong místo i a b
franta-hg@82
   314
					"--literal-attributes", "true", // zachovat mezery a konce řádků v atributech
franta-hg@82
   315
					"--force-output", "true" // neznámé značky zahodíme, vložíme jen jejich obsah
franta-hg@82
   316
				});
franta-hg@75
   317
franta-hg@75
   318
		PrintStream vstupProcesu = new PrintStream(p.getOutputStream());
franta-hg@75
   319
		vstupProcesu.print(inputText);
franta-hg@75
   320
		vstupProcesu.close();
franta-hg@75
   321
franta-hg@75
   322
		String outputText = streamToString(p.getInputStream());
franta-hg@75
   323
franta-hg@100
   324
		outputText = vraťKonceŘádků(outputText);
franta-hg@82
   325
franta-hg@75
   326
		return outputText;
franta-hg@75
   327
	}
franta-hg@75
   328
franta-hg@100
   329
	private static String označKonceŘádků(String text) {
franta-hg@100
   330
		text = text.replaceAll(">\\s+<", "> <");
franta-hg@100
   331
		text = text.replaceAll("\\n", ZNAKČKA_KONCE_ŘÁDKU + "\n");
franta-hg@100
   332
		return text;
franta-hg@100
   333
	}
franta-hg@100
   334
franta-hg@100
   335
	private static String vraťKonceŘádků(String text) {
franta-hg@100
   336
		text = text.replaceAll(ZNAKČKA_KONCE_ŘÁDKU + "\\n", "\n");
franta-hg@100
   337
		text = text.replaceAll(ZNAKČKA_KONCE_ŘÁDKU, "\n");
franta-hg@100
   338
		return text;
franta-hg@100
   339
	}
franta-hg@100
   340
franta-hg@75
   341
	/**
franta-hg@75
   342
	 * TODO: refaktorovat, přesunout
franta-hg@75
   343
	 */
franta-hg@75
   344
	private static String streamToString(InputStream proud) throws IOException {
franta-hg@75
   345
		StringBuilder výsledek = new StringBuilder();
franta-hg@75
   346
		BufferedReader buf = new BufferedReader(new InputStreamReader(proud));
franta-hg@75
   347
		while (true) {
franta-hg@75
   348
			String radek = buf.readLine();
franta-hg@75
   349
			if (radek == null) {
franta-hg@75
   350
				break;
franta-hg@75
   351
			} else {
franta-hg@75
   352
				výsledek.append(radek);
franta-hg@75
   353
				výsledek.append("\n");
franta-hg@75
   354
			}
franta-hg@75
   355
		}
franta-hg@75
   356
		return výsledek.toString();
franta-hg@75
   357
	}
franta-hg@75
   358
franta-hg@102
   359
	public static String constructMessageId(long articleID, long groupID, String groupName, String domainName) {
franta-hg@72
   360
		StringBuilder sb = new StringBuilder();
franta-hg@72
   361
		sb.append("<");
franta-hg@72
   362
		sb.append(articleID);
franta-hg@72
   363
		sb.append("-");
franta-hg@72
   364
		sb.append(groupID);
franta-hg@72
   365
		sb.append("-");
franta-hg@72
   366
		sb.append(groupName);
franta-hg@72
   367
		sb.append("@");
franta-hg@72
   368
		sb.append(domainName);
franta-hg@72
   369
		sb.append(">");
franta-hg@72
   370
		return sb.toString();
franta-hg@72
   371
	}
franta-hg@72
   372
franta-hg@102
   373
	/**
franta-hg@102
   374
	 * @return article ID of parent of this message | or null, if this is root article and not reply to another one
franta-hg@102
   375
	 */
franta-hg@102
   376
	public Long getParentID() {
franta-hg@102
   377
		return parentID;
franta-hg@102
   378
	}
franta-hg@102
   379
franta-hg@102
   380
	/**
franta-hg@102
   381
	 * @return group ID of this message | or null, if this message is not reply to any other one – which is wrong because we have to know the group
franta-hg@102
   382
	 */
franta-hg@102
   383
	public Long getGroupID() {
franta-hg@102
   384
		return groupID;
franta-hg@102
   385
	}
franta-hg@102
   386
franta-hg@102
   387
	/**
franta-hg@102
   388
	 * 
franta-hg@102
   389
	 * @param messageID &lt;{0}-{1}-{2}@domain.tld&gt; where {0} is nntp_id and {1} is group_id and {2} is group_name
franta-hg@102
   390
	 * @return array where [0] = nntp_id and [1] = group_id and [2] = group_name or returns null if messageID is invalid
franta-hg@102
   391
	 */
franta-hg@102
   392
	private static String[] parseMessageID(String messageID) {
franta-hg@102
   393
		if (messageID.matches("<[0-9]+\\-[0-9]+\\-[a-z0-9\\.]+@.+>")) {
franta-hg@102
   394
			return messageID.substring(1).split("@")[0].split("\\-");
franta-hg@102
   395
		} else {
franta-hg@102
   396
			return null;
franta-hg@102
   397
		}
franta-hg@102
   398
	}
franta-hg@102
   399
franta-hg@102
   400
	public static Long parseArticleID(String messageID) {
franta-hg@102
   401
		String[] localPart = parseMessageID(messageID);
franta-hg@102
   402
		if (localPart == null) {
franta-hg@102
   403
			return null;
franta-hg@102
   404
		} else {
franta-hg@102
   405
			return Long.parseLong(localPart[0]);
franta-hg@102
   406
		}
franta-hg@102
   407
	}
franta-hg@102
   408
franta-hg@102
   409
	public static Long parseGroupID(String messageID) {
franta-hg@102
   410
		String[] localPart = parseMessageID(messageID);
franta-hg@102
   411
		if (localPart == null) {
franta-hg@102
   412
			return null;
franta-hg@102
   413
		} else {
franta-hg@102
   414
			return Long.parseLong(localPart[1]);
franta-hg@102
   415
			// If needed:
franta-hg@102
   416
			// parseGroupName() will be same as this method, just with:
franta-hg@102
   417
			// return localPart[2];
franta-hg@102
   418
		}
franta-hg@102
   419
	}
franta-hg@102
   420
franta-hg@72
   421
	@Override
franta-hg@72
   422
	public void setHeader(String name, String value) throws MessagingException {
franta-hg@72
   423
		super.setHeader(name, value);
franta-hg@72
   424
franta-hg@72
   425
		if (MESSAGE_ID_HEADER.equalsIgnoreCase(name)) {
franta-hg@72
   426
			messageID = value;
franta-hg@72
   427
		}
franta-hg@72
   428
	}
franta-hg@72
   429
franta-hg@72
   430
	@Override
franta-hg@72
   431
	public final void addHeader(String name, String value) throws MessagingException {
franta-hg@72
   432
		super.addHeader(name, value);
franta-hg@72
   433
franta-hg@72
   434
		if (MESSAGE_ID_HEADER.equalsIgnoreCase(name)) {
franta-hg@72
   435
			messageID = value;
franta-hg@72
   436
		}
franta-hg@72
   437
	}
franta-hg@72
   438
franta-hg@72
   439
	@Override
franta-hg@72
   440
	public void removeHeader(String name) throws MessagingException {
franta-hg@72
   441
		super.removeHeader(name);
franta-hg@72
   442
franta-hg@72
   443
		if (MESSAGE_ID_HEADER.equalsIgnoreCase(name)) {
franta-hg@72
   444
			messageID = null;
franta-hg@72
   445
		}
franta-hg@72
   446
	}
franta-hg@72
   447
franta-hg@72
   448
	public void setMessageID(String messageID) {
franta-hg@72
   449
		this.messageID = messageID;
franta-hg@72
   450
	}
franta-hg@72
   451
franta-hg@72
   452
	@Override
franta-hg@72
   453
	protected void updateMessageID() throws MessagingException {
franta-hg@72
   454
		if (messageID == null) {
franta-hg@72
   455
			super.updateMessageID();
franta-hg@72
   456
		} else {
franta-hg@72
   457
			setHeader(MESSAGE_ID_HEADER, messageID);
franta-hg@72
   458
		}
franta-hg@72
   459
	}
franta-hg@72
   460
franta-hg@72
   461
	/**
franta-hg@72
   462
	 * Call {@link #saveChanges()} before this method, if you want all headers including such ones like:
franta-hg@72
   463
	 * 
franta-hg@72
   464
	 * <pre>MIME-Version: 1.0
franta-hg@72
   465
	 *Content-Type: multipart/alternative;</pre>
franta-hg@72
   466
	 * 
franta-hg@72
   467
	 * @return serialized headers
franta-hg@72
   468
	 * @throws MessagingException if getAllHeaders() fails
franta-hg@72
   469
	 */
franta-hg@72
   470
	public String getHeaders() throws MessagingException {
franta-hg@72
   471
		StringBuilder sb = new StringBuilder();
franta-hg@72
   472
		for (Enumeration eh = getAllHeaderLines(); eh.hasMoreElements();) {
franta-hg@72
   473
			sb.append(eh.nextElement());
franta-hg@72
   474
			sb.append(CRLF);
franta-hg@72
   475
		}
franta-hg@72
   476
		return sb.toString();
franta-hg@72
   477
	}
franta-hg@72
   478
franta-hg@72
   479
	public byte[] getBody() throws IOException, MessagingException {
franta-hg@72
   480
		saveChanges();
franta-hg@72
   481
franta-hg@72
   482
		ArrayList<String> skipHeaders = new ArrayList<String>();
franta-hg@72
   483
		for (Enumeration eh = getAllHeaders(); eh.hasMoreElements();) {
franta-hg@72
   484
			Header h = (Header) eh.nextElement();
franta-hg@72
   485
			skipHeaders.add(h.getName());
franta-hg@72
   486
		}
franta-hg@72
   487
franta-hg@72
   488
		ByteArrayOutputStream baos = new ByteArrayOutputStream(1024);
franta-hg@72
   489
		writeTo(baos, skipHeaders.toArray(new String[skipHeaders.size()]));
franta-hg@72
   490
		return baos.toByteArray();
franta-hg@72
   491
	}
franta-hg@103
   492
franta-hg@103
   493
	/**
franta-hg@103
   494
	 * Transforms message content to valid XHTML and strips html and body tags.
franta-hg@103
   495
	 * When receiving message from user through NNTP 
franta-hg@103
   496
	 * this method is used to get text that should be saved into databse.
franta-hg@103
   497
	 * @return XHTML fragment – content between &lt;body&gt; and &lt;/body&gt; tags.
franta-hg@103
   498
	 */
franta-hg@103
   499
	public String getBodyXhtmlFragment() throws StorageBackendException {
franta-hg@103
   500
		/**
franta-hg@103
   501
		 * TODO: podporovat i zprávy přímo v HTML a multipart.
franta-hg@103
   502
		 */
franta-hg@103
   503
		try {
franta-hg@103
   504
			Object c = getContent();
franta-hg@103
   505
			if (isMimeType("text/plain") && c instanceof String) {
franta-hg@103
   506
				String xhtml = readXhtmlText(
franta-hg@103
   507
						(String) c,
franta-hg@103
   508
						getSubject(),
franta-hg@103
   509
						getParentID(),
franta-hg@103
   510
						null,
franta-hg@103
   511
						null,
franta-hg@103
   512
						null);
franta-hg@103
   513
				return makeFragmentXHTML(xhtml);
franta-hg@103
   514
			} else {
franta-hg@103
   515
				throw new StorageBackendException("Only text/plain messages are supported for now – post it as plain text please.");
franta-hg@103
   516
			}
franta-hg@103
   517
		} catch (Exception e) {
franta-hg@103
   518
			throw new StorageBackendException(e);
franta-hg@103
   519
		}
franta-hg@103
   520
	}
franta-hg@109
   521
franta-hg@106
   522
	public String getBodyPlainText() throws StorageBackendException {
franta-hg@106
   523
		/**
franta-hg@106
   524
		 * TODO: netransformovat XHTML 2x
franta-hg@106
   525
		 */
franta-hg@106
   526
		return formatedToPlainText(makeSimpleXHTML(getBodyXhtmlFragment()));
franta-hg@106
   527
	}
franta-hg@72
   528
}