9692902ce9d79e3c0086f4b6ba1a78dd92400504
[mailer.git] / DOCS / tpl-validator.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/11/2008 *
4  * ===================                          Last change: 09/11/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : tpl-validator.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Only validates templates for correctness         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Validiert Templates auf korrektes HTML           *
12  * -------------------------------------------------------------------- *
13  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 if ($_SERVER['argc'] < 2) {
34         print "Usage: ".basename(__FILE__)." <template> [--write]\n\n";
35         print "Validates a template against the DOM model. Use --write with caution!\n";
36         exit;
37 } elseif (strpos($_SERVER['argv'][1], '/js/') > 0) {
38         // Not parsing JavaScript templates!
39         print "Warning: Not parsing JavaScript ".$_SERVER['argv'][1].".\n";
40         exit;
41 }
42
43 print "Validating template ".$_SERVER['argv'][1]."...\n";
44
45 $doc = new DOMDocument();
46 $doc->formatOutput = TRUE;
47 $doc->preserveWhiteSpace = FALSE;
48 $doc->encoding = 'UTF-8';
49 $doc->xmlVersion = '1.1';
50 $doc->loadHTMLFile($_SERVER['argv'][1]);
51
52 $data = $doc->saveHTML();
53 $newData = str_replace("<br>", "<br />\n", $data);
54 $newData = str_replace(PHP_EOL . PHP_EOL, PHP_EOL, $newData);
55
56 $array = explode(PHP_EOL, $newData);
57 array_shift($array);
58 array_shift($array);
59 unset($array[count($array) - 1]);
60 unset($array[count($array) - 1]);
61
62 $newData = implode(PHP_EOL, $array).PHP_EOL;
63
64 // Has a template changed?
65 if ($data != $newData) {
66         // Has changed
67         print "Template ".$_SERVER['argv'][1]." has maybe issues.\n";
68 } else {
69         // Has not changed
70         print "Template ".$_SERVER['argv'][1]." might be issue-free.\n";
71 }
72
73 if ((isset($_SERVER['arv'][2])) && (strtolower($_SERVER['arv'][2]) == '--write')) {
74         print "Writing document...\n";
75         file_put_contents($_SERVER['argv'][1], $data);
76 } // END - if
77
78 // [EOF]
79 ?>