]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/peopletag.php
bf2aacb1c27524ed61e38360b96c779eebed691c
[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   
53     function showContent()
54     {
55         
56         $profile = new Profile();
57
58         $offset = ($page-1)*PROFILES_PER_PAGE;
59         $limit = PROFILES_PER_PAGE + 1;
60         
61         if (common_config('db','type') == 'pgsql') {
62             $lim = ' LIMIT ' . $limit . ' OFFSET ' . $offset;
63         } else {
64             $lim = ' LIMIT ' . $offset . ', ' . $limit;
65         }
66
67         # XXX: memcached this
68         
69         $profile->query(sprintf('SELECT profile.* ' .
70                                 'FROM profile JOIN profile_tag ' .
71                                 'ON profile.id = profile_tag.tagger ' .
72                                 'WHERE profile_tag.tagger = profile_tag.tagged ' .
73                                 'AND tag = "%s" ' .
74                                 'ORDER BY profile_tag.modified DESC ',
75                                 'LIMIT 0, %s'), $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 }