X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Fvalidations%2Fentreprises.inc.php;h=42e1f4a19a6bf0ac95b89e5c1f193035b32969bc;hb=a6dcf7ed6e2ca2c8f39eda6008c24b9ecd0da3bd;hp=4571738173152df104a36db6beb01b89d0cf7c6b;hpb=0b6c8b36e62b950d1b24088e98c4026a54efe9d0;p=platal.git diff --git a/include/validations/entreprises.inc.php b/include/validations/entreprises.inc.php index 4571738..42e1f4a 100644 --- a/include/validations/entreprises.inc.php +++ b/include/validations/entreprises.inc.php @@ -1,6 +1,6 @@ id = $_id; @@ -100,36 +104,13 @@ class EntrReq extends ProfileValidate protected function handle_editor() { - if (Env::has('name')) { - $this->name = Env::t('name'); - } - if (Env::has('acronym')) { - $this->acronym = Env::t('acronym'); - } - if (Env::has('url')) { - $this->url = Env::t('url'); - } - if (Env::has('email')) { - $this->email = Env::t('email'); - } - if (Env::has('holdingid')) { - $this->holdingid = Env::i('holdingid'); - } - if (Env::has('NAF_code')) { - $this->NAF_code = Env::t('NAF_code'); - } - if (Env::has('AX_code')) { - $this->AX_code = Env::i('AX_code'); + foreach (array('name', 'acronym', 'url', 'email', 'SIREN', 'NAF_code', 'tel', 'fax', 'address') as $field) { + $this->$field = (Env::t($field) == '' ? null : Env::t($field)); } - if (Env::has('address')) { - $this->address['text'] = Env::t('address'); - } - if (Env::has('tel')) { - $this->tel = Env::t('tel'); - } - if (Env::has('fax')) { - $this->fax = Env::t('fax'); + foreach (array('AX_code', 'holdingid') as $field) { + $this->$field = (Env::i($field) == 0 ? null : Env::i($field)); } + return true; } @@ -138,7 +119,7 @@ class EntrReq extends ProfileValidate protected function _mail_subj() { - return "[Polytechnique.org/Entreprises] Demande d'ajout d'une entreprise : " . $this->name; + return '[Polytechnique.org/Entreprises] Demande d\'ajout d\'une entreprise'; } // }}} @@ -149,8 +130,7 @@ class EntrReq extends ProfileValidate if ($isok) { return " L'entreprise " . $this->name . " vient d'être ajoutée à ta fiche."; } else { - return " La demande que tu avais faite pour l'entreprise " . $this->name . - " a été refusée, car elle figure déjà dans notre base."; + return ' La demande que tu avais faite pour l\'entreprise ' . $this->name . ' a été refusée.'; } } @@ -159,49 +139,29 @@ class EntrReq extends ProfileValidate public function commit() { - // TODO: use address update profile_job_enum once it is done. - $res = XDB::query('SELECT id FROM profile_job_enum WHERE name = {?}', $this->name); if ($res->numRows() != 1) { - require_once 'geocoding.inc.php'; - - XDB::execute('INSERT INTO profile_job_enum (name, acronym, url, email, holdingid, NAF_code, AX_code) - VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?})', + XDB::execute('INSERT INTO profile_job_enum (name, acronym, url, email, holdingid, SIREN_code, NAF_code, AX_code) + VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})', $this->name, $this->acronym, $this->url, $this->email, - $this->holdingid, $this->NAF_code, $this->AX_code); + $this->holdingid, $this->SIREN, $this->NAF_code, $this->AX_code); $jobid = XDB::insertId(); $phone = new Phone(array('link_type' => 'hq', 'link_id' => $jobid, 'id' => 0, 'type' => 'fixed', 'display' => $this->tel, 'pub' => 'public')); $fax = new Phone(array('link_type' => 'hq', 'link_id' => $jobid, 'id' => 1, 'type' => 'fax', 'display' => $this->fax, 'pub' => 'public')); + $address = new Address(array('jobid' => $jobid, 'type' => Address::LINK_COMPANY, 'text' => $this->address)); $phone->save(); $fax->save(); - - $gmapsGeocoder = new GMapsGeocoder(); - $address = $gmapsGeocoder->getGeocodedAddress($this->address); - Geocoder::getAreaId($address, 'administrativeArea'); - Geocoder::getAreaId($address, 'subAdministrativeArea'); - Geocoder::getAreaId($address, 'locality'); - XDB::execute("INSERT INTO profile_addresses (jobid, type, id, accuracy, - text, postalText, postalCode, localityId, - subAdministrativeAreaId, administrativeAreaId, - countryId, latitude, longitude, updateTime, - north, south, east, west) - VALUES ({?}, 'hq', 0, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, - {?}, {?}, FROM_UNIXTIME({?}), {?}, {?}, {?}, {?})", - $jobid, $this->address['accuracy'], $this->address['text'], $this->address['postalText'], - $this->address['postalCode'], $this->address['localityId'], - $this->address['subAdministrativeAreaId'], $this->address['administrativeAreaId'], - $this->address['countryId'], $this->address['latitude'], $this->address['longitude'], - $this->address['updateTime'], $this->address['north'], $this->address['south'], - $this->address['east'], $this->address['west']); + $address->save(); } else { $jobid = $res->fetchOneCell(); } + XDB::execute('UPDATE profile_job SET jobid = {?} WHERE pid = {?} AND id = {?}', @@ -219,5 +179,5 @@ class EntrReq extends ProfileValidate // }}} -// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker fenc=utf-8: ?>