franta-hg@130: package cz.frantovo.nekurak.util;
franta-hg@130:
franta-hg@132: import cz.frantovo.nekurak.vyjimky.KomentarovaVyjimka;
franta-hg@132: import java.io.ByteArrayInputStream;
franta-hg@132: import java.net.URL;
franta-hg@132: import java.util.logging.Level;
franta-hg@132: import java.util.logging.Logger;
franta-hg@132: import javax.xml.XMLConstants;
franta-hg@132: import javax.xml.parsers.DocumentBuilder;
franta-hg@132: import javax.xml.parsers.DocumentBuilderFactory;
franta-hg@132: import javax.xml.validation.Schema;
franta-hg@132: import javax.xml.validation.SchemaFactory;
franta-hg@132: import org.w3c.dom.Document;
franta-hg@132: import org.xml.sax.ErrorHandler;
franta-hg@132: import org.xml.sax.SAXException;
franta-hg@132: import org.xml.sax.SAXParseException;
franta-hg@132:
franta-hg@130: /**
franta-hg@130: * Validátor komentářů
franta-hg@130: * @author fiki
franta-hg@130: */
franta-hg@130: public class Komentare {
franta-hg@130:
franta-hg@132: private static final Logger log = Logger.getLogger(Komentare.class.getSimpleName());
franta-hg@132:
franta-hg@130: /**
franta-hg@130: * Escapuje XML a doplní XHTML zalomení na konce řádků.
franta-hg@130: * @param komentar prostý text zadaný uživatelem
franta-hg@130: * @return XHTML komentář bez kořenového elementu
franta-hg@130: */
franta-hg@130: public static String upravProstyText(String komentar) {
franta-hg@130: komentar = escapujXML(komentar);
franta-hg@130: return "
" + komentar.replaceAll("\n", "
") + "
";
franta-hg@130: }
franta-hg@130:
franta-hg@130: /**
franta-hg@130: *
franta-hg@130: * @param komentar vstupní XHTML
franta-hg@130: * @return XHTML obalené kořenovým elementem
franta-hg@130: */
franta-hg@130: public static String obal(String komentar) {
franta-hg@130: return "" + komentar + "
";
franta-hg@130: }
franta-hg@130:
franta-hg@131: /**
franta-hg@131: * zkontroluje komentář oproti schématu
franta-hg@131: * @param komentar
franta-hg@131: * @return jestli komentář odpovídá
franta-hg@131: */
franta-hg@132: public static Document zkontroluj(String komentar) throws KomentarovaVyjimka {
franta-hg@132:
franta-hg@132:
franta-hg@132:
franta-hg@132:
franta-hg@132: try {
franta-hg@132: URL soubor = ClassLoader.getSystemResource("cz/frantovo/nekurak/util/komentář.xsd");
franta-hg@132: SchemaFactory tovarnaSchemat = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
franta-hg@132: Schema schema = tovarnaSchemat.newSchema(soubor);
franta-hg@132:
franta-hg@132: DocumentBuilderFactory tovarnaDB = DocumentBuilderFactory.newInstance();
franta-hg@132: tovarnaDB.setSchema(schema);
franta-hg@132:
franta-hg@132: DocumentBuilder db = tovarnaDB.newDocumentBuilder();
franta-hg@132: db.setErrorHandler(new ErrorHandler() {
franta-hg@132:
franta-hg@132: public void warning(SAXParseException e) throws SAXException {
franta-hg@132: throw e;
franta-hg@132: }
franta-hg@132:
franta-hg@132: public void error(SAXParseException e) throws SAXException {
franta-hg@132: throw e;
franta-hg@132: }
franta-hg@132:
franta-hg@132: public void fatalError(SAXParseException e) throws SAXException {
franta-hg@132: throw e;
franta-hg@132: }
franta-hg@132: });
franta-hg@132: Document dokument = db.parse(new ByteArrayInputStream(komentar.getBytes("UTF-8")));
franta-hg@132:
franta-hg@132: return dokument;
franta-hg@132: } catch (Exception e) {
franta-hg@132: throw new KomentarovaVyjimka("Neplatný komentář: " + komentar, e);
franta-hg@132: }
franta-hg@132:
franta-hg@132:
franta-hg@131: }
franta-hg@131:
franta-hg@130: private static String escapujXML(String str) {
franta-hg@130: return str.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">").replaceAll("\"", """).replaceAll("'", "'");
franta-hg@130:
franta-hg@130: }
franta-hg@130: }