engelsystem/includes/pages/guest_stats.php

48 lines
1.5 KiB
PHP
Raw Normal View History

2012-12-28 22:53:05 +01:00
<?php
use Engelsystem\Database\DB;
2018-10-14 18:24:42 +02:00
use Engelsystem\Models\User\State;
use Engelsystem\Models\User\User;
2017-01-02 03:57:23 +01:00
function guest_stats()
{
$apiKey = config('api_key');
$request = request();
2017-01-02 15:43:36 +01:00
if ($request->has('api_key')) {
if (!empty($apiKey) && $request->input('api_key') == $apiKey) {
2017-01-02 03:57:23 +01:00
$stats = [];
2017-01-02 15:43:36 +01:00
2018-10-14 18:24:42 +02:00
$stats['user_count'] = User::all()->count();
$stats['arrived_user_count'] = State::whereArrived(true)->count();
2017-01-02 15:43:36 +01:00
$done_shifts_seconds = DB::selectOne('
2017-01-03 14:12:17 +01:00
SELECT SUM(`Shifts`.`end` - `Shifts`.`start`)
FROM `ShiftEntry`
JOIN `Shifts` USING (`SID`)
WHERE `Shifts`.`end` < UNIX_TIMESTAMP()
');
$done_shifts_seconds = (int)array_shift($done_shifts_seconds);
2017-01-02 03:57:23 +01:00
$stats['done_work_hours'] = round($done_shifts_seconds / (60 * 60), 0);
2017-01-02 15:43:36 +01:00
$users_in_action = DB::select('
2017-01-03 14:12:17 +01:00
SELECT `Shifts`.`start`, `Shifts`.`end`
FROM `ShiftEntry`
JOIN `Shifts` ON `Shifts`.`SID`=`ShiftEntry`.`SID`
WHERE UNIX_TIMESTAMP() BETWEEN `Shifts`.`start` AND `Shifts`.`end`
');
2017-01-02 03:57:23 +01:00
$stats['users_in_action'] = count($users_in_action);
2017-01-02 15:43:36 +01:00
2017-01-03 14:12:17 +01:00
header('Content-Type: application/json');
2017-01-02 03:57:23 +01:00
raw_output(json_encode($stats));
return;
}
raw_output(json_encode([
2017-01-03 14:12:17 +01:00
'error' => 'Wrong api_key.'
2017-01-02 15:43:36 +01:00
]));
2016-08-22 19:11:09 +02:00
}
raw_output(json_encode([
2017-01-03 14:12:17 +01:00
'error' => 'Missing parameter api_key.'
2017-01-02 15:43:36 +01:00
]));
2012-12-28 22:53:05 +01:00
}