2015-01-29 21:16:30 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
|
|
|
|
|
|
|
class ApiTimelineNetworkPublicAction extends ApiTimelinePublicAction
|
|
|
|
{
|
|
|
|
function title()
|
|
|
|
{
|
|
|
|
return sprintf(_("%s network public timeline"), common_config('site', 'name'));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getStream()
|
|
|
|
{
|
2015-01-29 22:30:13 +00:00
|
|
|
if (!$this->scoped instanceof Profile && common_config('public', 'localonly')) {
|
|
|
|
$this->clientError(_('Network wide public feed is not permitted without authorization'), 403);
|
|
|
|
}
|
2015-01-29 21:16:30 +00:00
|
|
|
return new NetworkPublicNoticeStream($this->scoped);
|
|
|
|
}
|
|
|
|
}
|