

Nextrek
@ 415
Nextrek / Android / SmartCharging / endPoints / nightly / add_commento.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 |
<?php session_start(); header("Access-Control-Allow-Origin: *"); header('Content-Type: application/json; charset=UTF-8'); require_once("constants.php"); require_once("repositories/CommentRepository.php"); require_once("utilities.php"); $servername = "localhost"; $username = "smartcharging"; $password = "LXRLBaEAuRr7M7jY"; //$params = json_decode($_REQUEST["params"], true); //$input = file_get_contents('php://input'); $params = json_decode(file_get_contents('php://input'), true); $conn; //$risposta = array(); $comment = new Comment(); $comment_repo; try { $conn = new PDO("mysql:host=".$servername.";dbname=smartcharging", $username, $password); $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); //echo "Connesso con successo al DB"; $comment_repo = new CommentRepository($conn); $comment->id_locale = $params["local_id"]; $comment->id_user = $params["user_id"]; $comment->voto = $params["voto"]; $comment->descrizione = $params["descrizione"]; //$comment->data = $params["data"]; $comment->data = date(DATE_ATOM); //$comment->imgs = $params["imgs"]; $risposta = $comment_repo->addComment($comment); $commentImgs = array_key_exists("imgs", $params) ? $params["imgs"] : null; if ($risposta["return"] == 0 && count($commentImgs)>0) { foreach($commentImgs as $image) { rename($_SERVER['DOCUMENT_ROOT'].TEMP_IMAGES_PATH.session_id()."/".$image, $_SERVER['DOCUMENT_ROOT'].IMAGES_PATH.$image); } //rmdir("./images/temp/".session_id()."/"); deleteDirectory($_SERVER['DOCUMENT_ROOT'].TEMP_IMAGES_PATH.session_id()."/"); $comment_repo->addImages($risposta["id"], $commentImgs); } unset($_SESSION["images"]); } catch(PDOException $e) { echo $e->getMessage(); $risposta["return"] = 1; } echo json_encode($risposta); $conn = null; //Close the connection to the DBMS ?> |
Commits for Nextrek/Android/SmartCharging/endPoints/nightly/add_commento.php
Revision | Author | Commited | Message |
---|---|---|---|
415
![]() |
![]() |
Wed 22 Jul, 2015 08:27:42 +0000 | Piccolo refactor dei file php... |
406
![]() |
![]() |
Mon 20 Jul, 2015 16:04:01 +0000 | Implementata chiamata get_avatar.php e rimosso parametro “data” alla add_commento.php |
400
![]() |
![]() |
Mon 20 Jul, 2015 10:23:38 +0000 | |
378
![]() |
![]() |
Fri 17 Jul, 2015 10:31:22 +0000 | [DA TESTARE E CORREGGERE] Gestione path immagini tramite costanti. |
374 |
![]() |
Fri 17 Jul, 2015 08:20:18 +0000 | Creazione “branch” nightly |