Пример #1
0
        array_push($response["contacts"], $tmp);
    }
    echoRespnse(200, $response);
});
/**
 * Listing single contact of particual user
 * method GET
 * url /contacts/:id
 * Will return 404 if the contact doesn't belongs to user
 */
$app->get('/contacts/:id', 'authenticate', function ($task_id) {
    global $user_id;
    $response = array();
    $db = new DbHandler();
    // fetch task
    $result = $db->getTask($task_id, $user_id);
    if ($result != NULL) {
        $response["error"] = false;
        $response["id"] = $contact["id"];
        $response["name"] = $contact["name"];
        $response["address"] = $contact["name"];
        $response["postal"] = $contact["postal"];
        $response["city"] = $contact["city"];
        $response["country"] = $contact["country"];
        $response["status"] = $contact["status"];
        $response["picture_url"] = $contact["picture_url"];
        $response["created_at"] = $contact["created_at"];
        echoRespnse(200, $response);
    } else {
        $response["error"] = true;
        $response["message"] = "The requested resource doesn't exists";
Пример #2
0
        $tmp["createdAt"] = $task["created_at"];
        array_push($response["tasks"], $tmp);
    }
    echoRespnse(200, $response);
});
/**
 * Listing single task of particual user
 * method GET
 * url /tasks/:id
 * Will return 404 if the task doesn't belongs to user
 */
$app->get('/tasks/:id', 'authenticate', function ($task_id) {
    $response = array();
    $db = new DbHandler();
    // fetch task
    $result = $db->getTask($task_id, $_SESSION['user_id']);
    if ($result != NULL) {
        $response["error"] = false;
        $response["id"] = $result["id"];
        $response["task"] = $result["task"];
        $response["status"] = $result["status"];
        $response["createdAt"] = $result["created_at"];
        echoRespnse(200, $response);
    } else {
        $response["error"] = true;
        $response["message"] = "The requested resource doesn't exists";
        echoRespnse(404, $response);
    }
});
/**
 * Creating new task in db