summaryrefslogtreecommitdiffstats
path: root/parsers/Images.java
blob: 803537cc75e11d6c3b4186427fb486f818065ac9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package scruf.parsers;

import java.util.regex.*;

public class Images implements Parser {
    // set of strings to build the img tag
    private String openTag = "<img src=\"$1\" alt=\"$";
    private String closeTag = " />";
    public String parse(String fileContent) {
	Pattern pattern = Pattern.compile("\\{\\{(.+?\\.(png|jpg))(\\|(.+?))?\\}\\}", Pattern.DOTALL);
	Matcher matcher = pattern.matcher(fileContent);
	StringBuffer sbuffer = new StringBuffer();
	StringBuilder replacementString =new StringBuilder();
	while(matcher.find()) {
	    // empty the builder.
	    replacementString.delete(0,replacementString.length());
	    // add the _img_ tag
	    replacementString.append(openTag);
	    // if the "title" is given add to the _img_ tag.
	    if(matcher.group(3)!=null) {
		replacementString.append("4\" title=\"$4\"");
	    }
	    else {
		replacementString.append("1\"");
	    }
	    // close the _img_ tag.
	    replacementString.append(closeTag);
	    matcher.appendReplacement(sbuffer,replacementString.toString());
	}
	matcher.appendTail(sbuffer);
	return sbuffer.toString();
    }
}