Initial commit
This commit is contained in:
404
custom/Espo/Modules/Advanced/Controllers/Report.php
Normal file
404
custom/Espo/Modules/Advanced/Controllers/Report.php
Normal file
@@ -0,0 +1,404 @@
|
||||
<?php
|
||||
/***********************************************************************************
|
||||
* The contents of this file are subject to the Extension License Agreement
|
||||
* ("Agreement") which can be viewed at
|
||||
* https://www.espocrm.com/extension-license-agreement/.
|
||||
* By copying, installing downloading, or using this file, You have unconditionally
|
||||
* agreed to the terms and conditions of the Agreement, and You may not use this
|
||||
* file except in compliance with the Agreement. Under the terms of the Agreement,
|
||||
* You shall not license, sublicense, sell, resell, rent, lease, lend, distribute,
|
||||
* redistribute, market, publish, commercialize, or otherwise transfer rights or
|
||||
* usage to the software or any modified version or derivative work of the software
|
||||
* created by or for you.
|
||||
*
|
||||
* Copyright (C) 2015-2025 EspoCRM, Inc.
|
||||
*
|
||||
* License ID: 19bc86a68a7bb01f458cb391d43a9212
|
||||
************************************************************************************/
|
||||
|
||||
namespace Espo\Modules\Advanced\Controllers;
|
||||
|
||||
use Espo\Core\Api\Request;
|
||||
use Espo\Core\Controllers\Record;
|
||||
use Espo\Core\Exceptions\BadRequest;
|
||||
use Espo\Core\Exceptions\Error;
|
||||
use Espo\Core\Exceptions\Forbidden;
|
||||
use Espo\Core\Exceptions\NotFound;
|
||||
use Espo\Core\Record\SearchParamsFetcher;
|
||||
use Espo\Core\Select\SearchParams;
|
||||
use Espo\Core\Select\Where\Item as WhereItem;
|
||||
use Espo\Core\Utils\Json;
|
||||
use Espo\Modules\Advanced\Tools\Report\GridExportService;
|
||||
use Espo\Modules\Advanced\Tools\Report\ListExportService;
|
||||
use Espo\Modules\Advanced\Tools\Report\ListType\ExportParams;
|
||||
use Espo\Modules\Advanced\Tools\Report\ListType\SubReportParams;
|
||||
use Espo\Modules\Advanced\Tools\Report\SendingService;
|
||||
use Espo\Modules\Advanced\Tools\Report\Service;
|
||||
use Espo\Modules\Advanced\Tools\Report\TargetListSyncService;
|
||||
|
||||
use Espo\ORM\Query\Part\Order;
|
||||
use JsonException;
|
||||
use stdClass;
|
||||
|
||||
class Report extends Record
|
||||
{
|
||||
/**
|
||||
* List report or grid sub-report.
|
||||
*
|
||||
* @throws BadRequest
|
||||
* @throws Forbidden
|
||||
* @throws Error
|
||||
* @throws NotFound
|
||||
*/
|
||||
public function actionRunList(Request $request): stdClass
|
||||
{
|
||||
$id = $request->getQueryParam('id');
|
||||
|
||||
if (!$id) {
|
||||
throw new BadRequest();
|
||||
}
|
||||
|
||||
$searchParams = $this->injectableFactory
|
||||
->create(SearchParamsFetcher::class)
|
||||
->fetch($request);
|
||||
|
||||
$subReportParams = $this->fetchSubReportParamsFromRequest($request);
|
||||
|
||||
// Passing the user is important.
|
||||
$result = $subReportParams ?
|
||||
$this->getReportService()->runSubReportList($id, $searchParams, $subReportParams, $this->user) :
|
||||
$this->getReportService()->runList($id, $searchParams, $this->user);
|
||||
|
||||
return (object) [
|
||||
'list' => $result->getCollection()->getValueMapList(),
|
||||
'total' => $result->getTotal(),
|
||||
'columns' => $result->getColumns(),
|
||||
'columnsData' => $result->getColumnsData(),
|
||||
];
|
||||
}
|
||||
|
||||
private function fetchSubReportParamsFromRequest(Request $request): ?SubReportParams
|
||||
{
|
||||
if (!$request->hasQueryParam('groupValue')) {
|
||||
return null;
|
||||
}
|
||||
|
||||
$groupValue = $request->getQueryParam('groupValue');
|
||||
|
||||
if ($groupValue === '') {
|
||||
$groupValue = null;
|
||||
}
|
||||
|
||||
$groupValue2 = null;
|
||||
|
||||
if ($request->hasQueryParam('groupValue2')) {
|
||||
$groupValue2 = $request->getQueryParam('groupValue2');
|
||||
|
||||
if ($groupValue2 === '') {
|
||||
$groupValue2 = null;
|
||||
}
|
||||
}
|
||||
|
||||
return new SubReportParams(
|
||||
(int) ($request->getQueryParam('groupIndex') ?? 0),
|
||||
$groupValue,
|
||||
$request->hasQueryParam('groupValue2'),
|
||||
$groupValue2
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Grid report.
|
||||
*
|
||||
* @throws BadRequest
|
||||
* @throws Forbidden
|
||||
* @throws Error
|
||||
* @throws NotFound
|
||||
*/
|
||||
public function actionRun(Request $request): stdClass
|
||||
{
|
||||
$id = $request->getQueryParam('id');
|
||||
$where = $request->getQueryParams()['where'] ?? null;
|
||||
|
||||
if ($where === '') {
|
||||
$where = null;
|
||||
}
|
||||
|
||||
$whereItem = null;
|
||||
|
||||
if ($where) {
|
||||
$whereItem = WhereItem::fromRawAndGroup(self::normalizeWhere($where));
|
||||
}
|
||||
|
||||
if (!$id) {
|
||||
throw new BadRequest();
|
||||
}
|
||||
|
||||
// Passing the user is important.
|
||||
return $this->getReportService()
|
||||
->runGrid($id, $whereItem, $this->user)
|
||||
->toRaw();
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws BadRequest
|
||||
* @throws Forbidden
|
||||
* @throws Error
|
||||
* @throws NotFound
|
||||
*/
|
||||
public function postActionPopulateTargetList(Request $request): bool
|
||||
{
|
||||
$data = $request->getParsedBody();
|
||||
|
||||
$id = $data->id ?? null;
|
||||
$targetListId = $data->targetListId ?? null;
|
||||
|
||||
if (!$id || !$targetListId) {
|
||||
throw new BadRequest();
|
||||
}
|
||||
|
||||
$this->getTargetListSyncService()->populateTargetList($id, $targetListId);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws BadRequest
|
||||
* @throws Forbidden
|
||||
* @throws Error
|
||||
* @throws NotFound
|
||||
*/
|
||||
public function postActionSyncTargetListWithReports(Request $request): bool
|
||||
{
|
||||
$data = $request->getParsedBody();
|
||||
|
||||
$targetListId = $data->targetListId;
|
||||
|
||||
if (!$targetListId) {
|
||||
throw new BadRequest();
|
||||
}
|
||||
|
||||
$this->getTargetListSyncService()->syncTargetListWithReportsById($targetListId);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws BadRequest
|
||||
* @throws Forbidden
|
||||
* @throws Error
|
||||
* @throws NotFound
|
||||
*/
|
||||
public function postActionExportList(Request $request): stdClass
|
||||
{
|
||||
$data = $request->getParsedBody();
|
||||
|
||||
$id = $data->id ?? null;
|
||||
$orderBy = $data->orderBy ?? null;
|
||||
$order = $data->order ?? 'asc';
|
||||
$where = $data->where ?? null;
|
||||
|
||||
if (!$id) {
|
||||
throw new BadRequest("No `id`.");
|
||||
}
|
||||
|
||||
$whereItem = $where ?
|
||||
WhereItem::fromRawAndGroup(self::normalizeWhere($where)) :
|
||||
null;
|
||||
|
||||
$order = strtoupper($order);
|
||||
|
||||
if (!in_array($order, [Order::ASC, Order::DESC])) {
|
||||
$order = null;
|
||||
}
|
||||
|
||||
$searchParams = SearchParams::create()
|
||||
->withOrderBy($orderBy)
|
||||
->withOrder($order);
|
||||
|
||||
if ($whereItem) {
|
||||
$searchParams = $searchParams->withWhere($whereItem);
|
||||
}
|
||||
|
||||
$exportParams = new ExportParams(
|
||||
$data->attributeList ?? null,
|
||||
$data->fieldList ?? null,
|
||||
$data->format ?? null,
|
||||
$data->ids ?? null,
|
||||
($data->params ?? null) ? get_object_vars($data->params) : null,
|
||||
);
|
||||
|
||||
$subReportParams = null;
|
||||
|
||||
if (property_exists($data, 'groupValue')) {
|
||||
$groupValue = $data->groupValue;
|
||||
|
||||
if ($groupValue === '') {
|
||||
$groupValue = null;
|
||||
}
|
||||
|
||||
$groupValue2 = $data->groupValue2 ?? null;
|
||||
|
||||
if ($groupValue2 === '') {
|
||||
$groupValue2 = null;
|
||||
}
|
||||
|
||||
$hasGroupValue2 = property_exists($data, 'groupValue2');
|
||||
|
||||
$subReportParams = new SubReportParams(
|
||||
$data->groupIndex ?? 0,
|
||||
$groupValue,
|
||||
$hasGroupValue2,
|
||||
$groupValue2
|
||||
);
|
||||
}
|
||||
|
||||
$attachmentId = $this->getListExportService()->export(
|
||||
$id,
|
||||
$searchParams,
|
||||
$exportParams,
|
||||
$subReportParams,
|
||||
$this->user
|
||||
);
|
||||
|
||||
return (object) ['id' => $attachmentId];
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws BadRequest
|
||||
* @throws NotFound
|
||||
* @throws Error
|
||||
* @throws Forbidden
|
||||
*/
|
||||
public function postActionGetEmailAttributes(Request $request): stdClass
|
||||
{
|
||||
$data = $request->getParsedBody();
|
||||
|
||||
$id = $data->id;
|
||||
$where = $data->where ?? null;
|
||||
|
||||
if (!$id) {
|
||||
throw new BadRequest();
|
||||
}
|
||||
|
||||
$whereItem = $where ?
|
||||
WhereItem::fromRawAndGroup(self::normalizeWhere($where)) :
|
||||
null;
|
||||
|
||||
return (object) $this->injectableFactory
|
||||
->create(SendingService::class)
|
||||
->getEmailAttributes($id, $whereItem, $this->user);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws BadRequest
|
||||
* @throws Forbidden
|
||||
* @throws Error
|
||||
* @throws NotFound
|
||||
*/
|
||||
public function postActionExportGridXlsx(Request $request): stdClass
|
||||
{
|
||||
$data = $request->getParsedBody();
|
||||
|
||||
$id = $data->id;
|
||||
$where = $data->where ?? null;
|
||||
|
||||
if (!$id) {
|
||||
throw new BadRequest();
|
||||
}
|
||||
|
||||
$whereItem = $where ?
|
||||
WhereItem::fromRawAndGroup(self::normalizeWhere($where)) :
|
||||
null;
|
||||
|
||||
$attachmentId = $this->getGridExportService()->exportXlsx($id, $whereItem, $this->user);
|
||||
|
||||
return (object) ['id' => $attachmentId];
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws BadRequest
|
||||
* @throws Forbidden
|
||||
* @throws NotFound
|
||||
* @throws Error
|
||||
*/
|
||||
public function postActionExportGridCsv(Request $request): stdClass
|
||||
{
|
||||
$data = $request->getParsedBody();
|
||||
|
||||
$id = $data->id;
|
||||
$where = $data->where ?? null;
|
||||
$column = $data->column ?? null;
|
||||
|
||||
if (!$id) {
|
||||
throw new BadRequest();
|
||||
}
|
||||
|
||||
$whereItem = $where ?
|
||||
WhereItem::fromRawAndGroup(self::normalizeWhere($where)) :
|
||||
null;
|
||||
|
||||
$attachmentId = $this->getGridExportService()->exportCsv($id, $whereItem, $column, $this->user);
|
||||
|
||||
return (object) ['id' => $attachmentId];
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws BadRequest
|
||||
* @throws Forbidden
|
||||
* @throws Error
|
||||
* @throws NotFound
|
||||
*/
|
||||
public function postActionPrintPdf(Request $request): stdClass
|
||||
{
|
||||
$data = $request->getParsedBody();
|
||||
|
||||
$id = $data->id ?? null;
|
||||
$templateId = $data->templateId ?? null;
|
||||
$where = $data->where ?? null;
|
||||
|
||||
$whereItem = $where ?
|
||||
WhereItem::fromRawAndGroup(self::normalizeWhere($where)) :
|
||||
null;
|
||||
|
||||
if (!$id || !$templateId) {
|
||||
throw new BadRequest();
|
||||
}
|
||||
|
||||
$attachmentId = $this->getGridExportService()->exportPdf($id, $whereItem, $templateId, $this->user);
|
||||
|
||||
return (object) ['id' => $attachmentId];
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws BadRequest
|
||||
*/
|
||||
private static function normalizeWhere(mixed $where): mixed
|
||||
{
|
||||
try {
|
||||
return Json::decode(Json::encode($where), true);
|
||||
} catch (JsonException) {
|
||||
throw new BadRequest("Bad where.");
|
||||
}
|
||||
}
|
||||
|
||||
private function getReportService(): Service
|
||||
{
|
||||
return $this->injectableFactory->create(Service::class);
|
||||
}
|
||||
|
||||
private function getListExportService(): ListExportService
|
||||
{
|
||||
return $this->injectableFactory->create(ListExportService::class);
|
||||
}
|
||||
|
||||
private function getGridExportService(): GridExportService
|
||||
{
|
||||
return $this->injectableFactory->create(GridExportService::class);
|
||||
}
|
||||
|
||||
private function getTargetListSyncService(): TargetListSyncService
|
||||
{
|
||||
return $this->injectableFactory->create(TargetListSyncService::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user