-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathosmtypes.php
More file actions
executable file
·439 lines (377 loc) · 9.73 KB
/
Copy pathosmtypes.php
File metadata and controls
executable file
·439 lines (377 loc) · 9.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
<?php
include_once('config.php');
function ValidateValue($in, $type)
{
if(strcmp($type,"int")==0) return (int)$in;
if(strcmp($type,"float")==0) return (float)$in;
if(strcmp($type,"string")==0)
{
if(strlen($in)>MAX_VALUE_LEN) throw new InvalidArgumentException("String is too long");
return html_entity_decode((string)$in);
}
if(strcmp($type,"timestamp")==0)
{
//Validate timestamp ISO 8601
$date = strtotime($in);
return date('c',$date);
}
if(strcmp($type,"boolean")==0)
{
if(strcasecmp("true",$in)==0) return "true";
if(strcasecmp("false",$in)==0) return "false";
throw new InvalidArgumentException("Could not validate boolean");
}
return null;
}
class OsmElement
{
public $attr = array();
public $tags = array();
public $members = array();
public function AttributesFromXml($input, $allowed)
{
//Copy attributes
foreach($allowed as $attr)
{
$attrname = $attr[0];
$type = $attr[1];
if(isset($input[$attrname]))
{
$this->attr[$attrname]=ValidateValue($input[$attrname],$type);
}
}
}
public function TagsFromXml($input)
{
foreach($input->tag as $tag)
{
$key=(string)$tag['k'];
if(strlen($key)>MAX_KEY_LEN) throw new InvalidArgumentException("Key is too long");
$value=(string)$tag['v'];
if(strlen($value)>MAX_VALUE_LEN) throw new InvalidArgumentException("Value is too long");
$this->tags[html_entity_decode($key)] = html_entity_decode($value);
}
}
public function NodesFromXml($input)
{
foreach($input->nd as $nd)
{
$ref=(int)$nd['ref'];
array_push($this->members,array("node",$ref,null));
}
}
public function MembersFromXml($input)
{
foreach($input->member as $m)
{
$ref=(int)$m['ref'];
$type=(string)$m['type'];
$role=(string)$m['role'];
if(strlen($role)>MAX_VALUE_LEN) throw new InvalidArgumentException("Role is too long");
array_push($this->members,array($type,$ref,$role));
}
}
public function ToXmlStringBase($type)
{
$out = "<".$type;
foreach($this->attr as $key => $val)
{
$out = $out." ".htmlspecialchars($key,ENT_QUOTES,"UTF-8")."='".htmlspecialchars($val,ENT_QUOTES,"UTF-8")."'";
}
$out = $out.">\n";
foreach($this->tags as $key => $value)
{
$out = $out.'<tag k="'.htmlspecialchars($key,ENT_QUOTES,"UTF-8");
$out = $out.'" v="'.htmlspecialchars($value,ENT_QUOTES,"UTF-8").'"/>'."\n";
//$out = $out.'<tag k="'.$key;
//$out = $out.'" v="'.$value.'"/>'."\n";
}
foreach($this->members as $member)
{
if(strcmp($type,"way")==0)
$out = $out.'<nd ref="'.$member[1].'"/>'."\n";
else
{
$out = $out.'<member type="'.$member[0].'" ref="'.$member[1].'" role="'.
htmlspecialchars($member[2],ENT_QUOTES,"UTF-8").'"/>'."\n";
}
}
$out = $out."</".$type.">\n";
return $out;
}
}
$allowedNodeAttributes = array(array('id','int'),array('action','string'),
array('lat','float'),array('lon','float'),array('changeset','int'),
array('user','string'),array('uid','int'),array('visible','boolean'),
array('timestamp','timestamp'),array('version','int'));
$allowedWayRelAttributes = array(array('id','int'),array('action','string'),
array('changeset','int'),
array('user','string'),array('uid','int'),array('visible','boolean'),
array('timestamp','timestamp'),array('version','int'));
class OsmNode extends OsmElement
{
public function FromXml($input)
{
//Clear previous data
$this->attr = array();
$this->tags = array();
//Copy from xml to internal object
global $allowedNodeAttributes;
$this->AttributesFromXml($input,$allowedNodeAttributes);
$this->TagsFromXml($input);
}
public function ToXmlString()
{
return $this->ToXmlStringBase("node");
}
public function GetType()
{
return "node";
}
}
class OsmWay extends OsmElement
{
public function FromXml($input)
{
//Clear previous data
$this->attr = array();
$this->tags = array();
//Copy from xml to internal object
global $allowedWayRelAttributes;
$this->AttributesFromXml($input,$allowedWayRelAttributes);
$this->TagsFromXml($input);
$this->NodesFromXml($input);
}
public function ToXmlString()
{
return $this->ToXmlStringBase("way");
}
public function GetType()
{
return "way";
}
}
class OsmRelation extends OsmElement
{
public function FromXml($input)
{
//Clear previous data
$this->attr = array();
$this->tags = array();
//Copy from xml to internal object
global $allowedWayRelAttributes;
$this->AttributesFromXml($input,$allowedWayRelAttributes);
$this->TagsFromXml($input);
$this->MembersFromXml($input);
}
public function ToXmlString()
{
return $this->ToXmlStringBase("relation");
}
public function GetType()
{
return "relation";
}
}
class OsmChangeset extends OsmElement
{
//var $data = array();
public function FromXml($input)
{
//Clear previous data
$this->attr = array();
$this->tags = array();
//Copy from xml to internal object
$this->AttributesFromXml($input,array(array('id','int'),array('open','boolean')));
$this->TagsFromXml($input);
}
public function ToXmlString()
{
return $this->ToXmlStringBase("changeset");
}
public function GetType()
{
return "changeset";
}
}
function OsmElementFactory($type)
{
if(strcasecmp($type,"node")==0) return new OsmNode();
if(strcasecmp($type,"way")==0) return new OsmWay();
if(strcasecmp($type,"relation")==0) return new OsmRelation();
if(strcasecmp($type,"changeset")==0) return new OsmChangeset();
return null;
}
class OsmChange
{
public $data = array();
public $version = null;
public function FromXmlString($input)
{
//Clear old data
$this->data = array();
//Parse input
$xml = simplexml_load_string($input);
if (!$xml)
{
$err = "Failed to parse XML upload diff.";
foreach(libxml_get_errors() as $error) {
$err = $err."\t".$error->message;
}
throw new InvalidArgumentException($err);
}
//Version
$this->version = (string)$xml['version'];
//For each action in data
foreach($xml as $action => $elements)
{
if($action!="create" and $action != "modify" and $action != "delete")
throw new InvalidArgumentException("Action must be create, modify or delete, not ".$action);
$elsInAction = array();
//For each element in the action
foreach($elements as $type => $elxml)
{
$el = OsmElementFactory($type);
if(is_null($el)) throw new InvalidArgumentException("Invalid element type ".$type);
if(!is_null($el)) $el->FromXml($elxml);
//echo $el->ToXmlString();
array_push($elsInAction,$el);
}
array_push($this->data, array($action,$elsInAction));
}
//print_r($this->data);
return 1;
}
public function ToXmlString()
{
$out = '<osmChange version="0.6" generator="'.SERVER_NAME.'">';
foreach($this->data as $data)
{
$action = $data[0];
$els = $data[1];
$out = $out."<".$action.">\n";
foreach($els as $el)
$out=$out.$el->ToXmlString();
$out = $out."</".$action.">\n";
}
$out = $out."</osmChange>\n";
return $out;
}
}
function SingleObjectFromXml($input)
{
//Parse input
$xml = simplexml_load_string($input);
if (!$xml)
{
$err = "Failed to parse XML upload diff.";
foreach(libxml_get_errors() as $error) {
$err = $err."\t".$error->message;
}
throw new InvalidArgumentException($err);
}
//Create object
foreach($xml as $type=>$el)
{
//echo $type;
if(strcmp($type,"bounds")==0) continue;
$obj = OsmElementFactory($type);
if (is_null($obj)) throw new Exception("Factory returned null for type ".$type);
$obj->FromXml($el);
return $obj;
}
return null;
}
function ParseOsmXml($input)
{
//Parse input
$xml = simplexml_load_string($input);
if (!$xml)
{
$err = "Failed to parse XML upload diff.";
foreach(libxml_get_errors() as $error) {
$err = $err."\t".$error->message;
}
throw new InvalidArgumentException($err);
}
$out = array();
//Create object
foreach($xml as $type=>$el)
{
//echo $type;
if(strcmp($type,"bounds")==0) continue;
$obj = OsmElementFactory($type);
if (is_null($obj)) throw new Exception("Factory returned null for type ".$type);
$obj->FromXml($el);
array_push($out,$obj);
}
return $out;
}
function ParseOsmXmlChangeset($input)
{
//Parse input
$xml = simplexml_load_string($input);
if (!$xml)
{
$err = "Failed to parse XML upload diff.";
foreach(libxml_get_errors() as $error) {
$err = $err."\t".$error->message;
}
throw new InvalidArgumentException($err);
}
//Create object
foreach($xml as $type=>$el)
{
//echo $type;
$obj = OsmElementFactory($type);
if (is_null($obj)) throw new Exception("Factory returned null for type ".$type);
$obj->FromXml($el);
return $obj;
}
return null;
}
class UserPreferences
{
public $data = array();
public function FromXmlString($input)
{
//Parse input
$xml = simplexml_load_string($input);
if (!$xml)
{
$err = "Failed to parse XML upload diff.";
foreach(libxml_get_errors() as $error) {
$err = $err."\t".$error->message;
}
throw new InvalidArgumentException($err);
}
//Copy into internal structure
$count = 0;
foreach($xml as $key => $prefs)
{
foreach($prefs->preference as $i => $pref)
{
$k = (string)$pref['k'];
$v = (string)$pref['v'];
if(strlen($k)>MAX_KEY_LEN) throw new InvalidArgumentException("Key too large");
if(strlen($v)>MAX_VALUE_LEN) throw new InvalidArgumentException("Value too large");
if(isset($this->data[$k])) throw new InvalidArgumentException("Duplicate key");
$this->data[html_entity_decode($k)] = html_entity_decode($v);
$count ++;
}
}
if($count > MAX_USER_PERFS) throw new InvalidArgumentException("Too many prefs");
return 1;
}
public function ToXmlString()
{
$out = "<preferences>\n";
foreach($this->data as $k => $v)
{
$out = $out.'<preference k="'.htmlentities($k,ENT_QUOTES,"UTF-8").'" v="'.htmlentities($v,ENT_QUOTES,"UTF-8").'"/>'."\n";
}
$out = $out."</preferences>\n";
return $out;
}
}
?>