Add foreign keys for profile tables.
[platal.git] / modules / profile / addresses.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 ProfileSettingAddress extends ProfileSettingGeocoding
23 {
24 private $bool;
25 private $pub;
26
27 public function __construct()
28 {
29 $this->bool = new ProfileSettingBool();
30 $this->pub = new ProfileSettingPub();
31 }
32
33 private function cleanAddress(ProfilePage &$page, $addrid, array &$address)
34 {
35 $address['tel'] = Phone::formatFormArray($address['tel'], $s);
36 $address['current'] = $this->bool->value($page, 'current', $address['current'], $s);
37 $address['temporary'] = $this->bool->value($page, 'temporary', $address['temporary'], $s);
38 $address['secondary'] = $this->bool->value($page, 'secondary', $address['secondary'], $s);
39 $address['mail'] = $this->bool->value($page, 'mail', $address['mail'], $s);
40 $address['pub'] = $this->pub->value($page, 'pub', $address['pub'], $s);
41 }
42
43 public function value(ProfilePage &$page, $field, $value, &$success)
44 {
45 $init = false;
46 if (is_null($value)) {
47 $value = $page->values['addresses'];
48 $init = true;
49 }
50 foreach ($value as $key => &$address) {
51 if (isset($address['removed']) && $address['removed']) {
52 array_splice($value, $key, 1);
53 }
54 }
55 $current = 0;
56 $success = true;
57 foreach ($value as $key => &$address) {
58 if (isset($address['current']) && $address['current']) {
59 $current++;
60 }
61 }
62 if ($current == 0 && count($value) > 0) {
63 foreach ($value as &$address) {
64 $address['current'] = true;
65 break;
66 }
67 } elseif ($current > 1) {
68 $success = false;
69 }
70 foreach ($value as $key => &$address) {
71 if (!trim($address['text'])) {
72 unset($value[$key]);
73 } elseif (!$init) {
74 $this->geocodeAddress($address, $s);
75 $success = $success && $s;
76 }
77 $this->cleanAddress($page, $key, $address);
78 }
79 return $value;
80 }
81
82 public function saveAddress($pid, $addrid, array &$address, $type)
83 {
84 require_once 'geocoding.inc.php';
85
86 $flags = new PlFlagSet();
87 $flags->addFlag('current', $address['current']);
88 $flags->addFlag('temporary', $address['temporary']);
89 $flags->addFlag('secondary', $address['secondary']);
90 $flags->addFlag('mail', $address['mail']);
91 $flags->addFlag('cedex', $address['cedex'] =
92 (strpos(strtoupper(preg_replace(array("/[0-9,\"'#~:;_\- ]/", "/\r\n/"),
93 array("", "\n"), $address['text'])), 'CEDEX')) !== false);
94 Geocoder::getAreaId($address, "administrativeArea");
95 Geocoder::getAreaId($address, "subAdministrativeArea");
96 Geocoder::getAreaId($address, "locality");
97
98 XDB::execute("INSERT INTO profile_addresses (pid, type, id, flags, accuracy,
99 text, postalText, postalCode, localityId,
100 subAdministrativeAreaId, administrativeAreaId,
101 countryId, latitude, longitude, updateTime, pub, comment,
102 north, south, east, west)
103 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?},
104 {?}, {?}, FROM_UNIXTIME({?}), {?}, {?}, {?}, {?}, {?}, {?})",
105 $pid, $type, $addrid, $flags, $address['accuracy'],
106 $address['text'], $address['postalText'], $address['postalCode'], $address['localityId'],
107 $address['subAdministrativeAreaId'], $address['administrativeAreaId'],
108 $address['countryId'], $address['latitude'], $address['longitude'],
109 $address['updateTime'], $address['pub'], $address['comment'],
110 $address['north'], $address['south'], $address['east'], $address['west']);
111 }
112
113 public function save(ProfilePage &$page, $field, $value)
114 {
115 XDB::execute("DELETE FROM profile_addresses
116 WHERE pid = {?} AND type = 'home'",
117 $page->pid());
118 Phone::deletePhones($page->pid(), Phone::LINK_ADDRESS);
119 foreach ($value as $addrid => &$address) {
120 $this->saveAddress($page->pid(), $addrid, $address, 'home');
121 Phone::savePhones($address['tel'], $page->pid(), Phone::LINK_ADDRESS, $addrid);
122 }
123 }
124
125 public function getText($value) {
126 $addresses = array();
127 foreach ($value as $addrid => $address) {
128 $phones = Phone::formArrayToString($address['tel']);
129 $addresses[] = 'Adresse : ' . $address['text'] . ', affichage : ' . $address['pub']
130 . ', commentaire : ' . $address['comment'] . ', actuelle : ' . ($address['current'] ? 'oui' : 'non')
131 . ', temporaire : ' . ($address['temporary'] ? 'oui' : 'non') . ', secondaire : '
132 . ($address['secondary'] ? 'oui' : 'non') . ', conctactable par courier : '
133 . ($address['mail'] ? 'oui' : 'non') . ($phones ? ', ' . $phones : '');
134 }
135 return implode(' ; ' , $addresses);
136 }
137 }
138
139 class ProfileSettingAddresses extends ProfilePage
140 {
141 protected $pg_template = 'profile/adresses.tpl';
142
143 public function __construct(PlWizard &$wiz)
144 {
145 parent::__construct($wiz);
146 $this->settings['addresses'] = new ProfileSettingAddress();
147 $this->watched['addresses'] = true;
148 }
149
150 protected function _fetchData()
151 {
152 $res = XDB::query("SELECT id, accuracy, text, postalText,
153 postalCode, localityId, subAdministrativeAreaId, administrativeAreaId,
154 countryId, latitude, longitude, pub, comment, UNIX_TIMESTAMP(updateTime) AS updateTime,
155 north, south, east, west,
156 FIND_IN_SET('current', flags) AS current,
157 FIND_IN_SET('temporary', flags) AS temporary,
158 FIND_IN_SET('secondary', flags) AS secondary,
159 FIND_IN_SET('mail', flags) AS mail,
160 FIND_IN_SET('cedex', flags) AS cedex
161 FROM profile_addresses
162 WHERE pid = {?} AND type = 'home'
163 ORDER BY id",
164 $this->pid());
165 if ($res->numRows() == 0) {
166 $this->values['addresses'] = array();
167 } else {
168 $this->values['addresses'] = $res->fetchAllAssoc();
169 }
170
171 // Adds phones to addresses.
172 $it = Phone::iterate(array($this->pid()), array(Phone::LINK_ADDRESS));
173 while ($phone = $it->next()) {
174 $this->values['addresses'][$phone->linkId()]['tel'][$phone->id()] = $phone->toFormArray();
175 }
176
177 // Properly formats addresses.
178 foreach ($this->values['addresses'] as $id => &$address) {
179 $phone = new Phone();
180 if (!isset($address['tel'])) {
181 $address['tel'] = array(0 => $phone->toFormArray());
182 }
183 unset($address['id']);
184 $address['changed'] = 0;
185 $address['removed'] = 0;
186 }
187 //var_dump($this->values['addresses']['tel']);
188 }
189 }
190
191 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
192 ?>