PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.20
Booking for Appointments and Events Calendar – Amelia v1.2.20
2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / vendor / masterminds / html5 / src / HTML5.php
ameliabooking / vendor / masterminds / html5 / src Last commit date
HTML5 1 year ago HTML5.php 1 year ago
HTML5.php
247 lines
1 <?php
2
3 namespace Masterminds;
4
5 use Masterminds\HTML5\Parser\DOMTreeBuilder;
6 use Masterminds\HTML5\Parser\Scanner;
7 use Masterminds\HTML5\Parser\Tokenizer;
8 use Masterminds\HTML5\Serializer\OutputRules;
9 use Masterminds\HTML5\Serializer\Traverser;
10
11 /**
12 * This class offers convenience methods for parsing and serializing HTML5.
13 * It is roughly designed to mirror the \DOMDocument native class.
14 */
15 class HTML5
16 {
17 /**
18 * Global options for the parser and serializer.
19 *
20 * @var array
21 */
22 private $defaultOptions = array(
23 // Whether the serializer should aggressively encode all characters as entities.
24 'encode_entities' => false,
25
26 // Prevents the parser from automatically assigning the HTML5 namespace to the DOM document.
27 'disable_html_ns' => false,
28 );
29
30 protected $errors = array();
31
32 public function __construct(array $defaultOptions = array())
33 {
34 $this->defaultOptions = array_merge($this->defaultOptions, $defaultOptions);
35 }
36
37 /**
38 * Get the current default options.
39 *
40 * @return array
41 */
42 public function getOptions()
43 {
44 return $this->defaultOptions;
45 }
46
47 /**
48 * Load and parse an HTML file.
49 *
50 * This will apply the HTML5 parser, which is tolerant of many
51 * varieties of HTML, including XHTML 1, HTML 4, and well-formed HTML
52 * 3. Note that in these cases, not all of the old data will be
53 * preserved. For example, XHTML's XML declaration will be removed.
54 *
55 * The rules governing parsing are set out in the HTML 5 spec.
56 *
57 * @param string|resource $file The path to the file to parse. If this is a resource, it is
58 * assumed to be an open stream whose pointer is set to the first
59 * byte of input.
60 * @param array $options Configuration options when parsing the HTML.
61 *
62 * @return \DOMDocument A DOM document. These object type is defined by the libxml
63 * library, and should have been included with your version of PHP.
64 */
65 public function load($file, array $options = array())
66 {
67 // Handle the case where file is a resource.
68 if (is_resource($file)) {
69 return $this->parse(stream_get_contents($file), $options);
70 }
71
72 return $this->parse(file_get_contents($file), $options);
73 }
74
75 /**
76 * Parse a HTML Document from a string.
77 *
78 * Take a string of HTML 5 (or earlier) and parse it into a
79 * DOMDocument.
80 *
81 * @param string $string A html5 document as a string.
82 * @param array $options Configuration options when parsing the HTML.
83 *
84 * @return \DOMDocument A DOM document. DOM is part of libxml, which is included with
85 * almost all distribtions of PHP.
86 */
87 public function loadHTML($string, array $options = array())
88 {
89 return $this->parse($string, $options);
90 }
91
92 /**
93 * Convenience function to load an HTML file.
94 *
95 * This is here to provide backwards compatibility with the
96 * PHP DOM implementation. It simply calls load().
97 *
98 * @param string $file The path to the file to parse. If this is a resource, it is
99 * assumed to be an open stream whose pointer is set to the first
100 * byte of input.
101 * @param array $options Configuration options when parsing the HTML.
102 *
103 * @return \DOMDocument A DOM document. These object type is defined by the libxml
104 * library, and should have been included with your version of PHP.
105 */
106 public function loadHTMLFile($file, array $options = array())
107 {
108 return $this->load($file, $options);
109 }
110
111 /**
112 * Parse a HTML fragment from a string.
113 *
114 * @param string $string the HTML5 fragment as a string
115 * @param array $options Configuration options when parsing the HTML
116 *
117 * @return \DOMDocumentFragment A DOM fragment. The DOM is part of libxml, which is included with
118 * almost all distributions of PHP.
119 */
120 public function loadHTMLFragment($string, array $options = array())
121 {
122 return $this->parseFragment($string, $options);
123 }
124
125 /**
126 * Return all errors encountered into parsing phase.
127 *
128 * @return array
129 */
130 public function getErrors()
131 {
132 return $this->errors;
133 }
134
135 /**
136 * Return true it some errors were encountered into parsing phase.
137 *
138 * @return bool
139 */
140 public function hasErrors()
141 {
142 return count($this->errors) > 0;
143 }
144
145 /**
146 * Parse an input string.
147 *
148 * @param string $input
149 * @param array $options
150 *
151 * @return \DOMDocument
152 */
153 public function parse($input, array $options = array())
154 {
155 $this->errors = array();
156 $options = array_merge($this->defaultOptions, $options);
157 $events = new DOMTreeBuilder(false, $options);
158 $scanner = new Scanner($input, !empty($options['encoding']) ? $options['encoding'] : 'UTF-8');
159 $parser = new Tokenizer($scanner, $events, !empty($options['xmlNamespaces']) ? Tokenizer::CONFORMANT_XML : Tokenizer::CONFORMANT_HTML);
160
161 $parser->parse();
162 $this->errors = $events->getErrors();
163
164 return $events->document();
165 }
166
167 /**
168 * Parse an input stream where the stream is a fragment.
169 *
170 * Lower-level loading function. This requires an input stream instead
171 * of a string, file, or resource.
172 *
173 * @param string $input The input data to parse in the form of a string.
174 * @param array $options An array of options.
175 *
176 * @return \DOMDocumentFragment
177 */
178 public function parseFragment($input, array $options = array())
179 {
180 $options = array_merge($this->defaultOptions, $options);
181 $events = new DOMTreeBuilder(true, $options);
182 $scanner = new Scanner($input, !empty($options['encoding']) ? $options['encoding'] : 'UTF-8');
183 $parser = new Tokenizer($scanner, $events, !empty($options['xmlNamespaces']) ? Tokenizer::CONFORMANT_XML : Tokenizer::CONFORMANT_HTML);
184
185 $parser->parse();
186 $this->errors = $events->getErrors();
187
188 return $events->fragment();
189 }
190
191 /**
192 * Save a DOM into a given file as HTML5.
193 *
194 * @param mixed $dom The DOM to be serialized.
195 * @param string|resource $file The filename to be written or resource to write to.
196 * @param array $options Configuration options when serializing the DOM. These include:
197 * - encode_entities: Text written to the output is escaped by default and not all
198 * entities are encoded. If this is set to true all entities will be encoded.
199 * Defaults to false.
200 */
201 public function save($dom, $file, $options = array())
202 {
203 $close = true;
204 if (is_resource($file)) {
205 $stream = $file;
206 $close = false;
207 } else {
208 $stream = fopen($file, 'wb');
209 }
210 $options = array_merge($this->defaultOptions, $options);
211 $rules = new OutputRules($stream, $options);
212 $trav = new Traverser($dom, $stream, $rules, $options);
213
214 $trav->walk();
215 /*
216 * release the traverser to avoid cyclic references and allow PHP to free memory without waiting for gc_collect_cycles
217 */
218 $rules->unsetTraverser();
219 if ($close) {
220 fclose($stream);
221 }
222 }
223
224 /**
225 * Convert a DOM into an HTML5 string.
226 *
227 * @param mixed $dom The DOM to be serialized.
228 * @param array $options Configuration options when serializing the DOM. These include:
229 * - encode_entities: Text written to the output is escaped by default and not all
230 * entities are encoded. If this is set to true all entities will be encoded.
231 * Defaults to false.
232 *
233 * @return string A HTML5 documented generated from the DOM.
234 */
235 public function saveHTML($dom, $options = array())
236 {
237 $stream = fopen('php://temp', 'wb');
238 $this->save($dom, $stream, array_merge($this->defaultOptions, $options));
239
240 $html = stream_get_contents($stream, -1, 0);
241
242 fclose($stream);
243
244 return $html;
245 }
246 }
247