-
Notifications
You must be signed in to change notification settings - Fork 0
/
controller.php
186 lines (172 loc) · 4.29 KB
/
controller.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
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
<?php
session_start();
if (!isset($_SESSION['carrinho'])) {
$_SESSION['carrinho'] = array();
}
class Setup
{
public function get()
{
@unlink('banco.db');
$con = new Model();
$con->setup();
header('Location: /');
}
}
class Home
{
public function get()
{
$con = new Model;
$produtos = $con->produtos_destaque();
$title = 'Produtos em destaque';
include 'template/head.php';
include 'template/home.php';
include 'template/footer.php';
}
}
class Categoria
{
public function get($slug)
{
$con = new Model;
$categoria = $con->categoria($slug);
if ($categoria) {
$categoria = $categoria->fetch();
$id_categoria = $categoria['id'];
$produtos = $con->produtos($id_categoria);
}
$title = 'Produtos da categoria '.$categoria['nome'];
include 'template/head.php';
include 'template/home.php';
include 'template/footer.php';
}
}
class Produto
{
public function get($slug)
{
$con = new Model;
$produto = $con->produto($slug);
include 'template/head.php';
include 'template/produto.php';
include 'template/footer.php';
}
}
class Carrinho
{
public function get()
{
$con = new Model;
include 'template/head.php';
include 'template/carrinho.php';
include 'template/footer.php';
}
}
class Adicionar
{
public function get($slug)
{
$con = new Model;
$produto = $con->produto($slug);
if (!isset($_SESSION['carrinho'][$slug])) {
$_SESSION['carrinho'][$slug] = 1;
} else {
$_SESSION['carrinho'][$slug] += 1;
}
header('Location: '.url('carrinho'));
}
}
class Remover
{
public function get($slug)
{
if (isset($_SESSION['carrinho'][$slug])) {
unset($_SESSION['carrinho'][$slug]);
}
header('Location: '.url('carrinho'));
}
}
class Atualizar
{
public function get()
{
}
public function post()
{
$_SESSION['carrinho'] = array();
foreach ($_POST['produto'] as $slug => $qtd) {
$qtd = (int) $qtd;
if ($qtd>0) {
$_SESSION['carrinho'][$slug] = $qtd;
}
}
header('Location: '.url('carrinho'));
}
}
class Comprar
{
public function get()
{
if (!$_SESSION['carrinho']) {
header('Location: '.url('carrinho'));
die;
}
$con = new Model;
require_once 'pagseguro/Pagseguro.php';
$carrinho = Pagseguro::carrinho(array(
'email_cobranca' => '[email protected]',
'javascript' => true,
'button' => '',
'target' => '',
'encoding' => 'UTF-8',
));
$carrinho->cliente(array(
'nome' => 'Marcel Verebes',
'cep' => '03443000',
));
foreach ($_SESSION['carrinho'] as $slug => $qtd) {
$produto = $con->produto($slug)->fetch();
$produto = array(
'id' => $produto['id'],
'desc' => $produto['nome'],
'quant' => $qtd,
'valor' => $produto['preco'],
);
$carrinho->produto($produto);
}
$_SESSION['carrinho'] = array();
print '<html><head><title></title></head><body>';
$carrinho->mostra();
print '</body></html>';
}
}
class StaticFiles
{
public function get($base, $arquivo, $extensao)
{
$caminho_completo = implode(DIRECTORY_SEPARATOR, array(__DIR__, $base, $arquivo . '.' . $extensao));
if (file_exists($caminho_completo)) {
$this->header($extensao);
print file_get_contents($caminho_completo);
return;
}
error404();
}
private function header($extensao) {
switch ($extensao) {
case 'css':
header('Content-Type: text/css');
break;
case 'js':
header('Content-Type: application/javascript');
break;
case 'jpg':
header('Content-Type: image/jpeg');
break;
case 'png':
header('Content-Type: image/png');
break;
}
}
}