Adds MapView.
[platal.git] / include / userset.inc.php
CommitLineData
8c4a0c30 1<?php
2/***************************************************************************
12262f13 3 * Copyright (C) 2003-2011 Polytechnique.org *
8c4a0c30 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 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 General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
8c4a0c30 22class UserSet extends PlSet
23{
26ba053e 24 public function __construct(PlFilterCondition $cond, $orders = null)
8c4a0c30 25 {
8e720253 26 parent::__construct($cond, $orders);
76cbe885
FB
27 }
28
26ba053e 29 protected function buildFilter(PlFilterCondition $cond, $orders)
76cbe885 30 {
8e720253 31 return new UserFilter($cond, $orders);
8c4a0c30 32 }
33}
34
a7d9ab89
RB
35class ProfileSet extends PlSet
36{
26ba053e 37 public function __construct(PlFilterCondition $cond, $orders = null)
a7d9ab89
RB
38 {
39 parent::__construct($cond, $orders);
40 }
41
26ba053e 42 protected function buildFilter(PlFilterCondition $cond, $orders)
a7d9ab89
RB
43 {
44 return new ProfileFilter($cond, $orders);
45 }
46}
47
78a47eb4
RB
48require_once "ufbuilder.inc.php";
49
a7d9ab89 50class SearchSet extends ProfileSet
8c4a0c30 51{
78a47eb4
RB
52 protected $score = null;
53 protected $valid = true;
8c4a0c30 54
26ba053e 55 public function __construct(UserFilterBuilder $ufb, PlFilterCondition $cond = null)
8c4a0c30 56 {
8e720253 57 if (is_null($cond)) {
8eb6931f 58 $conds = new PFC_And();
8e720253 59 } else if ($cond instanceof PFC_And) {
8eb6931f 60 $conds = $cond;
8e720253 61 } else {
8eb6931f 62 $conds = new PFC_And($cond);
8e720253
RB
63 }
64
8e720253 65 if (!$ufb->isValid()) {
51fcda84 66 $this->valid = false;
8e720253 67 return;
3b2f9d11 68 }
8e720253 69
3314838e 70 $ufc = $ufb->getUFC();
8eb6931f 71 $conds->addChild($ufc);
8e720253
RB
72
73 $orders = $ufb->getOrders();
8e720253 74
8eb6931f 75 parent::__construct($conds, $orders);
8c4a0c30 76 }
77
78a47eb4 78 public function isValid()
8c4a0c30 79 {
78a47eb4 80 return $this->valid;
8c4a0c30 81 }
35fa92e8 82
5c4b28bb
RB
83 /** Add a "rechercher=Chercher" field to the query to simulate the POST
84 * behaviour.
85 */
86 public function args()
87 {
88 $args = parent::args();
89 if (!isset($args['rechercher'])) {
90 $args['rechercher'] = 'Chercher';
91 }
92 return $args;
93 }
94
26ba053e 95 protected function &getFilterResults(PlFilter $pf, PlLimit $limit)
35fa92e8 96 {
d667c548
SJ
97 $profiles = $pf->getProfiles($limit, Profile::FETCH_MINIFICHES);
98 return $profiles;
35fa92e8 99 }
8c4a0c30 100}
101
78a47eb4
RB
102// Specialized SearchSet for quick search.
103class QuickSearchSet extends SearchSet
104{
105 public function __construct(PlFilterCondition $cond = null)
106 {
107 if (!S::logged()) {
108 Env::kill('with_soundex');
109 }
110
111 parent::__construct(new UFB_QuickSearch(), $cond);
112 }
113}
114
115// Specialized SearchSet for advanced search.
116class AdvancedSearchSet extends SearchSet
117{
0f567f55
RB
118 public function __construct($xorg_admin_fields, $ax_admin_fields,
119 PlFilterCondition $cond = null)
78a47eb4 120 {
0f567f55
RB
121 parent::__construct(new UFB_AdvancedSearch($xorg_admin_fields, $ax_admin_fields),
122 $cond);
78a47eb4
RB
123 }
124}
125
83d6305f 126/** Simple set based on an array of User emails
8eb6931f 127 */
83d6305f 128class UserArraySet extends UserSet
1cc0afe7 129{
83d6305f 130 public function __construct(array $emails)
1cc0afe7 131 {
83d6305f 132 parent::__construct(new UFC_Email($emails));
1cc0afe7 133 }
134}
135
83d6305f
RB
136/** Simple set based on an array of Profile emails
137 */
138class ProfileArraySet extends ProfileSet
139{
140 public function __construct(array $emails)
141 {
142 parent::__construct(new UFC_Email($emails));
143 }
144}
145
146
db1c9df5 147/** A multipage view for profiles or users
8eb6931f
RB
148 * Allows the display of bounds when sorting by name or promo.
149 */
db1c9df5 150abstract class MixedView extends MultipageView
169edfac
RB
151{
152 protected function getBoundValue($obj)
153 {
154 if ($obj instanceof Profile) {
155 switch ($this->bound_field) {
156 case 'name':
157 $name = $obj->name('%l');
158 return strtoupper($name);
159 case 'promo':
160 return $obj->promo();
161 default:
162 return null;
163 }
db1c9df5
RB
164 } elseif ($obj instanceof User) {
165 switch ($this->bound_field) {
166 case 'name':
167 $name = $obj->lastName();
168 return strtoupper($name);
169 case 'promo':
170 if ($obj->hasProfile()) {
171 return $obj->profile()->promo();
172 } else {
173 return 'ext';
174 }
175 default:
176 return null;
177 }
169edfac
RB
178 }
179 return null;
180 }
316120eb
FB
181
182 public function bounds()
183 {
184 $order = Env::v('order', $this->defaultkey);
185 $show_bounds = 0;
186 if (($order == "name") || ($order == "-name")) {
187 $this->bound_field = "name";
188 $show_bounds = 1;
189 } elseif (($order == "promo") || ($order == "-promo")) {
190 $this->bound_field = "promo";
191 $show_bounds = -1;
192 }
193 if ($order{0} == '-') {
194 $show_bounds = -$show_bounds;
195 }
196 return $show_bounds;
197 }
169edfac
RB
198}
199
8eb6931f
RB
200/** An extended multipage view for profiles, as minifiches.
201 * Allows to sort by:
202 * - score (for a search query)
203 * - name
204 * - promo
205 * - latest modification
206 *
207 * Paramaters for this view are:
208 * - with_score: whether to allow ordering by score (set only for a quick search)
209 * - starts_with: show only names beginning with the given letter
210 */
db1c9df5 211class MinificheView extends MixedView
8c4a0c30 212{
26ba053e 213 public function __construct(PlSet $set, array $params)
8c4a0c30 214 {
8c4a0c30 215 global $globals;
216 $this->entriesPerPage = $globals->search->per_page;
35fa92e8 217 if (@$params['with_score']) {
8e720253
RB
218 $this->addSort(new PlViewOrder('score', array(
219 new UFO_Score(true),
220 new UFO_ProfileUpdate(true),
221 new UFO_Promo(UserFilter::DISPLAY, true),
913a4e90 222 new UFO_Name(Profile::DN_SORT),
8e720253 223 ), 'pertinence'));
35fa92e8 224 }
8e720253
RB
225 $this->addSort(new PlViewOrder(
226 'name',
913a4e90 227 array(new UFO_Name(Profile::DN_SORT)),
8e720253
RB
228 'nom'));
229 $this->addSort(new PlViewOrder('promo', array(
230 new UFO_Promo(UserFilter::DISPLAY, true),
913a4e90 231 new UFO_Name(Profile::DN_SORT),
8e720253
RB
232 ), 'promotion'));
233 $this->addSort(new PlViewOrder('date_mod', array(
234 new UFO_ProfileUpdate(true),
235 new UFO_Promo(UserFilter::DISPLAY, true),
913a4e90 236 new UFO_Name(Profile::DN_SORT),
8e720253 237 ), 'dernière modification'));
8eb6931f
RB
238 parent::__construct($set, $params);
239 }
240
26ba053e 241 public function apply(PlPage $page)
8eb6931f
RB
242 {
243 if (array_key_exists('starts_with', $this->params)
244 && $this->params['starts_with'] != ""
245 && $this->params['starts_with'] != null) {
246
247 $this->set->addCond(
248 new UFC_Name(Profile::LASTNAME,
249 $this->params['starts_with'], UFC_Name::PREFIX)
250 );
251 }
252 return parent::apply($page);
8c4a0c30 253 }
254
8c4a0c30 255 public function templateName()
256 {
257 return 'include/plview.minifiche.tpl';
258 }
259}
260
db1c9df5 261class MentorView extends MixedView
ff3eb9b7 262{
26ba053e 263 public function __construct(PlSet $set, array $params)
ff3eb9b7 264 {
eaf30d86 265 $this->entriesPerPage = 10;
8e720253 266 $this->addSort(new PlViewOrder('rand', array(new PFO_Random(S::i('uid'))), 'aléatoirement'));
913a4e90 267 $this->addSort(new PlViewOrder('name', array(new UFO_Name(Profile::DN_SORT)), 'nom'));
8e720253
RB
268 $this->addSort(new PlViewOrder('promo', array(
269 new UFO_Promo(UserFilter::DISPLAY, true),
913a4e90 270 new UFO_Name(Profile::DN_SORT),
8e720253
RB
271 ), 'promotion'));
272 $this->addSort(new PlViewOrder('date_mod', array(
273 new UFO_ProfileUpdate(true),
274 new UFO_Promo(UserFilter::DISPLAY, true),
913a4e90 275 new UFO_Name(Profile::DN_SORT),
8e720253 276 ), 'dernière modification'));
8eb6931f 277 parent::__construct($set, $params);
ff3eb9b7 278 }
279
ff3eb9b7 280 public function templateName()
281 {
282 return 'include/plview.referent.tpl';
283 }
284}
285
db1c9df5 286class GroupMemberView extends MixedView
4b866888
RB
287{
288 public function __construct(PlSet $set, array $params)
289 {
290 $this->entriesPerPage = 20;
291 $this->addSort(new PlViewOrder('name', array(new UFO_Name(Profile::DN_SORT)), 'nom'));
292 $this->addSort(new PlViewOrder('promo', array(
293 new UFO_Promo(UserFilter::DISPLAY, true),
294 new UFO_Name(Profile::DN_SORT),
295 ), 'promotion'));
296 parent::__construct($set, $params);
297 }
298
299 public function templateName()
300 {
83d6305f
RB
301 return 'include/plview.groupmember.tpl';
302 }
303}
304
db1c9df5 305class ListMemberView extends MixedView
83d6305f
RB
306{
307 public function __construct(PlSet $set, array $params)
308 {
309 $this->entriesPerPage = 100;
310 $this->addSort(new PlViewOrder('name', array(new UFO_Name(Profile::DN_SORT)), 'nom'));
311 $this->addSort(new PlViewOrder('promo', array(
312 new UFO_Promo(UserFilter::DISPLAY, true),
313 new UFO_Name(Profile::DN_SORT),
314 ), 'promotion'));
315 parent::__construct($set, $params);
316 }
317
318 public function templateName()
319 {
320 return 'include/plview.listmember.tpl';
4b866888
RB
321 }
322}
323
db1c9df5 324class TrombiView extends MixedView
027b16e3
RB
325{
326 public function __construct(PlSet $set, array $params)
327 {
328 $this->entriesPerPage = 24;
329 $this->defaultkey = 'name';
330 if (@$params['with_score']) {
331 $this->addSort(new PlViewOrder('score', array(
332 new UFO_Score(true),
333 new UFO_ProfileUpdate(true),
334 new UFO_Promo(UserFilter::DISPLAY, true),
335 new UFO_Name(Profile::DN_SORT),
336 ), 'pertinence'));
337 }
338 $set->addCond(new UFC_Photo());
339 $this->addSort(new PlViewOrder('name', array(new UFO_Name(Profile::DN_SORT)), 'nom'));
340 $this->addSort(new PlViewOrder('promo', array(
341 new UFO_Promo(UserFilter::DISPLAY, true),
342 new UFO_Name(Profile::DN_SORT),
343 ), 'promotion'));
344 parent::__construct($set, $params);
345 }
346
347 public function templateName()
348 {
349 return 'include/plview.trombi.tpl';
350 }
351
352 public function apply(PlPage $page)
353 {
354 if (!empty($GLOBALS['IS_XNET_SITE'])) {
355 global $globals;
356 $page->assign('mainsiteurl', 'https://' . $globals->core->secure_domain . '/');
357 }
358 return parent::apply($page);
359 }
360}
361
0a928a2f
SJ
362class MapView implements PlView
363{
364 private $set;
365
366 public function __construct(PlSet $set, array $params)
367 {
368 $this->set = $set;
369 }
370
371 public function apply(PlPage $page)
372 {
373 Platal::load('geoloc');
374
375 if (Get::b('ajax')) {
376 $pids = $this->set->getIds(new PlLimit());
377 GeolocModule::assign_json_to_map($page, $pids);
378 $page->runJSON();
379 exit;
380 } else {
381 $this->set->getIds(new PlLimit());
382 GeolocModule::prepare_map($page);
383 return 'geoloc/index.tpl';
384 }
385 }
386
387 public function args()
388 {
389 return $this->set->args();
390 }
391}
392
92e80560
VZ
393class GadgetView implements PlView
394{
26ba053e 395 public function __construct(PlSet $set, array $params)
92e80560
VZ
396 {
397 $this->set =& $set;
398 }
399
26ba053e 400 public function apply(PlPage $page)
92e80560 401 {
8e720253 402 $page->assign_by_ref('set', $this->set->get(new PlLimit(5, 0)));
92e80560
VZ
403 }
404
405 public function args()
406 {
407 return null;
408 }
409}
410
39394cbf
SJ
411class AddressesView implements PlView
412{
413 private $set;
414
26ba053e 415 public function __construct(PlSet $set, array $params)
39394cbf
SJ
416 {
417 $this->set =& $set;
418 }
419
26ba053e 420 public function apply(PlPage $page)
39394cbf 421 {
1319b09e 422 $pids = $this->set->getIds(new PlLimit());
39394cbf 423 $visibility = new ProfileVisibility(ProfileVisibility::VIS_AX);
023c46fb 424 pl_cached_content_headers('text/x-csv', 1);
39394cbf
SJ
425
426 $csv = fopen('php://output', 'w');
427 fputcsv($csv, array('adresses'), ';');
1319b09e
SJ
428 $res = XDB::query('SELECT pd.public_name, pa.postalText
429 FROM profile_addresses AS pa
430 INNER JOIN profile_display AS pd ON (pd.pid = pa.pid)
431 WHERE pa.type = \'home\' AND pa.pub IN (\'public\', \'ax\') AND FIND_IN_SET(\'mail\', pa.flags) AND pa.pid IN {?}
432 GROUP BY pa.pid', $pids);
433 foreach ($res->fetchAllAssoc() as $item) {
434 fputcsv($csv, $item, ';');
39394cbf
SJ
435 }
436 fclose($csv);
437 exit();
438 }
439
440 public function args()
441 {
442 return $this->set->args();
443 }
444}
445
e6a2c4d5
FB
446class JSonView implements PlView
447{
448 private $set;
b1ae686e 449 private $params;
e6a2c4d5
FB
450
451 public function __construct(PlSet $set, array $params)
452 {
b1ae686e
FB
453 $this->set = $set;
454 $this->params = $params;
e6a2c4d5
FB
455 }
456
457 public function apply(PlPage $page)
458 {
459 $export = array();
b1ae686e
FB
460 $start = isset($this->params['offset']) ? $this->params['offset'] : 0;
461 $count = isset($this->params['count']) ? $this->params['count'] : 10;
462 $profiles = $this->set->get(new PlLimit($start, $count));
aaffb7b2 463 foreach ($profiles as $profile) {
e6a2c4d5
FB
464 $export[] = $profile->export();
465 }
aaffb7b2 466 $page->jsonAssign('profile_count', $this->set->count());
e6a2c4d5
FB
467 $page->jsonAssign('profiles', $export);
468 }
469
470 public function args()
471 {
472 return $this->set->args();
473 }
474}
475
8c4a0c30 476// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
477?>