[KolmisoftMore] implemented getActiveCalls function [menu.php] added menu point for active voice calls [config.sample.php] added KOLMISOFT configuration constants [VoiceCallActive] implemented active voice calls view [VoiceCallHistoryController] fixed importCallsFromToday Time [tt-table] fixed pagination displays
91 lines
2.5 KiB
PHP
91 lines
2.5 KiB
PHP
<?php
|
|
|
|
class VoiceCallHistoryController extends mfBaseController {
|
|
private User $me;
|
|
private string $VOICE_PORTAL_HOST = KOLMISOFT_API_HOST;
|
|
private string $VOICE_PORTAL_API_KEY = KOLMISOFT_API_KEY;
|
|
private string $VOICE_PORTAL_USERNAME = KOLMISOFT_API_USERNAME;
|
|
|
|
private KolmisoftMore $kolmisoftMore;
|
|
|
|
|
|
protected function init(): void {
|
|
$me = new User();
|
|
$me->loadMe();
|
|
$this->layout()->set("me", $me);
|
|
$this->me = $me;
|
|
|
|
if (!$this->me->isAdmin()) {
|
|
$this->redirect("dashboard");
|
|
}
|
|
|
|
$this->kolmisoftMore = new KolmisoftMore($this->VOICE_PORTAL_HOST, $this->VOICE_PORTAL_API_KEY, $this->VOICE_PORTAL_USERNAME);
|
|
|
|
}
|
|
|
|
protected function indexAction(): void {
|
|
$this->layout()->setTemplate("VoiceCallHistory/Index");
|
|
}
|
|
|
|
protected function apiAction() {
|
|
$do = $this->request->do;
|
|
|
|
if (!$this->me->isAdmin()) {
|
|
$this->redirect("dashboard");
|
|
}
|
|
|
|
switch ($do) {
|
|
case "getCalls":
|
|
$return = $this->getCalls();
|
|
break;
|
|
case "importCallsFromToday":
|
|
$return = $this->importCallsFromToday();
|
|
break;
|
|
default:
|
|
$return = false;
|
|
break;
|
|
}
|
|
|
|
if (!$return) {
|
|
$return = [
|
|
"status" => "error",
|
|
"message" => "Invalid request."
|
|
];
|
|
}
|
|
|
|
die(json_encode($return));
|
|
}
|
|
|
|
private function importCallsFromToday(): array {
|
|
$startDate = strtotime(date("Y-m-d 0:00:00"));
|
|
$endDate = strtotime(date("Y-m-d 23:59:59"));
|
|
|
|
$callHistory = $this->kolmisoftMore->getVoiceCallHistory($startDate, $endDate);
|
|
|
|
return VoiceCallHistoryModel::importCallsFromKolmisoft($callHistory);
|
|
}
|
|
|
|
private function getCalls(): array {
|
|
$json = json_decode(file_get_contents('php://input'), true);
|
|
|
|
$filters = $json['filters'] ?? [];
|
|
$page = $json['pagination']['page'] ?? 1;
|
|
$perPage = $json['pagination']['per_page'] ?? 10;
|
|
|
|
$calls = VoiceCallHistoryModel::getVoiceCallHistory($filters, $perPage, $perPage * $page - $perPage);
|
|
$totalRows = VoiceCallHistoryModel::countVoiceCallHistory($filters);
|
|
|
|
return [
|
|
"rows" => $calls,
|
|
"pagination" => [
|
|
"page" => $page,
|
|
"total_pages" => ceil($totalRows / $perPage),
|
|
"per_page" => $perPage,
|
|
"total_rows" => intval($totalRows)
|
|
]
|
|
];
|
|
|
|
}
|
|
|
|
|
|
} |