123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class ShowstreamAction extends NoticestreamAction
- {
- public function getStream()
- {
- if (empty($this->tag)) {
- $stream = new ProfileNoticeStream($this->target, $this->scoped);
- } else {
- $stream = new TaggedProfileNoticeStream($this->target, $this->tag, $this->scoped);
- }
- return $stream;
- }
- function title()
- {
- $base = $this->target->getFancyName();
- if (!empty($this->tag)) {
- if ($this->page == 1) {
-
-
- return sprintf(_('Notices by %1$s tagged %2$s'), $base, $this->tag);
- } else {
-
-
- return sprintf(_('Notices by %1$s tagged %2$s, page %3$d'), $base, $this->tag, $this->page);
- }
- } else {
- if ($this->page == 1) {
- return sprintf(_('Notices by %s'), $base);
- } else {
-
-
- return sprintf(_('Notices by %1$s, page %2$d'),
- $base,
- $this->page);
- }
- }
- }
- protected function showContent()
- {
- $this->showNotices();
- }
- function showProfileBlock()
- {
- $block = new AccountProfileBlock($this, $this->target);
- $block->show();
- }
- function showPageNoticeBlock()
- {
- return;
- }
- function getFeeds()
- {
- if (!empty($this->tag)) {
- return array(new Feed(Feed::RSS1,
- common_local_url('userrss',
- array('nickname' => $this->target->getNickname(),
- 'tag' => $this->tag)),
-
-
- sprintf(_('Notice feed for %1$s tagged %2$s (RSS 1.0)'),
- $this->target->getNickname(), $this->tag)));
- }
- if (!$this->target->isLocal()) {
-
- return array(
- new Feed(Feed::ATOM,
- $this->target->getAtomFeed(),
-
-
- sprintf(_('Notice feed for %s (Atom)'),
- $this->target->getNickname()))
- );
- }
- return array(new Feed(Feed::JSON,
- common_local_url('ApiTimelineUser',
- array(
- 'id' => $this->target->getID(),
- 'format' => 'as')),
-
-
- sprintf(_('Notice feed for %s (Activity Streams JSON)'),
- $this->target->getNickname())),
- new Feed(Feed::RSS1,
- common_local_url('userrss',
- array('nickname' => $this->target->getNickname())),
-
-
- sprintf(_('Notice feed for %s (RSS 1.0)'),
- $this->target->getNickname())),
- new Feed(Feed::RSS2,
- common_local_url('ApiTimelineUser',
- array(
- 'id' => $this->target->getID(),
- 'format' => 'rss')),
-
-
- sprintf(_('Notice feed for %s (RSS 2.0)'),
- $this->target->getNickname())),
- new Feed(Feed::ATOM,
- $this->target->getAtomFeed(),
-
-
- sprintf(_('Notice feed for %s (Atom)'),
- $this->target->getNickname())),
- new Feed(Feed::FOAF,
- common_local_url('foaf', array('nickname' =>
- $this->target->getNickname())),
-
-
- sprintf(_('FOAF for %s'), $this->target->getNickname())));
- }
- public function extraHeaders()
- {
- parent::extraHeaders();
-
- if (get_class($this) == 'ShowstreamAction') {
- foreach ($this->target->getRelMes() as $relMe) {
- header('Link: <'.htmlspecialchars($relMe['href']).'>; rel="me"', false);
- }
- }
- }
- function extraHead()
- {
- if ($this->target->bio) {
- $this->element('meta', array('name' => 'description',
- 'content' => $this->target->getDescription()));
- }
- $rsd = common_local_url('rsd',
- array('nickname' => $this->target->getNickname()));
-
- $this->element('link', array('rel' => 'EditURI',
- 'type' => 'application/rsd+xml',
- 'href' => $rsd));
- if ($this->page != 1) {
- $this->element('link', array('rel' => 'canonical',
- 'href' => $this->target->getUrl()));
- }
- }
- function showEmptyListMessage()
- {
-
- $message = sprintf(_('This is the timeline for %1$s, but %1$s hasn\'t posted anything yet.'), $this->target->getNickname()) . ' ';
- if ($this->scoped instanceof Profile) {
- if ($this->target->getID() === $this->scoped->getID()) {
-
- $message .= _('Seen anything interesting recently? You haven\'t posted any notices yet, now would be a good time to start :)');
- } else {
-
-
- $message .= sprintf(_('You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%%?status_textarea=%2$s).'), $this->target->getNickname(), '@' . $this->target->getNickname());
- }
- }
- else {
-
-
- $message .= sprintf(_('Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to them.'), $this->target->getNickname());
- }
- $this->elementStart('div', 'guide');
- $this->raw(common_markup_to_html($message));
- $this->elementEnd('div');
- }
- function showNotices()
- {
- $pnl = new PrimaryNoticeList($this->notice, $this);
- $cnt = $pnl->show();
- if (0 == $cnt) {
- $this->showEmptyListMessage();
- }
-
- $args = array('nickname' => $this->target->getNickname(), 'id' => $this->target->getID());
- if (!empty($this->tag))
- {
- $args['tag'] = $this->tag;
- }
- $this->pagination($this->page>1, $cnt>NOTICES_PER_PAGE, $this->page,
- $this->getActionName(), $args);
- }
- function showAnonymousMessage()
- {
- if (!(common_config('site','closed') || common_config('site','inviteonly'))) {
-
-
- $m = sprintf(_('**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
- 'based on the Free Software [StatusNet](http://status.net/) tool. ' .
- '[Join now](%%%%action.register%%%%) to follow **%s**\'s notices and many more! ([Read more](%%%%doc.help%%%%))'),
- $this->target->getNickname(), $this->target->getNickname());
- } else {
-
-
- $m = sprintf(_('**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
- 'based on the Free Software [StatusNet](http://status.net/) tool.'),
- $this->target->getNickname(), $this->target->getNickname());
- }
- $this->elementStart('div', array('id' => 'anon_notice'));
- $this->raw(common_markup_to_html($m));
- $this->elementEnd('div');
- }
- function noticeFormOptions()
- {
- $options = parent::noticeFormOptions();
- if (!$this->scoped instanceof Profile || !$this->scoped->sameAs($this->target)) {
- $options['to_profile'] = $this->target;
- }
- return $options;
- }
- }
|