Merge commit 'origin/master' into fusionax
[platal.git] / include / validations / entreprises.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2009 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
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. *
10 * *
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. *
15 * *
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 *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 // {{{ class EntrReq
23
24 class EntrReq extends Validate
25 {
26 // {{{ properties
27
28 public $id;
29 public $name;
30 public $acronym;
31 public $url;
32 public $email;
33 public $holdingid;
34 public $NAF_code;
35 public $AX_code;
36
37 public $tel;
38 public $fax;
39 public $address;
40
41 public $suggestions;
42
43 // }}}
44 // {{{ constructor
45
46 public function __construct(User &$_user, $_id, $_name, $_acronym, $_url, $_email, $_tel, $_fax, $_address, $_stamp = 0)
47 {
48 parent::__construct($_user, false, 'entreprise', $_stamp);
49 $this->id = $_id;
50 $this->name = $_name;
51 $this->acronym = $_acronym;
52 $this->url = $_url;
53 $this->email = $_email;
54 $this->tel = $_tel;
55 $this->fax = $_fax;
56 $this->address = $_address;
57
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);
62 $where = "";
63 for ($i = 0; $i < $length; $i++) {
64 if (strlen($name_array[$i]) > 2) {
65 if ($where !== "") {
66 $where .= " OR ";
67 }
68 $where .= "name LIKE '%" . $name_array[$i] . "%'";
69 }
70 }
71 $res = XDB::iterator("SELECT name
72 FROM profile_job_enum
73 WHERE "
74 . $where);
75 $this->suggestions = "| ";
76 while ($sug = $res->next()) {
77 $this->suggestions .= $sug['name'] . " | ";
78 }
79 }
80
81 // }}}
82 // {{{ function formu()
83
84 public function formu()
85 {
86 return 'include/form.valid.entreprises.tpl';
87 }
88
89 // }}}
90 // {{{ function editor()
91
92 public function editor()
93 {
94 return 'include/form.valid.edit-entreprises.tpl';
95 }
96
97 // }}}
98 // {{{ function handle_editor()
99
100 protected function handle_editor()
101 {
102 if (Env::has('holdingid')) {
103 $this->holdingid = trim(Env::v('holdingid'));
104 }
105 if (Env::has('name')) {
106 $this->name = trim(Env::v('name'));
107 if (Env::has('acronym')) {
108 $this->acronym = trim(Env::v('acronym'));
109 if (Env::has('url')) {
110 $this->url = trim(Env::v('url'));
111 if (Env::has('NAF_code')) {
112 $this->NAF_code = trim(Env::v('NAF_code'));
113 if (Env::has('AX_code')) {
114 $this->AX_code = trim(Env::v('AX_code'));
115 return true;
116 }
117 }
118 }
119 }
120 }
121 return false;
122 }
123
124 // }}}
125 // {{{ function _mail_subj
126
127 protected function _mail_subj()
128 {
129 return "[Polytechnique.org/Entreprises] Demande d'ajout d'une entreprise : " . $this->name;
130 }
131
132 // }}}
133 // {{{ function _mail_body
134
135 protected function _mail_body($isok)
136 {
137 if ($isok) {
138 return " L'entreprise " . $this->name . " vient d'être ajoutée à ta fiche.";
139 } else {
140 return " La demande que tu avais faite pour l'entreprise " . $this->name .
141 " a été refusée, car elle figure déjà dans notre base.";
142 }
143 }
144
145 // }}}
146 // {{{ function commit()
147
148 public function commit()
149 {
150 $res = XDB::query('SELECT id
151 FROM profile_job_enum
152 WHERE name = {?}',
153 $this->name);
154 if ($res->numRows() != 1) {
155 require_once 'profil.func.inc.php';
156 require_once 'geocoding.inc.php';
157
158 XDB::execute('INSERT INTO profile_job_enum (name, acronym, url, email, holdingid, NAF_code, AX_code)
159 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?})',
160 $this->name, $this->acronym, $this->url, $this->email,
161 $this->holdingid, $this->NAF_code, $this->AX_code);
162 $jobid = XDB::insertId();
163 $display_tel = format_display_number($this->tel, $error_tel);
164 $display_fax = format_display_number($this->fax, $error_fax);
165 XDB::execute('INSERT INTO profile_phones (uid, link_type, link_id, tel_id, tel_type,
166 search_tel, display_tel, pub)
167 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}),
168 ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
169 $jobid, 'hq', $this->id, 0, 'fixed', format_phone_number($this->tel), $display_tel, 'public',
170 $jobid, 'hq', $this->id, 1, 'fax', format_phone_number($this->fax), $display_fax, 'public');
171 XDB::execute("INSERT INTO profile_addresses (jobid, type, id, accuracy,
172 text, postalText, postalCode, localityId,
173 subAdministrativeAreaId, administrativeAreaId,
174 countryId, latitude, longitude, updateTime,
175 north, south, east, west)
176 VALUES ({?}, 'hq', 0, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?},
177 {?}, {?}, FROM_UNIXTIME({?}), {?}, {?}, {?}, {?})",
178 $jobid, $this->address['accuracy'], $this->address['text'], $this->address['postalText'],
179 $this->address['postalCode'], $this->address['localityId'],
180 $this->address['subAdministrativeAreaId'], $this->address['administrativeAreaId'],
181 $this->address['countryId'], $this->address['latitude'], $this->address['longitude'],
182 $this->address['updateTime'], $this->address['north'], $this->address['south'],
183 $this->address['east'], $this->address['west']);
184 } else {
185 $jobid = $res->fetchOneCell();
186 $success = true;
187 }
188 return XDB::execute('UPDATE profile_job
189 SET jobid = {?}
190 WHERE uid = {?} AND id = {?}',
191 $jobid, $this->user->id(), $this->id);
192 }
193
194 // }}}
195 }
196
197 // }}}
198
199 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
200 ?>