-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathamigo.php
97 lines (72 loc) · 2.26 KB
/
amigo.php
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
<?php
session_start();
new Amigo();
Class Amigo {
public function __construct() {
$route = $_GET['rt'];
$this->$route();
}
public function listarAmigos() {
$xml = new DOMDocument();
$xml->validateOnParse = true;
$xml->load('nomes.xml');
$amigos = array();
foreach($xml->getElementsByTagName('amigo') as $amigo){
$attrs = array();
for ($i = 0; $i < $amigo->attributes->length; $i++) {
$node = $amigo->attributes->item($i);
$attrs[$node->name] = $node->nodeValue;
}
$amigos[] = array(
'id' => $attrs['id'],
'nome' => $amigo->nodeValue,
'foto' => "http://graph.facebook.com/$attrs[id]/picture",
'sorteou' => $attrs['sorteou'],
'sorteado' => $attrs['sorteado']
);
}
echo json_encode($amigos);
return true;
}
public function sortearAmigo() {
$xml = new DOMDocument();
$xml->validateOnParse = true;
$xml->load('nomes.xml');
$sorteou = $xml->getElementById($_POST['sorteou']);
if($sorteou->getAttribute('xml:sorteou') == "false" && !isset($_SESSION["sorteou"])){
$sorteou->setAttribute('xml:sorteou', 'true');
$amigos = array();
foreach ($xml->getElementsByTagName('amigo') as $amigo) {
$err = false;
$id = "";
for ($i = 0; $i < $amigo->attributes->length; $i++) {
$node = $amigo->attributes->item($i);
switch ($node->name) {
case 'id':
if( $node->nodeValue == $_POST['sorteou'] )
$err = true;
else
$id = $node->nodeValue;
break;
case 'sorteado':
if( $node->nodeValue == "true" )
$err = true;
break;
}
}
if($err == false)
$amigos[] = $id;
}
shuffle($amigos);
$amigo = $xml->getElementById( $amigos[0] );
$amigo->setAttribute('xml:sorteado', 'true');
$xml->save('nomes.xml');
$_SESSION["sorteou"] = true;
echo json_encode(array("erro" => false, "msg" => "Seu amigo secreto é...", "amigo" => $amigos[0]));
return true;
} else {
echo json_encode(array("erro" => true, "msg" => "Heeey .. você já sorteou seu amigo secreto!"));
return false;
}
}
}