]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Autocomplete/autocomplete.php
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into 0.9.x
[quix0rs-gnu-social.git] / plugins / Autocomplete / autocomplete.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * List users for autocompletion
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Plugin
23  * @package   StatusNet
24  * @author    Craig Andrews <candrews@integralblue.com>
25  * @copyright 2008-2009 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 /**
35  * List users for autocompletion
36  *
37  * This is the form for adding a new g
38  *
39  * @category Plugin
40  * @package  StatusNet
41  * @author   Craig Andrews <candrews@integralblue.com>
42  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
43  * @link     http://status.net/
44  */
45
46 class AutocompleteAction extends Action
47 {
48     private $result;
49
50     /**
51      * Last-modified date for page
52      *
53      * When was the content of this page last modified? Based on notice,
54      * profile, avatar.
55      *
56      * @return int last-modified date as unix timestamp
57      */
58     function lastModified()
59     {
60         $max=0;
61         foreach($this->users as $user){
62             $max = max($max,strtotime($user->modified),strtotime($user->profile->modified));
63         }
64         foreach($this->groups as $group){
65             $max = max($max,strtotime($group->modified));
66         }
67         return $max;
68     }
69
70     /**
71      * An entity tag for this page
72      *
73      * Shows the ETag for the page, based on the notice ID and timestamps
74      * for the notice, profile, and avatar. It's weak, since we change
75      * the date text "one hour ago", etc.
76      *
77      * @return string etag
78      */
79     function etag()
80     {
81         return '"' . implode(':', array($this->arg('action'),
82             crc32($this->arg('q')), //the actual string can have funny characters in we don't want showing up in the etag
83             $this->arg('limit'),
84             $this->lastModified())) . '"';
85     }
86
87     function prepare($args)
88     {
89         parent::prepare($args);
90         $this->groups=array();
91         $this->users=array();
92         $q = $this->arg('q');
93         $limit = $this->arg('limit');
94         if($limit > 200) $limit=200; //prevent DOS attacks
95         if(substr($q,0,1)=='@'){
96             //user search
97             $q=substr($q,1);
98             $user = new User();
99             $user->limit($limit);
100             $user->whereAdd('nickname like \'' . trim($user->escape($q), '\'') . '%\'');
101             if($user->find()){
102                 while($user->fetch()) {
103                     $this->users[]=clone($user);
104                 }
105             }
106         }
107         if(substr($q,0,1)=='!'){
108             //group search
109             $q=substr($q,1);
110             $group = new User_group();
111             $group->limit($limit);
112             $group->whereAdd('nickname like \'' . trim($group->escape($q), '\'') . '%\'');
113             if($group->find()){
114                 while($group->fetch()) {
115                     $this->groups[]=clone($group);
116                 }
117             }
118         }
119         return true;
120     }
121
122     function handle($args)
123     {
124         parent::handle($args);
125         $results = array();
126         foreach($this->users as $user){
127             $profile = $user->getProfile();
128             $results[]=array('nickname' => $user->nickname, 'fullname'=> $profile->fullname, 'type'=>'user');
129         }
130         foreach($this->groups as $group){
131             $results[]=array('nickname' => $group->nickname, 'fullname'=> $group->fullname, 'type'=>'group');
132         }
133         foreach($results as $result) {
134             print json_encode($result) . "\n";
135         }
136     }
137 }