X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fvalidations%2Fentreprises.inc.php;h=4571738173152df104a36db6beb01b89d0cf7c6b;hb=0b6c8b36e62b950d1b24088e98c4026a54efe9d0;hp=635173d3e5be603c2ae1ea9f677c9b2fc1cf6854;hpb=4a55e7da9dd68b35034d207a25d8ffb292f30403;p=platal.git diff --git a/include/validations/entreprises.inc.php b/include/validations/entreprises.inc.php index 635173d..4571738 100644 --- a/include/validations/entreprises.inc.php +++ b/include/validations/entreprises.inc.php @@ -1,6 +1,6 @@ id = $_id; $this->name = $_name; $this->acronym = $_acronym; @@ -53,6 +53,7 @@ class EntrReq extends Validate $this->email = $_email; $this->tel = $_tel; $this->fax = $_fax; + $this->address = $_address; $_name = preg_replace('/[^0-9a-z]/i', ' ', strtolower(replace_accent($_name))); $name = explode(" ", $_name); @@ -67,13 +68,14 @@ class EntrReq extends Validate $where .= "name LIKE '%" . $name_array[$i] . "%'"; } } - $res = XDB::iterator("SELECT name - FROM profile_job_enum - WHERE " - . $where); - $this->suggestions = "| "; - while ($sug = $res->next()) { - $this->suggestions .= $sug['name'] . " | "; + if ($where != '') { + $res = XDB::iterator('SELECT name + FROM profile_job_enum + WHERE ' . $where); + $this->suggestions = "| "; + while ($sug = $res->next()) { + $this->suggestions .= $sug['name'] . " | "; + } } } @@ -98,26 +100,37 @@ class EntrReq extends Validate 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 = trim(Env::v('holdingid')); + $this->holdingid = Env::i('holdingid'); } - if (Env::has('name')) { - $this->name = trim(Env::v('name')); - if (Env::has('acronym')) { - $this->acronym = trim(Env::v('acronym')); - if (Env::has('url')) { - $this->url = trim(Env::v('url')); - if (Env::has('NAF_code')) { - $this->NAF_code = trim(Env::v('NAF_code')); - if (Env::has('AX_code')) { - $this->AX_code = trim(Env::v('AX_code')); - return true; - } - } - } - } + if (Env::has('NAF_code')) { + $this->NAF_code = Env::t('NAF_code'); + } + if (Env::has('AX_code')) { + $this->AX_code = Env::i('AX_code'); + } + if (Env::has('address')) { + $this->address['text'] = Env::t('address'); + } + if (Env::has('tel')) { + $this->tel = Env::t('tel'); } - return false; + if (Env::has('fax')) { + $this->fax = Env::t('fax'); + } + return true; } // }}} @@ -146,34 +159,59 @@ class EntrReq extends Validate 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("profil.func.inc.php"); + require_once 'geocoding.inc.php'; XDB::execute('INSERT INTO profile_job_enum (name, acronym, url, email, holdingid, NAF_code, AX_code) VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?})', $this->name, $this->acronym, $this->url, $this->email, $this->holdingid, $this->NAF_code, $this->AX_code); + $jobid = XDB::insertId(); - $display_tel = format_display_number($this->tel, $error_tel); - $display_fax =format_display_number($this->fax, $error_fax); - XDB::execute('INSERT INTO profile_phones (uid, link_type, link_id, tel_id, tel_type, - search_tel, display_tel, pub) - VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}), - ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})', - $jobid, 'hq', $this->id, 0, 'fixed', format_phone_number($this->tel), $display_tel, 'public', - $jobid, 'hq', $this->id, 1, 'fax', format_phone_number($this->fax), $display_fax, 'public'); + $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')); + $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']); } else { $jobid = $res->fetchOneCell(); - $success = true; } - return XDB::execute('UPDATE profile_job - SET jobid = {?} - WHERE uid = {?} AND id = {?}', - $jobid, $this->user->id(), $this->id); + XDB::execute('UPDATE profile_job + SET jobid = {?} + WHERE pid = {?} AND id = {?}', + $jobid, $this->profile->id(), $this->id); + if (XDB::affectedRows() == 0) { + return XDB::execute('INSERT INTO profile_job (jobid, pid, id) + VALUES ({?}, {?}, {?})', + $jobid, $this->profile->id(), $this->id); + } + return true; } // }}}