define('OSTATUS_DEFAULT_POLL_TIMEFRAME', 1440); // given in minutes
define('OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS', 14400); // given in minutes
-function ostatus_fetchauthor($xpath, $context, $importer, &$contact) {
+function ostatus_fetchauthor($xpath, $context, $importer, &$contact, $onlyfetch) {
$author = array();
$author["author-link"] = $xpath->evaluate('atom:author/atom:uri/text()', $context)->item(0)->nodeValue;
$author["owner-link"] = $author["author-link"];
$author["owner-avatar"] = $author["author-avatar"];
- if ($r) {
+ if ($r AND !$onlyfetch) {
// Update contact data
$update_contact = ($r[0]['name-date'] < datetime_convert('','','now -12 hours'));
if ($update_contact) {
foreach ($entries AS $entry) {
// fetch the author
- $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact);
+ $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, true);
return $author;
}
}
// fetch the author
if ($first_child == "feed")
- $author = ostatus_fetchauthor($xpath, $doc->firstChild, $importer, $contact);
+ $author = ostatus_fetchauthor($xpath, $doc->firstChild, $importer, $contact, false);
else
- $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact);
+ $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, false);
$item = array_merge($header, $author);
if ($item["verb"] == ACTIVITY_FOLLOW) {
// ignore "Follow" messages
+ // new_follower($importer,$contact,$datarray,$item);
continue;
}
if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") {
// ignore "Unfollow" messages
+ // lose_follower($importer,$contact,$datarray,$item);
continue;
}
$orig_created = $xpath->query('atom:published/text()', $activityobjects)->item(0)->nodeValue;
$orig_contact = $contact;
- $orig_author = ostatus_fetchauthor($xpath, $activityobjects, $importer, $orig_contact);
+ $orig_author = ostatus_fetchauthor($xpath, $activityobjects, $importer, $orig_contact, false);
//if (!intval(get_config('system','wall-to-wall_share'))) {
// $prefix = share_header($orig_author['author-name'], $orig_author['author-link'], $orig_author['author-avatar'], "", $orig_created, $orig_link);
<?php
-
-// There is a lot of debug stuff in here because this is quite a
-// complicated process to try and sort out.
-
require_once('include/salmon.php');
require_once('include/ostatus.php');
require_once('include/crypto.php');
+require_once('include/items.php');
+require_once('include/follow.php');
function salmon_return($val) {
// Once we have the author URI, go to the web and try to find their public key
- logger('mod-salmon: Fetching key for ' . $author_link );
-
+ logger('mod-salmon: Fetching key for ' . $author_link);
$key = get_salmon_key($author_link,$keyhash);
if(! count($r)) {
logger('mod-salmon: Author unknown to us.');
if(get_pconfig($importer['uid'],'system','ostatus_autofriend')) {
- require_once('include/follow.php');
$result = new_contact($importer['uid'],$author_link);
if($result['success']) {
- $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND ( `url` = '%s' OR `alias` = '%s' )
+ $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND ( `url` = '%s' OR `alias` = '%s')
AND `uid` = %d LIMIT 1",
dbesc(NETWORK_OSTATUS),
dbesc($author_link),
}
}
- // is this a follower? Or have we ignored the person?
+ // Have we ignored the person?
// If so we can not accept this post.
- if((count($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == CONTACT_IS_FOLLOWER) || ($r[0]['blocked']))) {
+ //if((count($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == CONTACT_IS_FOLLOWER) || ($r[0]['blocked']))) {
+ if(count($r) && $r[0]['blocked']) {
logger('mod-salmon: Ignoring this author.');
http_status_exit(202);
// NOTREACHED
}
- require_once('include/items.php');
-
- // Placeholder for hub discovery. We shouldn't find any hubs
- // since we supplied the fake feed header - and it doesn't have any.
-
+ // Placeholder for hub discovery.
$hub = '';
- /**
- *
- * anti-spam measure: consume_feed will accept a follow activity from
- * this person (and nothing else) if there is no existing contact record.
- *
- */
-
$contact_rec = ((count($r)) ? $r[0] : null);
- //consume_feed($feedxml,$importer,$contact_rec,$hub);
ostatus_import($data,$importer,$contact_rec, $hub);
http_status_exit(200);