X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fsubscriptions.php;h=d55c15abd7df8e21d191685c0f2c89ece16c3bb7;hb=2abe10b8ea4b5d69fc7f6513bf465541454ca2cf;hp=c15bd53109bd386b377a6ee20728fd6234898899;hpb=289c44141d7d6aabd924f6543c1a49df5b3444c4;p=quix0rs-gnu-social.git diff --git a/actions/subscriptions.php b/actions/subscriptions.php index c15bd53109..d55c15abd7 100644 --- a/actions/subscriptions.php +++ b/actions/subscriptions.php @@ -19,92 +19,55 @@ if (!defined('LACONICA')) { exit(1); } -class SubscriptionsAction extends Action { +require_once(INSTALLDIR.'/lib/gallery.php'); - 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')); - $this->show_subscriptions($profile, $page); - common_show_footer(); - } - - function show_subscriptions($profile, $page) { - - $subs = DB_DataObject::factory('subscription'); - $subs->subscriber = $profile->id; - - # We ask for an extra one to know if we need to do another page - - $subs->limit((($page-1)*SUBSCRIPTIONS_PER_PAGE)+1, 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'); - } +class SubscriptionsAction extends GalleryAction { - common_element_start('a', array('title' => ($subs->fullname) ? - $subs->fullname : - $subs->nickname, - 'href' => $subs->profileurl, - 'class' => 'subscription')); - $avatar = $subs->getAvatar(AVATAR_STREAM_SIZE); - common_element('img', - array('src' => - (($avatar) ? $avatar->url : - $config['avatar']['default']['stream']), - 'width' => AVATAR_STREAM_SIZE, - 'height' => AVATAR_STREAM_SIZE, - 'class' => 'avatar stream', - 'alt' => ($subs->fullname) ? - $subs->fullname : - $subs->nickname)); - common_element_end('a'); - - # XXX: subscribe form here - - if ($idx % SUBSCRIPTIONS_PER_ROW == 0) { - common_element_end('div'); - } + function gallery_type() { + return _('Subscriptions'); + } - if ($idx == SUBSCRIPTIONS_PER_PAGE) { - break; - } + function get_instructions(&$profile) { + $user =& common_current_user(); + if ($user && ($user->id == $profile->id)) { + return _('These are the people whose notices you listen to.'); + } else { + return sprintf(_('These are the people whose notices %s listens to.'), $profile->nickname); } + } - if ($page > 1) { - common_element('a', array('href' => - common_local_url('subscriptions', - array('nickname' => $profile->nickname, - 'page' => $page - 1)), - 'class' => 'prev'), - _t('Previous')); - } + function fields() { + return array('subscribed', 'subscriber'); + } - 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'); + function div_class() { + return 'subscriptions'; } -} \ No newline at end of file + + function get_other(&$subs) { + return $subs->subscribed; + } + + function profile_list_class() { + return 'SubscriptionsList'; + } +} + +class SubscriptionsList extends ProfileList { + + function show_owner_controls($profile) { + $sub = Subscription::pkeyGet(array('subscriber' => $this->owner->id, + 'subscribed' => $profile->id)); + common_element_start('form', array('id' => 'subedit-' . $profile->id, + 'method' => 'post', + 'class' => 'subedit', + 'action' => common_local_url('subedit'))); + common_hidden('token', common_session_token()); + common_hidden('profile', $profile->id); + common_checkbox('jabber', _('Jabber'), $sub->jabber); + common_checkbox('sms', _('SMS'), $sub->sms); + common_submit('save', _('Save')); + common_element_end('form'); + return; + } +}