Only some tabs

This commit is contained in:
Michael 2017-09-10 07:23:14 +00:00
parent 4b403e4fe2
commit c98c157efe
1 changed files with 28 additions and 28 deletions

View File

@ -33,28 +33,28 @@ class ostatus {
const OSTATUS_DEFAULT_POLL_TIMEFRAME = 1440; // given in minutes const OSTATUS_DEFAULT_POLL_TIMEFRAME = 1440; // given in minutes
const OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS = 14400; // given in minutes const OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS = 14400; // given in minutes
private static $itemlist; private static $itemlist;
/** /**
* @brief Imports an XML string containing OStatus elements * @brief Imports an XML string containing OStatus elements
* *
* @param string $xml The XML * @param string $xml The XML
* @param array $importer user record of the importing user * @param array $importer user record of the importing user
* @param $contact * @param $contact
* @param array $hub Called by reference, returns the fetched hub data * @param array $hub Called by reference, returns the fetched hub data
*/ */
public static function import($xml, $importer, &$contact, &$hub) { public static function import($xml, $importer, &$contact, &$hub) {
self::process($xml, $importer, $contact, $hub); self::process($xml, $importer, $contact, $hub);
} }
/** /**
* @brief Imports an XML string containing OStatus elements * @brief Imports an XML string containing OStatus elements
* *
* @param string $xml The XML * @param string $xml The XML
* @param array $importer user record of the importing user * @param array $importer user record of the importing user
* @param $contact * @param $contact
* @param array $hub Called by reference, returns the fetched hub data * @param array $hub Called by reference, returns the fetched hub data
*/ */
private static function process($xml, $importer, &$contact, &$hub, $stored = false, $initialize = true) { private static function process($xml, $importer, &$contact, &$hub, $stored = false, $initialize = true) {
if ($initialize) { if ($initialize) {
self::$itemlist = array(); self::$itemlist = array();
@ -78,16 +78,16 @@ class ostatus {
$xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS); $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
$xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET); $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
$hub = ""; $hub = "";
$hub_attributes = $xpath->query("/atom:feed/atom:link[@rel='hub']")->item(0)->attributes; $hub_attributes = $xpath->query("/atom:feed/atom:link[@rel='hub']")->item(0)->attributes;
if (is_object($hub_attributes)) { if (is_object($hub_attributes)) {
foreach ($hub_attributes AS $hub_attribute) { foreach ($hub_attributes AS $hub_attribute) {
if ($hub_attribute->name == "href") { if ($hub_attribute->name == "href") {
$hub = $hub_attribute->textContent; $hub = $hub_attribute->textContent;
logger("Found hub ".$hub, LOGGER_DEBUG); logger("Found hub ".$hub, LOGGER_DEBUG);
} }
} }
} }
$header = array(); $header = array();
$header["uid"] = $importer["uid"]; $header["uid"] = $importer["uid"];
@ -233,7 +233,7 @@ class ostatus {
foreach (self::$itemlist AS $item) { foreach (self::$itemlist AS $item) {
$found = dba::exists('item', array('uid' => $importer["uid"], 'uri' => $item["uri"])); $found = dba::exists('item', array('uid' => $importer["uid"], 'uri' => $item["uri"]));
if ($found) { if ($found) {
logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already exists.", LOGGER_DEBUG); logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already exists.", LOGGER_DEBUG);
} else { } else {
$ret = item_store($item); $ret = item_store($item);
logger('Item was stored with return value '.$ret); logger('Item was stored with return value '.$ret);