third_party
4 years ago
IQuery.php
4 years ago
LICENSE
4 years ago
gan_formatter.php
4 years ago
gan_node_html.php
4 years ago
gan_parser_html.php
4 years ago
gan_selector_html.php
4 years ago
gan_tokenizer.php
4 years ago
gan_xml2array.php
4 years ago
ganon.php
4 years ago
index.php
4 years ago
pQuery.php
4 years ago
pQuery.php
285 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @author Niels A.D. |
| 4 | * @author Todd Burry <todd@vanillaforums.com> |
| 5 | * @copyright 2010 Niels A.D., 2014 Todd Burry |
| 6 | * @license http://opensource.org/licenses/LGPL-2.1 LGPL-2.1 |
| 7 | * @package pQuery |
| 8 | */ |
| 9 | |
| 10 | namespace MailPoetVendor\pQuery; |
| 11 | |
| 12 | if (!defined('ABSPATH')) exit; |
| 13 | |
| 14 | |
| 15 | |
| 16 | /** |
| 17 | * A jQuery-like object for php. |
| 18 | */ |
| 19 | class pQuery implements \ArrayAccess, \IteratorAggregate, IQuery { |
| 20 | /// Properties /// |
| 21 | |
| 22 | /** |
| 23 | * @var IQuery[] |
| 24 | */ |
| 25 | protected $nodes = array(); |
| 26 | |
| 27 | /// Methods /// |
| 28 | |
| 29 | public function __construct($nodes = array()) { |
| 30 | $this->nodes = $nodes; |
| 31 | } |
| 32 | |
| 33 | public function addClass($classname) { |
| 34 | foreach ($this->nodes as $node) { |
| 35 | $node->addClass($classname); |
| 36 | } |
| 37 | return $this; |
| 38 | } |
| 39 | |
| 40 | public function after($content) { |
| 41 | foreach ($this->nodes as $node) { |
| 42 | $node->after($content); |
| 43 | } |
| 44 | return $this; |
| 45 | } |
| 46 | |
| 47 | public function append($content) { |
| 48 | foreach ($this->nodes as $node) { |
| 49 | $node->append($content); |
| 50 | } |
| 51 | return $this; |
| 52 | } |
| 53 | |
| 54 | public function attr($name, $value = null) { |
| 55 | if (empty($this->nodes) && $value === null) |
| 56 | return ''; |
| 57 | |
| 58 | foreach ($this->nodes as $node) { |
| 59 | if ($value === null) |
| 60 | return $node->attr($name); |
| 61 | $node->attr($name, $value); |
| 62 | } |
| 63 | return $this; |
| 64 | } |
| 65 | |
| 66 | public function before($content) { |
| 67 | foreach ($this->nodes as $node) { |
| 68 | $node->before($content); |
| 69 | } |
| 70 | return $this; |
| 71 | } |
| 72 | |
| 73 | public function clear() { |
| 74 | foreach ($this->nodes as $node) { |
| 75 | $node->clear(); |
| 76 | } |
| 77 | return $this; |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Get the count of matched elements. |
| 82 | * |
| 83 | * @return int Returns the count of matched elements. |
| 84 | */ |
| 85 | public function count(): int { |
| 86 | return count($this->nodes); |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Format/beautify a DOM. |
| 91 | * |
| 92 | * @param DomNode $dom The dom to format. |
| 93 | * @param array $options Extra formatting options. See {@link HtmlFormatter::$options}. |
| 94 | * @return bool Returns `true` on sucess and `false` on failure. |
| 95 | */ |
| 96 | // public static function format($dom, $options = array()) { |
| 97 | // $formatter = new pQuery\HtmlFormatter($options); |
| 98 | // return $formatter->format($dom); |
| 99 | // } |
| 100 | |
| 101 | public function getIterator(): \ArrayIterator { |
| 102 | return new \ArrayIterator($this->nodes); |
| 103 | } |
| 104 | |
| 105 | public function hasClass($classname) { |
| 106 | foreach ($this->nodes as $node) { |
| 107 | if ($node->hasClass($classname)) |
| 108 | return true; |
| 109 | } |
| 110 | return false; |
| 111 | } |
| 112 | |
| 113 | public function html($value = null) { |
| 114 | if (empty($this->nodes) && $value === null) |
| 115 | return ''; |
| 116 | |
| 117 | foreach ($this->nodes as $node) { |
| 118 | if ($value === null) |
| 119 | return $node->html(); |
| 120 | $node->html($value); |
| 121 | } |
| 122 | return $this; |
| 123 | } |
| 124 | |
| 125 | public function offsetExists($offset): bool { |
| 126 | return isset($this->nodes[$offset]); |
| 127 | } |
| 128 | |
| 129 | #[\ReturnTypeWillChange] |
| 130 | public function offsetGet($offset) { |
| 131 | return isset($this->nodes[$offset]) ? $this->nodes[$offset] : null; |
| 132 | } |
| 133 | |
| 134 | public function offsetSet($offset, $value): void { |
| 135 | |
| 136 | if (is_null($offset) || !isset($this->nodes[$offset])) { |
| 137 | throw new \BadMethodCallException("You are not allowed to add new nodes to the pQuery object."); |
| 138 | } else { |
| 139 | $this->nodes[$offset]->replaceWith($value); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | public function offsetUnset($offset): void { |
| 144 | if (isset($this->nodes[$offset])) { |
| 145 | $this->nodes[$offset]->remove(); |
| 146 | unset($this->nodes[$offset]); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Query a file or url. |
| 152 | * |
| 153 | * @param string $path The path to the url. |
| 154 | * @param resource $context A context suitable to be passed into {@link file_get_contents} |
| 155 | * @return DomNode Returns the root dom node for the html file. |
| 156 | */ |
| 157 | public static function parseFile($path, $context = null) { |
| 158 | $html_str = file_get_contents($path, false, $context); |
| 159 | return static::parseStr($html_str); |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * Query a string of html. |
| 164 | * |
| 165 | * @param string $html |
| 166 | * @return DomNode Returns the root dom node for the html string. |
| 167 | */ |
| 168 | public static function parseStr($html) { |
| 169 | $parser = new Html5Parser($html); |
| 170 | return $parser->root; |
| 171 | } |
| 172 | |
| 173 | public function prepend($content = null) { |
| 174 | foreach ($this->nodes as $node) { |
| 175 | $node->prepend($content); |
| 176 | } |
| 177 | return $this; |
| 178 | } |
| 179 | |
| 180 | public function prop($name, $value = null) { |
| 181 | if (empty($this->nodes) && $value === null) |
| 182 | return ''; |
| 183 | |
| 184 | foreach ($this->nodes as $node) { |
| 185 | if ($value === null) |
| 186 | return $node->prop($name); |
| 187 | $node->prop($name, $value); |
| 188 | } |
| 189 | return $this; |
| 190 | } |
| 191 | |
| 192 | public function remove($selector = null) { |
| 193 | foreach ($this->nodes as $node) { |
| 194 | $node->remove($selector); |
| 195 | } |
| 196 | if ($selector === null) |
| 197 | $this->nodes = array(); |
| 198 | |
| 199 | return $this; |
| 200 | } |
| 201 | |
| 202 | public function removeAttr($name) { |
| 203 | foreach ($this->nodes as $node) { |
| 204 | $node->removeAttr($name); |
| 205 | } |
| 206 | return $this; |
| 207 | } |
| 208 | |
| 209 | public function removeClass($classname) { |
| 210 | foreach ($this->nodes as $node) { |
| 211 | $node->removeClass($classname); |
| 212 | } |
| 213 | return $this; |
| 214 | } |
| 215 | |
| 216 | public function replaceWith($content) { |
| 217 | foreach ($this->nodes as &$node) { |
| 218 | $node = $node->replaceWith($content); |
| 219 | } |
| 220 | return $this; |
| 221 | } |
| 222 | |
| 223 | public function tagName($value = null) { |
| 224 | foreach ($this->nodes as $node) { |
| 225 | if ($value === null) |
| 226 | return $node->tagName(); |
| 227 | $node->tagName($value); |
| 228 | } |
| 229 | return $this; |
| 230 | } |
| 231 | |
| 232 | public function text($value = null) { |
| 233 | if (empty($this->nodes) && $value === null) |
| 234 | return ''; |
| 235 | |
| 236 | foreach ($this->nodes as $node) { |
| 237 | if ($value === null) |
| 238 | return $node->text(); |
| 239 | $node->text($value); |
| 240 | } |
| 241 | return $this; |
| 242 | } |
| 243 | |
| 244 | public function toggleClass($classname, $switch = null) { |
| 245 | foreach ($this->nodes as $node) { |
| 246 | $node->toggleClass($classname, $switch); |
| 247 | } |
| 248 | |
| 249 | return $this; |
| 250 | } |
| 251 | |
| 252 | public function unwrap() { |
| 253 | foreach ($this->nodes as $node) { |
| 254 | $node->unwrap(); |
| 255 | } |
| 256 | return $this; |
| 257 | } |
| 258 | |
| 259 | public function val($value = null) { |
| 260 | if (empty($this->nodes) && $value === null) |
| 261 | return ''; |
| 262 | |
| 263 | foreach ($this->nodes as $node) { |
| 264 | if ($value === null) |
| 265 | return $node->val(); |
| 266 | $node->val($value); |
| 267 | } |
| 268 | return $this; |
| 269 | } |
| 270 | |
| 271 | public function wrap($wrapping_element) { |
| 272 | foreach ($this->nodes as $node) { |
| 273 | $node->wrap($wrapping_element); |
| 274 | } |
| 275 | return $this; |
| 276 | } |
| 277 | |
| 278 | public function wrapInner($wrapping_element) { |
| 279 | foreach ($this->nodes as $node) { |
| 280 | $node->wrapInner($wrapping_element); |
| 281 | } |
| 282 | return $this; |
| 283 | } |
| 284 | } |
| 285 |