Commit | Line | Data |
---|---|---|
b814a8b8 SJ |
1 | <?php |
2 | /*************************************************************************** | |
d4c08d89 | 3 | * Copyright (C) 2003-2010 Polytechnique.org * |
b814a8b8 SJ |
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 | ||
c3d1e6b6 | 24 | class EntrReq extends ProfileValidate |
b814a8b8 SJ |
25 | { |
26 | // {{{ properties | |
27 | ||
28 | public $id; | |
29 | public $name; | |
44365e82 SJ |
30 | public $acronym = null; |
31 | public $url = null; | |
32 | public $email = null; | |
8768e5af | 33 | public $holdingid = null; |
c67b874f | 34 | public $NAF_code = null; |
8768e5af | 35 | public $AX_code = null; |
b814a8b8 SJ |
36 | |
37 | public $tel; | |
38 | public $fax; | |
4d7d27fc | 39 | public $address; |
b814a8b8 | 40 | |
543b59cc | 41 | public $suggestions; |
bdc3c3d2 | 42 | public $rules = 'Si l\'entreprise est déjà présente sous un autre nom dans la liste des suggestions, remplacer son nom par celui-ci avant de valider. Laisser les autres champs tels quels.'; |
b814a8b8 SJ |
43 | |
44 | // }}} | |
45 | // {{{ constructor | |
46 | ||
c3d1e6b6 | 47 | public function __construct(User &$_user, Profile &$_profile, $_id, $_name, $_acronym, $_url, $_email, $_tel, $_fax, $_address, $_stamp = 0) |
b814a8b8 | 48 | { |
c3d1e6b6 | 49 | parent::__construct($_user, $_profile, false, 'entreprise', $_stamp); |
543b59cc SJ |
50 | $this->id = $_id; |
51 | $this->name = $_name; | |
52 | $this->acronym = $_acronym; | |
53 | $this->url = $_url; | |
54 | $this->email = $_email; | |
55 | $this->tel = $_tel; | |
56 | $this->fax = $_fax; | |
4d7d27fc | 57 | $this->address = $_address; |
543b59cc | 58 | |
4cf8b468 | 59 | $_name = preg_replace('/[^0-9a-z]/i', ' ', strtolower(replace_accent($_name))); |
543b59cc SJ |
60 | $name = explode(" ", $_name); |
61 | $name_array = array_map("trim", $name); | |
62 | $length = count($name_array); | |
63 | $where = ""; | |
64 | for ($i = 0; $i < $length; $i++) { | |
65 | if (strlen($name_array[$i]) > 2) { | |
66 | if ($where !== "") { | |
67 | $where .= " OR "; | |
68 | } | |
69 | $where .= "name LIKE '%" . $name_array[$i] . "%'"; | |
70 | } | |
71 | } | |
8cc857c7 SJ |
72 | if ($where != '') { |
73 | $res = XDB::iterator('SELECT name | |
74 | FROM profile_job_enum | |
75 | WHERE ' . $where); | |
76 | $this->suggestions = "| "; | |
77 | while ($sug = $res->next()) { | |
78 | $this->suggestions .= $sug['name'] . " | "; | |
79 | } | |
543b59cc | 80 | } |
b814a8b8 SJ |
81 | } |
82 | ||
83 | // }}} | |
84 | // {{{ function formu() | |
85 | ||
86 | public function formu() | |
87 | { | |
88 | return 'include/form.valid.entreprises.tpl'; | |
89 | } | |
90 | ||
91 | // }}} | |
92 | // {{{ function editor() | |
93 | ||
94 | public function editor() | |
95 | { | |
96 | return 'include/form.valid.edit-entreprises.tpl'; | |
97 | } | |
98 | ||
99 | // }}} | |
100 | // {{{ function handle_editor() | |
101 | ||
102 | protected function handle_editor() | |
103 | { | |
44365e82 SJ |
104 | foreach (array('acronym', 'url', 'email', 'NAF_code') as $field) { |
105 | $this->$field = (Env::t($field) == '' ? null : Env::t($field)); | |
b814a8b8 | 106 | } |
44365e82 SJ |
107 | foreach (array('AX_code', 'holdingid') as $field) { |
108 | $this->$field = (Env::i($field) == 0 ? null : Env::i($field)); | |
36270bc2 | 109 | } |
44365e82 SJ |
110 | $this->name = Env::t('name'); |
111 | $this->address['text'] = Env::t('address'); | |
112 | $this->tel = Env::t('tel'); | |
113 | $this->fax = Env::t('fax'); | |
114 | ||
36270bc2 | 115 | return true; |
b814a8b8 SJ |
116 | } |
117 | ||
118 | // }}} | |
119 | // {{{ function _mail_subj | |
120 | ||
121 | protected function _mail_subj() | |
122 | { | |
2381efd0 | 123 | return '[Polytechnique.org/Entreprises] Demande d\'ajout d\'une entreprise'; |
b814a8b8 SJ |
124 | } |
125 | ||
126 | // }}} | |
127 | // {{{ function _mail_body | |
128 | ||
129 | protected function _mail_body($isok) | |
130 | { | |
131 | if ($isok) { | |
132 | return " L'entreprise " . $this->name . " vient d'être ajoutée à ta fiche."; | |
133 | } else { | |
134 | return " La demande que tu avais faite pour l'entreprise " . $this->name . | |
135 | " a été refusée, car elle figure déjà dans notre base."; | |
136 | } | |
137 | } | |
138 | ||
139 | // }}} | |
140 | // {{{ function commit() | |
141 | ||
142 | public function commit() | |
143 | { | |
144 | $res = XDB::query('SELECT id | |
145 | FROM profile_job_enum | |
146 | WHERE name = {?}', | |
147 | $this->name); | |
148 | if ($res->numRows() != 1) { | |
b814a8b8 SJ |
149 | XDB::execute('INSERT INTO profile_job_enum (name, acronym, url, email, holdingid, NAF_code, AX_code) |
150 | VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?})', | |
151 | $this->name, $this->acronym, $this->url, $this->email, | |
152 | $this->holdingid, $this->NAF_code, $this->AX_code); | |
e0ee3120 | 153 | |
b814a8b8 | 154 | $jobid = XDB::insertId(); |
0b6c8b36 SJ |
155 | $phone = new Phone(array('link_type' => 'hq', 'link_id' => $jobid, 'id' => 0, |
156 | 'type' => 'fixed', 'display' => $this->tel, 'pub' => 'public')); | |
157 | $fax = new Phone(array('link_type' => 'hq', 'link_id' => $jobid, 'id' => 1, | |
158 | 'type' => 'fax', 'display' => $this->fax, 'pub' => 'public')); | |
44365e82 | 159 | $address = new Address(array('jobid' => $jobid, 'type' => Address::LINK_COMPANY, 'text' => $this->address['text'])); |
0b6c8b36 SJ |
160 | $phone->save(); |
161 | $fax->save(); | |
44365e82 | 162 | $address->format(); |
eb54852e | 163 | $address->save(); |
b814a8b8 SJ |
164 | } else { |
165 | $jobid = $res->fetchOneCell(); | |
b814a8b8 | 166 | } |
eb54852e | 167 | |
a38c0777 SJ |
168 | XDB::execute('UPDATE profile_job |
169 | SET jobid = {?} | |
170 | WHERE pid = {?} AND id = {?}', | |
171 | $jobid, $this->profile->id(), $this->id); | |
172 | if (XDB::affectedRows() == 0) { | |
173 | return XDB::execute('INSERT INTO profile_job (jobid, pid, id) | |
174 | VALUES ({?}, {?}, {?})', | |
175 | $jobid, $this->profile->id(), $this->id); | |
176 | } | |
177 | return true; | |
b814a8b8 SJ |
178 | } |
179 | ||
180 | // }}} | |
181 | } | |
182 | ||
183 | // }}} | |
184 | ||
185 | // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: | |
186 | ?> |