2013-05-01 19:06:48 +02:00
|
|
|
<?php
|
|
|
|
abstract class FeedItem_Common extends FeedItem {
|
|
|
|
protected $elem;
|
|
|
|
protected $xpath;
|
|
|
|
protected $doc;
|
|
|
|
|
|
|
|
function __construct($elem, $doc, $xpath) {
|
|
|
|
$this->elem = $elem;
|
|
|
|
$this->xpath = $xpath;
|
|
|
|
$this->doc = $doc;
|
2013-06-25 12:43:59 +02:00
|
|
|
|
2013-07-10 10:50:42 +02:00
|
|
|
try {
|
2013-06-25 12:43:59 +02:00
|
|
|
|
2013-07-10 10:50:42 +02:00
|
|
|
$source = $elem->getElementsByTagName("source")->item(0);
|
|
|
|
|
|
|
|
// we don't need <source> element
|
|
|
|
if ($source)
|
|
|
|
$elem->removeChild($source);
|
|
|
|
} catch (DOMException $e) {
|
|
|
|
//
|
|
|
|
}
|
2013-05-01 19:06:48 +02:00
|
|
|
}
|
|
|
|
|
2017-05-05 08:21:10 +02:00
|
|
|
function get_element() {
|
|
|
|
return $this->elem;
|
|
|
|
}
|
|
|
|
|
2013-05-01 19:06:48 +02:00
|
|
|
function get_author() {
|
|
|
|
$author = $this->elem->getElementsByTagName("author")->item(0);
|
|
|
|
|
|
|
|
if ($author) {
|
|
|
|
$name = $author->getElementsByTagName("name")->item(0);
|
|
|
|
|
|
|
|
if ($name) return $name->nodeValue;
|
|
|
|
|
|
|
|
$email = $author->getElementsByTagName("email")->item(0);
|
|
|
|
|
|
|
|
if ($email) return $email->nodeValue;
|
2013-05-02 08:36:05 +02:00
|
|
|
|
|
|
|
if ($author->nodeValue)
|
|
|
|
return $author->nodeValue;
|
2013-05-01 19:06:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$author = $this->xpath->query("dc:creator", $this->elem)->item(0);
|
|
|
|
|
|
|
|
if ($author) {
|
|
|
|
return $author->nodeValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_comments_url() {
|
2013-12-18 17:05:43 +01:00
|
|
|
//RSS only. Use a query here to avoid namespace clashes (e.g. with slash).
|
|
|
|
//might give a wrong result if a default namespace was declared (possible with XPath 2.0)
|
|
|
|
$com_url = $this->xpath->query("comments", $this->elem)->item(0);
|
2013-05-01 19:06:48 +02:00
|
|
|
|
2013-12-18 17:05:43 +01:00
|
|
|
if($com_url)
|
|
|
|
return $com_url->nodeValue;
|
|
|
|
|
|
|
|
//Atom Threading Extension (RFC 4685) stuff. Could be used in RSS feeds, so it's in common.
|
|
|
|
//'text/html' for type is too restrictive?
|
|
|
|
$com_url = $this->xpath->query("atom:link[@rel='replies' and contains(@type,'text/html')]/@href", $this->elem)->item(0);
|
|
|
|
|
|
|
|
if($com_url)
|
|
|
|
return $com_url->nodeValue;
|
2013-05-01 19:06:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function get_comments_count() {
|
2013-12-18 17:05:43 +01:00
|
|
|
//also query for ATE stuff here
|
|
|
|
$query = "slash:comments|thread:total|atom:link[@rel='replies']/@thread:count";
|
|
|
|
$comments = $this->xpath->query($query, $this->elem)->item(0);
|
2013-05-01 19:06:48 +02:00
|
|
|
|
|
|
|
if ($comments) {
|
|
|
|
return $comments->nodeValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-22 23:48:32 +01:00
|
|
|
function count_children($node) {
|
|
|
|
return $node->getElementsByTagName("*")->length;
|
|
|
|
}
|
|
|
|
|
|
|
|
function subtree_or_text($node) {
|
|
|
|
if ($this->count_children($node) == 0) {
|
|
|
|
return $node->nodeValue;
|
|
|
|
} else {
|
|
|
|
return $node->c14n();
|
|
|
|
}
|
|
|
|
}
|
2013-05-01 19:06:48 +02:00
|
|
|
|
2017-04-26 19:24:18 +02:00
|
|
|
}
|