X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=classes%2Fprofile.php;h=b856508854e5f157c7f619c8b3610086ba1d6ce1;hb=486d15fb147bfd5e2b2ff71b22ad5b2ca0e43878;hp=fc819f627dcc6b896e650291f9672500a32b1ea1;hpb=6e909db8e8f8a25a0d44e3ff74bcc5f76eb2ea92;p=platal.git diff --git a/classes/profile.php b/classes/profile.php index fc819f6..b856508 100644 --- a/classes/profile.php +++ b/classes/profile.php @@ -1,6 +1,6 @@ array('public'), + 'ax' => array('ax', 'public'), + 'private' => array('private', 'ax', 'public')); + const VISIBILITY_PUBLIC = 'public'; + const VISIBILITY_AX = 'ax'; + const VISIBILITY_PRIVATE = 'private'; + + const ADDRESS_MAIN = 0x000001; + const ADDRESS_PERSO = 0x000002; + const ADDRESS_PRO = 0x000004; + const ADDRESS_ALL = 0x000006; + const ADDRESS_POSTAL = 0x000008; + + const EDUCATION_MAIN = 0x000010; + const EDUCATION_EXTRA = 0x000020; + const EDUCATION_ALL = 0x000040; + const EDUCATION_FINISHED = 0x000080; + const EDUCATION_CURRENT = 0x000100; + + const JOBS_MAIN = 0x001000; + const JOBS_ALL = 0x002000; + const JOBS_FINISHED = 0x004000; + const JOBS_CURRENT = 0x008000; + private $pid; private $hrpid; private $data = array(); - private function __construct($login) + private $visibility = null; + + private function __construct(array $data) { - if ($login instanceof PlUser) { - $res = XDB::query('SELECT p.pid, p.hrpid - FROM account_profiles AS ap - INNER JOIN profiles AS p ON (p.pid = ap.pid) - WHERE ap.uid = {?} AND FIND_IN_SET(\'owner\', ap.perms)', - $login->id()); - } else if (is_numeric($login)) { - $res = XDB::query('SELECT p.pid, p.hrpid - FROM profiles AS p - WHERE p.pid = {?}', - $login); - } else { - $res = XDB::query('SELECT p.pid, p.hrpid - FROM profiles AS p - WHERE p.hrpid = {?}', - $login); - } - if ($res->numRows() != 1) { - throw new UserNotFoundException(); - } - list($this->pid, $this->hrpid) = $res->fetchOneRow(); + $this->data = $data; + $this->pid = $this->data['pid']; + $this->hrpid = $this->data['hrpid']; } public function id() @@ -100,12 +108,12 @@ class Profile public function firstName() { - return $this->first_name; + return $this->firstname; } public function lastName() { - return $this->last_name; + return $this->lastname; } public function isFemale() @@ -125,20 +133,6 @@ class Profile return $this->$name; } - if (empty($this->data)) { - // XXX: Temporary, use data from auth_user_md5 (waiting for data from newdirectory - $this->data = XDB::fetchOneAssoc('SELECT p.*, u.prenom AS first_name, - IF(u.nom_usage != "", u.nom_usage, u.nom) AS last_name, - u.promo AS promo, - CONCAT(u.prenom, " ", u.nom) AS short_name, - IF(u.nom_usage != "", - CONCAT(u.nom_usage, " (", u.nom, "),", u.prenom), - CONCAT(u.nom, ", ", u.prenom)) AS full_name - FROM profiles AS p - INNER JOIN auth_user_md5 AS u ON (u.user_id = p.pid) - WHERE p.pid = {?}', - $this->id()); - } if (isset($this->data[$name])) { return $this->data[$name]; } @@ -151,21 +145,224 @@ class Profile return property_exists($this, $name) || isset($this->data[$name]); } + public function setVisibilityLevel($visibility) + { + if ($visibility != self::VISIBILITY_PRIVATE + && $visibility != self::VISIBILITY_AX + && $visibility != self::VISIBILITY_PUBLIC) { + Platal::page()->kill("Visibility invalide: " . $visibility); + } + $this->visibility = self::$v_values[$visibility]; + } + + + /* Addresses + */ + public function getAddresses($flags, $limit = null) + { + $where = XDB::format('pa.pid = {?}', $this->id()); + if ($flags & self::ADDRESS_MAIN) { + $where .= ' AND FIND_IN_SET(\'current\', pa.flags)'; + } + if ($flags & self::ADDRESS_POSTAL) { + $where .= ' AND FIND_IN_SET(\'mail\', pa.flags)'; + } + if ($this->visibility) { + $where .= ' AND pa.pub IN ' . XDB::formatArray($this->visibility); + } + $type = array(); + if ($flags & self::ADDRESS_PRO) { + $type[] = 'job'; + } + if ($flags & self::ADDRESS_PERSO) { + $type[] = 'home'; + } + if (count($type) > 0) { + $where .= ' AND pa.type IN ' . XDB::formatArray($type); + } + $limit = is_null($limit) ? '' : XDB::format('LIMIT {?}', (int)$limit); + return XDB::iterator('SELECT pa.text, pa.postalCode, pa.type, pa.latitude, pa.longitude, + gl.name AS locality, gas.name AS subAdministrativeArea, + ga.name AS administrativeArea, gc.countryFR AS country, + FIND_IN_SET(\'current\', pa.flags) AS current, + FIND_IN_SET(\'temporary\', pa.flags) AS temporary, + FIND_IN_SET(\'secondary\', pa.flags) AS secondary, + FIND_IN_SET(\'mail\', pa.flags) AS mail, pa.type + FROM profile_addresses AS pa + LEFT JOIN geoloc_localities AS gl ON (gl.id = pa.localityId) + LEFT JOIN geoloc_administrativeareas AS ga ON (ga.id = pa.administrativeAreaId) + LEFT JOIN geoloc_administrativeareas AS gas ON (gas.id = pa.subAdministrativeAreaId) + LEFT JOIN geoloc_countries AS gc ON (gc.iso_3166_1_a2 = pa.countryId) + WHERE ' . $where . ' + ORDER BY pa.id + ' . $limit); + } + + public function getMainAddress() + { + $it = $this->getAddresses(self::ADDRESS_PERSO | self::ADDRESS_MAIN); + if ($it->total() == 0) { + return null; + } else { + return $it->next(); + } + } + + + /* Educations + */ + public function getEducations($flags, $limit = null) + { + $where = XDB::format('pe.uid = {?}', $this->id()); + if ($flags & self::EDUCATION_MAIN) { + $where .= ' AND FIND_IN_SET(\'primary\', pe.flags)'; + } else if ($flags & self::EDUCATION_EXTRA) { + $where .= ' AND NOT FIND_IN_SET(\'primary\', pe.flags)'; + } else if ($flags & self::EDUCATION_FINISHED) { + $where .= ' AND pe.grad_year <= YEAR(CURDATE())'; + } else if ($flags & self::EDUCATION_CURRENT) { + $where .= ' AND pe.grad_year > YEAR(CURDATE())'; + } + $limit = is_null($limit) ? '' : XDB::format('LIMIT {?}', (int)$limit); + return XDB::iterator('SELECT pe.entry_year, pe.grad_year, pe.program, + pee.name AS school, pee.abbreviation AS school_short, pee.url AS school_url, gc.countryFR AS country, + pede.degree, pede.abbreviation AS degree_short, pede.level AS degree_level, pefe.field, + FIND_IN_SET(\'primary\', pe.flags) AS prim + FROM profile_education AS pe + INNER JOIN profile_education_enum AS pee ON (pe.eduid = pee.id) + LEFT JOIN geoloc_countries AS gc ON (gc.iso_3166_1_a2 = pee.country) + INNER JOIN profile_education_degree_enum AS pede ON (pe.degreeid = pede.id) + LEFT JOIN profile_education_field_enum AS pefe ON (pe.fieldid = pefe.id) + WHERE ' . $where . ' + ORDER BY NOT FIND_IN_SET(\'primary\', pe.flags), pe.entry_year, pe.id + ' . $limit); + } + + public function getExtraEducations($limit = null) + { + return $this->getEducations(self::EDUCATION_EXTRA, $limit); + } + public function owner() { return User::getSilent($this); } + private static function fetchProfileData(array $pids) + { + if (count($pids) == 0) { + return array(); + } + return XDB::fetchAllAssoc('SELECT p.*, p.sex = \'female\' AS sex, pe.entry_year, pe.grad_year, + pn_f.name AS firstname, pn_l.name AS lastname, pn_n.name AS nickname, + IF(pn_uf.name IS NULL, pn_f.name, pn_uf.name) AS firstname_usual, + IF(pn_ul.name IS NULL, pn_l.name, pn_ul.name) AS lastname_usual, + pd.promo AS promo, pd.short_name, pd.directory_name AS full_name + FROM profiles AS p + INNER JOIN profile_display AS pd ON (pd.pid = p.pid) + INNER JOIN profile_education AS pe ON (pe.uid = p.pid AND FIND_IN_SET(\'primary\', pe.flags)) + INNER JOIN profile_name AS pn_f ON (pn_f.pid = p.pid + AND pn_f.typeid = ' . self::getNameTypeId('lastname', true) . ') + INNER JOIN profile_name AS pn_l ON (pn_l.pid = p.pid + AND pn_l.typeid = ' . self::getNameTypeId('firstname', true) . ') + LEFT JOIN profile_name AS pn_uf ON (pn_uf.pid = p.pid + AND pn_uf.typeid = ' . self::getNameTypeId('lastname_ordinary', true) . ') + LEFT JOIN profile_name AS pn_ul ON (pn_ul.pid = p.pid + AND pn_ul.typeid = ' . self::getNameTypeId('firstname_ordinary', true) . ') + LEFT JOIN profile_name aS pn_n ON (pn_n.pid = p.pid + AND pn_n.typeid = ' . self::getNameTypeId('nickname', true) . ') + WHERE p.pid IN ' . XDB::formatArray($pids) . ' + GROUP BY p.pid'); + } + + public static function getPID($login) + { + if ($login instanceof PlUser) { + return XDB::fetchOneCell('SELECT pid + FROM account_profiles + WHERE uid = {?} AND FIND_IN_SET(\'owner\', perms)', + $login->id()); + } else if (ctype_digit($login)) { + return XDB::fetchOneCell('SELECT pid + FROM profiles + WHERE pid = {?}', $login); + } else { + return XDB::fetchOneCell('SELECT pid + FROM profiles + WHERE hrpid = {?}', $login); + } + } + + /** Return the profile associated with the given login. */ - public static function get($login) { - try { - return new Profile($login); - } catch (UserNotFoundException $e) { + public static function get($login) + { + $pid = self::getPID($login); + if (!is_null($pid)) { + $data = self::fetchProfileData(array($pid)); + return new Profile(array_pop($data)); + } else { + /* Let say we can identify a profile using the identifiers of its owner. + */ + if (!($login instanceof PlUser)) { + $user = User::getSilent($login); + if ($user && $user->hasProfile()) { + return $user->profile(); + } + } return null; } } + + /** Return profiles for the list of pids. + */ + public static function getBulkProfilesWithPIDs(array $pids) + { + if (count($pids) == 0) { + return array(); + } + $data = self::fetchProfileData($pids); + $inv = array_flip($pids); + $profiles = array(); + foreach ($data AS $p) { + $p = new Profile($p); + $key = $inv[$p->id()]; + $profiles[$key] = $p; + } + return $profiles; + } + + /** Return profiles for uids. + */ + public static function getBulkProfilesWithUIDS(array $uids) + { + if (count($uids) == 0) { + return array(); + } + $table = XDB::fetchAllAssoc('uid', 'SELECT ap.uid, ap.pid + FROM account_profiles AS ap + WHERE FIND_IN_SET(\'owner\', ap.perms) + AND ap.uid IN ' . XDB::formatArray($uids)); + return self::getBulkProfilesWithPIDs($table); + } + + public static function getNameTypeId($type, $for_sql = false) + { + if (!S::has('name_types')) { + $table = XDB::fetchAllAssoc('type', 'SELECT id, type + FROM profile_name_enum'); + S::set('name_types', $table); + } else { + $table = S::v('name_types'); + } + if ($for_sql) { + return XDB::escape($table[$type]); + } else { + return $table[$type]; + } + } } // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: