| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-02-23 20:12:01 +01:00
										 |  |  |  * List profiles and groups for autocompletion | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * LICENCE: This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  Plugin | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Craig Andrews <candrews@integralblue.com> | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |  * @author    Mikael Nordfeldth <mmn@hethane.se> | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |  * @copyright 2008-2009 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |  * @copyright 2009-2013 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-27 15:22:16 +01:00
										 |  |  | if (!defined('GNUSOCIAL')) { exit(1); } | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * List users for autocompletion | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This is the form for adding a new g | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Plugin | 
					
						
							|  |  |  |  * @package  StatusNet | 
					
						
							|  |  |  |  * @author   Craig Andrews <candrews@integralblue.com> | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |  * @author   Mikael Nordfeldth <mmn@hethane.se> | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link     http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class AutocompleteAction extends Action | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |     protected $needLogin = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |     private $result; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 13:48:38 -04:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Last-modified date for page | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * When was the content of this page last modified? Based on notice, | 
					
						
							|  |  |  |      * profile, avatar. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return int last-modified date as unix timestamp | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function lastModified() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $max=0; | 
					
						
							| 
									
										
										
										
											2014-02-23 20:12:01 +01:00
										 |  |  |         foreach($this->profiles as $profile){ | 
					
						
							| 
									
										
										
										
											2014-04-18 22:18:11 +02:00
										 |  |  |             $max = max($max, strtotime($profile->modified)); | 
					
						
							| 
									
										
										
										
											2009-09-24 13:48:38 -04:00
										 |  |  |         } | 
					
						
							|  |  |  |         foreach($this->groups as $group){ | 
					
						
							|  |  |  |             $max = max($max,strtotime($group->modified)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-08-10 12:41:47 +02:00
										 |  |  |         // but maybe this file has been modified after that and could
 | 
					
						
							|  |  |  |         // respond differently
 | 
					
						
							|  |  |  |         return max($max, filemtime(__FILE__)); | 
					
						
							| 
									
										
										
										
											2009-09-24 13:48:38 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * An entity tag for this page | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Shows the ETag for the page, based on the notice ID and timestamps | 
					
						
							|  |  |  |      * for the notice, profile, and avatar. It's weak, since we change | 
					
						
							|  |  |  |      * the date text "one hour ago", etc. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string etag | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function etag() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return '"' . implode(':', array($this->arg('action'), | 
					
						
							| 
									
										
										
										
											2010-09-20 13:42:58 -07:00
										 |  |  |             common_user_cache_hash(), | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |             crc32($this->arg('term')), //the actual string can have funny characters in we don't want showing up in the etag
 | 
					
						
							| 
									
										
										
										
											2009-09-24 13:48:38 -04:00
										 |  |  |             $this->arg('limit'), | 
					
						
							|  |  |  |             $this->lastModified())) . '"'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 10:26:46 +01:00
										 |  |  |     protected function prepare(array $args=array()) | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-12-06 17:20:14 -08:00
										 |  |  |         // If we die, show short error messages.
 | 
					
						
							| 
									
										
										
										
											2015-02-27 12:44:15 +01:00
										 |  |  |         GNUsocial::setApi(true); | 
					
						
							| 
									
										
										
										
											2010-12-06 17:20:14 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |         parent::prepare($args); | 
					
						
							| 
									
										
										
										
											2010-12-06 17:20:14 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 13:48:38 -04:00
										 |  |  |         $this->groups=array(); | 
					
						
							| 
									
										
										
										
											2014-02-23 20:12:01 +01:00
										 |  |  |         $this->profiles=array(); | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |         $term = $this->arg('term'); | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |         $limit = $this->arg('limit'); | 
					
						
							|  |  |  |         if($limit > 200) $limit=200; //prevent DOS attacks
 | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |         if(substr($term,0,1)=='@'){ | 
					
						
							| 
									
										
										
										
											2014-02-23 20:12:01 +01:00
										 |  |  |             //profile search
 | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |             $term=substr($term,1); | 
					
						
							| 
									
										
										
										
											2014-02-23 20:12:01 +01:00
										 |  |  |             $profile = new Profile(); | 
					
						
							|  |  |  |             $profile->limit($limit); | 
					
						
							|  |  |  |             $profile->whereAdd('nickname like \'' . trim($profile->escape($term), '\'') . '%\''); | 
					
						
							|  |  |  |             $profile->whereAdd(sprintf('id in (SELECT id FROM user) OR ' | 
					
						
							|  |  |  |                                . 'id in (SELECT subscribed from subscription' | 
					
						
							| 
									
										
										
										
											2014-05-19 01:09:21 +02:00
										 |  |  |                                . ' where subscriber = %d)', $this->scoped->id)); | 
					
						
							| 
									
										
										
										
											2014-02-23 20:12:01 +01:00
										 |  |  |             if ($profile->find()) { | 
					
						
							|  |  |  |                 while($profile->fetch()) { | 
					
						
							|  |  |  |                     $this->profiles[]=clone($profile); | 
					
						
							| 
									
										
										
										
											2009-11-05 23:51:30 -05:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |         if(substr($term,0,1)=='!'){ | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |             //group search
 | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |             $term=substr($term,1); | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |             $group = new User_group(); | 
					
						
							|  |  |  |             $group->limit($limit); | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |             $group->whereAdd('nickname like \'' . trim($group->escape($term), '\'') . '%\''); | 
					
						
							| 
									
										
										
										
											2014-04-29 23:35:46 -04:00
										 |  |  |             //Can't post to groups we're not subscribed to...:
 | 
					
						
							| 
									
										
										
										
											2014-05-19 01:09:21 +02:00
										 |  |  |             $group->whereAdd(sprintf('id in (SELECT group_id FROM group_member' | 
					
						
							|  |  |  |                              . ' WHERE profile_id = %d)', $this->scoped->id)); | 
					
						
							| 
									
										
										
										
											2009-11-05 23:51:30 -05:00
										 |  |  |             if($group->find()){ | 
					
						
							|  |  |  |                 while($group->fetch()) { | 
					
						
							|  |  |  |                     $this->groups[]=clone($group); | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |     protected function handle() | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |         parent::handle(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 13:48:38 -04:00
										 |  |  |         $results = array(); | 
					
						
							| 
									
										
										
										
											2014-02-23 20:12:01 +01:00
										 |  |  |         foreach($this->profiles as $profile){ | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  |             $avatarUrl = $profile->avatarUrl(AVATAR_MINI_SIZE); | 
					
						
							| 
									
										
										
										
											2015-12-05 16:18:59 +01:00
										 |  |  |             $acct = $profile->getAcctUri(); | 
					
						
							| 
									
										
										
										
											2015-12-27 15:22:16 +01:00
										 |  |  |             $identifier = explode(':', $profile->getAcctUri(), 2)[1]; | 
					
						
							| 
									
										
										
										
											2010-12-06 16:55:16 -08:00
										 |  |  |             $results[] = array( | 
					
						
							| 
									
										
										
										
											2015-12-05 16:18:59 +01:00
										 |  |  |                 'value' => '@'.$identifier, | 
					
						
							|  |  |  |                 'nickname' => $profile->getNickname(), | 
					
						
							|  |  |  |                 'acct_uri' => $acct, | 
					
						
							|  |  |  |                 'label'=> "${identifier} (".$profile->getFullname().")", | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  |                 'avatar' => $avatarUrl, | 
					
						
							| 
									
										
										
										
											2010-12-06 16:55:16 -08:00
										 |  |  |                 'type' => 'user' | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2009-09-24 13:48:38 -04:00
										 |  |  |         } | 
					
						
							|  |  |  |         foreach($this->groups as $group){ | 
					
						
							| 
									
										
										
										
											2015-12-15 21:48:18 -05:00
										 |  |  |             $profile = $group->getProfile(); | 
					
						
							| 
									
										
										
										
											2010-12-06 16:55:16 -08:00
										 |  |  |             // sigh.... encapsulate this upstream!
 | 
					
						
							|  |  |  |             if ($group->mini_logo) { | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  |                 $avatarUrl = $group->mini_logo; | 
					
						
							| 
									
										
										
										
											2010-12-06 16:55:16 -08:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  |                 $avatarUrl = User_group::defaultLogo(AVATAR_MINI_SIZE); | 
					
						
							| 
									
										
										
										
											2010-12-06 16:55:16 -08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-12-05 16:18:59 +01:00
										 |  |  |             $acct = $profile->getAcctUri(); | 
					
						
							| 
									
										
										
										
											2015-12-27 15:22:16 +01:00
										 |  |  |             $identifier = explode(':', $profile->getAcctUri(), 2)[1]; | 
					
						
							| 
									
										
										
										
											2010-12-06 16:55:16 -08:00
										 |  |  |             $results[] = array( | 
					
						
							| 
									
										
										
										
											2017-08-10 12:41:47 +02:00
										 |  |  |                 'value' => '!'.$identifier, | 
					
						
							| 
									
										
										
										
											2015-12-05 16:18:59 +01:00
										 |  |  |                 'nickname' => $group->getNickname(), | 
					
						
							|  |  |  |                 'acct_uri' => $acct, | 
					
						
							|  |  |  |                 'label'=> "${identifier} (".$group->getFullname().")", | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  |                 'avatar' => $avatarUrl, | 
					
						
							| 
									
										
										
										
											2010-12-06 16:55:16 -08:00
										 |  |  |                 'type' => 'group'); | 
					
						
							| 
									
										
										
										
											2009-09-24 13:48:38 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-09-16 22:10:08 +02:00
										 |  |  |         print json_encode($results); | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-12-14 16:14:15 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Is this action read-only? | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args other arguments | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean is read only action? | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function isReadOnly($args) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-09-13 21:44:17 -04:00
										 |  |  | } |