]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/peopletag.php
Put license text inside label to align it with "Remember me" label above it. Improve...
[quix0rs-gnu-social.git] / actions / peopletag.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once INSTALLDIR.'/lib/profilelist.php';
23
24 class PeopletagAction extends Action
25 {
26     
27     var $tag = null;
28     var $page = null;
29         
30     function handle($args)
31     {
32         parent::handle($args);    
33         
34         parent::prepare($args);
35
36         $this->tag = $this->trimmed('tag');
37
38         if (!common_valid_profile_tag($this->tag)) {
39             $this->clientError(sprintf(_('Not a valid people tag: %s'), $this->tag));
40             return;
41         }
42
43         $this->page = $this->trimmed('page');
44
45         if (!$this->page) {
46             $this->page = 1;
47         }
48         
49         $this->showPage();
50     }
51     
52     function showContent()
53     {
54         
55         $profile = new Profile();
56
57         $offset = ($page-1)*PROFILES_PER_PAGE;
58         $limit = PROFILES_PER_PAGE + 1;
59         
60         if (common_config('db','type') == 'pgsql') {
61             $lim = ' LIMIT ' . $limit . ' OFFSET ' . $offset;
62         } else {
63             $lim = ' LIMIT ' . $offset . ', ' . $limit;
64         }
65
66         # XXX: memcached this
67         
68         $qry =  'SELECT profile.* ' .
69                 'FROM profile JOIN profile_tag ' .
70                 'ON profile.id = profile_tag.tagger ' .
71                 'WHERE profile_tag.tagger = profile_tag.tagged ' .
72                 'AND tag = "%s" ' .
73                 'ORDER BY profile_tag.modified DESC';
74         
75         $profile->query(sprintf($qry, $this->tag, $lim));
76
77         $pl = new ProfileList($profile, null, $this);
78         $cnt = $pl->show();
79                 
80         $this->pagination($this->page > 1,
81                           $cnt > PROFILES_PER_PAGE,
82                           $this->page,
83                           $this->trimmed('action'),
84                           array('tag' => $this->tag));
85     }
86     
87     function title() 
88     {
89         return sprintf( _('Users self-tagged with %s - page %d'), $this->tag, $this->page);
90     }
91     
92 }