Import singletons from auth_user_quick.
[platal.git] / classes / profile.php
CommitLineData
e7b93962
FB
1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2008 Polytechnique.org *
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
22class Profile
23{
24 private $pid;
25 private $hrpid;
d5e60905 26 private $promo;
e7b93962
FB
27
28 private function __construct($login)
29 {
30 if ($login instanceof PlUser) {
d5e60905 31 $res = XDB::query('SELECT p.pid, p.hrpid, pd.promo_display
e7b93962
FB
32 FROM account_profiles AS ap
33 INNER JOIN profiles AS p ON (p.pid = ap.pid)
d5e60905 34 INNER JOIN profile_display AS pd ON (pd.uid = p.pid)
e7b93962
FB
35 WHERE ap.uid = {?} AND FIND_IN_SET(\'owner\', ap.perms)',
36 $login->id());
37 } else if (is_numeric($login)) {
d5e60905 38 $res = XDB::query('SELECT p.pid, p.hrpid, pd.promo_display
e7b93962 39 FROM profiles AS p
d5e60905 40 INNER JOIN profile_display AS pd ON (pd.uid = p.pid)
e7b93962
FB
41 WHERE p.pid = {?}',
42 $login);
43 } else {
d5e60905 44 $res = XDB::query('SELECT p.pid, p.hrpid, pd.promo_display
e7b93962 45 FROM profiles AS p
d5e60905 46 INNER JOIN profile_display AS pd ON (pd.uid = p.pid)
e7b93962
FB
47 WHERE p.hrpid = {?}',
48 $login);
49 }
50 if ($res->numRows() != 1) {
51 throw new UserNotFoundException();
52 }
d5e60905 53 list($this->pid, $this->hrpid, $this->promo) = $res->fetchOneRow();
e7b93962
FB
54 }
55
56 public function id()
57 {
58 return $this->pid;
59 }
60
61 public function hrid()
62 {
63 return $this->hrpid;
64 }
65
d5e60905
FB
66 public function promo()
67 {
68 return $this->promo;
69 }
70
e7b93962
FB
71 public function owner()
72 {
73 return User::getSilent($this);
74 }
75
76 /** Return the profile associated with the given login.
77 */
78 public static function get($login) {
79 try {
80 return new Profile($login);
81 } catch (UserNotFoundException $e) {
82 return false;
83 }
84 }
85}
86
87// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
88?>