X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fsubscriptions.php;h=3fbea2039d29ec3250acf1b20a2471d99b4288d1;hb=746880e49eb3955d260835ffbc127c3a02b0f211;hp=35a707894424731869324adefb39e5fec9b95e36;hpb=56de8727405ce4c08c38adec2f830d845e528190;p=quix0rs-gnu-social.git diff --git a/actions/subscriptions.php b/actions/subscriptions.php index 35a7078944..3fbea2039d 100644 --- a/actions/subscriptions.php +++ b/actions/subscriptions.php @@ -1,9 +1,12 @@ . + * + * @category Social + * @package Laconica + * @author Evan Prodromou + * @author Sarven Capadisli + * @copyright 2008-2009 Control Yourself, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://laconi.ca/ */ -if (!defined('LACONICA')) { exit(1); } - -# XXX: make distinct from similar definitions in showstream.php - -define('SUBSCRIPTIONS_PER_ROW', 8); -define('SUBSCRIPTIONS_PER_PAGE', 80); - -class SubscriptionsAction extends Action { - - function handle($args) { - parent::handle($args); - $nickname = $this->arg('nickname'); - $profile = Profile::staticGet('nickname', $nickname); - if (!$profile) { - $this->no_such_user(); - } - $user = User::staticGet($profile->id); - if (!$user) { - $this->no_such_user(); - } - $page = $this->arg('page') || 1; - common_show_header($profile->nickname . ": " . _t('Subscriptions'), - NULL, $profile, - array($this, 'show_top')); - $this->show_subscriptions($profile, $page); - common_show_footer(); - } - - function show_top($profile) { - $user = common_current_user(); - common_element('p', 'instructions', - _t('These are the people whose notices ') . - (($user && ($user->id == $profile->id)) ? _t('you listen to.') : ($profile->nickname . _t(' listens to.')))); - } - - function show_subscriptions($profile, $page) { - - $subs = DB_DataObject::factory('subscription'); - $subs->subscriber = $profile->id; - - $subs->orderBy('created DESC'); - - # We ask for an extra one to know if we need to do another page +if (!defined('LACONICA')) { + exit(1); +} - $subs->limit((($page-1)*SUBSCRIPTIONS_PER_PAGE), SUBSCRIPTIONS_PER_PAGE + 1); - - $subs_count = $subs->find(); - - common_element_start('div', 'subscriptions'); - - $idx = 0; - - while ($subs->fetch()) { - - $idx++; - if ($idx % SUBSCRIPTIONS_PER_ROW == 1) { - common_element_start('div', 'row'); - } - - $other = Profile::staticGet($subs->subscribed); - - common_element_start('a', array('title' => ($other->fullname) ? - $other->fullname : - $other->nickname, - 'href' => $other->profileurl, - 'class' => 'subscription')); - $avatar = $other->getAvatar(AVATAR_STREAM_SIZE); - common_element('img', - array('src' => - (($avatar) ? $avatar->url : - common_default_avatar(AVATAR_STREAM_SIZE)), - 'width' => AVATAR_STREAM_SIZE, - 'height' => AVATAR_STREAM_SIZE, - 'class' => 'avatar stream', - 'alt' => ($other->fullname) ? - $other->fullname : - $other->nickname)); - common_element_end('a'); - - # XXX: subscribe form here - - if ($idx % SUBSCRIPTIONS_PER_ROW == 0) { - common_element_end('div'); - } - - if ($idx == SUBSCRIPTIONS_PER_PAGE) { - break; - } - } +/** + * A list of the user's subscriptions + * + * @category Social + * @package Laconica + * @author Evan Prodromou + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://laconi.ca/ + */ - if ($page > 1) { - common_element('a', array('href' => - common_local_url('subscriptions', - array('nickname' => $profile->nickname, - 'page' => $page - 1)), - 'class' => 'prev'), - _t('Previous')); - } +if (!defined('LACONICA')) { exit(1); } - if ($subs_count > SUBSCRIPTIONS_PER_PAGE) { - common_element('a', array('href' => - common_local_url('subscriptions', - array('nickname' => $profile->nickname, - 'page' => $page + 1)), - 'class' => 'next'), - _t('Next')); - } - common_element_end('div'); - } -} \ No newline at end of file +class SubscriptionsAction extends GalleryAction +{ + function title() + { + if ($this->page == 1) { + return sprintf(_('%s subscriptions'), $this->user->nickname); + } else { + return sprintf(_('%s subscriptions, page %d'), + $this->user->nickname, + $this->page); + } + } + + function showPageNotice() + { + $user =& common_current_user(); + if ($user && ($user->id == $this->profile->id)) { + $this->element('p', null, + _('These are the people whose notices '. + 'you listen to.')); + } else { + $this->element('p', null, + sprintf(_('These are the people whose '. + 'notices %s listens to.'), + $this->profile->nickname)); + } + } + + function getAllTags() + { + return $this->getTags('subscribed', 'subscriber'); + } + + function showContent() + { + parent::showContent(); + + $offset = ($this->page-1) * PROFILES_PER_PAGE; + $limit = PROFILES_PER_PAGE + 1; + + $cnt = 0; + + if ($this->tag) { + $subscriptions = $this->user->getTaggedSubscriptions($this->tag, $offset, $limit); + } else { + $subscriptions = $this->user->getSubscriptions($offset, $limit); + } + + if ($subscriptions) { + $subscriptions_list = new SubscriptionsList($subscriptions, $this->user, $this); + $cnt = $subscriptions_list->show(); + } + + $subscriptions->free(); + + $this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE, + $this->page, 'subscriptions', + array('nickname' => $this->user->nickname)); + } +} + +class SubscriptionsList extends ProfileList +{ + function showOwnerControls($profile) + { + $sub = Subscription::pkeyGet(array('subscriber' => $this->owner->id, + 'subscribed' => $profile->id)); + if (!$sub) { + return; + } + + $this->out->elementStart('form', array('id' => 'subedit-' . $profile->id, + 'method' => 'post', + 'class' => 'form_subcription_edit', + 'action' => common_local_url('subedit'))); + $this->out->hidden('token', common_session_token()); + $this->out->hidden('profile', $profile->id); + $this->out->checkbox('jabber', _('Jabber'), $sub->jabber); + $this->out->checkbox('sms', _('SMS'), $sub->sms); + $this->out->submit('save', _('Save')); + $this->out->elementEnd('form'); + return; + } +}