*
* @return array Array of author related entries for the item
*/
- private static function fetchAuthor($xpath, $context, $importer, &$contact, $onlyfetch)
+ private static function fetchAuthor(DOMXPath $xpath, $context, array $importer, array &$contact, $onlyfetch)
{
$author = [];
$author["author-link"] = XML::getFirstNodeValue($xpath, 'atom:author/atom:uri/text()', $context);
*
* @return array Array of author related entries for the item
*/
- public static function salmonAuthor($xml, $importer)
+ public static function salmonAuthor($xml, array $importer)
{
if ($xml == "") {
return;
* @param string $hub Called by reference, returns the fetched hub data
* @return void
*/
- public static function import($xml, $importer, &$contact, &$hub)
+ public static function import($xml, array $importer, array &$contact, &$hub)
{
self::process($xml, $importer, $contact, $hub);
}
*
* @return boolean Could the XML be processed?
*/
- private static function process($xml, $importer, &$contact, &$hub, $stored = false, $initialize = true)
+ private static function process($xml, array $importer, array &$contact, &$hub, $stored = false, $initialize = true)
{
if ($initialize) {
self::$itemlist = [];
}
/**
- * @param object $item item
+ * Removes notice item from database
+ * @param array $item item
* @return void
*/
- private static function deleteNotice($item)
+ private static function deleteNotice(array $item)
{
$condition = ['uid' => $item['uid'], 'author-id' => $item['author-id'], 'uri' => $item['uri']];
if (!Item::exists($condition)) {
* @param array $importer user record of the importing user
* @return void
*/
- private static function processPost($xpath, $entry, &$item, $importer)
+ private static function processPost(DOMXPath $xpath, $entry, array &$item, array $importer)
{
$item["body"] = HTML::toBBCode(XML::getFirstNodeValue($xpath, 'atom:content/text()', $entry));
$item["object-type"] = XML::getFirstNodeValue($xpath, 'activity:object-type/text()', $entry);
* @param array $item The item array
* @return void
*/
- private static function fetchSelf($self, &$item)
+ private static function fetchSelf($self, array &$item)
{
$condition = ['`item-uri` = ? AND `protocol` IN (?, ?)', $self, PROTOCOL_DFRN, PROTOCOL_OSTATUS_SALMON];
if (DBA::exists('conversation', $condition)) {
*
* @return array with data from links
*/
- private static function processRepeatedItem($xpath, $entry, &$item, $importer)
+ private static function processRepeatedItem(DOMXPath $xpath, $entry, array &$item, array $importer)
{
$activityobjects = $xpath->query('activity:object', $entry)->item(0);
*
* @return array with data from the links
*/
- private static function processLinks($links, &$item)
+ private static function processLinks($links, array &$item)
{
$link_data = ['add_body' => '', 'self' => ''];
*
* @return string The guid if the post is a reshare
*/
- private static function getResharedGuid($item)
+ private static function getResharedGuid(array $item)
{
$body = trim($item["body"]);
*
* @return object header root element
*/
- private static function addHeader($doc, $owner, $filter)
+ private static function addHeader(DOMDocument $doc, array $owner, $filter)
{
$a = get_app();
* @param object $nick nick
* @return void
*/
- public static function hublinks($doc, $root, $nick)
+ public static function hublinks(DOMDocument $doc, $root, $nick)
{
$h = System::baseUrl() . '/pubsubhubbub/'.$nick;
XML::addElement($doc, $root, "link", "", ["href" => $h, "rel" => "hub"]);
* @param array $item Data of the item that is to be posted
* @return void
*/
- private static function getAttachment($doc, $root, $item)
+ private static function getAttachment(DOMDocument $doc, $root, $item)
{
$o = "";
$siteinfo = BBCode::getAttachedData($item["body"]);
*
* @param object $doc XML document
* @param array $owner Contact data of the poster
+ * @param bool $show_profile Whether to show profile
*
* @return object author element
*/
- private static function addAuthor($doc, $owner, $show_profile = true)
+ private static function addAuthor(DOMDocument $doc, array $owner, $show_profile = true)
{
$profile = DBA::selectFirst('profile', ['homepage', 'publish'], ['uid' => $owner['uid'], 'is-default' => true]);
$author = $doc->createElement("author");
*
* @return string activity
*/
- private static function constructVerb($item)
+ private static function constructVerb(array $item)
{
- if ($item['verb']) {
+ if (!empty($item['verb'])) {
return $item['verb'];
}
*
* @return string Object type
*/
- private static function constructObjecttype($item)
+ private static function constructObjecttype(array $item)
{
if (in_array($item['object-type'], [ACTIVITY_OBJ_NOTE, ACTIVITY_OBJ_COMMENT]))
return $item['object-type'];
*
* @return object Entry element
*/
- private static function entry($doc, $item, $owner, $toplevel = false)
+ private static function entry(DOMDocument $doc, array $item, array $owner, $toplevel = false)
{
$xml = null;
*
* @return object Source element
*/
- private static function sourceEntry($doc, $contact)
+ private static function sourceEntry(DOMDocument $doc, array $contact)
{
$source = $doc->createElement("source");
XML::addElement($doc, $source, "id", $contact["poll"]);
*
* @return array Contact array
*/
- private static function contactEntry($url, $owner)
+ private static function contactEntry($url, array $owner)
{
$r = q(
"SELECT * FROM `contact` WHERE `nurl` = '%s' AND `uid` IN (0, %d) ORDER BY `uid` DESC LIMIT 1",
*
* @return object Entry element
*/
- private static function reshareEntry($doc, $item, $owner, $repeated_guid, $toplevel)
+ private static function reshareEntry(DOMDocument $doc, array $item, array $owner, $repeated_guid, $toplevel)
{
if (($item["id"] != $item["parent"]) && (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
*
* @return object Entry element with "like"
*/
- private static function likeEntry($doc, $item, $owner, $toplevel)
+ private static function likeEntry(DOMDocument $doc, array $item, array $owner, $toplevel)
{
if (($item["id"] != $item["parent"]) && (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
*
* @return object author element
*/
- private static function addPersonObject($doc, $owner, $contact)
+ private static function addPersonObject(DOMDocument $doc, array $owner, array $contact)
{
$object = $doc->createElement("activity:object");
XML::addElement($doc, $object, "activity:object-type", ACTIVITY_OBJ_PERSON);
*
* @return object Entry element
*/
- private static function followEntry($doc, $item, $owner, $toplevel)
+ private static function followEntry(DOMDocument $doc, array $item, array $owner, $toplevel)
{
$item["id"] = $item["parent"] = 0;
$item["created"] = $item["edited"] = date("c");
*
* @return object Entry element
*/
- private static function noteEntry($doc, $item, $owner, $toplevel)
+ private static function noteEntry(DOMDocument $doc, array $item, array $owner, $toplevel)
{
if (($item["id"] != $item["parent"]) && (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
*
* @return string The title for the element
*/
- private static function entryHeader($doc, &$entry, $owner, $item, $toplevel)
+ private static function entryHeader(DOMDocument $doc, &$entry, array $owner, array $item, $toplevel)
{
/// @todo Check if this title stuff is really needed (I guess not)
if (!$toplevel) {
* @param bool $complete Add the "status_net" element?
* @return void
*/
- private static function entryContent($doc, $entry, $item, $owner, $title, $verb = "", $complete = true)
+ private static function entryContent(DOMDocument $doc, $entry, array $item, array $owner, $title, $verb = "", $complete = true)
{
if ($verb == "") {
$verb = self::constructVerb($item);
* @param bool $complete default true
* @return void
*/
- private static function entryFooter($doc, $entry, array $item, array $owner, $complete = true)
+ private static function entryFooter(DOMDocument $doc, $entry, array $item, array $owner, $complete = true)
{
$mentioned = [];
*
* @return string XML for the salmon
*/
- public static function salmon($item, $owner)
+ public static function salmon(array $item, array $owner)
{
$doc = new DOMDocument('1.0', 'utf-8');
$doc->formatOutput = true;