]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/subscriptions.php
Make the OpenID settings work with new framework
[quix0rs-gnu-social.git] / actions / subscriptions.php
index 566a053ead74e5a1d84e693b12fa0591311c92ef..7a87a144f7640ef8b8a8a5870bb6d0c125e2fa77 100644 (file)
 
 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'));
-               $this->show_subscriptions($profile, $page);
-               common_show_footer();
-       }
-
-       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
-
-               $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;
-                       }
-               }
-
-               if ($page > 1) {
-                       common_element('a', array('href' =>
-                                                                         common_local_url('subscriptions',
-                                                                                                          array('nickname' => $profile->nickname,
-                                                                                                                        'page' => $page - 1)),
-                                                                         'class' => 'prev'),
-                                          _t('Previous'));
-               }
-
-               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
+require_once(INSTALLDIR.'/lib/gallery.php');
+
+class SubscriptionsAction extends GalleryAction
+{
+
+    function gallery_type()
+    {
+        return _('Subscriptions');
+    }
+
+    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);
+        }
+    }
+
+    function fields()
+    {
+        return array('subscribed', 'subscriber');
+    }
+
+    function div_class()
+    {
+        return 'subscriptions';
+    }
+
+    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));
+        if (!$sub) {
+            return;
+        }
+
+        $this->elementStart('form', array('id' => 'subedit-' . $profile->id,
+                                           'method' => 'post',
+                                           'class' => 'subedit',
+                                           'action' => common_local_url('subedit')));
+        $this->hidden('token', common_session_token());
+        $this->hidden('profile', $profile->id);
+        $this->checkbox('jabber', _('Jabber'), $sub->jabber);
+        $this->checkbox('sms', _('SMS'), $sub->sms);
+        $this->submit('save', _('Save'));
+        $this->elementEnd('form');
+        return;
+    }
+}