Don't display jobs marked as 'private' when directory_private permission
[platal.git] / modules / profile / jobs.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2010 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 ProfileSettingJob implements ProfileSetting
23 {
24 private $pub;
25 private $email_new;
26 private $email;
27 private $url;
28 private $bool;
29 private $checks;
30
31 public function __construct()
32 {
33 $this->pub = new ProfileSettingPub();
34 $this->email
35 = $this->email_new
36 = new ProfileSettingEmail();
37 $this->url = new ProfileSettingWeb();
38 $this->bool = new ProfileSettingBool();
39 $this->checks = array('url' => array('w_url'),
40 'email' => array('w_email'),
41 'pub' => array('pub', 'w_email_pub'),
42 );
43 }
44
45 private function emptyJob()
46 {
47 $address = new Address();
48 $phone = new Phone();
49 return array(
50 'id' => '0',
51 'jobid' => '',
52 'pub' => 'private',
53 'name' => '',
54 'description' => '',
55 'w_url' => '',
56 'w_address' => $address->toFormArray(),
57 'w_email' => '',
58 'w_email_pub' => 'private',
59 'w_email_new' => '',
60 'w_phone' => array(0 => $phone->toFormArray()),
61 'terms' => array()
62 );
63 }
64
65 private function fetchJobs(ProfilePage $page)
66 {
67 // Build the jobs tree
68 $jobs = XDB::fetchAllAssoc('SELECT j.id, j.jobid, je.name,
69 j.description, j.email AS w_email,
70 j.email_pub AS w_email_pub,
71 j.url AS w_url, j.pub
72 FROM profile_job AS j
73 LEFT JOIN profile_job_enum AS je ON (j.jobid = je.id)
74 WHERE j.pid = {?}
75 ORDER BY j.id',
76 $page->pid());
77
78 if (empty($jobs)) {
79 return array($this->emptyJob());
80 }
81
82 $compagnies = array();
83 $backtrack = array();
84 foreach ($jobs as $key=>$job) {
85 $compagnies[] = $job['jobid'];
86 $backtrack[$job['jobid']] = $key;
87 }
88
89 $it = Address::iterate(array($page->pid()), array(Address::LINK_JOB));
90 while ($address = $it->next()) {
91 $jobs[$address->jobid]['w_address'] = $address->toFormArray();
92 }
93 $it = Phone::iterate(array($page->pid()), array(Phone::LINK_JOB));
94 while ($phone = $it->next()) {
95 $jobs[$phone->linkId()]['w_phone'][$phone->id()] = $phone->toFormArray();
96 }
97 $res = XDB::iterator("SELECT e.jtid, e.full_name, j.jid AS jobid
98 FROM profile_job_term_enum AS e
99 INNER JOIN profile_job_term AS j USING(jtid)
100 WHERE pid = {?}
101 ORDER BY j.jid",
102 $page->pid());
103 while ($term = $res->next()) {
104 $jobid = $term['jobid'];
105 if (!isset($backtrack[$jobid])) {
106 continue;
107 }
108 $job =& $jobs[$backtrack[$jobid]];
109 if (!isset($job['terms'])) {
110 $job['terms'] = array();
111 }
112 $job['terms'][] = $term;
113 }
114
115 $phone = new Phone();
116 $address = new Address();
117 foreach ($jobs as $id => &$job) {
118 if (!isset($job['w_phone'])) {
119 $job['w_phone'] = array(0 => $phone->toFormArray());
120 }
121 if (!isset($job['w_address'])) {
122 $job['w_address'] = $address->toFormArray();
123 }
124
125 $job['w_email_new'] = '';
126 if (!isset($job['w_email_pub'])) {
127 $job['w_email_pub'] = 'private';
128 }
129 }
130 return $jobs;
131 }
132
133 private function cleanJob(ProfilePage &$page, $jobid, array &$job, &$success)
134 {
135 if ($job['w_email'] == "new@example.org") {
136 $job['w_email'] = $job['w_email_new'];
137 }
138 foreach ($this->checks as $obj=>&$fields) {
139 $chk =& $this->$obj;
140 foreach ($fields as $field) {
141 $job[$field] = $chk->value($page, $field, $job[$field], $s);
142 if (!$s) {
143 $success = false;
144 $job[$field . '_error'] = true;
145 }
146 }
147 }
148 if (count($job['terms'])) {
149 $termsid = array();
150 foreach ($job['terms'] as $term) {
151 if (!$term['full_name']) {
152 $termsid[] = $term['jtid'];
153 }
154 }
155 if (count($termsid)) {
156 $res = XDB::query("SELECT jtid, full_name
157 FROM profile_job_term_enum
158 WHERE jtid IN {?}",
159 $termsid);
160 $term_id_to_name = $res->fetchAllAssoc('jtid', false);
161 foreach ($job['terms'] as &$term) {
162 if (!$term['full_name']) {
163 $term['full_name'] = $term_id_to_name[$term['jtid']];
164 }
165 }
166 }
167 }
168 if ($job['name']) {
169 $res = XDB::query("SELECT id
170 FROM profile_job_enum
171 WHERE name = {?}",
172 $job['name']);
173 if ($res->numRows() != 1) {
174 $req = new EntrReq(S::user(), $page->profile, $jobid, $job['name'], $job['hq_acronym'], $job['hq_url'],
175 $job['hq_email'], $job['hq_fixed'], $job['hq_fax'], $job['hq_address']);
176 $req->submit();
177 $job['jobid'] = null;
178 sleep(1);
179 } else {
180 $job['jobid'] = $res->fetchOneCell();
181 }
182 }
183 $job['w_phone'] = Phone::formatFormArray($job['w_phone'], $s);
184
185 unset($job['removed']);
186 unset($job['new']);
187 }
188
189
190
191 public function value(ProfilePage &$page, $field, $value, &$success)
192 {
193 $entreprise = ProfileValidate::get_typed_requests($page->pid(), 'entreprise');
194 $entr_val = 0;
195
196 $init = false;
197 if (is_null($value)) {
198 $value = $this->fetchJobs($page);
199 $init = true;
200 }
201 $success = true;
202 foreach ($value as $key => $job) {
203 $job['name'] = trim($job['name']);
204 if ($job['name'] == '' && $entreprise) {
205 $job['tmp_name'] = $entreprise[$entr_val]->name;
206 ++$entr_val;
207 } else if ($job['name'] == '') {
208 if ($job['description'] == '' && $job['w_url'] == ''
209 && $job['w_address']['text'] == '' && $job['w_email'] == ''
210 && count($job['w_phone']) >= 1 && $job['w_phone'][0]['display'] == '') {
211 unset($value[$key]);
212 continue;
213 }
214
215 if (!$init) {
216 $job['name_error'] = true;
217 $success = false;
218 }
219 }
220
221 if (isset($job['removed']) && $job['removed']) {
222 if ($job['name'] == '' && $entreprise) {
223 $entreprise[$entr_val - 1]->clean();
224 }
225 unset($value[$key]);
226 continue;
227 }
228 $value[$key] = $job;
229 }
230 foreach ($value as $key => &$job) {
231 $address = new Address($job['w_address']);
232 $s = $address->format();
233 $job['w_address'] = $address->toFormArray();
234 $this->cleanJob($page, $key, $job, $s);
235 if (!$init) {
236 $success = ($success && $s);
237 }
238 }
239 return $value;
240 }
241
242 public function save(ProfilePage &$page, $field, $value)
243 {
244 XDB::execute("DELETE FROM profile_job
245 WHERE pid = {?}",
246 $page->pid());
247 XDB::execute("DELETE FROM profile_job_term
248 WHERE pid = {?}",
249 $page->pid());
250 Address::delete($page->pid(), Address::LINK_JOB);
251 Phone::deletePhones($page->pid(), Phone::LINK_JOB);
252 $terms_values = array();
253 foreach ($value as $id => &$job) {
254 if (isset($job['name']) && $job['name']) {
255 if (isset($job['jobid']) && $job['jobid']) {
256 XDB::execute('INSERT INTO profile_job (pid, id, description, email,
257 url, pub, email_pub, jobid)
258 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
259 $page->pid(), $id, $job['description'], $job['w_email'],
260 $job['w_url'], $job['pub'], $job['w_email_pub'], $job['jobid']);
261 } else {
262 XDB::execute('INSERT INTO profile_job (pid, id, description, email,
263 url, pub, email_pub)
264 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?})',
265 $page->pid(), $id, $job['description'], $job['w_email'],
266 $job['w_url'], $job['pub'], $job['w_email_pub']);
267 }
268 $address = new Address(array_merge($job['w_address'],
269 array('pid' => $page->pid(),
270 'id' => $id,
271 'type' => Address::LINK_JOB)));
272 $address->save();
273 Phone::savePhones($job['w_phone'], $page->pid(), Phone::LINK_JOB, $id);
274 if (isset($job['terms'])) {
275 foreach ($job['terms'] as $term) {
276 $terms_values[] = XDB::format('({?}, {?}, {?}, {?})',
277 $page->pid(), $id, $term['jtid'], "original");
278 }
279 }
280 }
281 }
282 if (count($terms_values) > 0) {
283 XDB::execute('REPLACE INTO profile_job_term (pid, jid, jtid, computed)
284 VALUES '.implode(', ', $terms_values));
285 }
286 }
287
288 public function getText($value) {
289 $jobs = array();
290 foreach ($value as $id => $job) {
291 $address = Address::formArrayToString($job['w_address']);
292 $phones = Phone::formArrayToString($job['w_phone']);
293 // TODO: add jobterms here.
294 $jobs[] = 'Entreprise : ' . $job['name']
295 . ', description : ' . $job['description'] . ', web : ' . $job['w_url']
296 . ', email : ' . $job['w_email']
297 . ($phones ? ', ' . $phones : '') . ($address ? ', ' . $address : '');
298 }
299 return implode(' ; ' , $jobs);
300 }
301 }
302
303 class ProfileSettingCorps implements ProfileSetting
304 {
305 public function value(ProfilePage &$page, $field, $value, &$success)
306 {
307 $success = true;
308 if (is_null($value)) {
309 $res = XDB::query("SELECT original_corpsid AS original, current_corpsid AS current,
310 rankid AS rank, corps_pub AS pub
311 FROM profile_corps
312 WHERE pid = {?}",
313 $page->pid());
314 return $res->fetchOneAssoc();
315 }
316 return $value;
317 }
318
319 public function save(ProfilePage &$page, $field, $value)
320 {
321 XDB::execute('REPLACE INTO profile_corps (original_corpsid, current_corpsid, rankid, corps_pub, pid)
322 VALUES ({?}, {?}, {?}, {?}, {?})',
323 $value['original'], $value['current'], $value['rank'], $value['pub'], $page->pid());
324 }
325
326 public function getText($value)
327 {
328 $corpsList = DirEnum::getOptions(DirEnum::CORPS);
329 $rankList = DirEnum::getOptions(DirEnum::CORPSRANKS);
330 return 'Corps actuel : ' . $corpsList[$value['current']] . ' , rang : ' . $corpsList[$value['rank']]
331 . ' , corps d\'origine : ' . $corpsList[$value['original']] . ' , affichage : ' . $value['pub'];
332 }
333 }
334
335 class ProfilePageJobs extends ProfilePage
336 {
337 protected $pg_template = 'profile/jobs.tpl';
338
339 public function __construct(PlWizard &$wiz)
340 {
341 parent::__construct($wiz);
342 if (S::user()->checkPerms(User::PERM_DIRECTORY_PRIVATE)) {
343 $this->settings['cv'] = null;
344 }
345 $this->settings['corps'] = new ProfileSettingCorps();
346 $this->settings['jobs'] = new ProfileSettingJob();
347 $this->watched = array('cv' => true, 'jobs' => true, 'corps' => true);
348 }
349
350 protected function _fetchData()
351 {
352 if (S::user()->checkPerms(User::PERM_DIRECTORY_PRIVATE)) {
353 // Checkout the CV
354 $res = XDB::query("SELECT cv
355 FROM profiles
356 WHERE pid = {?}",
357 $this->pid());
358 $this->values['cv'] = $res->fetchOneCell();
359 }
360 }
361
362 protected function _saveData()
363 {
364 if (S::user()->checkPerms(User::PERM_DIRECTORY_PRIVATE)) {
365 if ($this->changed['cv']) {
366 XDB::execute("UPDATE profiles
367 SET cv = {?}
368 WHERE pid = {?}",
369 $this->values['cv'], $this->pid());
370 }
371 }
372 }
373
374 public function _prepare(PlPage &$page, $id)
375 {
376 require_once 'emails.combobox.inc.php';
377 fill_email_combobox($page, $this->owner);
378
379 $res = XDB::iterator("SELECT id, name
380 FROM profile_corps_enum
381 ORDER BY id = 1 DESC, name");
382 $page->assign('original_corps', $res->fetchAllAssoc());
383
384 $res = XDB::iterator("SELECT id, name
385 FROM profile_corps_enum
386 WHERE still_exists = 1
387 ORDER BY id = 1 DESC, name");
388 $page->assign('current_corps', $res->fetchAllAssoc());
389
390 $res = XDB::iterator("SELECT id, name
391 FROM profile_corps_rank_enum
392 ORDER BY id = 1 DESC, name");
393 $page->assign('corps_rank', $res->fetchAllAssoc());
394 }
395 }
396
397 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
398 ?>