3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2010, StatusNet, Inc.
6 * Notice stream of notices with a given attachment
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * @author Evan Prodromou <evan@status.net>
26 * @copyright 2010 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET')) {
32 // This check helps protect against security problems;
33 // your code file can't be executed directly from the web.
38 * List notices that contain/link to/use a given URL
42 * @author Evan Prodromou <evan@status.net>
43 * @copyright 2010 StatusNet, Inc.
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45 * @link http://status.net/
48 class NoticebyurlAction extends Action
50 protected $url = null;
51 protected $file = null;
52 protected $notices = null;
53 protected $page = null;
56 * For initializing members of the class.
58 * @param array $argarray misc. arguments
60 * @return boolean true
63 function prepare($argarray)
65 parent::prepare($argarray);
67 $this->file = File::staticGet('id', $this->trimmed('id'));
69 if (empty($this->file)) {
70 throw new ClientException(_('Unknown URL'));
73 $pageArg = $this->trimmed('page');
75 $this->page = (empty($pageArg)) ? 1 : intval($pageArg);
77 $this->notices = $this->file->stream(($this->page - 1) * NOTICES_PER_PAGE,
78 NOTICES_PER_PAGE + 1);
85 if ($this->page == 1) {
86 return sprintf(_("Notices linking to %s"), $this->file->url);
88 return sprintf(_("Notices linking to %s, page %d"),
97 * @param array $argarray is ignored since it's now passed in in prepare()
102 function handle($argarray=null)
107 function showContent()
109 $nl = new NoticeList($this->notices, $this);
115 $this->pagination($this->page > 1,
116 $cnt > NOTICES_PER_PAGE,
119 array('id' => $this->file->id));
123 * Return true if read only.
127 * @param array $args other arguments
129 * @return boolean is read only action?
132 function isReadOnly($args)
138 * Return last modified, if applicable.
142 * @return string last modified http header
144 function lastModified()
146 // For comparison with If-Last-Modified
147 // If not applicable, return null
152 * Return etag, if applicable.
156 * @return string etag http header