Added some explanation, beautified code
This commit is contained in:
parent
a785d8c2f9
commit
8c23fea1df
2 changed files with 6 additions and 4 deletions
|
@ -204,12 +204,12 @@ class Delivery {
|
||||||
$msgitems[] = $item;
|
$msgitems[] = $item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$atom = DFRN::entries($msgitems,$owner);
|
$atom = DFRN::entries($msgitems, $owner);
|
||||||
}
|
}
|
||||||
|
|
||||||
logger('Notifier entry: ' . $contact["url"] . ' ' . $target_item["guid"] . ' entry: ' . $atom, LOGGER_DATA);
|
logger('Notifier entry: ' . $contact["url"] . ' ' . $target_item["guid"] . ' entry: ' . $atom, LOGGER_DATA);
|
||||||
|
|
||||||
$basepath = implode('/', array_slice(explode('/',$contact['url']),0,3));
|
$basepath = implode('/', array_slice(explode('/', $contact['url']), 0, 3));
|
||||||
|
|
||||||
// perform local delivery if we are on the same site
|
// perform local delivery if we are on the same site
|
||||||
|
|
||||||
|
@ -248,6 +248,8 @@ class Delivery {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// We don't have a relationship with contacts on a public post.
|
||||||
|
// Se we transmit with the new method and via Diaspora as a fallback
|
||||||
if ($items[0]['uid'] == 0) {
|
if ($items[0]['uid'] == 0) {
|
||||||
$deliver_status = DFRN::transmit($owner, $contact, $atom);
|
$deliver_status = DFRN::transmit($owner, $contact, $atom);
|
||||||
if ($deliver_status < 200) {
|
if ($deliver_status < 200) {
|
||||||
|
@ -400,7 +402,7 @@ class Delivery {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (strncasecmp($subject, 'RE:', 3)) {
|
if (strncasecmp($subject, 'RE:', 3)) {
|
||||||
$subject = 'Re: ' . $subject;
|
$subject = 'Re: ' . $subject;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,7 +68,7 @@ class PubSubPublish {
|
||||||
$rr['topic']),
|
$rr['topic']),
|
||||||
"X-Hub-Signature: sha1=".$hmac_sig];
|
"X-Hub-Signature: sha1=".$hmac_sig];
|
||||||
|
|
||||||
logger('POST '.print_r($headers, true)."\n".$params, LOGGER_DEBUG);
|
logger('POST '.print_r($headers, true)."\n".$params, LOGGER_DATA);
|
||||||
|
|
||||||
Network::post($rr['callback_url'], $params, $headers);
|
Network::post($rr['callback_url'], $params, $headers);
|
||||||
$ret = $a->get_curl_code();
|
$ret = $a->get_curl_code();
|
||||||
|
|
Loading…
Reference in a new issue