forked from nglauber/dominando_android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebservice.php
84 lines (72 loc) · 2.37 KB
/
webservice.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
<?php
$metodoHttp = $_SERVER['REQUEST_METHOD'];
$banco = "banco.txt";
$autoInc = "ids.txt";
$delimitador = "#";
if ($metodoHttp == 'POST') {
$json = json_decode(file_get_contents('php://input'));
$nome = $json->{'nome'};
$endereco = $json->{'endereco'};
$estrelas = $json->{'estrelas'};
$id = 0;
if (file_exists($autoInc)) {
$id = file_get_contents($autoInc, "a");
}
file_put_contents($autoInc, ++$id);
$linha = $id .$delimitador. $nome .$delimitador. $endereco .$delimitador. $estrelas ."\n";
$fp = fopen($banco, "a") or die("Erro ao abrir arquivo!");
fwrite($fp, $linha) or die("Erro ao escrever no arquivo!");
fclose($fp);
$jsonRetorno = array("id"=>$id);
echo json_encode($jsonRetorno);
} else if ($metodoHttp == 'GET') {
$jsonArray = array();
if (file_exists($banco)) {
$linhas = file($banco, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
foreach ($linhas as $linhaNum => $linha) {
$valoresLinha = explode($delimitador, $linha);
$jsonLinha = array(
"id" => $valoresLinha[0],
"nome" => $valoresLinha[1],
"endereco" => $valoresLinha[2],
"estrelas" => (float)$valoresLinha[3]);
$jsonArray[] = $jsonLinha;
}
}
echo json_encode($jsonArray);
} else if ($metodoHttp == 'PUT') {
$json = json_decode(file_get_contents('php://input'));
$id = $json->{'id'};
$nome = $json->{'nome'};
$endereco = $json->{'endereco'};
$estrelas = $json->{'estrelas'};
$linhaAtualizada = $id .$delimitador .$nome .$delimitador .$endereco .$delimitador .$estrelas;
$linhas = file($banco, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
$conteudo = "";
foreach ($linhas as $linhaNum => $linha) {
$valoresLinha = explode($delimitador, $linha);
if ($valoresLinha[0] == $id) {
$linha = $linhaAtualizada;
}
$conteudo .= $linha ."\n";
}
file_put_contents($banco, $conteudo);
$jsonRetorno = array("id"=>$id);
echo json_encode($jsonRetorno);
} else if ($metodoHttp == 'DELETE') {
$segments = explode("/", $_SERVER["REQUEST_URI"]);
$id = $segments[count($segments)-1];
$linhas = file($banco, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
$conteudo = "";
foreach ($linhas as $linhaNum => $linha) {
$valoresLinha = explode($delimitador, $linha);
if ($valoresLinha[0] == $id) {
continue;
}
$conteudo .= $linha ."\n";
}
file_put_contents($banco, $conteudo);
$jsonRetorno = array("id"=>$id);
echo json_encode($jsonRetorno);
}
?>