X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fprofile.php;h=e3239d28a59d05636759c9cc36e39317fa9c77f5;hb=9006db5d9e2b5d636b631fb51a834977a067d6bb;hp=26a50460387c3386395522bb1d97b21a178f9742;hpb=c76545c351fae4e2298624ff9ee5bf854dc5a5b6;p=platal.git diff --git a/modules/profile.php b/modules/profile.php index 26a5046..e3239d2 100644 --- a/modules/profile.php +++ b/modules/profile.php @@ -38,9 +38,6 @@ class ProfileModule extends PLModule 'profile/ajax/medal' => $this->make_hook('ajax_medal', AUTH_COOKIE, 'user', NO_AUTH), 'profile/networking' => $this->make_hook('networking', AUTH_PUBLIC), 'profile/ajax/job' => $this->make_hook('ajax_job', AUTH_COOKIE, 'user', NO_AUTH), - 'profile/ajax/sector' => $this->make_hook('ajax_sector', AUTH_COOKIE, 'user', NO_AUTH), - 'profile/ajax/sub_sector' => $this->make_hook('ajax_sub_sector', AUTH_COOKIE, 'user', NO_AUTH), - 'profile/ajax/alternates' => $this->make_hook('ajax_alternates', AUTH_COOKIE, 'user', NO_AUTH), 'profile/ajax/skill' => $this->make_hook('ajax_skill', AUTH_COOKIE, 'user', NO_AUTH), 'profile/ajax/searchname' => $this->make_hook('ajax_searchname', AUTH_COOKIE, 'user', NO_AUTH), 'profile/ajax/buildnames' => $this->make_hook('ajax_buildnames', AUTH_COOKIE, 'user', NO_AUTH), @@ -52,7 +49,6 @@ class ProfileModule extends PLModule 'profile/name_info' => $this->make_hook('name_info', AUTH_PUBLIC), 'referent' => $this->make_hook('referent', AUTH_COOKIE), - 'referent/ssect' => $this->make_hook('ref_sect', AUTH_COOKIE, 'user', NO_AUTH), 'referent/country' => $this->make_hook('ref_country', AUTH_COOKIE, 'user', NO_AUTH), 'referent/autocomplete' => $this->make_hook('ref_autocomplete', AUTH_COOKIE, 'user', NO_AUTH), @@ -69,7 +65,6 @@ class ProfileModule extends PLModule 'admin/sections' => $this->make_hook('admin_sections', AUTH_MDP, 'admin'), 'admin/networking' => $this->make_hook('admin_networking', AUTH_MDP, 'admin'), 'admin/trombino' => $this->make_hook('admin_trombino', AUTH_MDP, 'admin'), - 'admin/sectors' => $this->make_hook('admin_sectors', AUTH_MDP, 'admin'), 'admin/corps_enum' => $this->make_hook('admin_corps_enum', AUTH_MDP, 'admin'), 'admin/corps_rank' => $this->make_hook('admin_corps_rank', AUTH_MDP, 'admin'), 'admin/names' => $this->make_hook('admin_names', AUTH_MDP, 'admin'), @@ -237,17 +232,6 @@ class ProfileModule extends PLModule if (is_null($id)) { return PL_NOT_FOUND; } - $pid = (!is_numeric($id) || S::admin()) ? Profile::getPID($id) : null; - if (is_null($pid)) { - if (S::logged()) { - $page->trigError($id . " inconnu dans l'annuaire."); - } - return PL_NOT_FOUND; - } - - // Now that we know this is an existing profile, we can switch to the - // appropriate template. - $page->changeTpl('profile/profile.tpl', SIMPLE); // Determines the access level at which the profile will be displayed. if (!S::logged() || !S::user()->checkPerms('directory_ax') || Env::v('view') == 'public') { @@ -263,13 +247,30 @@ class ProfileModule extends PLModule $page->assign('with_pending_pic', true); } - // Fetches profile's and profile's owner information and redirects to - // marketing if the owner has not subscribed and the requirer has logged in. - $profile = Profile::get($pid, Profile::FETCH_ALL, $view); - $owner = $profile->owner(); - if (S::logged() && !is_null($owner) && $owner->state == 'pending') { - pl_redirect('marketing/public/' . $profile->hrid()); + $pid = (!is_numeric($id) || S::admin()) ? Profile::getPID($id) : null; + if (is_null($pid)) { + $owner = User::getSilent($id); + if ($owner) { + $profile = $owner->profile(true, Profile::FETCH_ALL, $view); + if ($profile) { + $pid = $profile->id(); + } + } + } else { + // Fetches profile's and profile's owner information and redirects to + // marketing if the owner has not subscribed and the requirer has logged in. + $profile = Profile::get($pid, Profile::FETCH_ALL, $view); + $owner = $profile->owner(); + } + if (is_null($pid)) { + if (S::logged()) { + $page->kill($id . " inconnu dans l'annuaire."); + } + return PL_NOT_FOUND; } + // Now that we know this is an existing profile, we can switch to the + // appropriate template. + $page->changeTpl('profile/profile.tpl', SIMPLE); // Profile view are logged. if (S::logged()) { @@ -425,41 +426,10 @@ class ProfileModule extends PLModule $page->assign('i', $id); $page->assign('job', array()); $page->assign('new', true); - $res = XDB::query("SELECT id, name AS label - FROM profile_job_sector_enum"); - $page->assign('sectors', $res->fetchAllAssoc()); require_once "emails.combobox.inc.php"; fill_email_combobox($page); } - function handler_ajax_sector(&$page, $id, $jobid, $jobpref, $sect, $ssect = -1) - { - pl_content_headers("text/html"); - $res = XDB::iterator("SELECT id, name, FIND_IN_SET('optgroup', flags) AS optgroup - FROM profile_job_subsector_enum - WHERE sectorid = {?}", $sect); - $page->changeTpl('profile/jobs.sector.tpl', NO_SKIN); - $page->assign('id', $id); - $page->assign('subSectors', $res); - $page->assign('sel', $ssect); - if ($id != -1) { - $page->assign('change', 1); - $page->assign('jobid', $jobid); - $page->assign('jobpref', $jobpref); - } - } - function handler_ajax_sub_sector(&$page, $id, $ssect, $sssect = -1) - { - pl_content_headers("text/html"); - $res = XDB::iterator("SELECT id, name - FROM profile_job_subsubsector_enum - WHERE subsectorid = {?}", $ssect); - $page->changeTpl('profile/jobs.sub_sector.tpl', NO_SKIN); - $page->assign('id', $id); - $page->assign('subSubSectors', $res); - $page->assign('sel', $sssect); - } - /** * Page for url "profile/ajax/tree/jobterms". Display a JSon page containing * the sub-branches of a branch in the job terms tree. @@ -477,26 +447,6 @@ class ProfileModule extends PLModule JobTerms::ajaxGetBranch(&$page, $filter); } - function handler_ajax_alternates(&$page, $id, $sssect) - { - pl_content_headers("text/html"); - $res = XDB::iterator('SELECT name - FROM profile_job_alternates - WHERE subsubsectorid = {?} - ORDER BY id', - $sssect); - $page->changeTpl('profile/jobs.alternates.tpl', NO_SKIN); - $alternates = ''; - if ($res->total() > 0) { - $alternate = $res->next(); - $alternates = $alternate['name']; - while ($alternate = $res->next()) { - $alternates .= ', ' . $alternate['name']; - } - } - $page->assign('alternates', $alternates); - } - function handler_ajax_skill(&$page, $cat, $id) { pl_content_headers("text/html"); @@ -549,24 +499,7 @@ class ProfileModule extends PLModule $page->assign_by_ref('profile', $pf); - ///// recuperations infos referent - - // Sectors - $sectors = $subSectors = Array(); - $res = XDB::iterRow( - "SELECT s.name AS label, ss.name AS label - FROM profile_mentor_sector AS m - LEFT JOIN profile_job_sector_enum AS s ON(m.sectorid = s.id) - LEFT JOIN profile_job_subsector_enum AS ss ON(m.sectorid = ss.sectorid AND m.subsectorid = ss.id) - WHERE pid = {?}", $pf->id()); - while (list($sector, $subSector) = $res->next()) { - $sectors[] = $sector; - $subSectors[] = $subSector; - } - $page->assign_by_ref('sectors', $sectors); - $page->assign_by_ref('subSectors', $subSectors); - - // Countries. + // Retrieves referents' countries. $res = XDB::query( "SELECT gc.countryFR FROM profile_mentor_country AS m @@ -577,35 +510,16 @@ class ProfileModule extends PLModule $page->addJsLink('close_on_esc.js'); } - function handler_ref_sect(&$page, $sect) - { - pl_content_headers("text/html"); - $page->changeTpl('include/field.select.tpl', NO_SKIN); - $page->assign('onchange', 'setSSectors()'); - $page->assign('id', 'ssect_field'); - $page->assign('name', 'subSector'); - $it = XDB::iterator("SELECT pjsse.id, pjsse.name AS field - FROM profile_job_subsector_enum AS pjsse - INNER JOIN profile_mentor_sector AS pms ON (pms.sectorid = pjsse.sectorid AND pms.subsectorid = pjsse.id) - WHERE pjsse.sectorid = {?} - GROUP BY pjsse.id - ORDER BY pjsse.name", $sect); - $page->assign('list', $it); - } - - function handler_ref_country(&$page, $sect, $ssect = '') + function handler_ref_country(&$page) { pl_content_headers("text/html"); $page->changeTpl('include/field.select.tpl', NO_SKIN); $page->assign('name', 'pays_sel'); - $where = ($ssect ? ' AND ms.subsectorid = {?}' : ''); $it = XDB::iterator("SELECT gc.iso_3166_1_a2 AS id, gc.countryFR AS field FROM geoloc_countries AS gc INNER JOIN profile_mentor_country AS mp ON (mp.country = gc.iso_3166_1_a2) - INNER JOIN profile_mentor_sector AS ms ON (ms.pid = mp.pid) - WHERE ms.sectorid = {?} " . $where . " GROUP BY iso_3166_1_a2 - ORDER BY countryFR", $sect, $ssect); + ORDER BY countryFR"); $page->assign('list', $it); } @@ -699,7 +613,7 @@ class ProfileModule extends PLModule FROM group_members AS m INNER JOIN groups AS a ON(m.asso_id = a.id) LEFT JOIN group_events AS e ON(e.asso_id = m.asso_id AND e.archive = 0) - WHERE uid = {?} GROUP BY m.asso_id ORDER BY a.nom', S::i('uid')); + WHERE m.uid = {?} GROUP BY m.asso_id ORDER BY a.nom', S::i('uid')); $page->assign('assos', $req->fetchAllAssoc()); } @@ -845,16 +759,6 @@ class ProfileModule extends PLModule $table_editor->describe('text','intitulé',true); $table_editor->apply($page, $action, $id); } - function handler_admin_sectors(&$page, $action = 'list', $id = null) { - $page->setTitle('Administration - Secteurs'); - $page->assign('title', 'Gestion des secteurs'); - $table_editor = new PLTableEditor('admin/sectors', 'profile_job_subsubsector_enum', 'id', true); - $table_editor->describe('sectorid', 'id du secteur', false); - $table_editor->describe('subsectorid', 'id du sous-secteur', false); - $table_editor->describe('name', 'nom', true); - $table_editor->describe('flags', 'affichage', true); - $table_editor->apply($page, $action, $id); - } function handler_admin_networking(&$page, $action = 'list', $id = null) { $page->assign('xorg_title', 'Polytechnique.org - Administration - Networking'); $page->assign('title', 'Gestion des types de networking');