summaryrefslogtreecommitdiffstats
path: root/parsers
diff options
context:
space:
mode:
Diffstat (limited to 'parsers')
-rw-r--r--parsers/Audio.java52
-rw-r--r--parsers/ParserList.java1
2 files changed, 53 insertions, 0 deletions
diff --git a/parsers/Audio.java b/parsers/Audio.java
new file mode 100644
index 0000000..78d08a5
--- /dev/null
+++ b/parsers/Audio.java
@@ -0,0 +1,52 @@
+/*+
+ * Copyright 2012 rsiddharth
+ * Email: <rsiddharth@ninthfloor.org>
+ *
+ * This file is part of Scruf.
+ *
+ * Scruf 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 scruf.parsers;
+
+import java.util.regex.*;
+
+public class Audio implements Parser {
+ private Pattern pattern;
+ private Matcher matcher;
+ private StringBuffer sbuffer;
+ private String replacement;
+ public Audio() {
+ pattern = Pattern.compile("\\{\\{audio\\:(.+?\\.(ogg|ogv))\\}\\}",
+ Pattern.DOTALL);
+ replacement = "<audio controls=\"controls\">"+
+ "\n<source src=\"$1\" type=\"audio/ogg\">"+
+ "\n<p>[ No support for HTML5 audio tag for Ogg audio."+
+ "<a href=\"$1\"> Download it</a>. ]</p>"+
+ "</audio>";
+ sbuffer = new StringBuffer();
+ }
+ public String parse(String fileContent) {
+ matcher = pattern.matcher(fileContent);
+ // clear the buffer
+ sbuffer.delete(0,sbuffer.length());
+ while(matcher.find()) {
+ matcher.appendReplacement(sbuffer,replacement);
+ }
+ matcher.appendTail(sbuffer);
+
+ return sbuffer.toString();
+ }
+}
diff --git a/parsers/ParserList.java b/parsers/ParserList.java
index 8691cdd..8db7a04 100644
--- a/parsers/ParserList.java
+++ b/parsers/ParserList.java
@@ -36,6 +36,7 @@ public class ParserList {
parsers.add(new Headings());
parsers.add(new Links());
parsers.add(new Images());
+ parsers.add(new Audio());
parsers.add(new Footer());
parsers.add(new Paragraphs());
parsers.add(new Source());