Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
This commit is contained in:
commit
37179a91d5
|
@ -78,9 +78,13 @@ class OStatusPlugin extends Plugin
|
||||||
*/
|
*/
|
||||||
function onEndInitializeQueueManager(QueueManager $qm)
|
function onEndInitializeQueueManager(QueueManager $qm)
|
||||||
{
|
{
|
||||||
|
// Outgoing from our internal PuSH hub
|
||||||
$qm->connect('hubverify', 'HubVerifyQueueHandler');
|
$qm->connect('hubverify', 'HubVerifyQueueHandler');
|
||||||
$qm->connect('hubdistrib', 'HubDistribQueueHandler');
|
$qm->connect('hubdistrib', 'HubDistribQueueHandler');
|
||||||
$qm->connect('hubout', 'HubOutQueueHandler');
|
$qm->connect('hubout', 'HubOutQueueHandler');
|
||||||
|
|
||||||
|
// Incoming from a foreign PuSH hub
|
||||||
|
$qm->connect('pushinput', 'PushInputQueueHandler');
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -60,9 +60,14 @@ class PushCallbackAction extends Action
|
||||||
|
|
||||||
$post = file_get_contents('php://input');
|
$post = file_get_contents('php://input');
|
||||||
|
|
||||||
// @fixme Queue this to a background process; we should return
|
// Queue this to a background process; we should return
|
||||||
// as quickly as possible from a distribution POST.
|
// as quickly as possible from a distribution POST.
|
||||||
$feedsub->receive($post, $hmac);
|
// If queues are disabled this'll process immediately.
|
||||||
|
$data = array('feedsub_id' => $feedsub->id,
|
||||||
|
'post' => $post,
|
||||||
|
'hmac' => $hmac);
|
||||||
|
$qm = QueueManager::get();
|
||||||
|
$qm->enqueue($data, 'pushinput');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -372,6 +372,12 @@ class FeedSub extends Memcached_DataObject
|
||||||
* feed (as a DOMDocument) will be passed to the StartFeedSubHandleFeed
|
* feed (as a DOMDocument) will be passed to the StartFeedSubHandleFeed
|
||||||
* and EndFeedSubHandleFeed events for processing.
|
* and EndFeedSubHandleFeed events for processing.
|
||||||
*
|
*
|
||||||
|
* Not guaranteed to be running in an immediate POST context; may be run
|
||||||
|
* from a queue handler.
|
||||||
|
*
|
||||||
|
* Side effects: the feedsub record's lastupdate field will be updated
|
||||||
|
* to the current time (not published time) if we got a legit update.
|
||||||
|
*
|
||||||
* @param string $post source of Atom or RSS feed
|
* @param string $post source of Atom or RSS feed
|
||||||
* @param string $hmac X-Hub-Signature header, if present
|
* @param string $hmac X-Hub-Signature header, if present
|
||||||
*/
|
*/
|
||||||
|
@ -402,6 +408,10 @@ class FeedSub extends Memcached_DataObject
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$orig = clone($this);
|
||||||
|
$this->last_update = common_sql_now();
|
||||||
|
$this->update($orig);
|
||||||
|
|
||||||
Event::handle('StartFeedSubReceive', array($this, $feed));
|
Event::handle('StartFeedSubReceive', array($this, $feed));
|
||||||
Event::handle('EndFeedSubReceive', array($this, $feed));
|
Event::handle('EndFeedSubReceive', array($this, $feed));
|
||||||
}
|
}
|
||||||
|
|
49
plugins/OStatus/lib/pushinputqueuehandler.php
Normal file
49
plugins/OStatus/lib/pushinputqueuehandler.php
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* StatusNet - the distributed open-source microblogging tool
|
||||||
|
* Copyright (C) 2010, StatusNet, Inc.
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Process a feed distribution POST from a PuSH hub.
|
||||||
|
* @package FeedSub
|
||||||
|
* @author Brion Vibber <brion@status.net>
|
||||||
|
*/
|
||||||
|
|
||||||
|
class PushInputQueueHandler extends QueueHandler
|
||||||
|
{
|
||||||
|
function transport()
|
||||||
|
{
|
||||||
|
return 'pushinput';
|
||||||
|
}
|
||||||
|
|
||||||
|
function handle($data)
|
||||||
|
{
|
||||||
|
assert(is_array($data));
|
||||||
|
|
||||||
|
$feedsub_id = $data['feedsub_id'];
|
||||||
|
$post = $data['post'];
|
||||||
|
$hmac = $data['hmac'];
|
||||||
|
|
||||||
|
$feedsub = FeedSub::staticGet('id', $feedsub_id);
|
||||||
|
if ($feedsub) {
|
||||||
|
$feedsub->receive($post, $hmac);
|
||||||
|
} else {
|
||||||
|
common_log(LOG_ERR, "Discarding POST to unknown feed subscription id $feedsub_id");
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user