Merge commit 'origin/fusionax' into account
[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;
26
27 private function __construct($login)
28 {
29 if ($login instanceof PlUser) {
30 $res = XDB::query('SELECT p.pid, p.hrpid
31 FROM account_profiles AS ap
32 INNER JOIN profiles AS p ON (p.pid = ap.pid)
33 WHERE ap.uid = {?} AND FIND_IN_SET(\'owner\', ap.perms)',
34 $login->id());
35 } else if (is_numeric($login)) {
36 $res = XDB::query('SELECT p.pid, p.hrpid
37 FROM profiles AS p
38 WHERE p.pid = {?}',
39 $login);
40 } else {
41 $res = XDB::query('SELECT p.pid, p.hrpid
42 FROM profiles AS p
43 WHERE p.hrpid = {?}',
44 $login);
45 }
46 if ($res->numRows() != 1) {
47 throw new UserNotFoundException();
48 }
49 list($this->pid, $this->hrpid) = $res->fetchOneRow();
50 }
51
52 public function id()
53 {
54 return $this->pid;
55 }
56
57 public function hrid()
58 {
59 return $this->hrpid;
60 }
61
62 public function owner()
63 {
64 return User::getSilent($this);
65 }
66
67 /** Return the profile associated with the given login.
68 */
69 public static function get($login) {
70 try {
71 return new Profile($login);
72 } catch (UserNotFoundException $e) {
73 return false;
74 }
75 }
76}
77
78// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
79?>