30 lines
669 B
PHP
30 lines
669 B
PHP
|
<?php
|
||
|
session_start();
|
||
|
require_once(__DIR__ . "/services/apiBranch.inc.php");
|
||
|
require_once(__DIR__ . "/services/responses.inc.php");
|
||
|
require_once(__DIR__ . "/services/jugglDbApi.inc.php");
|
||
|
|
||
|
class EndRecordBranch extends ApiBranch
|
||
|
{
|
||
|
function get(ParamCleaner $params)
|
||
|
{
|
||
|
respondStatus(405);
|
||
|
}
|
||
|
|
||
|
function post(ParamCleaner $params)
|
||
|
{
|
||
|
$user_id = $params->get("user_id");
|
||
|
|
||
|
if ($params->exists(["end_time", "record_id"]) == false) {
|
||
|
respondStatus(400, "Missing parameter");
|
||
|
}
|
||
|
|
||
|
updateEndRecord($user_id, $params);
|
||
|
|
||
|
respondStatus(200);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$branch = new EndRecordBranch();
|
||
|
$branch->execute();
|