3 * StatusNet, the distributed open-source microblogging tool
5 * List users for autocompletion
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.
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.
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/>.
24 * @author Craig Andrews <candrews@integralblue.com>
25 * @copyright 2008-2009 StatusNet, Inc.
26 * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
36 * List users for autocompletion
38 * This is the form for adding a new g
42 * @author Craig Andrews <candrews@integralblue.com>
43 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44 * @link http://status.net/
46 class AutocompleteAction extends Action
51 * Last-modified date for page
53 * When was the content of this page last modified? Based on notice,
56 * @return int last-modified date as unix timestamp
58 function lastModified()
61 foreach($this->users as $user){
62 $max = max($max,strtotime($user->modified),strtotime($user->getProfile()->modified));
64 foreach($this->groups as $group){
65 $max = max($max,strtotime($group->modified));
71 * An entity tag for this page
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.
81 return '"' . implode(':', array($this->arg('action'),
82 common_user_cache_hash(),
83 crc32($this->arg('q')), //the actual string can have funny characters in we don't want showing up in the etag
85 $this->lastModified())) . '"';
88 function prepare($args)
90 // If we die, show short error messages.
91 StatusNet::setApi(true);
93 parent::prepare($args);
95 $cur = common_current_user();
97 throw new ClientException('Access forbidden', true);
99 $this->groups=array();
100 $this->users=array();
101 $q = $this->arg('q');
102 $limit = $this->arg('limit');
103 if($limit > 200) $limit=200; //prevent DOS attacks
104 if(substr($q,0,1)=='@'){
108 $user->limit($limit);
109 $user->whereAdd('nickname like \'' . trim($user->escape($q), '\'') . '%\'');
111 while($user->fetch()) {
112 $this->users[]=clone($user);
116 if(substr($q,0,1)=='!'){
119 $group = new User_group();
120 $group->limit($limit);
121 $group->whereAdd('nickname like \'' . trim($group->escape($q), '\'') . '%\'');
123 while($group->fetch()) {
124 $this->groups[]=clone($group);
131 function handle($args)
133 parent::handle($args);
135 foreach($this->users as $user){
136 $profile = $user->getProfile();
137 $avatar = $profile->getAvatar(AVATAR_MINI_SIZE);
138 // sigh.... encapsulate this upstream!
140 $avatar = $avatar->displayUrl();
142 $avatar = Avatar::defaultImage(AVATAR_MINI_SIZE);
145 'nickname' => $user->nickname,
146 'fullname'=> $profile->fullname,
151 foreach($this->groups as $group){
152 // sigh.... encapsulate this upstream!
153 if ($group->mini_logo) {
154 $avatar = $group->mini_logo;
156 $avatar = User_group::defaultLogo(AVATAR_MINI_SIZE);
159 'nickname' => $group->nickname,
160 'fullname'=> $group->fullname,
164 foreach($results as $result) {
165 print json_encode($result) . "\n";
170 * Is this action read-only?
172 * @param array $args other arguments
174 * @return boolean is read only action?
176 function isReadOnly($args)