3 * StatusNet, the distributed open-source microblogging tool
5 * List of a user's subscriptions
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/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @author Sarven Capadisli <csarven@status.net>
26 * @copyright 2008-2009 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
36 * A list of the user's subscriptions
40 * @author Evan Prodromou <evan@status.net>
41 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
42 * @link http://status.net/
45 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
47 class SubscriptionsAction extends GalleryAction
51 if ($this->page == 1) {
52 return sprintf(_('%s subscriptions'), $this->user->nickname);
54 return sprintf(_('%1$s subscriptions, page %2$d'),
55 $this->user->nickname,
60 function showPageNotice()
62 $user = common_current_user();
63 if ($user && ($user->id == $this->profile->id)) {
64 $this->element('p', null,
65 _('These are the people whose notices '.
68 $this->element('p', null,
69 sprintf(_('These are the people whose '.
70 'notices %s listens to.'),
71 $this->profile->nickname));
77 return $this->getTags('subscribed', 'subscriber');
80 function showContent()
82 if (Event::handle('StartShowSubscriptionsContent', array($this))) {
83 parent::showContent();
85 $offset = ($this->page-1) * PROFILES_PER_PAGE;
86 $limit = PROFILES_PER_PAGE + 1;
91 $subscriptions = $this->user->getTaggedSubscriptions($this->tag, $offset, $limit);
93 $subscriptions = $this->user->getSubscriptions($offset, $limit);
97 $subscriptions_list = new SubscriptionsList($subscriptions, $this->user, $this);
98 $cnt = $subscriptions_list->show();
100 $this->showEmptyListMessage();
104 $subscriptions->free();
106 $this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
107 $this->page, 'subscriptions',
108 array('nickname' => $this->user->nickname));
111 Event::handle('EndShowSubscriptionsContent', array($this));
115 function showScripts()
117 parent::showScripts();
118 $this->autofocus('tag');
121 function showEmptyListMessage()
123 if (common_logged_in()) {
124 $current_user = common_current_user();
125 if ($this->user->id === $current_user->id) {
126 $message = _('You\'re not listening to anyone\'s notices right now, try subscribing to people you know. Try [people search](%%action.peoplesearch%%), look for members in groups you\'re interested in and in our [featured users](%%action.featured%%). If you\'re a [Twitter user](%%action.twittersettings%%), you can automatically subscribe to people you already follow there.');
128 $message = sprintf(_('%s is not listening to anyone.'), $this->user->nickname);
132 $message = sprintf(_('%s is not listening to anyone.'), $this->user->nickname);
135 $this->elementStart('div', 'guide');
136 $this->raw(common_markup_to_html($message));
137 $this->elementEnd('div');
140 function showSections()
142 parent::showSections();
143 $cloud = new SubscriptionsPeopleTagCloudSection($this);
146 $cloud2 = new SubscriptionsPeopleSelfTagCloudSection($this);
151 // XXX SubscriptionsList and SubscriptionList are dangerously close
153 class SubscriptionsList extends SubscriptionList
155 function newListItem($profile)
157 return new SubscriptionsListItem($profile, $this->owner, $this->action);
161 class SubscriptionsListItem extends SubscriptionListItem
163 function showProfile()
165 $this->startProfile();
167 $this->showFullName();
168 $this->showLocation();
169 $this->showHomepage();
173 $cur = common_current_user();
174 if (!empty($cur) && $cur->id == $this->owner->id) {
175 $this->showOwnerControls();
180 function showOwnerControls()
182 $sub = Subscription::pkeyGet(array('subscriber' => $this->owner->id,
183 'subscribed' => $this->profile->id));
188 $transports = array();
189 Event::handle('GetImTransports', array(&$transports));
190 if (!$transports && !common_config('sms', 'enabled')) {
194 $this->out->elementStart('form', array('id' => 'subedit-' . $this->profile->id,
196 'class' => 'form_subscription_edit',
197 'action' => common_local_url('subedit')));
198 $this->out->hidden('token', common_session_token());
199 $this->out->hidden('profile', $this->profile->id);
201 $attrs = array('name' => 'jabber',
202 'type' => 'checkbox',
203 'class' => 'checkbox',
204 'id' => 'jabber-'.$this->profile->id);
206 $attrs['checked'] = 'checked';
209 $this->out->element('input', $attrs);
210 $this->out->element('label', array('for' => 'jabber-'.$this->profile->id), _('IM'));
212 $this->out->hidden('jabber', $sub->jabber);
214 if (common_config('sms', 'enabled')) {
215 $attrs = array('name' => 'sms',
216 'type' => 'checkbox',
217 'class' => 'checkbox',
218 'id' => 'sms-'.$this->profile->id);
220 $attrs['checked'] = 'checked';
223 $this->out->element('input', $attrs);
224 $this->out->element('label', array('for' => 'sms-'.$this->profile->id), _('SMS'));
226 $this->out->hidden('sms', $sub->sms);
228 $this->out->submit('save', _('Save'));
229 $this->out->elementEnd('form');