mirror of
https://github.com/Karaka-Management/oms-Labeling.git
synced 2026-01-11 17:18:41 +00:00
211 lines
6.4 KiB
PHP
211 lines
6.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package Modules\Labeling
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Labeling\Controller;
|
|
|
|
use Modules\Labeling\Models\LabelLayout;
|
|
use Modules\Labeling\Models\LabelLayoutL11nMapper;
|
|
use Modules\Labeling\Models\LabelLayoutMapper;
|
|
use Modules\Media\Models\CollectionMapper;
|
|
use phpOMS\Localization\BaseStringL11n;
|
|
use phpOMS\Localization\ISO639x1Enum;
|
|
use phpOMS\Message\Http\RequestStatusCode;
|
|
use phpOMS\Message\RequestAbstract;
|
|
use phpOMS\Message\ResponseAbstract;
|
|
|
|
/**
|
|
* Labeling class.
|
|
*
|
|
* @package Modules\Labeling
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
final class ApiController extends Controller
|
|
{
|
|
/**
|
|
* Api method to create layout article
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return void
|
|
*
|
|
* @api
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function apiLabelLayoutCreate(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : void
|
|
{
|
|
if (!empty($val = $this->validateLabelLayoutCreate($request))) {
|
|
$response->header->status = RequestStatusCode::R_400;
|
|
$this->createInvalidCreateResponse($request, $response, $val);
|
|
|
|
return;
|
|
}
|
|
|
|
$layout = $this->createLabelLayoutFromRequest($request);
|
|
$this->createModel($request->header->account, $layout, LabelLayoutMapper::class, 'layout', $request->getOrigin());
|
|
$this->createStandardCreateResponse($request, $response, $layout);
|
|
}
|
|
|
|
/**
|
|
* Validate layout create request
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
*
|
|
* @return array<string, bool>
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
private function validateLabelLayoutCreate(RequestAbstract $request) : array
|
|
{
|
|
$val = [];
|
|
if (($val['title'] = !$request->hasData('title'))
|
|
) {
|
|
return $val;
|
|
}
|
|
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* Method to create item attribute from request.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
*
|
|
* @return LabelLayout
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
private function createLabelLayoutFromRequest(RequestAbstract $request) : LabelLayout
|
|
{
|
|
$labelLayout = new LabelLayout();
|
|
$labelLayout->setL11n($request->getDataString('title') ?? '', $request->getDataString('language') ?? ISO639x1Enum::_EN);
|
|
|
|
$path = '/Modules/Labeling/Templates/' . $request->getDataString('title');
|
|
$uploadedFiles = $request->files;
|
|
|
|
$uploaded = $this->app->moduleManager->get('Media')->uploadFiles(
|
|
names: [],
|
|
fileNames: [],
|
|
files: $uploadedFiles,
|
|
account: $request->header->account,
|
|
basePath: __DIR__ . '/../../../Modules/Media/Files' . $path,
|
|
virtualPath: $path,
|
|
);
|
|
|
|
$collection = $this->app->moduleManager->get('Media')->createRecursiveMediaCollection(
|
|
$path,
|
|
$request->header->account,
|
|
__DIR__ . '/../../../Modules/Media/Files' . $path
|
|
);
|
|
|
|
// @todo: I think we need to add the uploaded files to the collection.
|
|
// The frontend should work without it because of some "smart" corrections (virtualPath), but it is not correct.
|
|
// In the db there should be a relationship defined, no?
|
|
// If that is the case, maybe we also need to adjust the api. Either the uploadFiles should create the collection (if specified)
|
|
// or the createRecursiveMediaCollection should have another parameter with all the files it should include.
|
|
// If that is the case we also need to fix many modules who are not creating a specifc collection/upload relation (News, Kanban, ....).
|
|
|
|
foreach ($uploaded as $file) {
|
|
$this->createModelRelation(
|
|
$request->header->account,
|
|
$collection->id,
|
|
$file->id,
|
|
CollectionMapper::class,
|
|
'sources',
|
|
'',
|
|
$request->getOrigin()
|
|
);
|
|
}
|
|
|
|
$labelLayout->template = $collection;
|
|
|
|
return $labelLayout;
|
|
}
|
|
|
|
/**
|
|
* Api method to create item attribute l11n
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
* @param ResponseAbstract $response Response
|
|
* @param mixed $data Generic data
|
|
*
|
|
* @return void
|
|
*
|
|
* @api
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function apiLabelLayoutL11nCreate(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : void
|
|
{
|
|
if (!empty($val = $this->validateLabelLayoutL11nCreate($request))) {
|
|
$response->header->status = RequestStatusCode::R_400;
|
|
$this->createInvalidCreateResponse($request, $response, $val);
|
|
|
|
return;
|
|
}
|
|
|
|
$labelLayoutL11n = $this->createLabelLayoutL11nFromRequest($request);
|
|
$this->createModel($request->header->account, $labelLayoutL11n, LabelLayoutL11nMapper::class, 'label_layout_l11n', $request->getOrigin());
|
|
$this->createStandardCreateResponse($request, $response, $labelLayoutL11n);
|
|
}
|
|
|
|
/**
|
|
* Method to create item attribute l11n from request.
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
*
|
|
* @return BaseStringL11n
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
private function createLabelLayoutL11nFromRequest(RequestAbstract $request) : BaseStringL11n
|
|
{
|
|
$labelLayoutL11n = new BaseStringL11n();
|
|
$labelLayoutL11n->ref = $request->getDataInt('layout') ?? 0;
|
|
$labelLayoutL11n->setLanguage(
|
|
$request->getDataString('language') ?? $request->header->l11n->language
|
|
);
|
|
$labelLayoutL11n->content = $request->getDataString('title') ?? '';
|
|
|
|
return $labelLayoutL11n;
|
|
}
|
|
|
|
/**
|
|
* Validate item attribute l11n create request
|
|
*
|
|
* @param RequestAbstract $request Request
|
|
*
|
|
* @return array<string, bool>
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
private function validateLabelLayoutL11nCreate(RequestAbstract $request) : array
|
|
{
|
|
$val = [];
|
|
if (($val['title'] = !$request->hasData('title'))
|
|
|| ($val['layout'] = !$request->hasData('layout'))
|
|
) {
|
|
return $val;
|
|
}
|
|
|
|
return [];
|
|
}
|
|
}
|