Let say... start porting module/profile.php
[platal.git] / include / userset.inc.php
CommitLineData
8c4a0c30 1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 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 22require_once('user.func.inc.php');
23
24global $globals;
25
35fa92e8 26@$globals->search->result_where_statement = '
043bbacf
SJ
27 LEFT JOIN profile_education AS edu ON (u.user_id = edu.uid)
28 LEFT JOIN profile_education_enum AS ede ON (ede.id = edu.eduid)
f9cddbef
SJ
29 LEFT JOIN profile_job AS j ON (j.id = 0 AND j.uid = u.user_id)
30 LEFT JOIN profile_job_enum AS je ON (je.id = j.jobid)
31 LEFT JOIN profile_job_sector_enum AS es ON (j.sectorid = es.id)
32 LEFT JOIN fonctions_def AS ef ON (j.functionid = ef.id)
2398e553
SJ
33 LEFT JOIN geoloc_pays AS n1 ON (u.nationalite = n1.a2)
34 LEFT JOIN geoloc_pays AS n2 ON (u.nationalite2 = n2.a2)
35 LEFT JOIN geoloc_pays AS n3 ON (u.nationalite2 = n3.a2)
36 LEFT JOIN adresses AS adr ON (u.user_id = adr.uid AND FIND_IN_SET(\'active\',adr.statut))
37 LEFT JOIN geoloc_pays AS gp ON (adr.country = gp.a2)
38 LEFT JOIN geoloc_region AS gr ON (adr.country = gr.a2 AND adr.region = gr.region)
39 LEFT JOIN emails AS em ON (em.uid = u.user_id AND em.flags = \'active\')';
8c4a0c30 40
41class UserSet extends PlSet
42{
43 public function __construct($joins = '', $where = '')
44 {
45 global $globals;
46 parent::__construct('auth_user_md5 AS u',
eaf30d86
PH
47 (!empty($GLOBALS['IS_XNET_SITE']) ?
48 'INNER JOIN groupex.membres AS gxm ON (u.user_id = gxm.uid
8c4a0c30 49 AND gxm.asso_id = ' . $globals->asso('id') . ') ' : '')
7773d125 50 . 'LEFT JOIN auth_user_quick AS q USING (user_id)' . $joins,
8c4a0c30 51 $where,
52 'u.user_id');
53 }
54}
55
56class SearchSet extends UserSet
57{
86b5c8f0 58 public $advanced = false;
35fa92e8 59 private $score = null;
8c4a0c30 60 private $order = null;
61 private $quick = false;
62
a2aa8436 63 public function __construct($quick = false, $no_search = false, $join = '', $where = '')
8c4a0c30 64 {
adb07f6f 65 Platal::load('search', 'search.inc.php');
8c4a0c30 66 if ($no_search) {
67 return;
68 }
69
70 $this->quick = $quick;
71 if ($quick) {
a2aa8436 72 $this->getQuick($join, $where);
8c4a0c30 73 } else {
a2aa8436 74 $this->getAdvanced($join, $where);
8c4a0c30 75 }
76 }
77
a2aa8436 78 private function getQuick($join, $where)
8c4a0c30 79 {
adb07f6f 80 Platal::load('search', 'search.inc.php');
8c4a0c30 81 global $globals;
82 if (!S::logged()) {
83 Env::kill('with_soundex');
84 }
85 $qSearch = new QuickSearch('quick');
86 $fields = new SFieldGroup(true, array($qSearch));
87 if ($qSearch->isEmpty()) {
8d118e58 88 new ThrowError('Aucun critère de recherche n\'est spécifié.');
8c4a0c30 89 }
35fa92e8 90 $this->score = $qSearch->get_score_statement();
3b2f9d11 91 $pwhere = $fields->get_where_statement();
92 if (trim($pwhere)) {
93 if (trim($where)) {
94 $where .= ' AND ';
95 }
96 $where .= $pwhere;
97 }
98 if (S::logged() && Env::has('nonins')) {
99 if (trim($where)) {
100 $where .= ' AND ';
101 }
102 $where .= 'u.perms="pending" AND u.deces=0';
103 }
104 parent::__construct($join . ' ' . $fields->get_select_statement(), $where);
8c4a0c30 105
106 $this->order = implode(',',array_filter(array($fields->get_order_statement(),
107 'u.promo DESC, NomSortKey, prenom')));
108 }
109
63fac48e 110 private function getAdvanced($join, $where)
8c4a0c30 111 {
112 global $globals;
86b5c8f0 113 $this->advanced = true;
8c4a0c30 114 $fields = new SFieldGroup(true, advancedSearchFromInput());
115 if ($fields->too_large()) {
116 new ThrowError('Recherche trop générale.');
117 }
137e819f
FB
118 parent::__construct(@$join . ' ' . $fields->get_select_statement(),
119 @$where . ' ' . $fields->get_where_statement());
8c4a0c30 120 $this->order = implode(',',array_filter(array($fields->get_order_statement(),
121 'promo DESC, NomSortKey, prenom')));
122 }
35fa92e8 123
124 public function &get($fields, $joins, $where, $groupby, $order, $limitcount = null, $limitfrom = null)
125 {
126 if ($this->score) {
127 $fields .= ', ' . $this->score;
128 }
129 return parent::get($fields, $joins, $where, $groupby, $order, $limitcount, $limitfrom);
130 }
8c4a0c30 131}
132
1cc0afe7 133class ArraySet extends UserSet
134{
135 public function __construct(array $users)
136 {
137 $where = $this->getUids($users);
138 if ($where) {
7586ae0b 139 $where = "u.hruid IN ($where)";
1cc0afe7 140 } else {
141 $where = " 0 ";
142 }
143 parent::__construct('', $where);
144 }
145
146 private function getUids(array $users)
147 {
4f25bc90 148 $users = User::getBulkHruid($users, array('User', '_silent_user_callback'));
1cc0afe7 149 if (is_null($users)) {
150 return '';
151 }
152 return '\'' . implode('\', \'', $users) . '\'';
153 }
154}
155
8c4a0c30 156class MinificheView extends MultipageView
157{
158 public function __construct(PlSet &$set, $data, array $params)
159 {
f711b03f 160 require_once 'education.func.inc.php';
8c4a0c30 161 global $globals;
162 $this->entriesPerPage = $globals->search->per_page;
35fa92e8 163 if (@$params['with_score']) {
efe597c5 164 $this->addSortKey('score', array('-score', '-date', '-d.promo', 'name_sort'), 'pertinence');
35fa92e8 165 }
cd5bd7dc 166 $this->addSortKey('name', array('name_sort'), 'nom');
efe597c5
FB
167 $this->addSortKey('promo', array('-d.promo', 'name_sort'), 'promotion');
168 $this->addSortKey('date_mod', array('-date', '-d.promo', 'name_sort'), 'dernière modification');
8c4a0c30 169 parent::__construct($set, $data, $params);
170 }
171
172 public function fields()
173 {
7773d125 174 global $globals;
d1319488 175 return "u.user_id AS id, u.*, d.promo,
abc50010 176 CONCAT(a.alias, '@{$globals->mail->domain}') AS bestemail,
8c4a0c30 177 u.perms != 'pending' AS inscrit,
178 u.perms != 'pending' AS wasinscrit,
179 u.deces != 0 AS dcd, u.deces, u.matricule_ax,
180 FIND_IN_SET('femme', u.flags) AS sexe,
f9cddbef 181 je.name AS entreprise, je.url AS job_web, es.name AS secteur, ef.fonction_fr AS fonction,
c7eac294
SJ
182 IF(n1.nat = '', n1.pays, n1.nat) AS nat1, n1.a2 AS iso3166_1,
183 IF(n2.nat = '', n2.pays, n2.nat) AS nat2, n2.a2 AS iso3166_2,
184 IF(n3.nat = '', n3.pays, n3.nat) AS nat3, n3.a2 AS iso3166_3,
185 IF(ede0.abbreviation = '', ede0.name, ede0.abbreviation) AS eduname0, ede0.url AS eduurl0,
186 IF(edd0.abbreviation = '', edd0.degree, edd0.abbreviation) AS edudegree0,
1504ac45 187 edu0.grad_year AS edugrad_year0, f0.field AS edufield0, edu0.program AS eduprogram0,
c7eac294
SJ
188 IF(ede1.abbreviation = '', ede1.name, ede1.abbreviation) AS eduname1, ede1.url AS eduurl1,
189 IF(edd1.abbreviation = '', edd1.degree, edd1.abbreviation) AS edudegree1,
1504ac45 190 edu1.grad_year AS edugrad_year1, f1.field AS edufield1, edu1.program AS eduprogram1,
c7eac294
SJ
191 IF(ede2.abbreviation = '', ede2.name, ede2.abbreviation) AS eduname2, ede2.url AS eduurl2,
192 IF(edd2.abbreviation = '', edd2.degree, edd2.abbreviation) AS edudegree2,
0b37833b 193 edu2.grad_year AS edugrad_year2, f2.field AS edufield2, edu2.program AS eduprogram2,
c7eac294
SJ
194 IF(ede3.abbreviation = '', ede3.name, ede3.abbreviation) AS eduname3, ede3.url AS eduurl3,
195 IF(edd3.abbreviation = '', edd3.degree, edd3.abbreviation) AS edudegree3,
0b37833b 196 edu3.grad_year AS edugrad_year3, f3.field AS edufield3, edu3.program AS eduprogram3,
8c4a0c30 197 adr.city, gp.a2, gp.pays AS countrytxt, gr.name AS region,
cd5bd7dc
PC
198 (COUNT(em.email) > 0 OR FIND_IN_SET('googleapps', u.mail_storage) > 0) AS actif,
199 nd.display AS name_display, nd.tooltip AS name_tooltip, nd.sort AS name_sort" .
0e5ec860 200 (S::logged() ? ", c.contact AS contact" : '');
8c4a0c30 201 }
202
203 public function joins()
204 {
abc50010
SJ
205 return "LEFT JOIN aliases AS a ON (u.user_id = a.id AND FIND_IN_SET('bestalias', a.flags))
206 LEFT JOIN profile_job AS j ON (j.uid = u.user_id".(S::logged() ? "" : " AND j.pub = 'public'").")
f9cddbef
SJ
207 LEFT JOIN profile_job_enum AS je ON (je.id = j.jobid)
208 LEFT JOIN profile_job_sector_enum AS es ON (j.sectorid = es.id)
209 LEFT JOIN fonctions_def AS ef ON (j.functionid = ef.id)
2398e553
SJ
210 LEFT JOIN geoloc_pays AS n1 ON (u.nationalite = n1.a2)
211 LEFT JOIN geoloc_pays AS n2 ON (u.nationalite2 = n2.a2)
212 LEFT JOIN geoloc_pays AS n3 ON (u.nationalite3 = n3.a2)
043bbacf
SJ
213 LEFT JOIN profile_education AS edu0 ON (u.user_id = edu0.uid AND edu0.id = 0)
214 LEFT JOIN profile_education_enum AS ede0 ON (ede0.id = edu0.eduid)
215 LEFT JOIN profile_education_degree_enum AS edd0 ON (edd0.id = edu0.degreeid)
216 LEFT JOIN profile_education_field_enum AS f0 ON (f0.id = edu0.fieldid)
217 LEFT JOIN profile_education AS edu1 ON (u.user_id = edu1.uid AND edu1.id = 1)
218 LEFT JOIN profile_education_enum AS ede1 ON (ede1.id = edu1.eduid)
219 LEFT JOIN profile_education_degree_enum AS edd1 ON (edd1.id = edu1.degreeid)
220 LEFT JOIN profile_education_field_enum AS f1 ON (f1.id = edu1.fieldid)
221 LEFT JOIN profile_education AS edu2 ON (u.user_id = edu2.uid AND edu2.id = 2)
222 LEFT JOIN profile_education_enum AS ede2 ON (ede2.id = edu2.eduid)
223 LEFT JOIN profile_education_degree_enum AS edd2 ON (edd2.id = edu2.degreeid)
224 LEFT JOIN profile_education_field_enum AS f2 ON (f2.id = edu2.fieldid)
225 LEFT JOIN profile_education AS edu3 ON (u.user_id = edu3.uid AND edu3.id = 3)
226 LEFT JOIN profile_education_enum AS ede3 ON (ede3.id = edu3.eduid)
227 LEFT JOIN profile_education_degree_enum AS edd3 ON (edd3.id = edu3.degreeid)
228 LEFT JOIN profile_education_field_enum AS f3 ON (f3.id = edu3.fieldid)
2398e553
SJ
229 LEFT JOIN adresses AS adr ON (u.user_id = adr.uid
230 AND FIND_IN_SET('active', adr.statut)".(S::logged() ? "" : "
231 AND adr.pub = 'public'").")
232 LEFT JOIN geoloc_pays AS gp ON (adr.country = gp.a2)
233 LEFT JOIN geoloc_region AS gr ON (adr.country = gr.a2 AND adr.region = gr.region)
234 LEFT JOIN emails AS em ON (em.uid = u.user_id AND em.flags = 'active')
fb2c09c9 235 INNER JOIN profile_names_display AS nd ON (nd.user_id = u.user_id)
d1319488 236 INNER JOIN profile_display AS d ON (d.pid = u.user_id)" . (S::logged() ?
fb2c09c9 237 "LEFT JOIN contacts AS c ON (c.contact = u.user_id AND c.uid = " . S::v('uid') . ")"
86b5c8f0 238 : "");
8c4a0c30 239 }
240
b71b2a36
SJ
241 public function bounds()
242 {
243 $order = Env::v('order', $this->defaultkey);
244 $show_bounds = 0;
245 if (($order == "name") || ($order == "-name")) {
246 $this->bound_field = "nom";
247 $show_bounds = 1;
248 } elseif (($order == "promo") || ($order == "-promo")) {
249 $this->bound_field = "promo";
250 $show_bounds = -1;
251 }
252 if ($order{0} == '-') {
253 $show_bounds = -$show_bounds;
254 }
255 return $show_bounds;
256 }
257
8c4a0c30 258 public function templateName()
259 {
260 return 'include/plview.minifiche.tpl';
261 }
262}
263
ff3eb9b7 264class MentorView extends MultipageView
265{
266 public function __construct(PlSet &$set, $data, array $params)
267 {
eaf30d86 268 $this->entriesPerPage = 10;
ff3eb9b7 269 $this->addSortKey('rand', array('RAND(' . S::i('uid') . ')'), 'aléatoirement');
cd5bd7dc
PC
270 $this->addSortKey('name', array('name_sort'), 'nom');
271 $this->addSortKey('promo', array('-promo', 'name_sort'), 'promotion');
272 $this->addSortKey('date_mod', array('-date', '-promo', 'name_sort'), 'dernière modification');
eaf30d86 273 parent::__construct($set, $data, $params);
ff3eb9b7 274 }
275
276 public function fields()
277 {
d1319488 278 return "m.uid, d.promo, u.hruid,
5fecdf6d 279 m.expertise, mp.country, ms.sectorid, ms.subsectorid,
cd5bd7dc
PC
280 nd.display AS name_display, nd.tooltip AS name_tooltip, nd.sort AS name_sort";
281 }
282
283 public function joins()
284 {
fb2c09c9 285 return "INNER JOIN profile_names_display AS nd ON (nd.user_id = u.user_id)
d1319488 286 INNER JOIN profile_display AS d ON (d.pid = u.user_id)";
ff3eb9b7 287 }
288
b71b2a36
SJ
289 public function bounds()
290 {
291 $order = Env::v('order', $this->defaultkey);
292 $show_bounds = 0;
293 if (($order == "name") || ($order == "-name")) {
294 $this->bound_field = "nom";
295 $show_bounds = 1;
296 } elseif (($order == "promo") || ($order == "-promo")) {
297 $this->bound_field = "promo";
298 $show_bounds = -1;
299 }
300 if ($order{0} == '-') {
301 $show_bounds = -$show_bounds;
302 }
303 return $show_bounds;
304 }
305
ff3eb9b7 306 public function templateName()
307 {
308 return 'include/plview.referent.tpl';
309 }
310}
311
8c4a0c30 312class TrombiView extends MultipageView
313{
314 public function __construct(PlSet &$set, $data, array $params)
315 {
316 $this->entriesPerPage = 24;
cd5bd7dc 317 $this->order = explode(',', Env::v('order', 'name_sort'));
35fa92e8 318 if (@$params['with_score']) {
cd5bd7dc 319 $this->addSortKey('score', array('-score', '-watch_last', '-promo', 'name_sort'), 'pertinence');
35fa92e8 320 }
cd5bd7dc
PC
321 $this->addSortKey('name', array('name_sort'), 'nom');
322 $this->addSortKey('promo', array('-promo', 'name_sort'), 'promotion');
8c4a0c30 323 parent::__construct($set, $data, $params);
324 }
325
326 public function fields()
327 {
d1319488 328 return "u.user_id, nd.display AS name_display, nd.tooltip AS name_tooltip, nd.sort AS name_sort, u.promo, d.promo, u.hruid ";
8c4a0c30 329 }
330
331 public function joins()
332 {
fb2c09c9 333 return "INNER JOIN photo AS p ON (p.uid = u.user_id)
d1319488 334 INNER JOIN profile_display AS d ON (d.pid = u.user_id)
cd5bd7dc 335 INNER JOIN profile_names_display AS nd ON (nd.user_id = u.user_id)";
8c4a0c30 336 }
337
b71b2a36
SJ
338 public function bounds()
339 {
340 $order = Env::v('order', $this->defaultkey);
341 $show_bounds = 0;
342 if (($order == "name") || ($order == "-name")) {
343 $this->bound_field = "nom";
344 $show_bounds = 1;
345 } elseif (($order == "promo") || ($order == "-promo")) {
346 $this->bound_field = "promo";
347 $show_bounds = -1;
348 }
349 if ($order{0} == '-') {
350 $show_bounds = -$show_bounds;
351 }
352 return $show_bounds;
353 }
354
8c4a0c30 355 public function templateName()
356 {
357 return 'include/plview.trombi.tpl';
358 }
359
04334c61 360 public function apply(PlPage &$page)
8c4a0c30 361 {
362 if (!empty($GLOBALS['IS_XNET_SITE'])) {
363 global $globals;
364 $page->assign('mainsiteurl', 'https://' . $globals->core->secure_domain . '/');
365 }
366 return parent::apply($page);
367 }
368}
369
370class GeolocView implements PlView
371{
372 private $set;
373 private $type;
374 private $params;
375
376 public function __construct(PlSet &$set, $data, array $params)
377 {
378 $this->params = $params;
379 $this->set =& $set;
380 $this->type = $data;
381 }
382
383 private function use_map()
384 {
385 return is_file(dirname(__FILE__) . '/../modules/geoloc/dynamap.swf') &&
386 is_file(dirname(__FILE__) . '/../modules/geoloc/icon.swf');
387 }
388
35fa92e8 389 public function args()
8c4a0c30 390 {
35fa92e8 391 $args = $this->set->args();
392 unset($args['initfile']);
393 unset($args['mapid']);
394 return $args;
8c4a0c30 395 }
396
04334c61 397 public function apply(PlPage &$page)
8c4a0c30 398 {
399 require_once 'geoloc.inc.php';
400 require_once '../modules/search/search.inc.php';
401
402 switch ($this->type) {
403 case 'icon.swf':
404 header("Content-type: application/x-shockwave-flash");
405 header("Pragma:");
406 readfile(dirname(__FILE__).'/../modules/geoloc/icon.swf');
407 exit;
408
409 case 'dynamap.swf':
410 header("Content-type: application/x-shockwave-flash");
411 header("Pragma:");
412 readfile(dirname(__FILE__).'/../modules/geoloc/dynamap.swf');
413 exit;
414
415 case 'init':
416 $page->changeTpl('geoloc/init.tpl', NO_SKIN);
417 header('Content-Type: text/xml');
418 header('Pragma:');
419 if (!empty($GLOBALS['IS_XNET_SITE'])) {
420 $page->assign('background', 0xF2E9D0);
421 }
8c4a0c30 422 break;
423
424 case 'city':
425 $page->changeTpl('geoloc/city.tpl', NO_SKIN);
426 header('Content-Type: text/xml');
427 header('Pragma:');
a2aa8436 428 $only_current = Env::v('only_current', false)? ' AND FIND_IN_SET(\'active\', adrf.statut)' : '';
d1319488 429 $it =& $this->set->get('u.user_id AS id, u.prenom, u.nom, d.promo, al.alias',
fb2c09c9 430 "INNER JOIN adresses AS adrf ON (adrf.uid = u.user_id $only_current)
d1319488 431 INNER JOIN profile_display AS d ON (d.pid = u.user_id)
fb2c09c9
SJ
432 LEFT JOIN aliases AS al ON (u.user_id = al.id
433 AND FIND_IN_SET('bestalias', al.flags))
434 INNER JOIN adresses AS avg ON (" . getadr_join('avg') . ")",
8c4a0c30 435 'adrf.cityid = ' . Env::i('cityid'), null, null, 11);
436 $page->assign('users', $it);
437 break;
438
439 case 'country':
440 if (Env::has('debug')) {
441 $page->changeTpl('geoloc/country.tpl', SIMPLE);
442 } else {
443 $page->changeTpl('geoloc/country.tpl', NO_SKIN);
444 header('Content-Type: text/xml');
445 header('Pragma:');
446 }
8c4a0c30 447 $mapid = Env::has('mapid') ? Env::i('mapid', -2) : false;
448 list($countries, $cities) = geoloc_getData_subcountries($mapid, $this->set, 10);
449 $page->assign('countries', $countries);
450 $page->assign('cities', $cities);
451 break;
452
453 default:
454 global $globals;
455 if (!$this->use_map()) {
456 $page->assign('request_geodesix', true);
457 }
a2aa8436 458 $page->assign('annu', @$this->params['with_annu']);
8c4a0c30 459 $page->assign('protocole', @$_SERVER['HTTPS'] ? 'https' : 'http');
460 $this->set->get('u.user_id', null, "u.perms != 'pending' AND u.deces = 0", "u.user_id", null);
8c4a0c30 461 return 'include/plview.geoloc.tpl';
462 }
463 }
464}
465
92e80560
VZ
466class GadgetView implements PlView
467{
468 public function __construct(PlSet &$set, $data, array $params)
469 {
470 $this->set =& $set;
471 }
472
473 public function fields()
474 {
7773d125 475 return "u.user_id AS id, u.*," .
92e80560
VZ
476 "u.perms != 'pending' AS inscrit,
477 u.perms != 'pending' AS wasinscrit,
478 u.deces != 0 AS dcd, u.deces,
479 FIND_IN_SET('femme', u.flags) AS sexe,
480 adr.city, gp.a2, gp.pays AS countrytxt, gr.name AS region" .
481 (S::logged() ? ", c.contact AS contact" : '');
482 }
483
484 public function joins()
485 {
2398e553
SJ
486 return "LEFT JOIN adresses AS adr ON (u.user_id = adr.uid AND FIND_IN_SET('active', adr.statut)".(S::logged() ? "" : "
487 AND adr.pub = 'public'").")
488 LEFT JOIN geoloc_pays AS gp ON (adr.country = gp.a2)
489 LEFT JOIN geoloc_region AS gr ON (adr.country = gr.a2 AND adr.region = gr.region)" .
92e80560 490 (S::logged() ?
2398e553 491 "LEFT JOIN contacts AS c ON (c.contact = u.user_id AND c.uid = " . S::v('uid') . ")"
92e80560
VZ
492 : "");
493 }
494
04334c61 495 public function apply(PlPage &$page)
92e80560
VZ
496 {
497 $page->assign_by_ref('set',
498 $this->set->get($this->fields(), $this->joins(), null, null, null, 5, 0));
499 }
500
501 public function args()
502 {
503 return null;
504 }
505}
506
8c4a0c30 507// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
508?>