Move memory album and image to default implementation.
[Sone.git] / src / main / java / net / pterodactylus / sone / text / SoneTextParser.java
1 /*
2  * Sone - SoneTextParser.java - Copyright © 2010–2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.text;
19
20 import java.io.BufferedReader;
21 import java.io.IOException;
22 import java.io.Reader;
23 import java.net.MalformedURLException;
24 import java.util.logging.Level;
25 import java.util.logging.Logger;
26 import java.util.regex.Matcher;
27 import java.util.regex.Pattern;
28
29 import net.pterodactylus.sone.data.Post;
30 import net.pterodactylus.sone.data.Sone;
31 import net.pterodactylus.sone.data.impl.DefaultSone;
32 import net.pterodactylus.sone.database.Database;
33 import net.pterodactylus.util.io.Closer;
34 import net.pterodactylus.util.logging.Logging;
35
36 import freenet.keys.FreenetURI;
37
38 import com.google.common.base.Optional;
39
40 /**
41  * {@link Parser} implementation that can recognize Freenet URIs.
42  *
43  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
44  */
45 public class SoneTextParser implements Parser<SoneTextParserContext> {
46
47         /** The logger. */
48         private static final Logger logger = Logging.getLogger(SoneTextParser.class);
49
50         /** Pattern to detect whitespace. */
51         private static final Pattern whitespacePattern = Pattern.compile("[\\u000a\u0020\u00a0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u200c\u200d\u202f\u205f\u2060\u2800\u3000]");
52
53         /**
54          * Enumeration for all recognized link types.
55          *
56          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
57          */
58         private enum LinkType {
59
60                 /** Link is a KSK. */
61                 KSK("KSK@"),
62
63                 /** Link is a CHK. */
64                 CHK("CHK@"),
65
66                 /** Link is an SSK. */
67                 SSK("SSK@"),
68
69                 /** Link is a USK. */
70                 USK("USK@"),
71
72                 /** Link is HTTP. */
73                 HTTP("http://"),
74
75                 /** Link is HTTPS. */
76                 HTTPS("https://"),
77
78                 /** Link is a Sone. */
79                 SONE("sone://"),
80
81                 /** Link is a post. */
82                 POST("post://");
83
84                 /** The scheme identifying this link type. */
85                 private final String scheme;
86
87                 /**
88                  * Creates a new link type identified by the given scheme.
89                  *
90                  * @param scheme
91                  *            The scheme of the link type
92                  */
93                 private LinkType(String scheme) {
94                         this.scheme = scheme;
95                 }
96
97                 /**
98                  * Returns the scheme of this link type.
99                  *
100                  * @return The scheme of this link type
101                  */
102                 public String getScheme() {
103                         return scheme;
104                 }
105
106         }
107
108         private final Database database;
109
110         /**
111          * Creates a new freenet link parser.
112          *
113          * @param database
114          */
115         public SoneTextParser(Database database) {
116                 this.database = database;
117         }
118
119         //
120         // PART METHODS
121         //
122
123         /**
124          * {@inheritDoc}
125          */
126         @Override
127         public Iterable<Part> parse(SoneTextParserContext context, Reader source) throws IOException {
128                 PartContainer parts = new PartContainer();
129                 BufferedReader bufferedReader = (source instanceof BufferedReader) ? (BufferedReader) source : new BufferedReader(source);
130                 try {
131                         String line;
132                         boolean lastLineEmpty = true;
133                         int emptyLines = 0;
134                         while ((line = bufferedReader.readLine()) != null) {
135                                 if (line.trim().length() == 0) {
136                                         if (lastLineEmpty) {
137                                                 continue;
138                                         }
139                                         parts.add(new PlainTextPart("\n"));
140                                         ++emptyLines;
141                                         lastLineEmpty = emptyLines == 2;
142                                         continue;
143                                 }
144                                 emptyLines = 0;
145                                 /*
146                                  * lineComplete tracks whether the block you are parsing is the
147                                  * first block of the line. this is important because sometimes
148                                  * you have to add an additional line break.
149                                  */
150                                 boolean lineComplete = true;
151                                 while (line.length() > 0) {
152                                         int nextKsk = line.indexOf("KSK@");
153                                         int nextChk = line.indexOf("CHK@");
154                                         int nextSsk = line.indexOf("SSK@");
155                                         int nextUsk = line.indexOf("USK@");
156                                         int nextHttp = line.indexOf("http://");
157                                         int nextHttps = line.indexOf("https://");
158                                         int nextSone = line.indexOf("sone://");
159                                         int nextPost = line.indexOf("post://");
160                                         if ((nextKsk == -1) && (nextChk == -1) && (nextSsk == -1) && (nextUsk == -1) && (nextHttp == -1) && (nextHttps == -1) && (nextSone == -1) && (nextPost == -1)) {
161                                                 if (lineComplete && !lastLineEmpty) {
162                                                         parts.add(new PlainTextPart("\n" + line));
163                                                 } else {
164                                                         parts.add(new PlainTextPart(line));
165                                                 }
166                                                 break;
167                                         }
168                                         int next = Integer.MAX_VALUE;
169                                         LinkType linkType = null;
170                                         if ((nextKsk > -1) && (nextKsk < next)) {
171                                                 next = nextKsk;
172                                                 linkType = LinkType.KSK;
173                                         }
174                                         if ((nextChk > -1) && (nextChk < next)) {
175                                                 next = nextChk;
176                                                 linkType = LinkType.CHK;
177                                         }
178                                         if ((nextSsk > -1) && (nextSsk < next)) {
179                                                 next = nextSsk;
180                                                 linkType = LinkType.SSK;
181                                         }
182                                         if ((nextUsk > -1) && (nextUsk < next)) {
183                                                 next = nextUsk;
184                                                 linkType = LinkType.USK;
185                                         }
186                                         if ((nextHttp > -1) && (nextHttp < next)) {
187                                                 next = nextHttp;
188                                                 linkType = LinkType.HTTP;
189                                         }
190                                         if ((nextHttps > -1) && (nextHttps < next)) {
191                                                 next = nextHttps;
192                                                 linkType = LinkType.HTTPS;
193                                         }
194                                         if ((nextSone > -1) && (nextSone < next)) {
195                                                 next = nextSone;
196                                                 linkType = LinkType.SONE;
197                                         }
198                                         if ((nextPost > -1) && (nextPost < next)) {
199                                                 next = nextPost;
200                                                 linkType = LinkType.POST;
201                                         }
202
203                                         /* cut off “freenet:” from before keys. */
204                                         if (((linkType == LinkType.KSK) || (linkType == LinkType.CHK) || (linkType == LinkType.SSK) || (linkType == LinkType.USK)) && (next >= 8) && (line.substring(next - 8, next).equals("freenet:"))) {
205                                                 next -= 8;
206                                                 line = line.substring(0, next) + line.substring(next + 8);
207                                         }
208
209                                         /* if there is text before the next item, write it out. */
210                                         if (lineComplete && !lastLineEmpty) {
211                                                 parts.add(new PlainTextPart("\n"));
212                                         }
213                                         if (next > 0) {
214                                                 parts.add(new PlainTextPart(line.substring(0, next)));
215                                                 line = line.substring(next);
216                                                 next = 0;
217                                         }
218                                         lineComplete = false;
219
220                                         Matcher matcher = whitespacePattern.matcher(line);
221                                         int nextSpace = matcher.find(0) ? matcher.start() : line.length();
222                                         String link = line.substring(0, nextSpace);
223                                         String name = link;
224                                         logger.log(Level.FINER, String.format("Found link: %s", link));
225                                         logger.log(Level.FINEST, String.format("CHK: %d, SSK: %d, USK: %d", nextChk, nextSsk, nextUsk));
226
227                                         /* if there is no text after the scheme, it’s not a link! */
228                                         if (link.equals(linkType.getScheme())) {
229                                                 parts.add(new PlainTextPart(linkType.getScheme()));
230                                                 line = line.substring(linkType.getScheme().length());
231                                                 continue;
232                                         }
233
234                                         if (linkType == LinkType.SONE) {
235                                                 if (line.length() >= (7 + 43)) {
236                                                         String soneId = line.substring(7, 50);
237                                                         Optional<Sone> sone = database.getSone(soneId);
238                                                         if (!sone.isPresent()) {
239                                                                 /*
240                                                                  * don’t use create=true above, we don’t want
241                                                                  * the empty shell.
242                                                                  */
243                                                                 sone = Optional.<Sone>of(new DefaultSone(database, soneId, false));
244                                                         }
245                                                         parts.add(new SonePart(sone.get()));
246                                                         line = line.substring(50);
247                                                 } else {
248                                                         parts.add(new PlainTextPart(line));
249                                                         line = "";
250                                                 }
251                                                 continue;
252                                         }
253                                         if (linkType == LinkType.POST) {
254                                                 if (line.length() >= (7 + 36)) {
255                                                         String postId = line.substring(7, 43);
256                                                         Optional<Post> post = database.getPost(postId);
257                                                         if (post.isPresent()) {
258                                                                 parts.add(new PostPart(post.get()));
259                                                         } else {
260                                                                 parts.add(new PlainTextPart(line.substring(0, 43)));
261                                                         }
262                                                         line = line.substring(43);
263                                                 } else {
264                                                         parts.add(new PlainTextPart(line));
265                                                         line = "";
266                                                 }
267                                                 continue;
268                                         }
269
270                                         if ((linkType == LinkType.KSK) || (linkType == LinkType.CHK) || (linkType == LinkType.SSK) || (linkType == LinkType.USK)) {
271                                                 FreenetURI uri;
272                                                 if (name.indexOf('?') > -1) {
273                                                         name = name.substring(0, name.indexOf('?'));
274                                                 }
275                                                 if (name.endsWith("/")) {
276                                                         name = name.substring(0, name.length() - 1);
277                                                 }
278                                                 try {
279                                                         uri = new FreenetURI(name);
280                                                         name = uri.lastMetaString();
281                                                         if (name == null) {
282                                                                 name = uri.getDocName();
283                                                         }
284                                                         if (name == null) {
285                                                                 name = link.substring(0, Math.min(9, link.length()));
286                                                         }
287                                                         boolean fromPostingSone = ((linkType == LinkType.SSK) || (linkType == LinkType.USK)) && (context != null) && (context.getPostingSone() != null) && link.substring(4, Math.min(link.length(), 47)).equals(context.getPostingSone().getId());
288                                                         parts.add(new FreenetLinkPart(link, name, fromPostingSone));
289                                                 } catch (MalformedURLException mue1) {
290                                                         /* not a valid link, insert as plain text. */
291                                                         parts.add(new PlainTextPart(link));
292                                                 } catch (NullPointerException npe1) {
293                                                         /* FreenetURI sometimes throws these, too. */
294                                                         parts.add(new PlainTextPart(link));
295                                                 } catch (ArrayIndexOutOfBoundsException aioobe1) {
296                                                         /* oh, and these, too. */
297                                                         parts.add(new PlainTextPart(link));
298                                                 }
299                                         } else if ((linkType == LinkType.HTTP) || (linkType == LinkType.HTTPS)) {
300                                                 name = link.substring(linkType == LinkType.HTTP ? 7 : 8);
301                                                 int firstSlash = name.indexOf('/');
302                                                 int lastSlash = name.lastIndexOf('/');
303                                                 if ((lastSlash - firstSlash) > 3) {
304                                                         name = name.substring(0, firstSlash + 1) + "…" + name.substring(lastSlash);
305                                                 }
306                                                 if (name.endsWith("/")) {
307                                                         name = name.substring(0, name.length() - 1);
308                                                 }
309                                                 if (((name.indexOf('/') > -1) && (name.indexOf('.') < name.lastIndexOf('.', name.indexOf('/'))) || ((name.indexOf('/') == -1) && (name.indexOf('.') < name.lastIndexOf('.')))) && name.startsWith("www.")) {
310                                                         name = name.substring(4);
311                                                 }
312                                                 if (name.indexOf('?') > -1) {
313                                                         name = name.substring(0, name.indexOf('?'));
314                                                 }
315                                                 parts.add(new LinkPart(link, name));
316                                         }
317                                         line = line.substring(nextSpace);
318                                 }
319                                 lastLineEmpty = false;
320                         }
321                 } finally {
322                         if (bufferedReader != source) {
323                                 Closer.close(bufferedReader);
324                         }
325                 }
326                 for (int partIndex = parts.size() - 1; partIndex >= 0; --partIndex) {
327                         Part part = parts.getPart(partIndex);
328                         if (!(part instanceof PlainTextPart) || !"\n".equals(((PlainTextPart) part).getText())) {
329                                 break;
330                         }
331                         parts.removePart(partIndex);
332                 }
333                 return parts;
334         }
335
336 }