X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=classes%2Fprofile.php;h=f8d278194dfd7bb3309cb94d5743efe5e3d55adc;hb=8425f487a974708f1ee5b186edbfbf1e7dae4a35;hp=d6694ba6418ada8cdeda21cd97db2fa8e6d8bb36;hpb=641f2115180050769dd7519b82d21246f329a997;p=platal.git diff --git a/classes/profile.php b/classes/profile.php index d6694ba..f8d2781 100644 --- a/classes/profile.php +++ b/classes/profile.php @@ -49,6 +49,11 @@ class Profile 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), @@ -108,6 +113,11 @@ class Profile return $this->promo; } + public function yearpromo() + { + return intval(substr($this->promo, 1, 4)); + } + /** Print a name with the given formatting: * %s = • for women * %f = firstname @@ -120,9 +130,9 @@ class Profile { return str_replace(array('%s', '%f', '%l', '%F', '%S', '%p'), array($this->isFemale() ? '•' : '', - $this->first_name, $this->last_name, - $this->full_name, $this->short_name, - $this->promo), $format); + $this->firstName(), $this->lastName(), + $this->fullName(), $this->shortName(), + $this->promo()), $format); } public function fullName($with_promo = false) @@ -203,6 +213,10 @@ class Profile return property_exists($this, $name) || isset($this->data[$name]); } + /** Sets the level of visibility of the profile + * Sets $this->visibility to a list of valid visibilities. + * @param one of the self::VISIBILITY_* values + */ public function setVisibilityLevel($visibility) { if ($visibility != self::VISIBILITY_PRIVATE @@ -216,21 +230,27 @@ class Profile } } + /** Determine whether an item with visibility $visibility can be displayed + * with the current level of visibility of the profile + * @param $visibility The level of visibility to be checked + */ + public function isVisible($visibility) + { + return in_array($visibility, $this->visibility); + } /* 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 photo - WHERE attachmime IN (\'jpeg\', \'png\') - ' . $cond . ' AND uid = {?}', + $res = XDB::query("SELECT * + FROM profile_photos + WHERE attachmime IN ('jpeg', 'png') + " . $cond . ' AND pid = {?}', $this->id()); if ($res->numRows() > 0) { $photo = $res->fetchOneAssoc(); @@ -281,8 +301,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\') + LEFT JOIN profile_phones AS ppfix ON (ppfix.link_type = \'address\' AND ppfix.pid = 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.pid = pa.pid AND ppfax.link_id = pa.id AND ppfax.tel_type = \'fax\') WHERE ' . $where . ' ORDER BY pa.id ' . $limit); @@ -303,7 +323,7 @@ class Profile */ public function getEducations($flags, $limit = null) { - $where = XDB::format('pe.uid = {?}', $this->id()); + $where = XDB::format('pe.pid = {?}', $this->id()); if ($flags & self::EDUCATION_MAIN) { $where .= ' AND FIND_IN_SET(\'primary\', pe.flags)'; } else if ($flags & self::EDUCATION_EXTRA) { @@ -339,7 +359,7 @@ class Profile public function getNetworking($flags, $limit = null) { - $where = XDB::format('pn.uid = {?}', $this->id()); + $where = XDB::format('pn.pid = {?}', $this->id()); if ($flags & self::NETWORKING_WEB) { $where .= ' AND pn.network_type = 0'; // XXX hardcoded reference to web site index } @@ -373,7 +393,7 @@ class Profile public function getJobs($flags, $limit = null) { - $where = XDB::format('pj.uid = {?}', $this->id()); + $where = XDB::format('pj.pid = {?}', $this->id()); $cond = 'TRUE'; if ($this->visibility) { $where .= ' AND pj.pub IN ' . XDB::formatArray($this->visibility); @@ -409,8 +429,8 @@ class Profile public function getBinets() { return XDB::fetchColumn('SELECT binet_id - FROM binets_ins - WHERE user_id = {?}', $this->id()); + FROM profile_binets + WHERE pid = {?}', $this->id()); } @@ -419,6 +439,25 @@ class Profile return User::getSilent($this); } + public function compareNames($firstname, $lastname) + { + $_lastname = mb_strtoupper($this->lastName()); + $_firstname = mb_strtoupper($this->firstName()); + $lastname = mb_strtoupper($lastname); + $firstname = mb_strtoupper($firstname); + + $isOk = (mb_strtoupper($_firstname) == mb_strtoupper($firstname)); + $tokens = preg_split("/[ \-']/", $lastname, -1, PREG_SPLIT_NO_EMPTY); + $maxlen = 0; + + foreach ($tokens as $str) { + $isOk &= (strpos($_lastname, $str) !== false); + $maxlen = max($maxlen, strlen($str)); + } + + return ($isOk && ($maxlen > 2 || $maxlen == strlen($_lastname))); + } + private static function fetchProfileData(array $pids, $respect_order = true) { if (count($pids) == 0) { @@ -437,10 +476,12 @@ class Profile 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.pub AS photo_pub, ap.uid AS owner_id + 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_education AS pe ON (pe.pid = 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 @@ -451,8 +492,8 @@ class Profile 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 photo AS ph ON (ph.uid = p.pid) + LEFT JOIN profile_phones AS pp ON (pp.pid = 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 @@ -573,6 +614,84 @@ class Profile return $table[$type]; } } + + public static function rebuildSearchTokens($pid) + { + XDB::execute('DELETE FROM search_name + WHERE pid = {?}', + $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, pid, soundex, score, flags) + VALUES ({?}, {?}, {?}, {?}, {?})', + $token, $pid, 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) + { + if (!preg_match('/^[0-9]{6}$/', $schoolId)) { + return null; + } + + $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