-
Notifications
You must be signed in to change notification settings - Fork 2
/
dettaglio_prodotto.php
78 lines (67 loc) · 3.61 KB
/
dettaglio_prodotto.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
<?php
// cerco l'attributo id nella query string
if (!(array_key_exists('id', $_REQUEST) && is_numeric($_REQUEST['id']))) {
header("Location: ./404.php", 404);
exit;
}
require_once "./scripts/php/Comments.php";
require_once "./scripts/php/connection.php";
require_once "./scripts/php/Prodotto.php";
require_once './scripts/php/Sessione.php';
require_once "./scripts/php/Util.php";
Sessione::startSession();
$productId = $_REQUEST['id'];
$authorText = "";
$gestioneLogin = "";
$funzioniAdmin = "";
$buttonInvioCommenti = "<div contenteditable=\"true\" id=\"new-comment\" class=\"testo-commento\"></div><input type=\"button\" id=\"send-comment\" class=\"submit-action\" name=\"send-comment\" value=\"Invia\" />";
if (!isset($_SESSION['user'])) {
$authorText = "Fai <a href=\"login.php\">login</a> o <a href=\"registrazione.php\">registrati</a> per scrivere commenti";
$gestioneLogin = "<a href=\"login.php\" class=\"header-button\" >Login</a><a href=\"registrazione.php\" class=\"header-button\" >Registrati</a>";
$buttonInvioCommenti = "";
} else {
$currentUser = $_SESSION['user'];
if ($currentUser->getPermessi() == '11') {
$gestioneLogin .= "<a href=\"menu_admin.php\" class=\"header-button\">Area riservata</a>";
$funzioniAdmin = "<div class=\"pannello-admin\">
<a href=\"modifica_prodotto.php?id=$_GET[id]\" class=\"submit-action\">Modifica</a>
<a href=\"elimina_prodotto.php?id=$_GET[id]&previous=$_SERVER[HTTP_REFERER]\" class=\"submit-action\">Elimina</a>
</div>";
}
$authorText = "Scrivi un commento come: " . $currentUser->getNome(). " ". $currentUser->getCognome()." (".$currentUser->getUsername(). ")";
$gestioneLogin .= "<a href=\"logout.php\" class=\"header-button\">Logout</a>";
}
$connection = new MySqlDatabaseConnection("localhost", "mifranco", "mifranco", "Aideebe4esooDuqu");
$connection->connect();
$productAttributes = $connection->getProduct($productId);
// controllo se esiste un prodotto con quell'id
if (!$productAttributes) {
header("Location: ./404.php", 404);
exit;
}
$commentsList = $connection->getCommentsAndUsernames($productId);
$connection->close();
// nome della sottocategoria del prodotto attuale
$categoryName = $productAttributes[0];
$subCategoryName = $productAttributes[1];
$product = new Prodotto(...array_slice($productAttributes, 2));
$commentsBuilder = new CommentsListBuilder($product->getID());
$commentsBuilder->addCommentsList($commentsList);
$daSostituire = array(
"{{pageTitle}}" => $product->getNome() . " - Dettaglio prodotto - Studio AR",
"{{pageDescription}}" => "Pagina di dettaglio per un prodotto venduto dallo studio AR - architetti riuniti",
"{{gestioneLogin}}" => $gestioneLogin,
"{{funzioniAdmin}}" => $funzioniAdmin,
"{{nomeCategoria}}" => $categoryName,
// gestisce caso speciale di sottocategoria nulla
"{{nomeSottoCategoria}}" => !is_null($subCategoryName) ? "> ". $subCategoryName : "",
"{{nomeProdotto}}" => $product->getNome() . " (dettaglio)",
"{{linkSottoCategoria}}" => "./" . Util::customLinkEncoder($categoryName) . ".php#" . Util::customAttributeEncoder($subCategoryName),
"{{dettaglioProdotto}}" => $product->getDettaglioProdotto(),
"{{elencoCommenti}}" => $commentsBuilder->buildHtml(),
"{{invioCommento}}" => $buttonInvioCommenti,
"{{testoAutore}}" => $authorText
);
$page = str_replace(array_keys($daSostituire), array_values($daSostituire),
file_get_contents('./static/_inizio.html') . file_get_contents('./static/dettaglio_prodotto.html') . file_get_contents("./static/_fine.html"));
echo $page;