Merge branch 'xorg/maint' into xorg/master
[platal.git] / include / webservices / manageurs.server.inc.php
1 <?php
2
3 require_once('webservices/manageurs.inc.php');
4
5 $error_mat = "You didn't provide me with a valid matricule number...";
6 $error_key = "You didn't provide me with a valid cipher key...";
7
8 // The first parameter has to be the identification number (matricule).
9 // The second parameter facultative has to be the number of the desired address:
10 // -1 => we do not want any address;
11 // 0 => we want all the addresses;
12 // n => we want the address number n.
13 //
14 // DO NOT CHANGE THE NAMES OF THE ADDRESSES' FIELDS.
15 // IF YOU HAVE TO MAKE SOME MODIFICATION, FIRST CONTACT:
16 // admin@manageurs.com
17 function get_annuaire_infos($method, $params) {
18 global $error_mat, $error_key, $globals;
19
20 // Password verification.
21 if(!isset($params[0]) || ($params[0] != $globals->manageurs->manageurs_pass)) {
22 return false;
23 }
24 // If address == -1, we do not retrieve any address.
25 if(isset($params[2]) && ($params[2] == -1)) {
26 unset($params[2]);
27 }
28
29 // We check we actually have an identification number.
30 if(!empty($params[1])) {
31 // We only retrieve addresses when required.
32 if(!isset($params[2])) {
33 $res = XDB::iterRow("SELECT pp.display_tel AS cell, p.birthdate AS age
34 FROM profiles AS p
35 LEFT JOIN profile_phones AS pp ON (pp.pid = p.pid AND pp.link_type = 'user'
36 AND pp.tel_type = 'mobile')
37 WHERE p.xorg_id = {?} LIMIT 1",
38 $params[1]);
39 $array = $res->next();
40 } else {
41 $res = XDB::iterRow("SELECT p.birthdate, pa.text, pa.postalCode
42 gl.name, pa.countryId, p.pid, pa.id
43 FROM profiles AS p
44 LEFT JOIN profile_addresses AS pa ON (pa.pid = p.pid)
45 LEFT JOIN geoloc_localities AS gl ON (pl.id = pa.localityId)
46 WHERE p.xorg_id = {?} AND NOT FIND_IN_SET('job', pa.flags)
47 ORDER BY NOT FIND_IN_SET('current', pa.flags),
48 FIND_IN_SET('secondary', pa.flags),
49 NOT FIND_IN_SET('mail', pa.flags)",
50 $params[1]);
51 // Process the addresses we got.
52 if(list($age, $text, $adr['cp'], $adr['ville'],
53 $adr['pays'], $pid, $adr['adrid']) = $res->next()) {
54 list($adr['adr1'], $adr['adr2'], $adr['adr3']) =
55 explode("\n", Geocoder::getFirstLines($text, $adr['cp'], 3));
56 $sql = XDB::query("SELECT display_tel
57 FROM profile_phones
58 WHERE pid = {?} AND link_type = 'user' AND tel_type = 'mobile'
59 LIMIT 1", $pid);
60 if ($sql->numRows() > 0) {
61 $array['cell'] = $sql->fetchOneCell();
62 } else {
63 $array['cell'] ='';
64 }
65 $array['age'] = $age;
66 $array['adresse'][] = $adr;
67
68
69 // We limit the address number by the number of available addresses.
70 $adresse = min((int) $params[2], $res->total());
71
72 if ($adresse != 1) { // We don't want the first address.
73 $i = 2;
74 while(list($age, $text, $adr['cp'], $adr['ville'],
75 $adr['pays'], , $adr['adrid']) = $res->next()) {
76 list($adr['adr1'], $adr['adr2'], $adr['adr3']) =
77 explode("\n", Geocoder::getFirstLines($text, $adr['cp'], 3));
78 if ($adresse == $i) {
79 // If we want this particular address.
80 $array['adresse'][0] = $adr;
81 //$res->free();
82 break;
83 } elseif ($adresse == 0) {
84 // If we want every address.
85 $array['adresse'][] = $adr;
86 }
87 $i++;
88 }
89 }
90
91 // We add the phone numbers.
92 $adrid_index = array();
93 foreach ($array['adresse'] as $i => $a) {
94 $adrid_index[$a['adrid']] = $i;
95 }
96 $restel = XDB::iterator("SELECT pp.display_tel AS tel, pp..tel_type, pp.link_id as adrid
97 FROM profile_phones AS pp
98 INNER JOIN profile_addresses AS pa ON (pp.link_id = pa.id AND pp.pid = pa.pid)
99 WHERE pp.pid = {?} AND pp.link_type = 'address'
100 AND NOT FIND_IN_SET('pro', pa.statut)",
101 $pid);
102 while ($tel = $restel->next()) {
103 $array['adresse'][$adrid_index[$tel['adrid']]]['tels'][] = $tel;
104 }
105 foreach ($array['adresse'] as $i => $adr) {
106 unset($lasttel);
107 foreach ($adr['tels'] as $j => $t) {
108 if (!isset($array['adresse'][$i]['tel']) && (strpos($t['tel_type'], 'Tél') === 0)) {
109 $array['adresse'][$i]['tel'] = $t['tel'];
110 } elseif (!isset($array['adresse'][$i]['fax'])
111 && (strpos($t['tel_type'], 'Fax') === 0)) {
112 $array['adresse'][$i]['fax'] = $t['tel'];
113 } else {
114 $lasttel = $t['tel'];
115 }
116 if (isset($array['adresse'][$i]['tel']) && isset($array['adresse'][$i]['fax'])) {
117 break;
118 }
119 }
120 if (!isset($array['adresse'][$i]['tel']) && isset($lasttel)) {
121 $array['adresse'][$i]['tel'] = $lasttel;
122 } elseif (!isset($array['adresse'][$i]['fax']) && isset($lasttel)) {
123 $array['adresse'][$i]['fax'] = $lasttel;
124 }
125 unset($array['adresse'][$i]['adrid']);
126 unset($array['adresse'][$i]['tels']);
127 }
128 } else {
129 $array = false;
130 }
131 }
132
133 if ($array) { // We did get a result: the identification number was rigth.
134
135 // We only send the age to manageurs.com; the format is YYYY-MM-DD 0123-56-89.
136 $year = (int) substr($array['age'], 0, 4);
137 $month = (int) substr($array['age'], 5, 2);
138 $day = (int) substr($array['age'], 8, 2);
139 $age = (int) date('Y') - $year - 1;
140 if(( $month < (int)date('m')) ||
141 (($month == (int)date('m')) && ($day >= (int)date('d')))) {
142 $age += 1;
143 }
144 $array['age'] = $age;
145
146 // We start the encryption of the data.
147 if (manageurs_encrypt_init($params[1]) == 1) {
148 // We did not find the key to encryptthe data.
149 $args = array("erreur" => 3, "erreurstring" => $error_key);
150 $reply = xmlrpc_encode_request(NULL,$args);
151 } else {
152 $reply = manageurs_encrypt_array($array);
153 manageurs_encrypt_close();
154 }
155 } else {
156 // The identification number was not valid.
157 $args = array("erreur" => 2, "erreurstring" => $erreur_mat);
158 $reply = xmlrpc_encode_request(NULL,$args);
159 }
160 } else {
161 // The identification number was not in argument.
162 $args = array("erreur" => 1, "erreurstring" => $error_mat);
163 $reply = xmlrpc_encode_request(NULL, $args);
164 }
165
166 return $reply;
167 }
168
169 function get_nouveau_infos($method, $params) {
170 global $error_mat, $error_key, $globals;
171 // Password verification.
172 if(!isset($params[0]) || ($params[0] != $globals->manageurs->manageurs_pass)) {
173 return false;
174 }
175 // We check we actually have an identification number.
176 if(!empty($params[1])) {
177 $nameTypes = DirEnum::getOptions(DirEnum::NAMETYPES);
178 $nameTypes = array_flip($nameTypes);
179
180 $res = XDB::query("SELECT pnl.name AS nom, pnu.name AS nom_usage, pnf.name AS prenom,
181 p.sex = 'female' AS femme, p.deathdate IS NOT NULL AS decede,
182 p.birthdate, pd.promo, CONCAT(e.email, '@', d.name) AS mail
183 FROM profiles AS p
184 INNER JOIN account_profiles AS ap ON (p.pid = ap.pid AND FIND_IN_SET('owner', perms)
185 INNER JOIN email_source_account AS s ON (s.uid = ap.uid AND FIND_IN_SET('bestalias', s.flags))
186 INNER JOIN email_virtual_domains AS d ON (s.domain = s.id)
187 INNER JOIN profile_display AS pd PN (p.pid = pd.pid)
188 INNER JOIN profile_name AS pnl ON (p.pid = pnl.pid AND pnl.typeid = {?})
189 INNER JOIN profile_name AS pnf ON (p.pid = pnf.pid AND pnf.typeid = {?})
190 INNER JOIN profile_name AS pnu ON (p.pid = pnu.pid AND pnu.typeid = {?})
191 WHERE a.flags = 'bestalias' AND p.xorg_id = {?}",
192 $nameTypes['name_ini'], $nameTypes['lastname_ordinary'],
193 $nameTypes['firstname_ini'], $params[1]);
194 // $data['mail'] .= '@polytechnique.org';
195
196
197 // We start the encryption of the data.
198 if (manageurs_encrypt_init($params[1]) == 1) {
199 // We did not find the key to encryptthe data.
200 $args = array("erreur" => 3, "erreurstring" => $error_key);
201 $reply = xmlrpc_encode_request(NULL, $args);
202 } else {
203 $reply = manageurs_encrypt_array($data);
204 manageurs_encrypt_close();
205 }
206
207 } else {
208 $reply = false;
209 }
210 return $reply;
211 }
212
213 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
214 ?>