Use new template engine.
[Sone.git] / src / main / java / net / pterodactylus / sone / text / FreenetLinkParser.java
1 /*
2  * Sone - FreenetLinkParser.java - Copyright © 2010 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.io.StringReader;
24 import java.net.MalformedURLException;
25 import java.util.logging.Level;
26 import java.util.logging.Logger;
27 import java.util.regex.Matcher;
28 import java.util.regex.Pattern;
29
30 import net.pterodactylus.util.logging.Logging;
31 import net.pterodactylus.util.template.TemplateContextFactory;
32 import net.pterodactylus.util.template.TemplateParser;
33 import freenet.keys.FreenetURI;
34
35 /**
36  * {@link Parser} implementation that can recognize Freenet URIs.
37  *
38  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
39  */
40 public class FreenetLinkParser implements Parser<FreenetLinkParserContext> {
41
42         /** The logger. */
43         private static final Logger logger = Logging.getLogger(FreenetLinkParser.class);
44
45         /** Pattern to detect whitespace. */
46         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]");
47
48         /**
49          * Enumeration for all recognized link types.
50          *
51          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
52          */
53         private enum LinkType {
54
55                 /** Link is a KSK. */
56                 KSK,
57
58                 /** Link is a CHK. */
59                 CHK,
60
61                 /** Link is an SSK. */
62                 SSK,
63
64                 /** Link is a USK. */
65                 USK,
66
67                 /** Link is HTTP. */
68                 HTTP,
69
70                 /** Link is HTTPS. */
71                 HTTPS;
72
73         }
74
75         /** The template factory. */
76         private final TemplateContextFactory templateContextFactory;
77
78         /**
79          * Creates a new freenet link parser.
80          *
81          * @param templateContextFactory
82          *            The template context factory
83          */
84         public FreenetLinkParser(TemplateContextFactory templateContextFactory) {
85                 this.templateContextFactory = templateContextFactory;
86         }
87
88         //
89         // PART METHODS
90         //
91
92         /**
93          * {@inheritDoc}
94          */
95         @Override
96         public Part parse(FreenetLinkParserContext context, Reader source) throws IOException {
97                 PartContainer parts = new PartContainer();
98                 BufferedReader bufferedReader = (source instanceof BufferedReader) ? (BufferedReader) source : new BufferedReader(source);
99                 String line;
100                 while ((line = bufferedReader.readLine()) != null) {
101                         line = line.trim() + "\n";
102                         while (line.length() > 0) {
103                                 int nextKsk = line.indexOf("KSK@");
104                                 int nextChk = line.indexOf("CHK@");
105                                 int nextSsk = line.indexOf("SSK@");
106                                 int nextUsk = line.indexOf("USK@");
107                                 int nextHttp = line.indexOf("http://");
108                                 int nextHttps = line.indexOf("https://");
109                                 if ((nextKsk == -1) && (nextChk == -1) && (nextSsk == -1) && (nextUsk == -1) && (nextHttp == -1) && (nextHttps == -1)) {
110                                         parts.add(createPlainTextPart(line));
111                                         break;
112                                 }
113                                 int next = Integer.MAX_VALUE;
114                                 LinkType linkType = null;
115                                 if ((nextKsk > -1) && (nextKsk < next)) {
116                                         next = nextKsk;
117                                         linkType = LinkType.KSK;
118                                 }
119                                 if ((nextChk > -1) && (nextChk < next)) {
120                                         next = nextChk;
121                                         linkType = LinkType.CHK;
122                                 }
123                                 if ((nextSsk > -1) && (nextSsk < next)) {
124                                         next = nextSsk;
125                                         linkType = LinkType.SSK;
126                                 }
127                                 if ((nextUsk > -1) && (nextUsk < next)) {
128                                         next = nextUsk;
129                                         linkType = LinkType.USK;
130                                 }
131                                 if ((nextHttp > -1) && (nextHttp < next)) {
132                                         next = nextHttp;
133                                         linkType = LinkType.HTTP;
134                                 }
135                                 if ((nextHttps > -1) && (nextHttps < next)) {
136                                         next = nextHttps;
137                                         linkType = LinkType.HTTPS;
138                                 }
139                                 if ((next >= 8) && (line.substring(next - 8, next).equals("freenet:"))) {
140                                         next -= 8;
141                                         line = line.substring(0, next) + line.substring(next + 8);
142                                 }
143                                 Matcher matcher = whitespacePattern.matcher(line);
144                                 int nextSpace = matcher.find(next) ? matcher.start() : line.length();
145                                 if (nextSpace > (next + 4)) {
146                                         parts.add(createPlainTextPart(line.substring(0, next)));
147                                         String link = line.substring(next, nextSpace);
148                                         String name = link;
149                                         logger.log(Level.FINER, "Found link: %s", link);
150                                         logger.log(Level.FINEST, "Next: %d, CHK: %d, SSK: %d, USK: %d", new Object[] { next, nextChk, nextSsk, nextUsk });
151
152                                         if ((linkType == LinkType.KSK) || (linkType == LinkType.CHK) || (linkType == LinkType.SSK) || (linkType == LinkType.USK)) {
153                                                 FreenetURI uri;
154                                                 if (name.indexOf('?') > -1) {
155                                                         name = name.substring(0, name.indexOf('?'));
156                                                 }
157                                                 if (name.endsWith("/")) {
158                                                         name = name.substring(0, name.length() - 1);
159                                                 }
160                                                 try {
161                                                         uri = new FreenetURI(name);
162                                                         name = uri.lastMetaString();
163                                                         if (name == null) {
164                                                                 name = uri.getDocName();
165                                                         }
166                                                         if (name == null) {
167                                                                 name = link.substring(0, Math.min(9, link.length()));
168                                                         }
169                                                         boolean fromPostingSone = ((linkType == LinkType.SSK) || (linkType == LinkType.USK)) && link.substring(4, Math.min(link.length(), 47)).equals(context.getPostingSone().getId());
170                                                         parts.add(fromPostingSone ? createTrustedFreenetLinkPart(link, name) : createFreenetLinkPart(link, name));
171                                                 } catch (MalformedURLException mue1) {
172                                                         /* not a valid link, insert as plain text. */
173                                                         parts.add(createPlainTextPart(link));
174                                                 } catch (NullPointerException npe1) {
175                                                         /* FreenetURI sometimes throws these, too. */
176                                                         parts.add(createPlainTextPart(link));
177                                                 } catch (ArrayIndexOutOfBoundsException aioobe1) {
178                                                         /* oh, and these, too. */
179                                                         parts.add(createPlainTextPart(link));
180                                                 }
181                                         } else if ((linkType == LinkType.HTTP) || (linkType == LinkType.HTTPS)) {
182                                                 name = link.substring(linkType == LinkType.HTTP ? 7 : 8);
183                                                 int firstSlash = name.indexOf('/');
184                                                 int lastSlash = name.lastIndexOf('/');
185                                                 if ((lastSlash - firstSlash) > 3) {
186                                                         name = name.substring(0, firstSlash + 1) + "…" + name.substring(lastSlash);
187                                                 }
188                                                 if (name.endsWith("/")) {
189                                                         name = name.substring(0, name.length() - 1);
190                                                 }
191                                                 if (((name.indexOf('/') > -1) && (name.indexOf('.') < name.lastIndexOf('.', name.indexOf('/'))) || ((name.indexOf('/') == -1) && (name.indexOf('.') < name.lastIndexOf('.')))) && name.startsWith("www.")) {
192                                                         name = name.substring(4);
193                                                 }
194                                                 if (name.indexOf('?') > -1) {
195                                                         name = name.substring(0, name.indexOf('?'));
196                                                 }
197                                                 link = "?_CHECKED_HTTP_=" + link;
198                                                 parts.add(createInternetLinkPart(link, name));
199                                         }
200                                         line = line.substring(nextSpace);
201                                 } else {
202                                         parts.add(createPlainTextPart(line.substring(0, next + 4)));
203                                         line = line.substring(next + 4);
204                                 }
205                         }
206                 }
207                 return parts;
208         }
209
210         //
211         // PRIVATE METHODS
212         //
213
214         /**
215          * Creates a new plain text part based on a template.
216          *
217          * @param text
218          *            The text to display
219          * @return The part that displays the given text
220          */
221         private Part createPlainTextPart(String text) {
222                 return new TemplatePart(templateContextFactory, TemplateParser.parse(new StringReader("<% text|html>"))).set("text", text);
223         }
224
225         /**
226          * Creates a new part based on a template that links to a site within the
227          * normal internet.
228          *
229          * @param link
230          *            The target of the link
231          * @param name
232          *            The name of the link
233          * @return The part that displays the link
234          */
235         private Part createInternetLinkPart(String link, String name) {
236                 return new TemplatePart(templateContextFactory, TemplateParser.parse(new StringReader("<a class=\"internet\" href=\"/<% link|html>\" title=\"<% link|html>\"><% name|html></a>"))).set("link", link).set("name", name);
237         }
238
239         /**
240          * Creates a new part based on a template that links to a site within
241          * freenet.
242          *
243          * @param link
244          *            The target of the link
245          * @param name
246          *            The name of the link
247          * @return The part that displays the link
248          */
249         private Part createFreenetLinkPart(String link, String name) {
250                 return new TemplatePart(templateContextFactory, TemplateParser.parse(new StringReader("<a class=\"freenet\" href=\"/<% link|html>\" title=\"<% link|html>\"><% name|html></a>"))).set("link", link).set("name", name);
251         }
252
253         /**
254          * Creates a new part based on a template that links to a page in the
255          * poster’s keyspace.
256          *
257          * @param link
258          *            The target of the link
259          * @param name
260          *            The name of the link
261          * @return The part that displays the link
262          */
263         private Part createTrustedFreenetLinkPart(String link, String name) {
264                 return new TemplatePart(templateContextFactory, TemplateParser.parse(new StringReader("<a class=\"freenet-trusted\" href=\"/<% link|html>\" title=\"<% link|html>\"><% name|html></a>"))).set("link", link).set("name", name);
265         }
266
267 }