Some more well-known sources from plugins

This commit is contained in:
Evan Prodromou 2013-06-07 11:49:34 -04:00
parent 08eca420ca
commit caf5f0b3bd
1 changed files with 3 additions and 1 deletions

View File

@ -601,11 +601,13 @@ class ActivityObject
static function fromNoticeSource(Notice_source $source)
{
$object = new ActivityObject();
$wellKnown = array('web', 'xmpp', 'mail', 'omb', 'system', 'api', 'ostatus',
'activity', 'feed', 'mirror', 'twitter', 'facebook');
if (Event::handle('StartActivityObjectFromNoticeSource', array($source, &$object))) {
$object->type = ActivityObject::APPLICATION;
if (in_array($source->code, array('web', 'xmpp', 'mail', 'omb', 'system', 'api'))) {
if (in_array($source->code, $wellKnown)) {
// We use one ID for all well-known StatusNet sources
$object->id = "tag:status.net,2009:notice-source:".$source->code;
} else if ($source->url) {