3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008-2010, StatusNet, Inc.
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * @author Shashi Gowda <connect2shashi@gmail.com>
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
27 * @link http://status.net/
30 if (!defined('STATUSNET')) {
34 require_once INSTALLDIR . '/lib/peopletageditform.php';
39 * Subscribing to a profile. Does not work for OMB 0.1 remote subscriptions,
40 * but may work for other remote subscription protocols, like OStatus.
44 * - subscribeto: a profile ID
45 * - token: session token to prevent CSRF attacks
46 * - ajax: boolean; whether to return Ajax or full-browser results
48 * Only works if the current user is logged in.
52 * @author Shashi Gowda <connect2shashi@gmail.com>
53 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
54 * @link http://status.net/
57 class ProfilecompletionAction extends Action
65 * Check pre-requisites and instantiate attributes
67 * @param Array $args array of arguments (URL, GET, POST)
69 * @return boolean success flag
71 function prepare($args)
73 parent::prepare($args);
77 $token = $this->trimmed('token');
79 if (!$token || $token != common_session_token()) {
80 // TRANS: Client error displayed when the session token does not match or is not given.
81 $this->clientError(_('There was a problem with your session token.'.
82 ' Try again, please.'));
86 // Only for logged-in users
88 $this->user = common_current_user();
90 if (empty($this->user)) {
91 // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
92 $this->clientError(_('Not logged in.'));
96 $id = $this->arg('peopletag_id');
97 $this->peopletag = Profile_list::staticGet('id', $id);
99 if (empty($this->peopletag)) {
100 // TRANS: Client error displayed trying to reference a non-existing list.
101 $this->clientError(_('No such list.'));
105 $field = $this->arg('field');
106 if (!in_array($field, array('fulltext', 'nickname', 'fullname', 'description', 'location', 'uri'))) {
107 // TRANS: Client error displayed when trying to add an unindentified field to profile.
108 // TRANS: %s is a field name.
109 $this->clientError(sprintf(_('Unidentified field %s.'), htmlspecialchars($field)), 404);
112 $this->field = $field;
120 * Does the subscription and returns results.
122 * @param Array $args unused.
127 function handle($args)
131 $this->startHTML('text/xml;charset=utf-8');
132 $this->elementStart('head');
133 // TRANS: Page title.
134 $this->element('title', null, _m('TITLE','Search results'));
135 $this->elementEnd('head');
136 $this->elementStart('body');
137 $profiles = $this->getResults();
139 if ($this->msg !== null) {
140 $this->element('p', 'error', $this->msg);
142 if (count($profiles) > 0) {
143 $this->elementStart('ul', array('id' => 'profile_search_results', 'class' => 'profile-lister'));
144 foreach ($profiles as $profile) {
145 $this->showProfileItem($profile);
147 $this->elementEnd('ul');
149 // TRANS: Output when there are no results for a search.
150 $this->element('p', 'error', _('No results.'));
153 $this->elementEnd('body');
154 $this->elementEnd('html');
157 function getResults()
160 $q = $this->arg('q');
162 if (strlen($q) < 3) {
163 // TRANS: Error message in case a search is shorter than three characters.
164 $this->msg = _('The search string must be at least 3 characters long.');
166 $page = $this->arg('page');
167 $page = (int) (empty($page) ? 1 : $page);
169 $profile = new Profile();
170 $search_engine = $profile->getSearchEngine('profile');
172 if (Event::handle('StartProfileCompletionSearch', array($this, &$profile, $search_engine))) {
173 $search_engine->set_sort_mode('chron');
174 $search_engine->limit((($page-1)*PROFILES_PER_PAGE), PROFILES_PER_PAGE + 1);
176 if (false === $search_engine->query($q)) {
180 $cnt = $profile->find();
182 // @todo FIXME: Call-time pass-by-reference has been deprecated.
183 Event::handle('EndProfileCompletionSearch', $this, &$profile, $search_engine);
186 while ($profile->fetch()) {
187 $profiles[] = clone($profile);
189 return $this->filter($profiles);
192 function filter($profiles)
194 $current = $this->user->getProfile();
195 $filtered_profiles = array();
196 foreach ($profiles as $profile) {
197 if ($current->canTag($profile)) {
198 $filtered_profiles[] = $profile;
201 return $filtered_profiles;
204 function showProfileItem($profile)
206 $this->elementStart('li', 'entity_removable_profile');
207 $item = new TaggedProfileItem($this, $profile);
209 $this->elementStart('span', 'entity_actions');
211 if ($profile->isTagged($this->peopletag)) {
212 $untag = new UntagButton($this, $profile, $this->peopletag);
215 $tag = new TagButton($this, $profile, $this->peopletag);
219 $this->elementEnd('span');
220 $this->elementEnd('li');