unset($db_host, $db_user, $db_pass, $db_data);
- $debugging = get_config('system','debugging');
-
require_once("session.php");
require_once("datetime.php");
require_once('include/items.php');
-
+ require_once('include/bbcode.php');
if($argc < 3)
exit;
break;
}
- if($debugging)
- dbg(3);
-
$recipients = array();
+ $url_recipients = array();
if($cmd === 'mail') {
killme();
$hub = get_config('system','huburl');
+
// If this is a public conversation, notify the feed hub
$notify_hub = true;
if((strlen($parent['allow_cid']))
|| (strlen($parent['allow_gid']))
|| (strlen($parent['deny_cid']))
- || (strlen($parent['deny_gid'])))
+ || (strlen($parent['deny_gid']))) {
$notify_hub = false; // private recipients, not public
+ }
$allow_people = expand_acl($parent['allow_cid']);
$allow_groups = expand_groups(expand_acl($parent['allow_gid']));
foreach($items as $item) {
$recipients[] = $item['contact-id'];
$conversants[] = $item['contact-id'];
+ // pull out additional tagged people to notify (if public message)
+ if($notify_hub && strlen($item['inform'])) {
+ $people = explode(',',$item['inform']);
+ foreach($people as $person) {
+ if(substr($person,0,4) === 'cid:') {
+ $recipients[] = intval(substr($person,4));
+ $conversants[] = intval(substr($person,4));
+ }
+ else {
+ $url_recipients[] = substr($person,4);
+ }
+ }
+ }
}
+ logger('notifier: url_recipients' . print_r($url_recipients,true));
+
$conversants = array_unique($conversants,SORT_NUMERIC);
$mail_template = load_view_file('view/atom_mail.tpl');
$atom = '';
-
$hubxml = '';
+ $slaps = array();
+
if(strlen($hub)) {
$hubs = explode(',', $hub);
if(count($hubs)) {
if($cmd === 'mail') {
$notify_hub = false; // mail is not public
+
$atom .= replace_macros($mail_template, array(
'$name' => xmlify($owner['name']),
'$profile_page' => xmlify($owner['url']),
if($item['id'] == $item_id) {
$slap = replace_macros($cmnt_template, array(
+ '$name' => xmlify($owner['name']),
+ '$profile_page' => xmlify($owner['url']),
+ '$thumb' => xmlify($owner['thumb']),
+ '$owner_name' => xmlify($item['owner-name']),
+ '$owner_profile_page' => xmlify($item['owner-link']),
+ '$owner_thumb' => xmlify($item['owner-avatar']),
+ '$item_id' => xmlify($item['uri']),
+ '$title' => xmlify($item['title']),
+ '$published' => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)),
+ '$updated' => xmlify(datetime_convert('UTC', 'UTC', $item['edited'] . '+00:00' , ATOM_TIME)),
+ '$location' => xmlify($item['location']),
+ '$coord' => xmlify($item['coord']),
+ '$type' => 'html',
+ '$verb' => xmlify($verb),
+ '$actobj' => $actobj,
+ '$alt' => xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']),
+ '$content' => xmlify(bbcode($item['body'])),
+ '$parent_id' => xmlify($item['parent-uri']),
+ '$comment_allow' => 0
+ ));
+
+ $atom .= replace_macros($cmnt_template, array(
'$name' => xmlify($owner['name']),
'$profile_page' => xmlify($owner['url']),
'$thumb' => xmlify($owner['thumb']),
'$parent_id' => xmlify($item['parent-uri']),
'$comment_allow' => 0
));
+
}
+
+
}
- $atom .= $slap;
}
else {
foreach($items as $item) {
'$id' => xmlify($item['uri']),
'$updated' => xmlify(datetime_convert('UTC', 'UTC', $item['edited'] . '+00:00' , ATOM_TIME))
));
+ $slaps[] = replace_macros($tomb_template, array(
+ '$id' => xmlify($item['uri']),
+ '$updated' => xmlify(datetime_convert('UTC', 'UTC', $item['edited'] . '+00:00' , ATOM_TIME))
+ ));
}
else {
$contact = get_item_contact($item,$contacts);
'$alt' => xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']),
'$comment_allow' => (($item['last-child']) ? 1 : 0)
));
+ $slaps[] = replace_macros($item_template, array(
+ '$name' => xmlify($contact['name']),
+ '$profile_page' => xmlify($contact['url']),
+ '$thumb' => xmlify($contact['thumb']),
+ '$owner_name' => xmlify($item['owner-name']),
+ '$owner_profile_page' => xmlify($item['owner-link']),
+ '$owner_thumb' => xmlify($item['owner-avatar']),
+ '$item_id' => xmlify($item['uri']),
+ '$title' => xmlify($item['title']),
+ '$published' => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)),
+ '$updated' => xmlify(datetime_convert('UTC', 'UTC', $item['edited'] . '+00:00' , ATOM_TIME)),
+ '$location' => xmlify($item['location']),
+ '$coord' => xmlify($item['coord']),
+ '$type' => 'html',
+ '$verb' => xmlify($verb),
+ '$actobj' => $actobj,
+ '$content' => xmlify(bbcode($item['body'])),
+ '$alt' => xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']),
+ '$comment_allow' => (($item['last-child']) ? 1 : 0)
+ ));
+
}
else {
$atom .= replace_macros($cmnt_template, array(
'$parent_id' => xmlify($item['parent-uri']),
'$comment_allow' => (($item['last-child']) ? 1 : 0)
));
+ $slaps[] = replace_macros($cmnt_template, array(
+ '$name' => xmlify($contact['name']),
+ '$profile_page' => xmlify($contact['url']),
+ '$thumb' => xmlify($contact['thumb']),
+ '$item_id' => xmlify($item['uri']),
+ '$title' => xmlify($item['title']),
+ '$published' => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)),
+ '$updated' => xmlify(datetime_convert('UTC', 'UTC', $item['edited'] . '+00:00' , ATOM_TIME)),
+ '$content' => xmlify(bbcode($item['body'])),
+ '$alt' => xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']),
+ '$location' => xmlify($item['location']),
+ '$coord' => xmlify($item['coord']),
+ '$type' => 'html',
+ '$verb' => xmlify($verb),
+ '$actobj' => $actobj,
+ '$parent_id' => xmlify($item['parent-uri']),
+ '$comment_allow' => (($item['last-child']) ? 1 : 0)
+ ));
}
}
}
}
$atom .= '</feed>' . "\r\n";
- if($debugging)
- echo $atom;
+ logger('notifier: ' . $atom);
+ logger('notifier: slaps: ' . print_r($slaps,true));
if($followup)
$recip_str = $parent['contact-id'];
$recip_str = implode(', ', $recipients);
- $r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) ",
+ $r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) AND `blocked` = 0 ",
dbesc($recip_str)
);
if(! count($r))
// delivery loop
-
+ require_once('include/salmon.php');
foreach($r as $contact) {
if($contact['self'])
switch($contact['network']) {
case 'dfrn':
- $deliver_status = dfrn_deliver($owner,$contact,$atom,$debugging);
+ $deliver_status = dfrn_deliver($owner,$contact,$atom);
+ logger('notifier: delivery: ' . $contact['name']);
break;
default:
if($followup) {
- require_once('include/salmon.php');
- slapper($owner,$contact,$slap);
+ slapper($owner,$contact['notify'],$slap);
+ }
+ else {
+
+ // only send salmon if public - e.g. if it's ok to notify
+ // a public hub, it's ok to send a salmon
+
+ if(count($slaps) && $notify_hub) {
+ foreach($slaps as $slappy) {
+ slapper($owner,$contact['notify'],$slappy);
+ }
+ logger('notifier: slapdelivery: ' . $contact['name']);
+ }
}
break;
}
intval($item_id)
);
}
+
+ }
+
+ // send additional slaps to mentioned remote tags (@foo@example.com)
+
+ if(count($slaps) && count($url_recipients) && $notify_hub) {
+ foreach($url_recipients as $url) {
+ foreach($slaps as $slappy) {
+ slapper($owner,$url,$slappy);
+ }
+ logger('notifier: urldelivery: ' . $url);
+ }
}
if((strlen($hub)) && ($notify_hub)) {
require_once('include/security.php');
- $uid = $_SESSION['uid'];
-
+ $uid = local_user();
$parent = ((x($_POST,'parent')) ? intval($_POST['parent']) : 0);
}
$str_tags = '';
- $tagged = array();
+ $inform = '';
$tags = get_tags($body);
if(strpos($tag,'@') === 0) {
$name = substr($tag,1);
if(strpos($name,'@')) {
-
+ $newname = $name;
$links = @webfinger($name);
if(count($links)) {
foreach($links as $link) {
if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page')
$profile = $link['@attributes']['href'];
- if($link['@attributes']['rel'] === 'salmon')
- $salmon = $link['@attributes']['href'];
+ if($link['@attributes']['rel'] === 'salmon') {
+ if(strlen($inform))
+ $inform .= ',';
+ $inform .= 'url:' . str_replace(',','%2c',$link['@attributes']['href']);
+ }
}
}
}
}
if(count($r)) {
$profile = $r[0]['url'];
- $salmon = $r[0]['notify'];
+ if(strlen($inform))
+ $inform .= ',';
+ $inform .= 'cid:' . $r[0]['id'];
}
}
if($profile) {
$uri = item_new_uri($a->get_hostname(),$profile_uid);
$r = q("INSERT INTO `item` (`uid`,`type`,`wall`,`gravity`,`contact-id`,`owner-name`,`owner-link`,`owner-avatar`,
- `author-name`, `author-link`, `author-avatar`, `created`,
- `edited`, `changed`, `uri`, `title`, `body`, `location`, `coord`, `verb`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`)
- VALUES( %d, '%s', %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )",
+ `author-name`, `author-link`, `author-avatar`, `created`, `edited`, `changed`, `uri`, `title`, `body`, `location`, `coord`,
+ `tag`, `inform`, `verb`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`)
+ VALUES( %d, '%s', %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )",
intval($profile_uid),
dbesc($post_type),
intval($wall),
dbesc($body),
dbesc($location),
dbesc($coord),
+ dbesc($str_tags),
+ dbesc($inform),
dbesc($verb),
dbesc($str_contact_allow),
dbesc($str_group_allow),