3 * StatusNet, the distributed open-source microblogging tool
5 * Show a map of user's friends' notices
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 * @category Mapstraction
24 * @author Evan Prodromou <evan@status.net>
25 * @copyright 2009 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET')) {
35 * Show a map of user's notices
37 * @category Mapstraction
39 * @author Evan Prodromou <evan@status.net>
40 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41 * @link http://status.net/
44 class AllmapAction extends OwnerDesignAction
50 public $plugin = null;
52 function prepare($args)
54 parent::prepare($args);
56 $nickname_arg = $this->arg('nickname');
57 $nickname = common_canonical_nickname($nickname_arg);
59 // Permanent redirect on non-canonical nickname
61 if ($nickname_arg != $nickname) {
62 $args = array('nickname' => $nickname);
63 if ($this->arg('page') && $this->arg('page') != 1) {
64 $args['page'] = $this->arg['page'];
66 common_redirect(common_local_url($this->trimmed('action'), $args), 301);
70 $this->user = User::staticGet('nickname', $nickname);
73 $this->clientError(_('No such user.'), 404);
77 $this->profile = $this->user->getProfile();
79 if (!$this->profile) {
80 $this->serverError(_('User has no profile.'));
84 $page = $this->trimmed('page');
86 if (!empty($page) && Validate::number($page)) {
87 $this->page = $page+0;
97 if (!empty($this->profile->fullname)) {
98 $base = $this->profile->fullname . ' (' . $this->user->nickname . ') ';
100 $base = $this->user->nickname;
103 if ($this->page == 1) {
104 return sprintf(_("%s friends map"),
107 return sprintf(_("%s friends map, page %d"),
113 function handle($args)
115 parent::handle($args);
119 function showContent()
121 $this->element('div', array('id' => 'map_canvas',
122 'class' => 'gray smallmap',
123 'style' => "width: 100%; height: 400px"));
126 function showScripts()
128 parent::showScripts();
129 $cur = common_current_user();
130 if (!empty($cur) && $cur->id == $this->user->id) {
131 $notice = $this->user->noticeInbox(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
133 $notice = $this->user->noticesWithFriends(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
136 $jsonArray = array();
138 while ($notice->fetch()) {
139 if (!empty($notice->lat) && !empty($notice->lon)) {
140 $jsonNotice = $this->noticeAsJson($notice);
141 $jsonArray[] = $jsonNotice;
145 $this->elementStart('script', array('type' => 'text/javascript'));
146 $this->raw('/*<![CDATA[*/'); // XHTML compat for Safari
147 $this->raw('var _notices = ' . json_encode($jsonArray).'; ');
148 $this->raw('showMapstraction($("#map_canvas"),_notices);');
149 $this->raw('/*]]>*/'); // XHTML compat for Safari
150 $this->elementEnd('script');
155 function noticeAsJson($notice)
157 // FIXME: this code should be abstracted to a neutral third
158 // party, like Notice::asJson(). I'm not sure of the ethics
159 // of refactoring from within a plugin, so I'm just abusing
160 // the ApiAction method. Don't do this unless you're me!
162 require_once(INSTALLDIR.'/lib/api.php');
164 $act = new ApiAction('/dev/null');
166 $arr = $act->twitterStatusArray($notice, true);
167 $arr['url'] = $notice->bestUrl();
168 $arr['html'] = $notice->rendered;
169 $arr['source'] = $arr['source'];
171 if (!empty($notice->reply_to)) {
172 $reply_to = Notice::staticGet('id', $notice->reply_to);
173 if (!empty($reply_to)) {
174 $arr['in_reply_to_status_url'] = $reply_to->bestUrl();
179 $profile = $notice->getProfile();
180 $arr['user']['profile_url'] = $profile->profileurl;