X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=classes%2Fprofile.php;h=a61d73a28c1672e72c455338844c46454d19272c;hb=5c8a71f241dd24c84a7e23093482fc2c23a04958;hp=d68c959287a84d05d23a96b144f7050f21ddd3ec;hpb=04a94b1d89f180b66e0ed917ecc077a5e8e31b97;p=platal.git diff --git a/classes/profile.php b/classes/profile.php index d68c959..a61d73a 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'; + /* name tokens */ + const LASTNAME = 'lastname'; + const FIRSTNAME = 'firstname'; + const NICKNAME = 'nickname'; + const PSEUDONYM = 'pseudonym'; + const NAME = 'name'; + /* name variants */ + const VN_MARITAL = 'marital'; + const VN_ORDINARY = 'ordinary'; + const VN_OTHER = 'other'; + const VN_INI = 'ini'; + /* display names */ + const DN_FULL = 'directory_name'; + const DN_DISPLAY = 'yourself'; + const DN_YOURSELF = 'yourself'; + const DN_DIRECTORY = 'directory_name'; + const DN_PRIVATE = 'private_name'; + const DN_PUBLIC = 'public_name'; + const DN_SHORT = 'short_name'; + const DN_SORT = 'sort_name'; + /* education related names */ + const EDU_X = 'École polytechnique'; + const DEGREE_X = 'Ingénieur'; + const DEGREE_M = 'Master'; + const DEGREE_D = 'Doctorat'; + + static public $name_variants = array( + self::LASTNAME => array(self::VN_MARITAL, self::VN_ORDINARY), + self::FIRSTNAME => array(self::VN_ORDINARY, self::VN_INI, self::VN_OTHER) + ); + const ADDRESS_MAIN = 0x000001; const ADDRESS_PERSO = 0x000002; const ADDRESS_PRO = 0x000004; @@ -61,6 +93,9 @@ class Profile $this->data = $data; $this->pid = $this->data['pid']; $this->hrpid = $this->data['hrpid']; + if (!S::logged()) { + $this->setVisibilityLevel(self::VISIBILITY_PUBLIC); + } } public function id() @@ -116,11 +151,21 @@ class Profile return $this->firstname; } + public function firstNames() + { + return $this->nameVariants(self::FIRSTNAME); + } + public function lastName() { return $this->lastname; } + public function lastNames() + { + return $this->nameVariants(self::LASTNAME); + } + public function isFemale() { return $this->sex == PlUser::GENDER_FEMALE; @@ -132,6 +177,19 @@ class Profile return $this->data; } + private function nameVariants($type) + { + $vals = array($this->$type); + foreach (self::$name_variants[$type] as $var) { + $vartype = $type . '_' . $var; + $varname = $this->$vartype; + if ($varname != null && $varname != "") { + $vals[] = $varname; + } + } + return array_unique($vals); + } + public function __get($name) { if (property_exists($this, $name)) { @@ -152,18 +210,44 @@ class Profile public function setVisibilityLevel($visibility) { - if ($visibility != self::VISIBILITY_PRIVATE - && $visibility != self::VISIBILITY_AX + 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]; - if ($this->mobile && !in_array($this->modbile_pub, $this->visibility)) { + if ($this->mobile && !in_array($this->mobile_pub, $this->visibility)) { unset($this->data['mobile']); } } + /* Photo + */ + public function getPhoto($fallback = true) + { + /* TODO: migrate photo table to profile_photo, change uid to pid + */ + $cond = ''; + if ($this->visibility) { + $cond = ' AND pub IN ' . XDB::formatArray($this->visibility); + } + $res = XDB::query('SELECT * + FROM profile_photos + WHERE attachmime IN (\'jpeg\', \'png\') + ' . $cond . ' AND pid = {?}', + $this->id()); + if ($res->numRows() > 0) { + $photo = $res->fetchOneAssoc(); + return PlImage::fromData($photo['attach'], 'image/' . $photo['attachmime'], + $photo['x'], $photo['y']); + } else if ($fallback) { + return PlImage::fromFile(dirname(__FILE__).'/../htdocs/images/none.png', + 'image/png'); + } + return null; + } + /* Addresses */ public function getAddresses($flags, $limit = null) @@ -192,6 +276,7 @@ class Profile 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, + ppfix.display_tel AS fixed_tel, ppfax.display_tel AS fax_tel, FIND_IN_SET(\'current\', pa.flags) AS current, FIND_IN_SET(\'temporary\', pa.flags) AS temporary, FIND_IN_SET(\'secondary\', pa.flags) AS secondary, @@ -201,6 +286,8 @@ class Profile 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) + LEFT JOIN profile_phones AS ppfix ON (ppfix.link_type = \'address\' AND ppfix.uid = pa.pid AND ppfix.link_id = pa.id AND ppfix.tel_type = \'fixed\') + LEFT JOIN profile_phones AS ppfax ON (ppfax.link_type = \'address\' AND ppfax.uid = pa.pid AND ppfax.link_id = pa.id AND ppfax.tel_type = \'fax\') WHERE ' . $where . ' ORDER BY pa.id ' . $limit); @@ -286,38 +373,97 @@ class Profile } + /** Jobs + */ + + public function getJobs($flags, $limit = null) + { + $where = XDB::format('pj.uid = {?}', $this->id()); + $cond = 'TRUE'; + if ($this->visibility) { + $where .= ' AND pj.pub IN ' . XDB::formatArray($this->visibility); + $cond = 'pj.email_pub IN ' . XDB::formatArray($this->visibility); + } + $limit = is_null($limit) ? '' : XDB::format('LIMIT {?}', (int)$limit); + return XDB::iterator('SELECT pje.name, pje.acronym, pje.url, pje.email, pje.NAF_code, + pj.description, pj.url AS user_site, + IF (' . $cond . ', pj.email, NULL) AS user_email, + pjse.name AS sector, pjsse.name AS subsector, + pjssse.name AS subsubsector + FROM profile_job AS pj + INNER JOIN profile_job_enum AS pje ON (pje.id = pj.jobid) + LEFT JOIN profile_job_sector_enum AS pjse ON (pjse.id = pj.sectorid) + LEFT JOIN profile_job_subsector_enum AS pjsse ON (pjsse.id = pj.subsectorid) + LEFT JOIN profile_job_subsubsector_enum AS pjssse ON (pjssse.id = pj.subsubsectorid) + WHERE ' . $where . ' + ORDER BY pj.id + ' . $limit); + } + + public function getMailJob() + { + $job = $this->getJobs(self::JOBS_MAIN, 1); + if ($job->total() != 1) { + return null; + } + return $job->next(); + } + + /* Binets + */ + public function getBinets() + { + return XDB::fetchColumn('SELECT binet_id + FROM profile_binets + WHERE user_id = {?}', $this->id()); + } + + public function owner() { return User::getSilent($this); } - private static function fetchProfileData(array $pids) + private static function fetchProfileData(array $pids, $respect_order = true) { 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, - pp.display_tel AS mobile, pp.pub AS mobile_pub - 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) . ') - LEFT JOIN profile_phones AS pp ON (pp.uid = p.pid AND pp.link_type = \'user\' AND tel_type = \'mobile\') - WHERE p.pid IN ' . XDB::formatArray($pids) . ' - GROUP BY p.pid'); + + if ($respect_order) { + $order = 'ORDER BY ' . XDB::formatCustomOrder('p.pid', $pids); + } else { + $order = ''; + } + + return XDB::Iterator('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_ordinary, + IF(pn_ul.name IS NULL, pn_l.name, pn_ul.name) AS lastname_ordinary, + pd.promo AS promo, pd.short_name, pd.directory_name AS full_name, + pd.directory_name, pp.display_tel AS mobile, pp.pub AS mobile_pub, + ph.attach IS NOT NULL AS has_photo, ph.pub AS photo_pub, + p.last_change < DATE_SUB(NOW(), INTERVAL 365 DAY) AS is_old, + ap.uid AS owner_id + 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('firstname', true) . ') + INNER JOIN profile_name AS pn_l ON (pn_l.pid = p.pid + AND pn_l.typeid = ' . self::getNameTypeId('lastname', true) . ') + LEFT JOIN profile_name AS pn_uf ON (pn_uf.pid = p.pid + AND pn_uf.typeid = ' . self::getNameTypeId('firstname_ordinary', true) . ') + LEFT JOIN profile_name AS pn_ul ON (pn_ul.pid = p.pid + AND pn_ul.typeid = ' . self::getNameTypeId('lastname_ordinary', true) . ') + LEFT JOIN profile_name AS pn_n ON (pn_n.pid = p.pid + AND pn_n.typeid = ' . self::getNameTypeId('nickname', true) . ') + LEFT JOIN profile_phones AS pp ON (pp.uid = p.pid AND pp.link_type = \'user\' AND tel_type = \'mobile\') + LEFT JOIN profile_photos AS ph ON (ph.pid = p.pid) + LEFT JOIN account_profiles AS ap ON (ap.pid = p.pid AND FIND_IN_SET(\'owner\', ap.perms)) + WHERE p.pid IN ' . XDB::formatArray($pids) . ' + GROUP BY p.pid + ' . $order); } public static function getPID($login) @@ -338,15 +484,31 @@ class Profile } } + public static function getPIDsFromUIDs($uids, $respect_order = true) + { + if ($respect_order) { + $order = 'ORDER BY ' . XDB::formatCustomOrder('uid', $uids); + } else { + $order = ''; + } + return 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) .' + ' . $order); + } /** Return the profile associated with the given login. */ public static function get($login) { + if (is_array($login)) { + return new Profile($login); + } $pid = self::getPID($login); if (!is_null($pid)) { - $data = self::fetchProfileData(array($pid)); - return new Profile(array_pop($data)); + $it = self::iterOverPIDs(array($pid), false); + return $it->next(); } else { /* Let say we can identify a profile using the identifiers of its owner. */ @@ -360,6 +522,16 @@ class Profile } } + public static function iterOverUIDs($uids, $respect_order = true) + { + return self::iterOverPIDs(self::getPIDsFromUIDs($uids), $respect_order); + } + + public static function iterOverPIDs($pids, $respect_order = true) + { + return new ProfileIterator(self::fetchProfileData($pids, $respect_order)); + } + /** Return profiles for the list of pids. */ public static function getBulkProfilesWithPIDs(array $pids) @@ -367,13 +539,10 @@ class Profile if (count($pids) == 0) { return array(); } - $data = self::fetchProfileData($pids); - $inv = array_flip($pids); + $it = self::iterOverPIDs($pids); $profiles = array(); - foreach ($data AS $p) { - $p = new Profile($p); - $key = $inv[$p->id()]; - $profiles[$key] = $p; + while ($p = $it->next()) { + $profiles[$p->id()] = $p; } return $profiles; } @@ -385,11 +554,15 @@ class Profile 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); + return self::getBulkProfilesWithPIDs(self::getPIDsFromUIDs($uids)); + } + + public static function isDisplayName($name) + { + return $name == self::DN_FULL || $name == self::DN_DISPLAY + || $name == self::DN_YOURSELF || $name == self::DN_DIRECTORY + || $name == self::DN_PRIVATE || $name == self::DN_PUBLIC + || $name == self::DN_SHORT || $name == self::DN_SORT; } public static function getNameTypeId($type, $for_sql = false) @@ -407,6 +580,118 @@ class Profile return $table[$type]; } } + + public static function rebuildSearchTokens($pid) + { + XDB::execute('DELETE FROM search_name + WHERE uid = {?}', + $pid); + $keys = XDB::iterator("SELECT CONCAT(n.particle, n.name) AS name, e.score, + FIND_IN_SET('public', e.flags) AS public + FROM profile_name AS n + INNER JOIN profile_name_enum AS e ON (n.typeid = e.id) + WHERE n.pid = {?}", + $pid); + + foreach ($keys as $i => $key) { + if ($key['name'] == '') { + continue; + } + $toks = preg_split('/[ \'\-]+/', $key['name']); + $token = ''; + $first = 5; + while ($toks) { + $token = strtolower(replace_accent(array_pop($toks) . $token)); + $score = ($toks ? 0 : 10 + $first) * ($key['score'] / 10); + XDB::execute('REPLACE INTO search_name (token, uid, soundex, score, flags) + VALUES ({?}, {?}, {?}, {?}, {?})', + $token, $uid, soundex_fr($token), $score, $key['public']); + $first = 0; + } + } + } + + /** The school identifier consists of 6 digits. The first 3 represent the + * promotion entry year. The last 3 indicate the student's rank. + * + * Our identifier consists of 8 digits and both half have the same role. + * This enables us to deal with bigger promotions and with a wider range + * of promotions. + * + * getSchoolId returns a school identifier given one of ours. + * getXorgId returns a X.org identifier given a school identifier. + */ + public static function getSchoolId($xorgId) + { + if (!preg_match('/^[0-9]{8}$/', $xorgId)) { + return null; + } + + $year = intval(substr($xorgId, 0, 4)); + $rank = intval(substr($xorgId, 5, 3)); + if ($year < 1996) { + return null; + } elseif ($year < 2000) { + $year = intval(substr(1900 - $year, 1, 3)); + return sprintf('%02u0%03u', $year, $rank); + } else { + $year = intval(substr(1900 - $year, 1, 3)); + return sprintf('%03u%03u', $year, $rank); + } + } + + public static function getXorgId($schoolId) + { + $year = intval(substr($schoolId, 0, 3)); + $rank = intval(substr($schoolId, 3, 3)); + + if ($year > 200) { + $year /= 10; + } + if ($year < 96) { + return null; + } else { + return sprintf('%04u%04u', 1900 + $year, $rank); + } + } +} + +/** Iterator over a set of Profiles + * @param an XDB::Iterator obtained from a Profile::fetchProfileData + */ +class ProfileIterator implements PlIterator +{ + private $dbiter; + + public function __construct($dbiter) + { + $this->dbiter = $dbiter; + } + + public function next() + { + $data = $this->dbiter->next(); + if ($data == null) { + return null; + } else { + return Profile::get($data); + } + } + + public function total() + { + return $this->dbiter->total(); + } + + public function first() + { + return $this->dbiter->first(); + } + + public function last() + { + return $this->dbiter->last(); + } } // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: