You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

846 lines
30 KiB

6 years ago
6 years ago
8 years ago
  1. <?php
  2. namespace p3k\XRay\Formats;
  3. use HTMLPurifier, HTMLPurifier_Config;
  4. class Mf2 extends Format {
  5. use Mf2Feed;
  6. public static function matches_host($url) {
  7. return true;
  8. }
  9. public static function matches($url) {
  10. return true;
  11. }
  12. public static function parse($mf2, $url, $http, $opts=[]) {
  13. if(count($mf2['items']) == 0)
  14. return false;
  15. // If they are expecting a feed, always return a feed or an error
  16. if(isset($opts['expect']) && $opts['expect'] == 'feed') {
  17. return self::parseAsHFeed($mf2, $http, $url);
  18. }
  19. // If there is only one item on the page, just use that
  20. if(count($mf2['items']) == 1) {
  21. $item = $mf2['items'][0];
  22. if(in_array('h-entry', $item['type']) || in_array('h-cite', $item['type'])) {
  23. #Parse::debug("mf2:0: Recognized $url as an h-entry it is the only item on the page");
  24. return self::parseAsHEntry($mf2, $item, $http, $url);
  25. }
  26. if(in_array('h-event', $item['type'])) {
  27. #Parse::debug("mf2:0: Recognized $url as an h-event it is the only item on the page");
  28. return self::parseAsHEvent($mf2, $item, $http, $url);
  29. }
  30. if(in_array('h-review', $item['type'])) {
  31. #Parse::debug("mf2:0: Recognized $url as an h-review it is the only item on the page");
  32. return self::parseAsHReview($mf2, $item, $http, $url);
  33. }
  34. if(in_array('h-recipe', $item['type'])) {
  35. #Parse::debug("mf2:0: Recognized $url as an h-recipe it is the only item on the page");
  36. return self::parseAsHRecipe($mf2, $item, $http, $url);
  37. }
  38. if(in_array('h-product', $item['type'])) {
  39. #Parse::debug("mf2:0: Recognized $url as an h-product it is the only item on the page");
  40. return self::parseAsHProduct($mf2, $item, $http, $url);
  41. }
  42. if(in_array('h-item', $item['type'])) {
  43. #Parse::debug("mf2:0: Recognized $url as an h-product it is the only item on the page");
  44. return self::parseAsHItem($mf2, $item, $http, $url);
  45. }
  46. if(in_array('h-card', $item['type'])) {
  47. #Parse::debug("mf2:0: Recognized $url as an h-card it is the only item on the page");
  48. return self::parseAsHCard($item, $http, $url, $url);
  49. }
  50. if(in_array('h-app', $item['type']) || in_array('h-x-app', $item['type'])) {
  51. #Parse::debug("mf2:0: Recognized $url as an h-feed because it is the only item on the page");
  52. return self::parseAsHApp($mf2, $item, $http, $url);
  53. }
  54. if(in_array('h-feed', $item['type'])) {
  55. #Parse::debug("mf2:0: Recognized $url as an h-feed because it is the only item on the page");
  56. return self::parseAsHFeed($mf2, $http, $url);
  57. }
  58. }
  59. // Check the list of items on the page to see if one matches the URL of the page,
  60. // and treat as a permalink for that object if so.
  61. foreach($mf2['items'] as $item) {
  62. if(array_key_exists('url', $item['properties'])) {
  63. $urls = $item['properties']['url'];
  64. $urls = array_map('\p3k\XRay\normalize_url', $urls);
  65. if(in_array($url, $urls)) {
  66. #Parse::debug("mf2:1: Recognized $url as a permalink because an object on the page matched the URL of the request");
  67. if(in_array('h-card', $item['type'])) {
  68. return self::parseAsHCard($item, $http, $url, $url);
  69. } elseif(in_array('h-entry', $item['type']) || in_array('h-cite', $item['type'])) {
  70. return self::parseAsHEntry($mf2, $item, $http, $url);
  71. } elseif(in_array('h-event', $item['type'])) {
  72. return self::parseAsHEvent($mf2, $item, $http, $url);
  73. } elseif(in_array('h-review', $item['type'])) {
  74. return self::parseAsHReview($mf2, $item, $http, $url);
  75. } elseif(in_array('h-recipe', $item['type'])) {
  76. return self::parseAsHRecipe($mf2, $item, $http, $url);
  77. } elseif(in_array('h-product', $item['type'])) {
  78. return self::parseAsHProduct($mf2, $item, $http, $url);
  79. } elseif(in_array('h-item', $item['type'])) {
  80. return self::parseAsHItem($mf2, $item, $http, $url);
  81. } elseif(in_array('h-app', $item['type']) || in_array('h-x-app', $item['type'])) {
  82. return self::parseAsHApp($mf2, $item, $http, $url);
  83. } elseif(in_array('h-feed', $item['type'])) {
  84. return self::parseAsHFeed($mf2, $http, $url);
  85. } else {
  86. #Parse::debug('This object was not a recognized type.');
  87. return false;
  88. }
  89. }
  90. }
  91. }
  92. // Check for an h-card matching rel=author or the author URL of any h-* on the page,
  93. // and return the h-* object if so
  94. if(isset($mf2['rels']['author'])) {
  95. foreach($mf2['items'] as $card) {
  96. if(in_array('h-card', $card['type']) && array_key_exists('url', $card['properties'])) {
  97. $urls = \p3k\XRay\normalize_urls($card['properties']['url']);
  98. if(count(array_intersect($urls, \p3k\XRay\normalize_urls($mf2['rels']['author']))) > 0) {
  99. // There is an author h-card on this page
  100. // Now look for the first h-* object other than an h-card and use that as the object
  101. foreach($mf2['items'] as $item) {
  102. if(!in_array('h-card', $item['type'])) {
  103. if(in_array('h-entry', $item['type']) || in_array('h-cite', $item['type'])) {
  104. return self::parseAsHEntry($mf2, $item, $http, $url);
  105. } elseif(in_array('h-event', $item['type'])) {
  106. return self::parseAsHEvent($mf2, $item, $http, $url);
  107. } elseif(in_array('h-review', $item['type'])) {
  108. return self::parseAsHReview($mf2, $item, $http, $url);
  109. } elseif(in_array('h-recipe', $item['type'])) {
  110. return self::parseAsHRecipe($mf2, $item, $http, $url);
  111. } elseif(in_array('h-product', $item['type'])) {
  112. return self::parseAsHProduct($mf2, $item, $http, $url);
  113. } elseif(in_array('h-item', $item['type'])) {
  114. return self::parseAsHItem($mf2, $item, $http, $url);
  115. } elseif(in_array('h-app', $item['type']) || in_array('h-x-app', $item['type'])) {
  116. return self::parseAsHApp($mf2, $item, $http, $url);
  117. }
  118. }
  119. }
  120. }
  121. }
  122. }
  123. }
  124. // If there was more than one h-entry on the page, treat the whole page as a feed
  125. if(count($mf2['items']) > 1) {
  126. if(count(array_filter($mf2['items'], function($item){
  127. return in_array('h-entry', $item['type']);
  128. })) > 1) {
  129. #Parse::debug("mf2:2: Recognized $url as an h-feed because there are more than one object on the page");
  130. return self::parseAsHFeed($mf2, $http, $url);
  131. }
  132. }
  133. // If the first item is an h-feed, parse as a feed
  134. $first = $mf2['items'][0];
  135. if(in_array('h-feed', $first['type'])) {
  136. #Parse::debug("mf2:3: Recognized $url as an h-feed because the first item is an h-feed");
  137. return self::parseAsHFeed($mf2, $http, $url);
  138. }
  139. // Fallback case, but hopefully we have found something before this point
  140. foreach($mf2['items'] as $item) {
  141. // Otherwise check for a recognized h-* object
  142. if(in_array('h-entry', $item['type']) || in_array('h-cite', $item['type'])) {
  143. #Parse::debug("mf2:6: $url is falling back to the first h-entry on the page");
  144. return self::parseAsHEntry($mf2, $item, $http, $url);
  145. } elseif(in_array('h-event', $item['type'])) {
  146. #Parse::debug("mf2:6: $url is falling back to the first h-event on the page");
  147. return self::parseAsHEvent($mf2, $item, $http, $url);
  148. } elseif(in_array('h-review', $item['type'])) {
  149. #Parse::debug("mf2:6: $url is falling back to the first h-review on the page");
  150. return self::parseAsHReview($mf2, $item, $http, $url);
  151. } elseif(in_array('h-recipe', $item['type'])) {
  152. #Parse::debug("mf2:6: $url is falling back to the first h-recipe on the page");
  153. return self::parseAsHRecipe($mf2, $item, $http, $url);
  154. } elseif(in_array('h-product', $item['type'])) {
  155. #Parse::debug("mf2:6: $url is falling back to the first h-product on the page");
  156. return self::parseAsHProduct($mf2, $item, $http, $url);
  157. } elseif(in_array('h-item', $item['type'])) {
  158. #Parse::debug("mf2:6: $url is falling back to the first h-item on the page");
  159. return self::parseAsHItem($mf2, $item, $http, $url);
  160. } elseif(in_array('h-app', $item['type']) || in_array('h-x-app', $item['type'])) {
  161. #Parse::debug("mf2:6: $url is falling back to the first h-item on the page");
  162. return self::parseAsHApp($mf2, $item, $http, $url);
  163. }
  164. }
  165. #Parse::debug("mf2:E: No object at $url was recognized");
  166. return false;
  167. }
  168. private static function collectSingleValues($properties, $urlProperties, $item, $url, &$data) {
  169. foreach($properties as $p) {
  170. if(($v = self::getPlaintext($item, $p)) !== null) {
  171. $data[$p] = $v;
  172. }
  173. }
  174. foreach($urlProperties as $p) {
  175. if($p == 'url') {
  176. // Special handling for the 'url' property to prioritize finding the URL on the same domain
  177. if($values = self::getPlaintextValues($item, 'url')) {
  178. if(count($values) == 1) {
  179. if(self::isURL($values[0]))
  180. $data['url'] = $values[0];
  181. }
  182. else {
  183. $set = false;
  184. foreach($values as $v) {
  185. if(self::isURL($v) && parse_url($v, PHP_URL_HOST) == parse_url($url, PHP_URL_HOST)) {
  186. $set = true;
  187. $data['url'] = $v;
  188. }
  189. }
  190. if(!$set) {
  191. // Fall back to the first URL if there isn't one on the domain
  192. if(self::isURL($values[0]))
  193. $data['url'] = $values[0];
  194. }
  195. }
  196. }
  197. } else {
  198. if(($v = self::getPlaintext($item, $p)) !== null) {
  199. if(self::isURL($v))
  200. $data[$p] = $v;
  201. }
  202. }
  203. }
  204. }
  205. private static function parseHTMLValue($property, $item) {
  206. if(!array_key_exists($property, $item['properties']))
  207. return null;
  208. $textContent = false;
  209. $htmlContent = false;
  210. $content = $item['properties'][$property][0];
  211. if(is_string($content)) {
  212. $textContent = $content;
  213. } elseif(!is_string($content) && is_array($content) && array_key_exists('value', $content)) {
  214. if(array_key_exists('html', $content)) {
  215. // Only allow images in the content if there is no photo property set
  216. if(isset($item['properties']['photo']))
  217. $allowImg = false;
  218. else
  219. $allowImg = true;
  220. $htmlContent = trim(self::sanitizeHTML($content['html'], $allowImg));
  221. #$textContent = trim(str_replace("&#xD;","\r",$content['value']));
  222. $textContent = trim(self::stripHTML($htmlContent));
  223. } else {
  224. $textContent = trim($content['value']);
  225. }
  226. }
  227. if($textContent || $htmlContent) {
  228. $data = [
  229. 'text' => $textContent
  230. ];
  231. // Only add HTML content if there is actual content.
  232. // If the text content ends up empty, then the HTML should be too
  233. // e.g. <div class="e-content"><a href=""><img src="" class="u-photo"></a></div>
  234. // should not return content of <a href=""></a>
  235. // TODO: still need to remove empty <a> tags when there is other text in the content
  236. if($htmlContent && $textContent && $textContent != $htmlContent) {
  237. $data['html'] = $htmlContent;
  238. }
  239. if(!$data['text'])
  240. return null;
  241. return $data;
  242. } else {
  243. return null;
  244. }
  245. }
  246. // Always return arrays, and may contain plaintext content
  247. // Nested objects are added to refs and the URL is used as the value if present
  248. private static function collectArrayValues($properties, $item, &$data, &$refs, &$http) {
  249. foreach($properties as $p) {
  250. if(array_key_exists($p, $item['properties'])) {
  251. foreach($item['properties'][$p] as $v) {
  252. if(is_string($v)) {
  253. if(!array_key_exists($p, $data)) $data[$p] = [];
  254. if(!in_array($v, $data[$p]))
  255. $data[$p][] = $v;
  256. } elseif(self::isMicroformat($v)) {
  257. if(($u=self::getPlaintext($v, 'url')) && self::isURL($u)) {
  258. if(!array_key_exists($p, $data)) $data[$p] = [];
  259. if(!in_array($u, $data[$p]))
  260. $data[$p][] = $u;
  261. $ref = self::parse(['items'=>[$v]], $u, $http);
  262. if($ref) {
  263. $refs[$u] = $ref['data'];
  264. }
  265. } else {
  266. if(!array_key_exists($p, $data)) $data[$p] = [];
  267. if(!in_array($v['value'], $data[$p]))
  268. $data[$p][] = $v['value'];
  269. }
  270. }
  271. }
  272. }
  273. }
  274. }
  275. private static function parseEmbeddedHCard($property, $item, &$http) {
  276. if(array_key_exists($property, $item['properties'])) {
  277. $mf2 = $item['properties'][$property][0];
  278. if(is_string($mf2) && self::isURL($mf2)) {
  279. $hcard = [
  280. 'type' => 'card',
  281. 'url' => $mf2
  282. ];
  283. return $hcard;
  284. } if(self::isMicroformat($mf2) && in_array('h-card', $mf2['type'])) {
  285. $hcard = [
  286. 'type' => 'card',
  287. ];
  288. $properties = ['name','latitude','longitude','locality','region','country','url'];
  289. foreach($properties as $p) {
  290. if($v=self::getPlaintext($mf2, $p)) {
  291. $hcard[$p] = $v;
  292. }
  293. }
  294. return $hcard;
  295. }
  296. }
  297. return false;
  298. }
  299. private static function collectArrayURLValues($properties, $item, &$data, &$refs, &$http) {
  300. foreach($properties as $p) {
  301. if(array_key_exists($p, $item['properties'])) {
  302. foreach($item['properties'][$p] as $v) {
  303. if(is_string($v) && self::isURL($v)) {
  304. if(!array_key_exists($p, $data)) $data[$p] = [];
  305. $data[$p][] = $v;
  306. }
  307. elseif(self::isMicroformat($v) && ($u=self::getPlaintext($v, 'url')) && self::isURL($u)) {
  308. if(!array_key_exists($p, $data)) $data[$p] = [];
  309. $data[$p][] = $u;
  310. // parse the object and put the result in the "refs" object
  311. $ref = self::parse(['items'=>[$v]], $u, $http);
  312. if($ref) {
  313. $refs[$u] = $ref['data'];
  314. }
  315. }
  316. }
  317. }
  318. }
  319. }
  320. private static function determineNameAndContent($item, &$data) {
  321. // Determine if the name is distinct from the content
  322. $name = self::getPlaintext($item, 'name');
  323. $textContent = null;
  324. $htmlContent = null;
  325. $content = self::getHTMLValue($item, 'content');
  326. if(is_string($content)) {
  327. $textContent = $content;
  328. } elseif($content) {
  329. $htmlContent = array_key_exists('html', $content) ? $content['html'] : null;
  330. $textContent = array_key_exists('value', $content) ? $content['value'] : null;
  331. }
  332. $checkedname = $name;
  333. if($content) {
  334. // Trim ellipses from the name
  335. $name = preg_replace('/ ?(\.\.\.|…)$/', '', $name);
  336. // Remove all whitespace when checking equality
  337. $nameCompare = preg_replace('/\s/','',trim($name));
  338. $contentCompare = preg_replace('/\s/','',trim($textContent));
  339. // Check if the name is a prefix of the content
  340. if($contentCompare && $nameCompare && strpos($contentCompare, $nameCompare) === 0) {
  341. $checkedname = null;
  342. }
  343. }
  344. if($checkedname) {
  345. $data['name'] = $checkedname;
  346. }
  347. // If there is content, always return the plaintext content, and return HTML content if it's different
  348. if($content) {
  349. $content = self::parseHTMLValue('content', $item);
  350. if($content['text']) {
  351. $data['content']['text'] = $content['text'];
  352. if(isset($content['html']))
  353. $data['content']['html'] = $content['html'];
  354. } else {
  355. // If the content text was blank because the img was removed and that was the only content,
  356. // then put the name back as the name if it was previously set.
  357. // See https://github.com/aaronpk/XRay/issues/57
  358. if($name) {
  359. $data['name'] = $name;
  360. }
  361. }
  362. }
  363. }
  364. private static function parseAsHEntry($mf2, $item, $http, $url) {
  365. $data = [
  366. 'type' => 'entry'
  367. ];
  368. $refs = [];
  369. // Single plaintext and URL values
  370. self::collectSingleValues(['published','summary','rsvp','swarm-coins'], ['url','featured'], $item, $url, $data);
  371. if(isset($data['rsvp']))
  372. $data['rsvp'] = strtolower($data['rsvp']);
  373. // These properties are always returned as arrays and may contain plaintext content
  374. // First strip leading hashtags from category values if present
  375. if(array_key_exists('category', $item['properties'])) {
  376. foreach($item['properties']['category'] as $i=>$c) {
  377. if(is_string($c))
  378. $item['properties']['category'][$i] = ltrim($c, '#');
  379. }
  380. }
  381. self::collectArrayValues(['category','invitee'], $item, $data, $refs, $http);
  382. // These properties are always returned as arrays and always URLs
  383. // If the value is an h-* object with a URL, the URL is used and a "ref" is added as well
  384. self::collectArrayURLValues(['photo','video','audio','syndication','in-reply-to','like-of','repost-of','bookmark-of'], $item, $data, $refs, $http);
  385. self::determineNameAndContent($item, $data);
  386. if($author = self::findAuthor($mf2, $item, $http, $url))
  387. $data['author'] = $author;
  388. if($checkin = self::parseEmbeddedHCard('checkin', $item, $http))
  389. $data['checkin'] = $checkin;
  390. $response = [
  391. 'data' => $data
  392. ];
  393. if(count($refs)) {
  394. $response['data']['refs'] = $refs;
  395. }
  396. return $response;
  397. }
  398. private static function parseAsHReview($mf2, $item, $http, $url) {
  399. $data = [
  400. 'type' => 'review'
  401. ];
  402. $refs = [];
  403. self::collectSingleValues(['summary','published','rating','best','worst'], ['url'], $item, $url, $data);
  404. // Fallback for Mf1 "description" as content. The PHP parser does not properly map this to "content"
  405. $description = self::parseHTMLValue('description', $item);
  406. if($description) {
  407. $data['content'] = $description;
  408. }
  409. self::collectArrayValues(['category'], $item, $data, $refs, $http);
  410. self::collectArrayURLValues(['item'], $item, $data, $refs, $http);
  411. self::determineNameAndContent($item, $data);
  412. if($author = self::findAuthor($mf2, $item, $http, $url))
  413. $data['author'] = $author;
  414. $response = [
  415. 'data' => $data
  416. ];
  417. if(count($refs)) {
  418. $response['data']['refs'] = $refs;
  419. }
  420. return $response;
  421. }
  422. private static function parseAsHRecipe($mf2, $item, $http, $url) {
  423. $data = [
  424. 'type' => 'recipe'
  425. ];
  426. $refs = [];
  427. self::collectSingleValues(['name','summary','published','duration','yield','nutrition'], ['url'], $item, $url, $data);
  428. $instructions = self::parseHTMLValue('instructions', $item);
  429. if($instructions) {
  430. $data['instructions'] = $instructions;
  431. }
  432. self::collectArrayValues(['category','ingredient'], $item, $data, $refs, $http);
  433. self::collectArrayURLValues(['photo'], $item, $data, $refs, $http);
  434. if($author = self::findAuthor($mf2, $item, $http, $url))
  435. $data['author'] = $author;
  436. $response = [
  437. 'data' => $data
  438. ];
  439. if(count($refs)) {
  440. $response['data']['refs'] = $refs;
  441. }
  442. return $response;
  443. }
  444. private static function parseAsHProduct($mf2, $item, $http, $url) {
  445. $data = [
  446. 'type' => 'product'
  447. ];
  448. $refs = [];
  449. self::collectSingleValues(['name','identifier','price'], ['url'], $item, $url, $data);
  450. $description = self::parseHTMLValue('description', $item);
  451. if($description) {
  452. $data['description'] = $description;
  453. }
  454. self::collectArrayValues(['category','brand'], $item, $data, $refs, $http);
  455. self::collectArrayURLValues(['photo','video','audio'], $item, $data, $refs, $http);
  456. $response = [
  457. 'data' => $data
  458. ];
  459. if(count($refs)) {
  460. $response['data']['refs'] = $refs;
  461. }
  462. return $response;
  463. }
  464. private static function parseAsHItem($mf2, $item, $http, $url) {
  465. $data = [
  466. 'type' => 'item'
  467. ];
  468. $refs = [];
  469. self::collectSingleValues(['name'], ['url'], $item, $url, $data);
  470. self::collectArrayURLValues(['photo','video','audio'], $item, $data, $refs, $http);
  471. $response = [
  472. 'data' => $data
  473. ];
  474. if(count($refs)) {
  475. $response['data']['refs'] = $refs;
  476. }
  477. return $response;
  478. }
  479. private static function parseAsHApp($mf2, $item, $http, $url) {
  480. $data = [
  481. 'type' => 'app'
  482. ];
  483. self::collectSingleValues(['name'], ['url','logo'], $item, $url, $data);
  484. if(!isset($data['url']))
  485. $data['url'] = $url;
  486. $response = [
  487. 'data' => $data
  488. ];
  489. return $response;
  490. }
  491. private static function parseAsHEvent($mf2, $item, $http, $url) {
  492. $data = [
  493. 'type' => 'event'
  494. ];
  495. $refs = [];
  496. // Single plaintext and URL values
  497. self::collectSingleValues(['name','summary','published','start','end','duration'], ['url'], $item, $url, $data);
  498. // These properties are always returned as arrays and may contain plaintext content
  499. self::collectArrayValues(['category','location','attendee'], $item, $data, $refs, $http);
  500. // These properties are always returned as arrays and always URLs
  501. // If the value is an h-* object with a URL, the URL is used and a "ref" is added as well
  502. self::collectArrayURLValues(['photo','video','audio','syndication'], $item, $data, $refs, $http);
  503. // If there is a description, always return the plaintext description, and return HTML description if it's different
  504. $description = self::parseHTMLValue('description', $item);
  505. if($description) {
  506. $data['description'] = $description;
  507. }
  508. $response = [
  509. 'data' => $data
  510. ];
  511. if(count($refs)) {
  512. $response['data']['refs'] = $refs;
  513. }
  514. return $response;
  515. }
  516. private static function parseAsHCard($item, $http, $url, $authorURL=false) {
  517. $data = [
  518. 'type' => 'card',
  519. 'name' => null,
  520. 'url' => null,
  521. 'photo' => null
  522. ];
  523. $properties = ['url','name','photo'];
  524. foreach($properties as $p) {
  525. if($p == 'url' && $authorURL) {
  526. // If there is a matching author URL, use that one
  527. $found = false;
  528. foreach($item['properties']['url'] as $url) {
  529. if(self::isURL($url)) {
  530. $url = \p3k\XRay\normalize_url($url);
  531. if($url == \p3k\XRay\normalize_url($authorURL)) {
  532. $data['url'] = $url;
  533. $found = true;
  534. }
  535. }
  536. }
  537. if(!$found && self::isURL($item['properties']['url'][0])) {
  538. $data['url'] = $item['properties']['url'][0];
  539. }
  540. } else if(($v = self::getPlaintext($item, $p)) !== null) {
  541. // Make sure the URL property is actually a URL
  542. if($p == 'url' || $p == 'photo') {
  543. if(self::isURL($v))
  544. $data[$p] = $v;
  545. } else {
  546. $data[$p] = $v;
  547. }
  548. }
  549. }
  550. // If no URL property was found, use the $authorURL provided
  551. if(!$data['url'])
  552. $data['url'] = $authorURL;
  553. $response = [
  554. 'data' => $data
  555. ];
  556. return $response;
  557. }
  558. private static function findAuthor($mf2, $item, $http, $url) {
  559. $author = [
  560. 'type' => 'card',
  561. 'name' => null,
  562. 'url' => null,
  563. 'photo' => null
  564. ];
  565. // Author Discovery
  566. // http://indiewebcamp.com/authorship
  567. $authorPage = false;
  568. if(array_key_exists('author', $item['properties'])) {
  569. // Check if any of the values of the author property are an h-card
  570. foreach($item['properties']['author'] as $a) {
  571. if(self::isHCard($a)) {
  572. // 5.1 "if it has an h-card, use it, exit."
  573. return self::parseAsHCard($a, $http, $url)['data'];
  574. } elseif(is_string($a)) {
  575. if(self::isURL($a)) {
  576. // 5.2 "otherwise if author property is an http(s) URL, let the author-page have that URL"
  577. $authorPage = $a;
  578. } else {
  579. // 5.3 "otherwise use the author property as the author name, exit"
  580. // We can only set the name, no h-card or URL was found
  581. $author['name'] = self::getPlaintext($item, 'author');
  582. return $author;
  583. }
  584. } else {
  585. // This case is only hit when the author property is an mf2 object that is not an h-card
  586. $author['name'] = self::getPlaintext($item, 'author');
  587. return $author;
  588. }
  589. }
  590. }
  591. // 6. "if no author page was found" ... check for rel-author link
  592. if(!$authorPage) {
  593. if(isset($mf2['rels']) && isset($mf2['rels']['author']))
  594. $authorPage = $mf2['rels']['author'][0];
  595. }
  596. // 7. "if there is an author-page URL" ...
  597. if($authorPage) {
  598. // 7.1 "get the author-page from that URL and parse it for microformats2"
  599. $authorPageContents = self::getURL($authorPage, $http);
  600. if($authorPageContents) {
  601. foreach($authorPageContents['items'] as $i) {
  602. if(self::isHCard($i)) {
  603. // 7.2 "if author-page has 1+ h-card with url == uid == author-page's URL, then use first such h-card, exit."
  604. if(array_key_exists('url', $i['properties'])
  605. and in_array(\p3k\XRay\normalize_url($authorPage), \p3k\XRay\normalize_urls($i['properties']['url']))
  606. and array_key_exists('uid', $i['properties'])
  607. and in_array(\p3k\XRay\normalize_url($authorPage), \p3k\XRay\normalize_urls($i['properties']['uid']))
  608. ) {
  609. return self::parseAsHCard($i, $http, $url, $authorPage)['data'];
  610. }
  611. // 7.3 "else if author-page has 1+ h-card with url property which matches the href of a rel-me link on the author-page"
  612. $relMeLinks = (isset($authorPageContents['rels']) && isset($authorPageContents['rels']['me'])) ? $authorPageContents['rels']['me'] : [];
  613. if(count($relMeLinks) > 0
  614. and array_key_exists('url', $i['properties'])
  615. and count(array_intersect(\p3k\XRay\normalize_urls($i['properties']['url']), \p3k\XRay\normalize_urls($relMeLinks))) > 0
  616. ) {
  617. return self::parseAsHCard($i, $http, $url, $authorPage)['data'];
  618. }
  619. }
  620. }
  621. }
  622. // 7.4 "if the h-entry's page has 1+ h-card with url == author-page URL, use first such h-card, exit."
  623. foreach($mf2['items'] as $i) {
  624. if(self::isHCard($i)) {
  625. if(array_key_exists('url', $i['properties'])
  626. and in_array(\p3k\XRay\normalize_url($authorPage), \p3k\XRay\normalize_urls($i['properties']['url']))
  627. ) {
  628. return self::parseAsHCard($i, $http, $url)['data'];
  629. }
  630. }
  631. // Also check the "author" property
  632. // (for finding the author of an h-feed's children when the author is the p-author property of the h-feed)
  633. if(isset($i['properties']['author'])) {
  634. foreach($i['properties']['author'] as $ic) {
  635. if(self::isHCard($ic)) {
  636. if(array_key_exists('url', $ic['properties'])
  637. and in_array(\p3k\XRay\normalize_url($authorPage), \p3k\XRay\normalize_urls($ic['properties']['url']))
  638. ) {
  639. return self::parseAsHCard($ic, $http, $url)['data'];
  640. }
  641. }
  642. }
  643. }
  644. }
  645. }
  646. if(!$author['name'] && !$author['photo'] && !$author['url'])
  647. return null;
  648. return $author;
  649. }
  650. private static function hasNumericKeys(array $arr) {
  651. foreach($arr as $key=>$val)
  652. if (is_numeric($key))
  653. return true;
  654. return false;
  655. }
  656. private static function isMicroformat($mf) {
  657. return is_array($mf)
  658. and !self::hasNumericKeys($mf)
  659. and !empty($mf['type'])
  660. and isset($mf['properties']);
  661. }
  662. private static function isHCard($mf) {
  663. return is_array($mf)
  664. and !empty($mf['type'])
  665. and is_array($mf['type'])
  666. and in_array('h-card', $mf['type']);
  667. }
  668. private static function isURL($string) {
  669. return preg_match('/^https?:\/\/.+\..+$/', $string);
  670. }
  671. // Given an array of microformats properties and a key name, return the plaintext value
  672. // at that property
  673. // e.g.
  674. // {"properties":{"published":["foo"]}} results in "foo"
  675. private static function getPlaintext($mf2, $k, $fallback=null) {
  676. if(!empty($mf2['properties'][$k]) and is_array($mf2['properties'][$k])) {
  677. // $mf2['properties'][$v] will always be an array since the input was from the mf2 parser
  678. $value = $mf2['properties'][$k][0];
  679. if(is_string($value)) {
  680. return $value;
  681. } elseif(self::isMicroformat($value) && array_key_exists('value', $value)) {
  682. return $value['value'];
  683. }
  684. }
  685. return $fallback;
  686. }
  687. private static function getHTMLValue($mf2, $k, $fallback=null) {
  688. // Return an array with html and value if the value is html, otherwise return a string
  689. if(!empty($mf2['properties'][$k]) and is_array($mf2['properties'][$k])) {
  690. // $mf2['properties'][$v] will always be an array since the input was from the mf2 parser
  691. $value = $mf2['properties'][$k][0];
  692. if(is_string($value)) {
  693. return $value;
  694. } elseif(isset($value['html'])) {
  695. return $value;
  696. }
  697. }
  698. return $fallback;
  699. }
  700. private static function getPlaintextValues($mf2, $k, $values=[]) {
  701. if(!empty($mf2['properties'][$k]) and is_array($mf2['properties'][$k])) {
  702. foreach($mf2['properties'][$k] as $value) {
  703. if(is_string($value)) {
  704. $values[] = $value;
  705. } elseif(self::isMicroformat($value) && array_key_exists('value', $value)) {
  706. $values[] = $value['value'];
  707. }
  708. }
  709. }
  710. return $values;
  711. }
  712. private static function getURL($url, $http) {
  713. if(!$url || !$http) return null;
  714. // TODO: consider adding caching here
  715. $result = $http->get($url);
  716. if($result['error'] || !$result['body']) {
  717. return null;
  718. }
  719. return \mf2\Parse($result['body'], $url);
  720. }
  721. }