2 /***************************************************************************
3 * Copyright (C) 2003-2009 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
24 class EntrReq
extends Validate
46 public function __construct(User
&$_user, $_id, $_name, $_acronym, $_url, $_email, $_tel, $_fax, $_address, $_stamp = 0)
48 parent
::__construct($_user, false
, 'entreprise', $_stamp);
51 $this->acronym
= $_acronym;
53 $this->email
= $_email;
56 $this->address
= $_address;
58 $_name = preg_replace('/[^0-9a-z]/i', ' ', strtolower(replace_accent($_name)));
59 $name = explode(" ", $_name);
60 $name_array = array_map("trim", $name);
61 $length = count($name_array);
63 for ($i = 0; $i < $length; $i++
) {
64 if (strlen($name_array[$i]) > 2) {
68 $where .= "name LIKE '%" . $name_array[$i] . "%'";
71 $res = XDB
::iterator('SELECT name
74 $this->suggestions
= "| ";
75 while ($sug = $res->next()) {
76 $this->suggestions
.= $sug['name'] . " | ";
81 // {{{ function formu()
83 public function formu()
85 return 'include/form.valid.entreprises.tpl';
89 // {{{ function editor()
91 public function editor()
93 return 'include/form.valid.edit-entreprises.tpl';
97 // {{{ function handle_editor()
99 protected function handle_editor()
101 if (Env
::has('holdingid')) {
102 $this->holdingid
= trim(Env
::v('holdingid'));
104 if (Env
::has('name')) {
105 $this->name
= trim(Env
::v('name'));
106 if (Env
::has('acronym')) {
107 $this->acronym
= trim(Env
::v('acronym'));
108 if (Env
::has('url')) {
109 $this->url
= trim(Env
::v('url'));
110 if (Env
::has('NAF_code')) {
111 $this->NAF_code
= trim(Env
::v('NAF_code'));
112 if (Env
::has('AX_code')) {
113 $this->AX_code
= trim(Env
::v('AX_code'));
124 // {{{ function _mail_subj
126 protected function _mail_subj()
128 return "[Polytechnique.org/Entreprises] Demande d'ajout d'une entreprise : " . $this->name
;
132 // {{{ function _mail_body
134 protected function _mail_body($isok)
137 return " L'entreprise " . $this->name
. " vient d'être ajoutée à ta fiche.";
139 return " La demande que tu avais faite pour l'entreprise " . $this->name
.
140 " a été refusée, car elle figure déjà dans notre base.";
145 // {{{ function commit()
147 public function commit()
149 // TODO: use address and phone classes to update profile_job_enum and profile_phones once they are done.
151 $res = XDB
::query('SELECT id
152 FROM profile_job_enum
155 if ($res->numRows() != 1) {
156 require_once 'profil.func.inc.php';
157 require_once 'geocoding.inc.php';
159 XDB
::execute('INSERT INTO profile_job_enum (name, acronym, url, email, holdingid, NAF_code, AX_code)
160 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?})',
161 $this->name
, $this->acronym
, $this->url
, $this->email
,
162 $this->holdingid
, $this->NAF_code
, $this->AX_code
);
164 $jobid = XDB
::insertId();
165 $display_tel = format_display_number($this->tel
, $error_tel);
166 $display_fax = format_display_number($this->fax
, $error_fax);
167 XDB
::execute("INSERT INTO profile_phones (uid, link_type, link_id, tel_id, tel_type,
168 search_tel, display_tel, pub)
169 VALUES ({?}, 'hq', 0, 0, 'fixed', {?}, {?}, 'public'),
170 ({?}, 'hq', 0, 1, 'fax', {?}, {?}, 'public')",
171 $jobid, format_phone_number($this->tel
), $display_tel,
172 $jobid, format_phone_number($this->fax
), $display_fax);
174 $gmapsGeocoder = new GMapsGeocoder();
175 $address = $gmapsGeocoder->getGeocodedAddress($this->address
);
176 Geocoder
::getAreaId($address, 'administrativeArea');
177 Geocoder
::getAreaId($address, 'subAdministrativeArea');
178 Geocoder
::getAreaId($address, 'locality');
179 XDB
::execute("INSERT INTO profile_addresses (jobid, type, id, accuracy,
180 text, postalText, postalCode, localityId,
181 subAdministrativeAreaId, administrativeAreaId,
182 countryId, latitude, longitude, updateTime,
183 north, south, east, west)
184 VALUES ({?}, 'hq', 0, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?},
185 {?}, {?}, FROM_UNIXTIME({?}), {?}, {?}, {?}, {?})",
186 $jobid, $this->address
['accuracy'], $this->address
['text'], $this->address
['postalText'],
187 $this->address
['postalCode'], $this->address
['localityId'],
188 $this->address
['subAdministrativeAreaId'], $this->address
['administrativeAreaId'],
189 $this->address
['countryId'], $this->address
['latitude'], $this->address
['longitude'],
190 $this->address
['updateTime'], $this->address
['north'], $this->address
['south'],
191 $this->address
['east'], $this->address
['west']);
193 $jobid = $res->fetchOneCell();
196 return XDB
::execute('UPDATE profile_job
198 WHERE uid = {?} AND id = {?}',
199 $jobid, $this->user
->id(), $this->id
);
207 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: