Merge branch 'testing' of gitorious.org:statusnet/mainline into testing
* 'testing' of gitorious.org:statusnet/mainline: High-priority OStatus fixes: OStatus: support @example.com/path/to/profile mentions as well as @profile@example.com (latter requires webfinger, former doesn't)
This commit is contained in:
commit
82c9714fca
@ -294,6 +294,9 @@ class NewnoticeAction extends Action
|
|||||||
if ($profile) {
|
if ($profile) {
|
||||||
$content = '@' . $profile->nickname . ' ';
|
$content = '@' . $profile->nickname . ' ';
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
// @fixme most of these bits above aren't being passed on above
|
||||||
|
$inreplyto = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
$notice_form = new NoticeForm($this, '', $content, null, $inreplyto);
|
$notice_form = new NoticeForm($this, '', $content, null, $inreplyto);
|
||||||
|
@ -222,31 +222,62 @@ class OStatusPlugin extends Plugin
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Find any explicit remote mentions. Accepted forms:
|
||||||
|
* Webfinger: @user@example.com
|
||||||
|
* Profile link: @example.com/mublog/user
|
||||||
|
* @param Profile $sender (os user?)
|
||||||
|
* @param string $text input markup text
|
||||||
|
* @param array &$mention in/out param: set of found mentions
|
||||||
|
* @return boolean hook return value
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function onEndFindMentions($sender, $text, &$mentions)
|
function onEndFindMentions($sender, $text, &$mentions)
|
||||||
{
|
{
|
||||||
preg_match_all('/(?:^|\s+)@((?:\w+\.)*\w+@(?:\w+\.)*\w+(?:\w+\-\w+)*\.\w+)/',
|
preg_match_all('!(?:^|\s+)
|
||||||
|
@( # Webfinger:
|
||||||
|
(?:\w+\.)*\w+ # user
|
||||||
|
@ # @
|
||||||
|
(?:\w+\.)*\w+(?:\w+\-\w+)*\.\w+ # domain
|
||||||
|
| # Profile:
|
||||||
|
(?:\w+\.)*\w+(?:\w+\-\w+)*\.\w+ # domain
|
||||||
|
(?:/\w+)+ # /path1(/path2...)
|
||||||
|
)!x',
|
||||||
$text,
|
$text,
|
||||||
$wmatches,
|
$wmatches,
|
||||||
PREG_OFFSET_CAPTURE);
|
PREG_OFFSET_CAPTURE);
|
||||||
|
|
||||||
foreach ($wmatches[1] as $wmatch) {
|
foreach ($wmatches[1] as $wmatch) {
|
||||||
|
$target = $wmatch[0];
|
||||||
|
$oprofile = null;
|
||||||
|
|
||||||
$webfinger = $wmatch[0];
|
if (strpos($target, '/') === false) {
|
||||||
|
$this->log(LOG_INFO, "Checking Webfinger for address '$target'");
|
||||||
$this->log(LOG_INFO, "Checking Webfinger for address '$webfinger'");
|
try {
|
||||||
|
$oprofile = Ostatus_profile::ensureWebfinger($target);
|
||||||
$oprofile = Ostatus_profile::ensureWebfinger($webfinger);
|
} catch (Exception $e) {
|
||||||
|
$this->log(LOG_ERR, "Webfinger check failed: " . $e->getMessage());
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$schemes = array('https', 'http');
|
||||||
|
foreach ($schemes as $scheme) {
|
||||||
|
$url = "$scheme://$target";
|
||||||
|
$this->log(LOG_INFO, "Checking profile address '$url'");
|
||||||
|
try {
|
||||||
|
$oprofile = Ostatus_profile::ensureProfile($url);
|
||||||
|
if ($oprofile) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
} catch (Exception $e) {
|
||||||
|
$this->log(LOG_ERR, "Profile check failed: " . $e->getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (empty($oprofile)) {
|
if (empty($oprofile)) {
|
||||||
|
$this->log(LOG_INFO, "No Ostatus_profile found for address '$target'");
|
||||||
$this->log(LOG_INFO, "No Ostatus_profile found for address '$webfinger'");
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
$this->log(LOG_INFO, "Ostatus_profile found for address '$webfinger'");
|
$this->log(LOG_INFO, "Ostatus_profile found for address '$target'");
|
||||||
|
|
||||||
if ($oprofile->isGroup()) {
|
if ($oprofile->isGroup()) {
|
||||||
continue;
|
continue;
|
||||||
@ -261,7 +292,7 @@ class OStatusPlugin extends Plugin
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$mentions[] = array('mentioned' => array($profile),
|
$mentions[] = array('mentioned' => array($profile),
|
||||||
'text' => $wmatch[0],
|
'text' => $target,
|
||||||
'position' => $pos,
|
'position' => $pos,
|
||||||
'url' => $profile->profileurl);
|
'url' => $profile->profileurl);
|
||||||
}
|
}
|
||||||
|
@ -104,7 +104,7 @@ class PushHubAction extends Action
|
|||||||
throw new ClientException("Invalid hub.secret $secret; must be under 200 bytes.");
|
throw new ClientException("Invalid hub.secret $secret; must be under 200 bytes.");
|
||||||
}
|
}
|
||||||
|
|
||||||
$sub = HubSub::staticGet($sub->topic, $sub->callback);
|
$sub = HubSub::staticGet($topic, $callback);
|
||||||
if (!$sub) {
|
if (!$sub) {
|
||||||
// Creating a new one!
|
// Creating a new one!
|
||||||
$sub = new HubSub();
|
$sub = new HubSub();
|
||||||
|
@ -260,9 +260,15 @@ class HubSub extends Memcached_DataObject
|
|||||||
$retries = intval(common_config('ostatus', 'hub_retries'));
|
$retries = intval(common_config('ostatus', 'hub_retries'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$data = array('sub' => clone($this),
|
// We dare not clone() as when the clone is discarded it'll
|
||||||
|
// destroy the result data for the parent query.
|
||||||
|
// @fixme use clone() again when it's safe to copy an
|
||||||
|
// individual item from a multi-item query again.
|
||||||
|
$sub = HubSub::staticGet($this->topic, $this->callback);
|
||||||
|
$data = array('sub' => $sub,
|
||||||
'atom' => $atom,
|
'atom' => $atom,
|
||||||
'retries' => $retries);
|
'retries' => $retries);
|
||||||
|
common_log(LOG_INFO, "Queuing PuSH: $this->topic to $this->callback");
|
||||||
$qm = QueueManager::get();
|
$qm = QueueManager::get();
|
||||||
$qm->enqueue($data, 'hubout');
|
$qm->enqueue($data, 'hubout');
|
||||||
}
|
}
|
||||||
|
@ -698,7 +698,7 @@ class Ostatus_profile extends Memcached_DataObject
|
|||||||
{
|
{
|
||||||
// Get the canonical feed URI and check it
|
// Get the canonical feed URI and check it
|
||||||
$discover = new FeedDiscovery();
|
$discover = new FeedDiscovery();
|
||||||
if ($hints['feedurl']) {
|
if (isset($hints['feedurl'])) {
|
||||||
$feeduri = $hints['feedurl'];
|
$feeduri = $hints['feedurl'];
|
||||||
$feeduri = $discover->discoverFromFeedURL($feeduri);
|
$feeduri = $discover->discoverFromFeedURL($feeduri);
|
||||||
} else {
|
} else {
|
||||||
|
@ -161,20 +161,20 @@ class XRD
|
|||||||
function saveLink($doc, $link)
|
function saveLink($doc, $link)
|
||||||
{
|
{
|
||||||
$link_element = $doc->createElement('Link');
|
$link_element = $doc->createElement('Link');
|
||||||
if ($link['rel']) {
|
if (!empty($link['rel'])) {
|
||||||
$link_element->setAttribute('rel', $link['rel']);
|
$link_element->setAttribute('rel', $link['rel']);
|
||||||
}
|
}
|
||||||
if ($link['type']) {
|
if (!empty($link['type'])) {
|
||||||
$link_element->setAttribute('type', $link['type']);
|
$link_element->setAttribute('type', $link['type']);
|
||||||
}
|
}
|
||||||
if ($link['href']) {
|
if (!empty($link['href'])) {
|
||||||
$link_element->setAttribute('href', $link['href']);
|
$link_element->setAttribute('href', $link['href']);
|
||||||
}
|
}
|
||||||
if ($link['template']) {
|
if (!empty($link['template'])) {
|
||||||
$link_element->setAttribute('template', $link['template']);
|
$link_element->setAttribute('template', $link['template']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_array($link['title'])) {
|
if (!empty($link['title']) && is_array($link['title'])) {
|
||||||
foreach($link['title'] as $title) {
|
foreach($link['title'] as $title) {
|
||||||
$title = $doc->createElement('Title', $title);
|
$title = $doc->createElement('Title', $title);
|
||||||
$link_element->appendChild($title);
|
$link_element->appendChild($title);
|
||||||
|
Loading…
Reference in New Issue
Block a user