Removed old app
This commit is contained in:
parent
f372401e19
commit
9695f7d9e3
33 changed files with 0 additions and 2036 deletions
|
@ -1,30 +0,0 @@
|
|||
<?php
|
||||
session_start();
|
||||
require_once(__DIR__ . "/services/apiBranch.inc.php");
|
||||
require_once(__DIR__ . "/services/jsonBuilder.inc.php");
|
||||
require_once(__DIR__ . "/services/responses.inc.php");
|
||||
require_once(__DIR__ . "/services/jugglDbApi.inc.php");
|
||||
|
||||
class AddProjectBranch extends ApiBranch
|
||||
{
|
||||
function get(ParamCleaner $params)
|
||||
{
|
||||
respondStatus(405);
|
||||
}
|
||||
|
||||
function post(ParamCleaner $params)
|
||||
{
|
||||
$user_id = $params->get("user_id");
|
||||
|
||||
if ($params->exists(["name", "start_date"]) == false) {
|
||||
respondStatus(400, "Missing parameter");
|
||||
}
|
||||
|
||||
addProject($user_id, $params);
|
||||
|
||||
respondStatus(200);
|
||||
}
|
||||
}
|
||||
|
||||
$branch = new AddProjectBranch();
|
||||
$branch->execute();
|
|
@ -1,26 +0,0 @@
|
|||
<?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 AddRecordTagBranch extends ApiBranch
|
||||
{
|
||||
function get(ParamCleaner $params)
|
||||
{
|
||||
respondStatus(405);
|
||||
}
|
||||
|
||||
function post(ParamCleaner $params)
|
||||
{
|
||||
$user_id = $params->get("user_id");
|
||||
$tag_name = $params->get("tag_name");
|
||||
|
||||
addRecordTag($user_id, $tag_name);
|
||||
|
||||
respondStatus(200);
|
||||
}
|
||||
}
|
||||
|
||||
$branch = new AddRecordTagBranch();
|
||||
$branch->execute();
|
|
@ -1,26 +0,0 @@
|
|||
<?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 AddTagToRecordBranch extends ApiBranch
|
||||
{
|
||||
function get(ParamCleaner $params)
|
||||
{
|
||||
respondStatus(405);
|
||||
}
|
||||
|
||||
function post(ParamCleaner $params)
|
||||
{
|
||||
$record_id = $params->get("record_id");
|
||||
$tag_id = $params->get("tag_id");
|
||||
|
||||
addTagToRecord($tag_id, $record_id);
|
||||
|
||||
respondStatus(200);
|
||||
}
|
||||
}
|
||||
|
||||
$branch = new AddTagToRecordBranch();
|
||||
$branch->execute();
|
|
@ -1,12 +0,0 @@
|
|||
<?php
|
||||
ini_set('display_errors', 1);
|
||||
ini_set('display_startup_errors', 1);
|
||||
error_reporting(E_ALL | E_STRICT);
|
||||
|
||||
$config = [
|
||||
"host" => "localhost",
|
||||
"dbname" => "juggl",
|
||||
"username" => "juggl",
|
||||
"password" => "?=5,}f_F&){;@xthx-[i",
|
||||
"table_prefix" => "ju_"
|
||||
];
|
|
@ -1,8 +0,0 @@
|
|||
<?php
|
||||
$config = [
|
||||
"host" => "",
|
||||
"dbname" => "",
|
||||
"username" => "",
|
||||
"password" => "",
|
||||
"table_prefix" => "ju_"
|
||||
];
|
|
@ -1,29 +0,0 @@
|
|||
<?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();
|
|
@ -1,29 +0,0 @@
|
|||
<?php
|
||||
session_start();
|
||||
require_once(__DIR__ . "/services/apiBranch.inc.php");
|
||||
require_once(__DIR__ . "/services/jsonBuilder.inc.php");
|
||||
require_once(__DIR__ . "/services/responses.inc.php");
|
||||
require_once(__DIR__ . "/services/jugglDbApi.inc.php");
|
||||
|
||||
class GetProjectsBranch extends ApiBranch
|
||||
{
|
||||
function get(ParamCleaner $params)
|
||||
{
|
||||
respondStatus(405);
|
||||
}
|
||||
|
||||
function post(ParamCleaner $params)
|
||||
{
|
||||
$user_id = $params->get("user_id");
|
||||
|
||||
$projects = getProjects($user_id);
|
||||
|
||||
$json = new JsonBuilder();
|
||||
$json->addProjects($projects);
|
||||
|
||||
respondJson($json);
|
||||
}
|
||||
}
|
||||
|
||||
$branch = new GetProjectsBranch();
|
||||
$branch->execute();
|
|
@ -1,33 +0,0 @@
|
|||
<?php
|
||||
session_start();
|
||||
require_once(__DIR__ . "/services/apiBranch.inc.php");
|
||||
require_once(__DIR__ . "/services/jsonBuilder.inc.php");
|
||||
require_once(__DIR__ . "/services/responses.inc.php");
|
||||
require_once(__DIR__ . "/services/jugglDbApi.inc.php");
|
||||
|
||||
class GetRecordBranch extends ApiBranch
|
||||
{
|
||||
function get(ParamCleaner $params)
|
||||
{
|
||||
respondStatus(405);
|
||||
}
|
||||
|
||||
function post(ParamCleaner $params)
|
||||
{
|
||||
$user_id = $params->get("user_id");
|
||||
|
||||
if ($params->exists(["record_id"]) == false) {
|
||||
respondStatus(400, "Missing parameter");
|
||||
}
|
||||
|
||||
$record = getTimeRecord($user_id, $params->get("record_id"));
|
||||
|
||||
$json = new JsonBuilder();
|
||||
$json->addRecords([$record]);
|
||||
|
||||
respondJson($json);
|
||||
}
|
||||
}
|
||||
|
||||
$branch = new GetRecordBranch();
|
||||
$branch->execute();
|
|
@ -1,29 +0,0 @@
|
|||
<?php
|
||||
session_start();
|
||||
require_once(__DIR__ . "/services/apiBranch.inc.php");
|
||||
require_once(__DIR__ . "/services/jsonBuilder.inc.php");
|
||||
require_once(__DIR__ . "/services/responses.inc.php");
|
||||
require_once(__DIR__ . "/services/jugglDbApi.inc.php");
|
||||
|
||||
class GetRecordTagsBranch extends ApiBranch
|
||||
{
|
||||
function get(ParamCleaner $params)
|
||||
{
|
||||
respondStatus(405);
|
||||
}
|
||||
|
||||
function post(ParamCleaner $params)
|
||||
{
|
||||
$user_id = $params->get("user_id");
|
||||
|
||||
$tags = getRecordTags($user_id);
|
||||
|
||||
$json = new JsonBuilder();
|
||||
$json->addRecordTags($tags);
|
||||
|
||||
respondJson($json);
|
||||
}
|
||||
}
|
||||
|
||||
$branch = new GetRecordTagsBranch();
|
||||
$branch->execute();
|
|
@ -1,29 +0,0 @@
|
|||
<?php
|
||||
session_start();
|
||||
require_once(__DIR__ . "/services/apiBranch.inc.php");
|
||||
require_once(__DIR__ . "/services/jsonBuilder.inc.php");
|
||||
require_once(__DIR__ . "/services/responses.inc.php");
|
||||
require_once(__DIR__ . "/services/jugglDbApi.inc.php");
|
||||
|
||||
class GetRecordsBranch extends ApiBranch
|
||||
{
|
||||
function get(ParamCleaner $params)
|
||||
{
|
||||
respondStatus(405);
|
||||
}
|
||||
|
||||
function post(ParamCleaner $params)
|
||||
{
|
||||
$user_id = $params->get("user_id");
|
||||
|
||||
$records = getRecords($user_id);
|
||||
|
||||
$json = new JsonBuilder();
|
||||
$json->addRecords($records);
|
||||
|
||||
respondJson($json);
|
||||
}
|
||||
}
|
||||
|
||||
$branch = new GetRecordsBranch();
|
||||
$branch->execute();
|
|
@ -1,29 +0,0 @@
|
|||
<?php
|
||||
session_start();
|
||||
require_once(__DIR__ . "/services/apiBranch.inc.php");
|
||||
require_once(__DIR__ . "/services/jsonBuilder.inc.php");
|
||||
require_once(__DIR__ . "/services/responses.inc.php");
|
||||
require_once(__DIR__ . "/services/jugglDbApi.inc.php");
|
||||
|
||||
class GetRunningRecordsBranch extends ApiBranch
|
||||
{
|
||||
function get(ParamCleaner $params)
|
||||
{
|
||||
respondStatus(405);
|
||||
}
|
||||
|
||||
function post(ParamCleaner $params)
|
||||
{
|
||||
$user_id = $params->get("user_id");
|
||||
|
||||
$records = getRunningRecords($user_id);
|
||||
|
||||
$json = new JsonBuilder();
|
||||
$json->addRecords($records);
|
||||
|
||||
respondJson($json);
|
||||
}
|
||||
}
|
||||
|
||||
$branch = new GetRunningRecordsBranch();
|
||||
$branch->execute();
|
|
@ -1,29 +0,0 @@
|
|||
<?php
|
||||
session_start();
|
||||
require_once(__DIR__ . "/services/apiBranch.inc.php");
|
||||
require_once(__DIR__ . "/services/jsonBuilder.inc.php");
|
||||
require_once(__DIR__ . "/services/responses.inc.php");
|
||||
require_once(__DIR__ . "/services/jugglDbApi.inc.php");
|
||||
|
||||
class GetUserBranch extends ApiBranch
|
||||
{
|
||||
function get(ParamCleaner $params)
|
||||
{
|
||||
respondStatus(405);
|
||||
}
|
||||
|
||||
function post(ParamCleaner $params)
|
||||
{
|
||||
$user_id = $params->get("user_id");
|
||||
|
||||
$user = getUser($user_id);
|
||||
|
||||
$json = new JsonBuilder();
|
||||
$json->addUsers([$user]);
|
||||
|
||||
respondJson($json);
|
||||
}
|
||||
}
|
||||
|
||||
$branch = new GetUserBranch();
|
||||
$branch->execute();
|
|
@ -1,29 +0,0 @@
|
|||
<?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 RemoveRecordBranch extends ApiBranch
|
||||
{
|
||||
function get(ParamCleaner $params)
|
||||
{
|
||||
respondStatus(405);
|
||||
}
|
||||
|
||||
function post(ParamCleaner $params)
|
||||
{
|
||||
$user_id = $params->get("user_id");
|
||||
|
||||
if ($params->exists(["record_id"]) == false) {
|
||||
respondStatus(400, "Missing parameter");
|
||||
}
|
||||
|
||||
removeRecord($user_id, $params);
|
||||
|
||||
respondStatus(200);
|
||||
}
|
||||
}
|
||||
|
||||
$branch = new RemoveRecordBranch();
|
||||
$branch->execute();
|
|
@ -1,26 +0,0 @@
|
|||
<?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 RemoveTagFromRecordBranch extends ApiBranch
|
||||
{
|
||||
function get(ParamCleaner $params)
|
||||
{
|
||||
respondStatus(405);
|
||||
}
|
||||
|
||||
function post(ParamCleaner $params)
|
||||
{
|
||||
$record_id = $params->get("record_id");
|
||||
$tag_id = $params->get("tag_id");
|
||||
|
||||
removeTagFromRecord($tag_id, $record_id);
|
||||
|
||||
respondStatus(200);
|
||||
}
|
||||
}
|
||||
|
||||
$branch = new RemoveTagFromRecordBranch();
|
||||
$branch->execute();
|
|
@ -1,45 +0,0 @@
|
|||
<?php
|
||||
require_once(__DIR__."/authenticator.inc.php");
|
||||
require_once(__DIR__."/responses.inc.php");
|
||||
require_once(__DIR__."/requestTypes.inc.php");
|
||||
require_once(__DIR__."/paramCleaner.inc.php");
|
||||
|
||||
abstract class ApiBranch {
|
||||
function get (ParamCleaner $params) {}
|
||||
function post (ParamCleaner $params) {}
|
||||
function authenticationMissing (ParamCleaner $params) {
|
||||
respondStatus(403);
|
||||
}
|
||||
|
||||
function execute ($authenticationRequired = true) {
|
||||
$params = $this->getParams();
|
||||
|
||||
$currentType = currentRequestType();
|
||||
if ($currentType === RequestType::OPTIONS) {
|
||||
respondStatus(200);
|
||||
}
|
||||
|
||||
if ($authenticationRequired) {
|
||||
$auth = new Authenticator();
|
||||
if (!$auth->isAuthenticated($params)) {
|
||||
$this->authenticationMissing($params);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if ($currentType === RequestType::GET) {
|
||||
$this->get($params);
|
||||
} else if ($currentType === RequestType::POST) {
|
||||
$this->post($params);
|
||||
} else {
|
||||
respondStatus(405);
|
||||
}
|
||||
}
|
||||
|
||||
private function getParams() {
|
||||
$content = json_decode(file_get_contents('php://input'), true);
|
||||
if ($content == NULL) $content = array();
|
||||
return new ParamCleaner(array_merge($content, $_REQUEST, $_SESSION, $_FILES));
|
||||
}
|
||||
}
|
||||
?>
|
|
@ -1,20 +0,0 @@
|
|||
<?php
|
||||
require_once(__DIR__."/dbOperations.inc.php");
|
||||
|
||||
class Authenticator {
|
||||
function isApiKeyAuthenticated($api_key, $user_id) {
|
||||
$db = new DbOperations();
|
||||
$db->select("api_keys", ["enabled"]);
|
||||
$db->where("api_key", Comparison::EQUAL, $api_key);
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
|
||||
$result = $db->execute();
|
||||
|
||||
return count($result) == 1 && $result[0]['enabled'];
|
||||
}
|
||||
|
||||
function isAuthenticated($params) {
|
||||
return $this->isApiKeyAuthenticated($params->get('api_key'), $params->get('user_id'));
|
||||
}
|
||||
}
|
||||
?>
|
|
@ -1,33 +0,0 @@
|
|||
<?php
|
||||
abstract class BasicEnum {
|
||||
private static $constCacheArray = NULL;
|
||||
|
||||
private static function getConstants() {
|
||||
if (self::$constCacheArray == NULL) {
|
||||
self::$constCacheArray = [];
|
||||
}
|
||||
$calledClass = get_called_class();
|
||||
if (!array_key_exists($calledClass, self::$constCacheArray)) {
|
||||
$reflect = new ReflectionClass($calledClass);
|
||||
self::$constCacheArray[$calledClass] = $reflect->getConstants();
|
||||
}
|
||||
return self::$constCacheArray[$calledClass];
|
||||
}
|
||||
|
||||
public static function isValidName($name, $strict = false) {
|
||||
$constants = self::getConstants();
|
||||
|
||||
if ($strict) {
|
||||
return array_key_exists($name, $constants);
|
||||
}
|
||||
|
||||
$keys = array_map('strtolower', array_keys($constants));
|
||||
return in_array(strtolower($name), $keys);
|
||||
}
|
||||
|
||||
public static function isValidValue($value, $strict = true) {
|
||||
$values = array_values(self::getConstants());
|
||||
return in_array($value, $values, $strict);
|
||||
}
|
||||
}
|
||||
?>
|
|
@ -1,292 +0,0 @@
|
|||
<?php
|
||||
require_once(__DIR__ . "/basicEnum.inc.php");
|
||||
|
||||
class DbOperations
|
||||
{
|
||||
function __construct($tablePrefix = null)
|
||||
{
|
||||
$this->resetQuery();
|
||||
$this->tablePrefix = $tablePrefix;
|
||||
|
||||
require(__DIR__ . "/../config/config.php");
|
||||
$this->config = $config;
|
||||
|
||||
if ($this->tablePrefix == null) {
|
||||
$this->tablePrefix = $this->config["table_prefix"];
|
||||
}
|
||||
}
|
||||
|
||||
function resetQuery()
|
||||
{
|
||||
$this->query = "";
|
||||
$this->data = array();
|
||||
$this->table = "";
|
||||
}
|
||||
|
||||
private function openConnection()
|
||||
{
|
||||
$host = $this->config['host'];
|
||||
$dbname = $this->config['dbname'];
|
||||
$dsn = "mysql:host=$host;dbname=$dbname";
|
||||
|
||||
$options = array(PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC);
|
||||
|
||||
$this->pdo = new PDO($dsn, $this->config['username'], $this->config['password'], $options);
|
||||
}
|
||||
|
||||
function select(string $table, array $attributes = array(), bool $addTableName = true)
|
||||
{
|
||||
$this->table = $this->tablePrefix . $table;
|
||||
if (count($attributes) == 0)
|
||||
$formattedAttributes = "*";
|
||||
else {
|
||||
for ($i = 0; $i < count($attributes); $i++) {
|
||||
$a = $attributes[$i];
|
||||
// Add table name prefix if missing
|
||||
if ($addTableName && strpos($a, ".") === false) {
|
||||
$attributes[$i] = "$this->table.$a";
|
||||
}
|
||||
}
|
||||
$formattedAttributes = implode(', ', $attributes);
|
||||
}
|
||||
|
||||
$this->addToQuery("SELECT $formattedAttributes FROM $this->tablePrefix$table");
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
||||
function orderBy(string $attribute, string $order = Order::ASC)
|
||||
{
|
||||
$this->addToQuery("ORDER BY $attribute $order");
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
static function getLatestIdInTable(string $table, string $attribute = "id")
|
||||
{
|
||||
$db = new DbOperations();
|
||||
$db->select($table, array($attribute));
|
||||
$db->orderBy($attribute, Order::DESC);
|
||||
|
||||
return $db->execute()[0][$attribute];
|
||||
}
|
||||
|
||||
function insert(string $table, array $data)
|
||||
{
|
||||
$this->table = $this->tablePrefix . $table;
|
||||
|
||||
$attributes = implode(", ", array_keys($data));
|
||||
$valuesIds = array();
|
||||
foreach ($data as $attribute => $value) {
|
||||
$valuesIds[] = $this->addData($value, $attribute);
|
||||
}
|
||||
$values = implode(" , ", $valuesIds);
|
||||
|
||||
$this->addToQuery("INSERT INTO $this->tablePrefix$table ( $attributes ) VALUES ( $values )");
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
function insertMultiple(string $table, array $attributes, array $data)
|
||||
{
|
||||
$this->table = $this->tablePrefix . $table;
|
||||
|
||||
$attributesString = implode(", ", $attributes);
|
||||
$valueGroups = array();
|
||||
$groupIndex = 0; // To avoid same value ids
|
||||
foreach ($data as $dataGroup) {
|
||||
if (sizeof($attributes) != sizeof($dataGroup)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$valueIds = array();
|
||||
// Indexed for used, so that attributes can easily be assigned to the according values
|
||||
for ($i = 0; $i < sizeof($dataGroup); $i++) {
|
||||
$valueIds[] = $this->addData($dataGroup[$i], $attributes[$i] . "_" . (string) $groupIndex);
|
||||
}
|
||||
|
||||
$valueGroups[] = "(" . implode(", ", $valueIds) . ")";
|
||||
$groupIndex++;
|
||||
}
|
||||
$values = implode(", ", $valueGroups);
|
||||
|
||||
$this->addToQuery("INSERT INTO $this->tablePrefix$table ( $attributesString ) VALUES $values");
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
function update(string $table, array $data)
|
||||
{
|
||||
$this->table = $this->tablePrefix . $table;
|
||||
|
||||
$sets = array();
|
||||
foreach ($data as $attribute => $value) {
|
||||
$valueId = $this->addData($value, $attribute);
|
||||
$sets[] = "$attribute = $valueId";
|
||||
}
|
||||
$setString = implode(", ", $sets);
|
||||
|
||||
$this->addToQuery("UPDATE $this->tablePrefix$table SET $setString");
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
function delete(string $table)
|
||||
{
|
||||
$this->table = $this->tablePrefix . $table;
|
||||
|
||||
$this->addToQuery("DELETE FROM $this->tablePrefix$table");
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
function limit(int $limit, int $offset = null)
|
||||
{
|
||||
$this->addToQuery("LIMIT $limit");
|
||||
|
||||
if ($offset != null) {
|
||||
$this->addToQuery("OFFSET $offset");
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
private function addToQuery(string $phrase)
|
||||
{
|
||||
$delimeter = " ";
|
||||
$this->query = implode($delimeter, array($this->query, $phrase));
|
||||
}
|
||||
|
||||
function where(string $attribute, string $comparison, $value, string $connector = Combination::AND)
|
||||
{
|
||||
if (Comparison::isValidValue($comparison) == false)
|
||||
return;
|
||||
|
||||
$keyWord = "WHERE";
|
||||
if (!(strpos($this->query, $keyWord) === false))
|
||||
$keyWord = $connector;
|
||||
|
||||
$valueId = $this->addData($value, $attribute);
|
||||
$this->addToQuery("$keyWord $attribute $comparison $valueId");
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
function whereOneOf(string $attribute, string $comparison, $values, string $connector = Combination::AND)
|
||||
{
|
||||
if (Comparison::isValidValue($comparison) == false)
|
||||
return;
|
||||
|
||||
$keyWord = "WHERE";
|
||||
if (!(strpos($this->query, $keyWord) === false))
|
||||
$keyWord = $connector;
|
||||
|
||||
$whereClause = "$keyWord ( ";
|
||||
for ($i = 0; $i < sizeof($values); $i++) {
|
||||
if ($i > 0) {
|
||||
$whereClause .= " OR ";
|
||||
}
|
||||
|
||||
$valueId = $this->addData($values[$i], $attribute . '_' . $i);
|
||||
$whereClause .= "$attribute $comparison $valueId";
|
||||
}
|
||||
$whereClause .= " )";
|
||||
|
||||
$this->addToQuery($whereClause);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
function innerJoin(string $table, string $externAttribute, string $internAttribute = "", string $internTable = "")
|
||||
{
|
||||
if ($internTable === "") {
|
||||
$internTable = substr($this->table, strlen($this->tablePrefix));
|
||||
}
|
||||
if ($internAttribute === "") {
|
||||
$internAttribute = $externAttribute;
|
||||
}
|
||||
|
||||
$innerJoin = "INNER JOIN $this->tablePrefix$table ON $this->tablePrefix$table.$externAttribute = $this->tablePrefix$internTable.$internAttribute";
|
||||
|
||||
$this->addToQuery($innerJoin);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
private function addData($data, $attribute)
|
||||
{
|
||||
$name = str_replace(".", "", $attribute);
|
||||
|
||||
$this->data[$name] = $data;
|
||||
return ":" . $name;
|
||||
}
|
||||
|
||||
function addSql($sql)
|
||||
{
|
||||
$this->addToQuery($sql);
|
||||
}
|
||||
|
||||
function addValue($value)
|
||||
{
|
||||
$identifier = "customIdentifier" . $this->customValueId;
|
||||
$this->customValueId += 1;
|
||||
|
||||
$this->addToQuery($this->addData($value, $identifier));
|
||||
}
|
||||
|
||||
function execute()
|
||||
{
|
||||
try {
|
||||
$this->openConnection();
|
||||
|
||||
$pdoQuery = $this->pdo->prepare($this->query);
|
||||
$pdoQuery->execute($this->data);
|
||||
|
||||
$results = array();
|
||||
while ($row = $pdoQuery->fetch()) {
|
||||
$results[] = $row;
|
||||
}
|
||||
|
||||
$this->resetQuery();
|
||||
|
||||
return $results;
|
||||
} catch (PDOException $e) {
|
||||
// TODO: Hide errors from user and log them
|
||||
print($e);
|
||||
return array();
|
||||
}
|
||||
}
|
||||
|
||||
function sql(string $sqlStatement, array $data)
|
||||
{
|
||||
$this->query = $sqlStatement;
|
||||
|
||||
foreach ($data as $attribute => $value) {
|
||||
$this->addData($value, $attribute);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
abstract class Comparison extends BasicEnum
|
||||
{
|
||||
const EQUAL = "=";
|
||||
const GREATER_THAN = ">";
|
||||
const GREATER_THAN_OR_EQUAL = ">=";
|
||||
const LESS_THAN = "<";
|
||||
const LESS_THAN_OR_EQUAL = "<=";
|
||||
const UNEQUAL = "!=";
|
||||
const LIKE = "LIKE";
|
||||
}
|
||||
|
||||
abstract class Combination extends BasicEnum
|
||||
{
|
||||
const AND = "AND";
|
||||
const OR = "OR";
|
||||
}
|
||||
|
||||
abstract class Order extends BasicEnum
|
||||
{
|
||||
const ASC = "ASC";
|
||||
const DESC = "DESC";
|
||||
}
|
|
@ -1,105 +0,0 @@
|
|||
<?php
|
||||
class JsonBuilder
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->jsonData = array();
|
||||
}
|
||||
|
||||
function getJson()
|
||||
{
|
||||
return json_encode($this->jsonData, JSON_FORCE_OBJECT);
|
||||
}
|
||||
|
||||
function getArray()
|
||||
{
|
||||
return $this->jsonData;
|
||||
}
|
||||
|
||||
function addRecords(array $records)
|
||||
{
|
||||
if ($records === null) return;
|
||||
|
||||
$columns = array(
|
||||
"record_id" => "",
|
||||
"start_time" => "",
|
||||
"end_time" => "",
|
||||
"duration" => "",
|
||||
"user_id" => "",
|
||||
"project_id" => "",
|
||||
"start_device_id" => ""
|
||||
);
|
||||
|
||||
$this->jsonData['records'] = array();
|
||||
foreach ($records as $record) {
|
||||
$this->jsonData['records'][] = $this->createJsonArray($record, $columns);
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
function addProjects(array $projects)
|
||||
{
|
||||
if ($projects === null) return;
|
||||
|
||||
$columns = array(
|
||||
"project_id" => "",
|
||||
"name" => "",
|
||||
"user_id" => "",
|
||||
"start_date" => "",
|
||||
"duration" => "",
|
||||
"record_count" => ""
|
||||
);
|
||||
|
||||
$this->jsonData['projects'] = array();
|
||||
foreach ($projects as $project) {
|
||||
$this->jsonData['projects'][] = $this->createJsonArray($project, $columns);
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
function addUsers(array $users)
|
||||
{
|
||||
if ($users === null) return;
|
||||
|
||||
$columns = array(
|
||||
"user_id" => "",
|
||||
"name" => "",
|
||||
"mail_address" => ""
|
||||
);
|
||||
|
||||
$this->jsonData['users'] = array();
|
||||
foreach ($users as $user) {
|
||||
$this->jsonData['users'][] = $this->createJsonArray($user, $columns);
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
function addRecordTags(array $record_tags)
|
||||
{
|
||||
if ($record_tags === null) return;
|
||||
|
||||
$columns = array(
|
||||
"record_tag_id" => "",
|
||||
"name" => "",
|
||||
"user_id" => ""
|
||||
);
|
||||
|
||||
$this->jsonData['record_tags'] = array();
|
||||
foreach ($record_tags as $tag) {
|
||||
$this->jsonData['record_tags'][] = $this->createJsonArray($tag, $columns);
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
private function createJsonArray(array $data, array $columns)
|
||||
{
|
||||
$jsonArray = array();
|
||||
foreach ($columns as $key => $column) {
|
||||
if ($column === "") {
|
||||
$column = $key;
|
||||
}
|
||||
$jsonArray[$key] = $data[$column];
|
||||
}
|
||||
return $jsonArray;
|
||||
}
|
||||
}
|
|
@ -1,347 +0,0 @@
|
|||
<?php
|
||||
require_once(__DIR__ . "/dbOperations.inc.php");
|
||||
|
||||
function addStartRecord($user_id, $params, $project_id = null, $start_device_id = null)
|
||||
{
|
||||
$data = [
|
||||
"user_id" => $user_id,
|
||||
"start_time" => $params->get("start_time"),
|
||||
"project_id" => $project_id,
|
||||
"start_device_id" => $start_device_id
|
||||
];
|
||||
|
||||
$db = new DbOperations();
|
||||
$db->insert("time_records", $data);
|
||||
$db->execute();
|
||||
}
|
||||
|
||||
function addProject($user_id, $params)
|
||||
{
|
||||
$data = [
|
||||
"user_id" => $user_id,
|
||||
"name" => $params->get("name"),
|
||||
"start_date" => $params->get("start_date")
|
||||
];
|
||||
|
||||
$db = new DbOperations();
|
||||
$db->insert("projects", $data);
|
||||
$db->execute();
|
||||
}
|
||||
|
||||
function addTimeRecord($user_id, $params, $project_id = null, $start_device_id = null)
|
||||
{
|
||||
$data = [
|
||||
"user_id" => $user_id,
|
||||
"start_time" => $params->get("start_time"),
|
||||
"end_time" => $params->get("end_time"),
|
||||
"duration" => $params->get("duration"),
|
||||
"project_id" => $project_id,
|
||||
"start_device_id" => $start_device_id
|
||||
];
|
||||
|
||||
$db = new DbOperations();
|
||||
$db->insert("time_records", $data);
|
||||
$db->execute();
|
||||
}
|
||||
|
||||
function getTimeRecord($user_id, $record_id)
|
||||
{
|
||||
$db = new DbOperations();
|
||||
$db->select("time_records");
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
$db->where("record_id", Comparison::EQUAL, $record_id);
|
||||
$result = $db->execute();
|
||||
|
||||
if (count($result) <= 0) {
|
||||
return null;
|
||||
}
|
||||
$result = $result[0];
|
||||
|
||||
$result = getRecordExternalData($result);
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
function getProjects($user_id)
|
||||
{
|
||||
$db = new DbOperations();
|
||||
$db->select("projects");
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
$results = $db->execute();
|
||||
|
||||
foreach ($results as $key => $project) {
|
||||
$meta = getProjectRecordDerivedData($user_id, $project["project_id"]);
|
||||
|
||||
foreach ($meta as $metaKey => $value) {
|
||||
$results[$key][$metaKey] = $value;
|
||||
}
|
||||
}
|
||||
|
||||
return $results;
|
||||
}
|
||||
|
||||
function getUser($user_id)
|
||||
{
|
||||
$db = new DbOperations();
|
||||
$db->select("users", ["user_id", "name", "mail_address"]);
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
$result = $db->execute();
|
||||
|
||||
if (count($result) <= 0) {
|
||||
return null;
|
||||
}
|
||||
$result = $result[0];
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
function getProjectRecordDerivedData($user_id, $project_id)
|
||||
{
|
||||
$durationAttribute = "SUM(duration) AS total_duration";
|
||||
$recordCountAttribute = "COUNT(*) AS record_count";
|
||||
|
||||
$db = new DbOperations();
|
||||
$db->select("time_records", ["*", $durationAttribute, $recordCountAttribute], false);
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
$db->where("project_id", Comparison::EQUAL, $project_id);
|
||||
$results = $db->execute();
|
||||
|
||||
if (count($results) <= 0) {
|
||||
return ["duration" => 0, "record_count" => 0];
|
||||
} else {
|
||||
return [
|
||||
"duration" => (int)$results[0]["total_duration"],
|
||||
"record_count" => (int)$results[0]["record_count"]
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
function getProjectRecord($user_id, $project_id, $finished = null)
|
||||
{
|
||||
$db = new DbOperations();
|
||||
$db->select("time_records");
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
$db->where("project_id", Comparison::EQUAL, $project_id);
|
||||
|
||||
if ($finished !== null) {
|
||||
if ($finished) {
|
||||
$db->addSql(" AND end_time IS NOT NULL");
|
||||
} else {
|
||||
$db->addSql(" AND end_time IS NULL");
|
||||
}
|
||||
}
|
||||
|
||||
$db->orderBy("start_time", Order::DESC);
|
||||
$result = $db->execute();
|
||||
|
||||
if (count($result) <= 0) {
|
||||
return null;
|
||||
}
|
||||
$result = $result[0];
|
||||
|
||||
$result = getRecordExternalData($result);
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
function getRunningRecords($user_id)
|
||||
{
|
||||
$db = new DbOperations();
|
||||
$db->select("time_records");
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
$db->addSql(" AND end_time IS NULL");
|
||||
$results = $db->execute();
|
||||
|
||||
// Is still running?
|
||||
foreach ($results as $key => $record) {
|
||||
$results[$key] = getRecordExternalData($record);
|
||||
}
|
||||
|
||||
return $results;
|
||||
}
|
||||
|
||||
function getRecords($user_id)
|
||||
{
|
||||
$db = new DbOperations();
|
||||
$db->select("time_records");
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
$results = $db->execute();
|
||||
|
||||
// Is still running?
|
||||
foreach ($results as $key => $record) {
|
||||
$results[$key] = getRecordExternalData($record);
|
||||
}
|
||||
|
||||
return $results;
|
||||
}
|
||||
|
||||
function updateEndRecord($user_id, $params)
|
||||
{
|
||||
$record_id = $params->get("record_id");
|
||||
|
||||
// Get start instance to calculate duration
|
||||
$start_time = getTimeRecord($user_id, $record_id)["start_time"];
|
||||
|
||||
$data = [
|
||||
"end_time" => $params->get("end_time"),
|
||||
"duration" => calcDuration($start_time, $params->get("end_time"))
|
||||
];
|
||||
|
||||
$db = new DbOperations();
|
||||
$db->update("time_records", $data);
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
$db->where("record_id", Comparison::EQUAL, $record_id);
|
||||
$db->execute();
|
||||
}
|
||||
|
||||
function removeRecord($user_id, $params)
|
||||
{
|
||||
$record_id = $params->get("record_id");
|
||||
|
||||
$db = new DbOperations();
|
||||
$db->delete("time_records");
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
$db->where("record_id", Comparison::EQUAL, $record_id);
|
||||
$db->execute();
|
||||
}
|
||||
|
||||
function updateTimeRecord($user_id, $params)
|
||||
{
|
||||
$data = [];
|
||||
|
||||
$anythingUpdated = false;
|
||||
if ($params->exists(["start_time"])) {
|
||||
$data["start_time"] = $params->get("start_time");
|
||||
$anythingUpdated = true;
|
||||
}
|
||||
if ($params->exists(["end_time"])) {
|
||||
$data["end_time"] = $params->get("end_time");
|
||||
$anythingUpdated = true;
|
||||
}
|
||||
if ($params->exists(["duration"])) {
|
||||
$data["duration"] = $params->get("duration");
|
||||
$anythingUpdated = true;
|
||||
}
|
||||
if ($params->exists(["project_id"])) {
|
||||
$data["project_id"] = $params->get("project_id");
|
||||
$anythingUpdated = true;
|
||||
}
|
||||
if ($params->exists(["start_device_id"])) {
|
||||
$data["start_device_id"] = $params->get("start_device_id");
|
||||
$anythingUpdated = true;
|
||||
}
|
||||
|
||||
if ($anythingUpdated == false) {
|
||||
return;
|
||||
}
|
||||
|
||||
$db = new DbOperations();
|
||||
$db->update("time_records", $data);
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
$db->where("record_id", Comparison::EQUAL, $params->get("record_id"));
|
||||
$db->execute();
|
||||
}
|
||||
|
||||
function getRecordExternalData($record)
|
||||
{
|
||||
if ($record == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
// Duration and running
|
||||
if ($record["end_time"] == NULL) {
|
||||
$record["duration"] = calcDuration($record["start_time"]);
|
||||
$record["running"] = true;
|
||||
} else {
|
||||
$record["running"] = false;
|
||||
}
|
||||
|
||||
// Tags
|
||||
$tags = array();
|
||||
foreach (getTagsOnRecord($record["record_id"]) as $key => $tag) {
|
||||
$data = [
|
||||
"record_tag_id" => $tag["record_tag_id"],
|
||||
"name" => $tag["name"],
|
||||
"user_id" => $tag["user_id"]
|
||||
];
|
||||
$tags[] = $data;
|
||||
}
|
||||
$record["tags"] = $tags;
|
||||
|
||||
return $record;
|
||||
}
|
||||
|
||||
function isProjectValid($project_id, $user_id)
|
||||
{
|
||||
$db = new DbOperations();
|
||||
$db->select("projects");
|
||||
$db->where("project_id", Comparison::EQUAL, $project_id);
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
|
||||
return count($db->execute()) == 1;
|
||||
}
|
||||
|
||||
function isDeviceValid($start_device_id, $user_id)
|
||||
{
|
||||
$db = new DbOperations();
|
||||
$db->select("devices");
|
||||
$db->where("start_device_id", Comparison::EQUAL, $start_device_id);
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
|
||||
return count($db->execute()) == 1;
|
||||
}
|
||||
|
||||
function calcDuration($start_time, $end_time = "NOW")
|
||||
{
|
||||
return (int)(strtotime($end_time) - strtotime($start_time));
|
||||
}
|
||||
|
||||
function getRecordTags($user_id)
|
||||
{
|
||||
$db = new DbOperations();
|
||||
$db->select("record_tags");
|
||||
$db->where("user_id", Comparison::EQUAL, $user_id);
|
||||
return $db->execute();
|
||||
}
|
||||
|
||||
function getTagsOnRecord($record_id)
|
||||
{
|
||||
$db = new DbOperations();
|
||||
$db->select("tags_on_records");
|
||||
$db->innerJoin("record_tags", "record_tag_id");
|
||||
$db->where("record_id", Comparison::EQUAL, $record_id);
|
||||
return $db->execute();
|
||||
}
|
||||
|
||||
function addRecordTag($user_id, $tag_name)
|
||||
{
|
||||
$data = [
|
||||
"user_id" => $user_id,
|
||||
"name" => $tag_name
|
||||
];
|
||||
|
||||
$db = new DbOperations();
|
||||
$db->insert("record_tags", $data);
|
||||
$db->execute();
|
||||
}
|
||||
|
||||
function addTagToRecord($tag_id, $record_id)
|
||||
{
|
||||
$data = [
|
||||
"record_tag_id" => $tag_id,
|
||||
"record_id" => $record_id
|
||||
];
|
||||
|
||||
$db = new DbOperations();
|
||||
$db->insert("tags_on_records", $data);
|
||||
$db->execute();
|
||||
}
|
||||
|
||||
function removeTagFromRecord($tag_id, $record_id)
|
||||
{
|
||||
$db = new DbOperations();
|
||||
$db->delete("tags_on_records");
|
||||
$db->where("record_tag_id", Comparison::EQUAL, $tag_id);
|
||||
$db->where("record_id", Comparison::EQUAL, $record_id);
|
||||
$db->execute();
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
<?php
|
||||
class ParamCleaner {
|
||||
function __construct (array $params) {
|
||||
$this->sourceParams = $params;
|
||||
$this->selectedParams = $params;
|
||||
$this->errorCount = 0;
|
||||
$this->errorMessage = "";
|
||||
}
|
||||
|
||||
function select (string $prop = "") {
|
||||
if ($prop == "") {
|
||||
$this->selectedParams = $this->sourceParams;
|
||||
} else {
|
||||
$this->selectedParams = $this->selectedParams[$prop];
|
||||
}
|
||||
}
|
||||
|
||||
function get (string $prop) {
|
||||
if(isset($this->selectedParams[$prop])) {
|
||||
return $this->selectedParams[$prop];
|
||||
} else {
|
||||
$this->errorCount += 1;
|
||||
$this->errorMessage .= "Property \"{$prop}\" missing. ";
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
function exists (array $props) {
|
||||
foreach ($props as $prop) {
|
||||
if(isset($this->selectedParams[$prop]) == false) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
function hasErrorOccurred () {
|
||||
return $this->errorCount > 0;
|
||||
}
|
||||
|
||||
function getErrorMessage () {
|
||||
return $this->errorMessage;
|
||||
}
|
||||
|
||||
function resetErrors () {
|
||||
$this->errorMessage = "";
|
||||
$this->errorCount = 0;
|
||||
}
|
||||
}
|
||||
?>
|
|
@ -1,20 +0,0 @@
|
|||
<?php
|
||||
require_once(__DIR__.'/basicEnum.inc.php');
|
||||
|
||||
abstract class RequestType extends BasicEnum {
|
||||
const GET = "GET";
|
||||
const POST = "POST";
|
||||
const PUT = "PUT";
|
||||
const DELETE = "DELETE";
|
||||
const OPTIONS = "OPTIONS";
|
||||
}
|
||||
|
||||
function currentRequestType () {
|
||||
$requestType = $_SERVER['REQUEST_METHOD'];
|
||||
if (RequestType::isValidValue($requestType)) {
|
||||
return $requestType;
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
?>
|
|
@ -1,38 +0,0 @@
|
|||
<?php
|
||||
require_once(__DIR__."/jsonBuilder.inc.php");
|
||||
|
||||
function setDefaultHeader()
|
||||
{
|
||||
header("Access-Control-Allow-Origin: *");
|
||||
header("Access-Control-Allow-Methods: POST, GET, OPTIONS");
|
||||
header("Access-Control-Allow-Headers: X-PINGOTHER, Content-Type");
|
||||
header("Access-Control-Max-Age: 86400");
|
||||
}
|
||||
|
||||
function respondJson(JsonBuilder $builder) {
|
||||
setDefaultHeader();
|
||||
header('Content-type: application/json');
|
||||
echo($builder->getJson());
|
||||
}
|
||||
|
||||
function respondHtml(string $html)
|
||||
{
|
||||
setDefaultHeader();
|
||||
print($html);
|
||||
}
|
||||
|
||||
function respondStatus(int $statusCode, string $message = "")
|
||||
{
|
||||
setDefaultHeader();
|
||||
http_response_code($statusCode);
|
||||
die($message);
|
||||
}
|
||||
|
||||
function redirectBack() {
|
||||
header("Location: {$_SERVER['HTTP_REFERER']}");
|
||||
}
|
||||
|
||||
function redirectTo($url) {
|
||||
header("Location: {$url}");
|
||||
}
|
||||
?>
|
|
@ -1,49 +0,0 @@
|
|||
<?php
|
||||
session_start();
|
||||
require_once(__DIR__ . "/services/apiBranch.inc.php");
|
||||
require_once(__DIR__ . "/services/jsonBuilder.inc.php");
|
||||
require_once(__DIR__ . "/services/responses.inc.php");
|
||||
require_once(__DIR__ . "/services/jugglDbApi.inc.php");
|
||||
|
||||
class StartRecordBranch extends ApiBranch
|
||||
{
|
||||
function get(ParamCleaner $params)
|
||||
{
|
||||
respondStatus(405);
|
||||
}
|
||||
|
||||
function post(ParamCleaner $params)
|
||||
{
|
||||
$user_id = $params->get("user_id");
|
||||
|
||||
if ($params->exists(["start_time"]) == false) {
|
||||
respondStatus(400, "Missing parameter");
|
||||
}
|
||||
|
||||
$project_id = $params->get("project_id");
|
||||
if (isProjectValid($project_id, $user_id) == false) {
|
||||
$project_id = null;
|
||||
}
|
||||
|
||||
$device_id = $params->get("start_device_id");
|
||||
if (isDeviceValid($device_id, $user_id) == false) {
|
||||
$device_id = null;
|
||||
}
|
||||
|
||||
// Does a running record for that project already exist?
|
||||
if (getProjectRecord($user_id, $project_id, false) != null) {
|
||||
respondStatus(409, "Project record already started");
|
||||
}
|
||||
|
||||
addStartRecord($user_id, $params, $project_id, $device_id);
|
||||
$record = getProjectRecord($user_id, $project_id, false);
|
||||
|
||||
$json = new JsonBuilder();
|
||||
$json->addRecords([$record]);
|
||||
|
||||
respondJson($json);
|
||||
}
|
||||
}
|
||||
|
||||
$branch = new StartRecordBranch();
|
||||
$branch->execute();
|
Binary file not shown.
Before Width: | Height: | Size: 103 KiB |
Binary file not shown.
Before Width: | Height: | Size: 67 KiB |
|
@ -1,133 +0,0 @@
|
|||
body {
|
||||
margin: 0;
|
||||
background-color: #222;
|
||||
}
|
||||
|
||||
* {
|
||||
color: white;
|
||||
font-family: 'Karla', sans-serif;
|
||||
transition-duration: 0.1s;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
header {
|
||||
width: 100%;
|
||||
height: 4rem;
|
||||
position: fixed;
|
||||
top: 0px;
|
||||
background-color: #222;
|
||||
/* background: rgb(10, 133, 168);
|
||||
background: linear-gradient(137deg, rgba(10, 133, 168, 1) 0%, rgba(136, 0, 0, 1) 100%); */
|
||||
/* background: rgb(10, 133, 168);
|
||||
background: linear-gradient(137deg, rgba(10, 133, 168, 1) 0%, rgba(255, 255, 255, 1) 48%, rgba(136, 0, 0, 1) 100%); */
|
||||
/* offset-x | offset-y | blur-radius | spread-radius | color */
|
||||
box-shadow: 0px 0px 2rem 1rem #000D;
|
||||
}
|
||||
|
||||
main {
|
||||
max-width: 800px;
|
||||
padding: 0px 20px;
|
||||
margin: auto;
|
||||
margin-top: 6rem;
|
||||
background-color: #0000;
|
||||
}
|
||||
|
||||
#header-container {
|
||||
max-width: 1000px;
|
||||
padding: 0px 20px;
|
||||
margin: auto;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
#header-container img {
|
||||
margin-top: 0.5rem;
|
||||
height: 3rem;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
#header-container>* {
|
||||
line-height: 4rem;
|
||||
vertical-align: baseline;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
textarea:focus, input:focus, button:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
input, button {
|
||||
border-radius: 2px;
|
||||
border: solid red 1px;
|
||||
background-color: #0000;
|
||||
color: #BBB;
|
||||
padding: 5px;
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
color: white;
|
||||
background-color: #F007;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
button:active {
|
||||
transform: translate(0px, 2px);
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
thead * {
|
||||
color: #AAA;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#project-list {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
align-content: flex-start;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
#project-list>* {
|
||||
margin: 5px;
|
||||
border: 1px dashed #AAA;
|
||||
border-radius: 5px;
|
||||
color: white;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#project-list>*:hover {
|
||||
color: red;
|
||||
border-color: red;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#project-list h1 {
|
||||
font-weight: bold;
|
||||
font-size: 24pt;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
#project-list p {
|
||||
font-size: 10pt;
|
||||
color: #AAA;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
#current-record-duration {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
#update-notice {
|
||||
margin-bottom: 20px;
|
||||
}
|
|
@ -1,125 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Juggl</title>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="shortcut icon" type="image/ico" href="/assets/logo.ico" />
|
||||
<link href="https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,700;1,400;1,700&display=swap"
|
||||
rel="stylesheet">
|
||||
<link href="css/style.css" rel="stylesheet">
|
||||
|
||||
<script src="js/umbrella.min.js"></script>
|
||||
<script src="js/statehandler.js"></script>
|
||||
<script src="js/auth.js"></script>
|
||||
<script src="js/api.js"></script>
|
||||
<script src="js/helper.js"></script>
|
||||
|
||||
<script>
|
||||
var intervallId = undefined;
|
||||
|
||||
window.onblur = () => {
|
||||
stopBackgroundUpdates();
|
||||
}
|
||||
window.onfocus = () => {
|
||||
startBackgroundUpdates();
|
||||
}
|
||||
window.onload = () => {
|
||||
// Create Callbacks
|
||||
callbacks.entering[States.RECORDING] = () => {
|
||||
updateProgess();
|
||||
loadRecordTags();
|
||||
};
|
||||
callbacks.entering[States.IDLE] = () => {
|
||||
loadProjectList().then(() => {
|
||||
checkForUpdate();
|
||||
});
|
||||
};
|
||||
|
||||
initState();
|
||||
updateVisibility();
|
||||
updateAuthBtnText();
|
||||
startBackgroundUpdates();
|
||||
}
|
||||
|
||||
function checkForUpdate() {
|
||||
if (currentRecord !== undefined) {
|
||||
updateProgess();
|
||||
} else {
|
||||
initRunningRecords().then(() => {
|
||||
if (currentRecord !== undefined) {
|
||||
setState(States.RECORDING);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function updateProgess () {
|
||||
if (currentRecord === undefined) {
|
||||
return;
|
||||
}
|
||||
|
||||
updateCurrentRecord().then((record) => {
|
||||
if (record.end_time != null) {
|
||||
currentRecord = undefined;
|
||||
setState(States.IDLE);
|
||||
return;
|
||||
}
|
||||
|
||||
u("#current-project-name").text(currentProject.name);
|
||||
u("#current-record-duration").text((parseInt(record.duration) / 60).toFixed(1) + " min.");
|
||||
});
|
||||
}
|
||||
|
||||
function startBackgroundUpdates () {
|
||||
if (intervallId !== undefined) return;
|
||||
intervallId = setInterval(checkForUpdate, 30000);
|
||||
checkForUpdate();
|
||||
}
|
||||
|
||||
function stopBackgroundUpdates () {
|
||||
clearInterval(intervallId);
|
||||
intervallId = undefined;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<ul id="header-container">
|
||||
<li>
|
||||
<img src="assets/logo_title.png">
|
||||
</li>
|
||||
<li style="float: right">
|
||||
<input id="user-id" class="public hidden" type="text" placeholder="User ID" />
|
||||
<input id="api-key" class="public hidden" type="password" placeholder="API Key" />
|
||||
<button id="auth-btn" onclick="handleAuthBtn()">Log In</button>
|
||||
</li>
|
||||
</ul>
|
||||
</header>
|
||||
<main>
|
||||
<div class="recording hidden" style="text-align: center;">
|
||||
<h1>
|
||||
Currently Tracking
|
||||
</h1>
|
||||
<div id="tracking-list">
|
||||
</div>
|
||||
</div>
|
||||
<div class="idle recording hidden" style="text-align: center;">
|
||||
<h1>
|
||||
Select project to track
|
||||
</h1>
|
||||
<div id="project-list">
|
||||
</div>
|
||||
</div>
|
||||
<div class="idle recording hidden" style="text-align: center;">
|
||||
<h1>
|
||||
Records
|
||||
</h1>
|
||||
<div id="record-list">
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -1,154 +0,0 @@
|
|||
API_URL = "/api";
|
||||
|
||||
const api = {
|
||||
getProjects() {
|
||||
return request("/getProjects.php")
|
||||
.then((r) => {
|
||||
return r.json();
|
||||
})
|
||||
.then((j) => {
|
||||
return j.projects;
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log(e);
|
||||
return {};
|
||||
});
|
||||
},
|
||||
getRecordTags() {
|
||||
return request("/getRecordTags.php")
|
||||
.then((r) => {
|
||||
return r.json();
|
||||
})
|
||||
.then((j) => {
|
||||
return j.record_tags;
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log(e);
|
||||
return {};
|
||||
});
|
||||
},
|
||||
startRecord(projectId, startTime = new Date()) {
|
||||
return request("/startRecord.php", {
|
||||
project_id: projectId,
|
||||
start_time: dateToString(startTime),
|
||||
})
|
||||
.then((r) => {
|
||||
return r.json();
|
||||
})
|
||||
.then((j) => {
|
||||
return addDuration(j.records[0]);
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log(e);
|
||||
return undefined;
|
||||
});
|
||||
},
|
||||
getRecord(recordId) {
|
||||
return request("/getRecord.php", {
|
||||
record_id: recordId,
|
||||
})
|
||||
.then((r) => {
|
||||
return r.json();
|
||||
})
|
||||
.then((j) => {
|
||||
return addDuration(j.records[0]);
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log(e);
|
||||
return undefined;
|
||||
});
|
||||
},
|
||||
getRunningRecords() {
|
||||
return request("/getRunningRecords.php")
|
||||
.then((r) => {
|
||||
return r.json();
|
||||
})
|
||||
.then((j) => {
|
||||
var records = Object.values(j.records);
|
||||
records.forEach((r) => {
|
||||
r = addDuration(r);
|
||||
});
|
||||
|
||||
return records;
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log(e);
|
||||
return undefined;
|
||||
});
|
||||
},
|
||||
endRecord(recordId, endTime = new Date()) {
|
||||
return request("/endRecord.php", {
|
||||
record_id: recordId,
|
||||
end_time: dateToString(endTime),
|
||||
}).catch((e) => {
|
||||
console.log(e);
|
||||
return undefined;
|
||||
});
|
||||
},
|
||||
addTagToRecord(tagId, recordId) {
|
||||
return request("/addTagToRecord.php", {
|
||||
tag_id: tagId,
|
||||
record_id: recordId,
|
||||
}).catch((e) => {
|
||||
console.log(e);
|
||||
return undefined;
|
||||
});
|
||||
},
|
||||
removeTagFromRecord(tagId, recordId) {
|
||||
return request("/removeTagFromRecord.php", {
|
||||
tag_id: tagId,
|
||||
record_id: recordId,
|
||||
}).catch((e) => {
|
||||
console.log(e);
|
||||
return undefined;
|
||||
});
|
||||
},
|
||||
addRecordTag(tagName) {
|
||||
return request("/addRecordTag.php", {
|
||||
tag_name: tagName,
|
||||
}).catch((e) => {
|
||||
console.log(e);
|
||||
return undefined;
|
||||
});
|
||||
},
|
||||
};
|
||||
|
||||
function request(path, json = {}, options = {}) {
|
||||
json.api_key = getApiKey();
|
||||
json.user_id = getUserId();
|
||||
|
||||
options.method = "POST";
|
||||
options.body = JSON.stringify(json);
|
||||
options.headers = {
|
||||
"Content-Type": "application/json",
|
||||
};
|
||||
|
||||
var url = API_URL + path;
|
||||
|
||||
return fetch(url, options);
|
||||
}
|
||||
|
||||
function addDuration(record) {
|
||||
if (record.end_time != null) return record;
|
||||
|
||||
record.duration =
|
||||
(new Date().getTime() - new Date(record.start_time).getTime()) / 1000;
|
||||
|
||||
return record;
|
||||
}
|
||||
|
||||
function dateToString(date) {
|
||||
return (
|
||||
date.getFullYear() +
|
||||
"-" +
|
||||
(date.getMonth() + 1) +
|
||||
"-" +
|
||||
date.getDate() +
|
||||
" " +
|
||||
date.getHours() +
|
||||
":" +
|
||||
date.getMinutes() +
|
||||
":" +
|
||||
date.getSeconds()
|
||||
);
|
||||
}
|
|
@ -1,53 +0,0 @@
|
|||
function logIn(apiKey, userId) {
|
||||
localStorage.apiKey = apiKey;
|
||||
localStorage.userId = userId;
|
||||
setState(States.IDLE);
|
||||
}
|
||||
|
||||
function logOut() {
|
||||
delete localStorage.apiKey;
|
||||
delete localStorage.userId;
|
||||
setState(States.PUBLIC);
|
||||
}
|
||||
|
||||
function isLoggedIn() {
|
||||
return !!localStorage.apiKey && !!localStorage.userId;
|
||||
}
|
||||
|
||||
function getApiKey() {
|
||||
return localStorage.apiKey;
|
||||
}
|
||||
|
||||
function getUserId() {
|
||||
return localStorage.userId;
|
||||
}
|
||||
|
||||
function handleAuthBtn() {
|
||||
if (isLoggedIn()) {
|
||||
logOut();
|
||||
} else {
|
||||
var apiKey = u("#api-key").first().value;
|
||||
if (apiKey === undefined || apiKey === "") {
|
||||
return;
|
||||
}
|
||||
|
||||
var userId = u("#user-id").first().value;
|
||||
if (userId === undefined || userId === "") {
|
||||
return;
|
||||
}
|
||||
|
||||
logIn(apiKey, userId);
|
||||
}
|
||||
u("#api-key").first().value = "";
|
||||
updateAuthBtnText();
|
||||
}
|
||||
|
||||
function updateAuthBtnText() {
|
||||
var btn = u("#auth-btn");
|
||||
|
||||
if (isLoggedIn()) {
|
||||
btn.text("Log Out");
|
||||
} else {
|
||||
btn.text("Log In");
|
||||
}
|
||||
}
|
|
@ -1,150 +0,0 @@
|
|||
const PROJECT_OBJECT = "div";
|
||||
const PROJECT_TITLE = "h1";
|
||||
const PROJECT_META = "p";
|
||||
let currentRecord = undefined;
|
||||
let currentProject = undefined;
|
||||
let projectList = undefined;
|
||||
let recordTags = undefined;
|
||||
|
||||
function loadProjectList() {
|
||||
return api.getProjects().then((projects) => {
|
||||
projectList = Object.values(projects);
|
||||
|
||||
var container = u(u("#project-list").first());
|
||||
container.children().remove();
|
||||
Object.values(projects).forEach((project) => {
|
||||
var obj = createNode(PROJECT_OBJECT);
|
||||
var data = undefined;
|
||||
|
||||
data = createNode(PROJECT_TITLE);
|
||||
append(obj, data);
|
||||
u(data).text(project["name"]);
|
||||
|
||||
var duration = Number((parseFloat(project["duration"]) / 60 / 60).toFixed(2));
|
||||
var unit = "hours";
|
||||
data = createNode(PROJECT_META);
|
||||
append(obj, data);
|
||||
u(data).text(duration + " " + unit);
|
||||
|
||||
data = createNode(PROJECT_META);
|
||||
append(obj, data);
|
||||
u(data).text(project["record_count"] + " records");
|
||||
|
||||
obj = u(obj);
|
||||
obj.data("project-id", project["project_id"]);
|
||||
obj.on("click", projectClicked);
|
||||
|
||||
container.append(obj);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function loadRecordTags() {
|
||||
return api.getRecordTags().then((tags) => {
|
||||
projectList = Object.values(projects);
|
||||
|
||||
var container = u(u("#project-list").first());
|
||||
container.children().remove();
|
||||
Object.values(projects).forEach((project) => {
|
||||
var obj = createNode(PROJECT_OBJECT);
|
||||
var data = undefined;
|
||||
|
||||
data = createNode(PROJECT_TITLE);
|
||||
append(obj, data);
|
||||
u(data).text(project["name"]);
|
||||
|
||||
var duration = Number((parseFloat(project["duration"]) / 60 / 60).toFixed(2));
|
||||
var unit = "hours";
|
||||
data = createNode(PROJECT_META);
|
||||
append(obj, data);
|
||||
u(data).text(duration + " " + unit);
|
||||
|
||||
data = createNode(PROJECT_META);
|
||||
append(obj, data);
|
||||
u(data).text(project["record_count"] + " records");
|
||||
|
||||
obj = u(obj);
|
||||
obj.data("project-id", project["project_id"]);
|
||||
obj.on("click", projectClicked);
|
||||
|
||||
container.append(obj);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Created new DOM object
|
||||
// element: Type of DOM object (div, p, ...)
|
||||
function createNode(element) {
|
||||
return document.createElement(element);
|
||||
}
|
||||
|
||||
// Appends child to parent
|
||||
// parent: DOM to append child to
|
||||
// el: DOM child to append to parent
|
||||
function append(parent, el) {
|
||||
return parent.appendChild(el);
|
||||
}
|
||||
|
||||
function projectClicked(event) {
|
||||
var projectObject = event.target;
|
||||
|
||||
if (projectObject.tagName !== "DIV") {
|
||||
projectObject = projectObject.parentElement;
|
||||
}
|
||||
|
||||
var projectId = u(projectObject).data("project-id");
|
||||
|
||||
return api.startRecord(projectId).then((record) => {
|
||||
currentRecord = record;
|
||||
currentProject = getProjectById(record.project_id);
|
||||
setState(States.RECORDING);
|
||||
});
|
||||
}
|
||||
|
||||
function getProjectById(id) {
|
||||
for (let i = 0; i < projectList.length; i++) {
|
||||
const element = projectList[i];
|
||||
|
||||
if (element.project_id == id) {
|
||||
return element;
|
||||
}
|
||||
}
|
||||
|
||||
return undefined;
|
||||
}
|
||||
|
||||
function updateCurrentRecord() {
|
||||
if (currentRecord === undefined) {
|
||||
return;
|
||||
}
|
||||
|
||||
return api.getRecord(currentRecord.record_id).then((record) => {
|
||||
currentRecord = record;
|
||||
currentProject = getProjectById(record.project_id);
|
||||
return record;
|
||||
});
|
||||
}
|
||||
|
||||
function stopRecord() {
|
||||
if (currentRecord === undefined) {
|
||||
return;
|
||||
}
|
||||
|
||||
return api.endRecord(currentRecord.record_id).then(() => {
|
||||
setState(States.IDLE);
|
||||
currentRecord = undefined;
|
||||
});
|
||||
}
|
||||
|
||||
function initRunningRecords() {
|
||||
return api.getRunningRecords().then((records) => {
|
||||
if (records === undefined || records.length <= 0) {
|
||||
currentRecord = undefined;
|
||||
setState(States.IDLE);
|
||||
return;
|
||||
}
|
||||
|
||||
// Assuming, there is only one
|
||||
currentRecord = records[0];
|
||||
});
|
||||
}
|
|
@ -1,55 +0,0 @@
|
|||
/**
|
||||
* Values represent classes.
|
||||
*
|
||||
* classname: Only visible in class-state.
|
||||
* not-classname: Not visible in class-state.
|
||||
*/
|
||||
const States = {
|
||||
PUBLIC: "public",
|
||||
IDLE: "idle",
|
||||
RECORDING: "recording",
|
||||
SETUP: "setup",
|
||||
};
|
||||
Object.freeze(States);
|
||||
let previousState = States.PUBLIC;
|
||||
let currentState = States.PUBLIC;
|
||||
let callbacks = {
|
||||
leaving: {},
|
||||
entering: {},
|
||||
};
|
||||
|
||||
function updateVisibility() {
|
||||
u("." + previousState).addClass("hidden");
|
||||
u("." + currentState).removeClass("hidden");
|
||||
|
||||
u(".not-" + previousState).removeClass("hidden");
|
||||
u(".not-" + currentState).addClass("hidden");
|
||||
|
||||
processCallbacks();
|
||||
}
|
||||
|
||||
function processCallbacks() {
|
||||
var cb = callbacks.leaving[previousState];
|
||||
if (cb !== undefined) cb();
|
||||
|
||||
cb = callbacks.entering[currentState];
|
||||
if (cb !== undefined) cb();
|
||||
}
|
||||
|
||||
function setState(state) {
|
||||
if (Object.values(States).includes(state) === false) {
|
||||
return;
|
||||
}
|
||||
|
||||
previousState = currentState;
|
||||
currentState = state;
|
||||
|
||||
localStorage.state = state;
|
||||
|
||||
updateVisibility();
|
||||
}
|
||||
|
||||
function initState() {
|
||||
var savedState = localStorage.state;
|
||||
if (savedState !== undefined) currentState = localStorage.state;
|
||||
}
|
3
juggl-server/js/umbrella.min.js
vendored
3
juggl-server/js/umbrella.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue