芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/fmd/lib/Controller/DisplayProfile.php
. */ namespace Xibo\Controller; use Stash\Interfaces\PoolInterface; use Xibo\Exception\AccessDeniedException; use Xibo\Factory\CommandFactory; use Xibo\Factory\DisplayProfileFactory; use Xibo\Service\ConfigServiceInterface; use Xibo\Service\DateServiceInterface; use Xibo\Service\LogServiceInterface; use Xibo\Service\SanitizerServiceInterface; /** * Class DisplayProfile * @package Xibo\Controller */ class DisplayProfile extends Base { /** @var PoolInterface */ private $pool; /** * @var DisplayProfileFactory */ private $displayProfileFactory; /** * @var CommandFactory */ private $commandFactory; /** * Set common dependencies. * @param LogServiceInterface $log * @param SanitizerServiceInterface $sanitizerService * @param \Xibo\Helper\ApplicationState $state * @param \Xibo\Entity\User $user * @param \Xibo\Service\HelpServiceInterface $help * @param DateServiceInterface $date * @param ConfigServiceInterface $config * @param PoolInterface $pool * @param DisplayProfileFactory $displayProfileFactory * @param CommandFactory $commandFactory */ public function __construct($log, $sanitizerService, $state, $user, $help, $date, $config, $pool, $displayProfileFactory, $commandFactory) { $this->setCommonDependencies($log, $sanitizerService, $state, $user, $help, $date, $config); $this->pool = $pool; $this->displayProfileFactory = $displayProfileFactory; $this->commandFactory = $commandFactory; } /** * Include display page template page based on sub page selected */ function displayPage() { $this->getState()->template = 'displayprofile-page'; } /** * @SWG\Get( * path="/displayprofile", * operationId="displayProfileSearch", * tags={"displayprofile"}, * summary="Display Profile Search", * description="Search this users Display Profiles", * @SWG\Parameter( * name="displayProfileId", * in="formData", * description="Filter by DisplayProfile Id", * type="integer", * required=false * ), * @SWG\Parameter( * name="displayProfile", * in="formData", * description="Filter by DisplayProfile Name", * type="string", * required=false * ), * @SWG\Parameter( * name="type", * in="formData", * description="Filter by DisplayProfile Type (windows|android)", * type="string", * required=false * ), * @SWG\Response( * response=200, * description="successful operation", * @SWG\Schema( * type="array", * @SWG\Items(ref="#/definitions/DisplayProfile") * ) * ) * ) */ function grid() { $filter = [ 'displayProfileId' => $this->getSanitizer()->getInt('displayProfileId'), 'displayProfile' => $this->getSanitizer()->getString('displayProfile'), 'type' => $this->getSanitizer()->getString('type') ]; $profiles = $this->displayProfileFactory->query($this->gridRenderSort(), $this->gridRenderFilter($filter)); foreach ($profiles as $profile) { /* @var \Xibo\Entity\DisplayProfile $profile */ // Load the config $profile->load(); if ($this->isApi()) { $profile->excludeProperty('configTabs'); $profile->excludeProperty('configDefault'); continue; } $profile->includeProperty('buttons'); // Default Layout $profile->buttons[] = array( 'id' => 'displayprofile_button_edit', 'url' => $this->urlFor('displayProfile.edit.form', ['id' => $profile->displayProfileId]), 'text' => __('Edit') ); if ($this->getUser()->checkDeleteable($profile)) { $profile->buttons[] = array( 'id' => 'displayprofile_button_delete', 'url' => $this->urlFor('displayProfile.delete.form', ['id' => $profile->displayProfileId]), 'text' => __('Delete') ); } } $this->getState()->template = 'grid'; $this->getState()->recordsTotal = $this->displayProfileFactory->countLast(); $this->getState()->setData($profiles); } /** * Display Profile Add Form */ function addForm() { $this->getState()->template = 'displayprofile-form-add'; } /** * Display Profile Add * * @SWG\Post( * path="/displayprofile", * operationId="displayProfileAdd", * tags={"displayprofile"}, * summary="Add Display Profile", * description="Add a Display Profile", * @SWG\Parameter( * name="name", * in="formData", * description="The Name of the Display Profile", * type="string", * required=true * ), * @SWG\Parameter( * name="type", * in="formData", * description="The Client Type this Profile will apply to", * type="string", * required=true * ), * @SWG\Parameter( * name="isDefault", * in="formData", * description="Flag indicating if this is the default profile for the client type", * type="integer", * required=true * ), * @SWG\Response( * response=201, * description="successful operation", * @SWG\Schema(ref="#/definitions/DisplayProfile"), * @SWG\Header( * header="Location", * description="Location of the new record", * type="string" * ) * ) * ) */ public function add() { $displayProfile = $this->displayProfileFactory->createEmpty(); $displayProfile->name = $this->getSanitizer()->getString('name'); $displayProfile->type = $this->getSanitizer()->getString('type'); $displayProfile->isDefault = $this->getSanitizer()->getCheckbox('isDefault'); $displayProfile->userId = $this->getUser()->userId; $displayProfile->save(); // Return $this->getState()->hydrate([ 'httpStatus' => 201, 'message' => sprintf(__('Added %s'), $displayProfile->name), 'id' => $displayProfile->displayProfileId, 'data' => $displayProfile ]); } /** * Edit Profile Form * @param int $displayProfileId */ public function editForm($displayProfileId) { // Create a form out of the config object. $displayProfile = $this->displayProfileFactory->getById($displayProfileId); if ($this->getUser()->userTypeId != 1 && $this->getUser()->userId != $displayProfile->userId) throw new AccessDeniedException(__('You do not have permission to edit this profile')); // Get a list of unassigned Commands $unassignedCommands = array_udiff($this->commandFactory->query(), $displayProfile->commands, function($a, $b) { /** @var \Xibo\Entity\Command $a */ /** @var \Xibo\Entity\Command $b */ return $a->getId() - $b->getId(); }); $this->getState()->template = 'displayprofile-form-edit'; $this->getState()->setData([ 'displayProfile' => $displayProfile, 'tabs' => $displayProfile->configTabs, 'config' => $displayProfile->configDefault, 'commands' => array_merge($displayProfile->commands, $unassignedCommands) ]); } /** * Edit * @param $displayProfileId * * @SWG\Put( * path="/displayprofile/{displayProfileId}", * operationId="displayProfileEdit", * tags={"displayprofile"}, * summary="Edit Display Profile", * description="Edit a Display Profile", * @SWG\Parameter( * name="displayProfileId", * in="path", * description="The Display Profile ID", * type="integer", * required=true * ), * @SWG\Parameter( * name="name", * in="formData", * description="The Name of the Display Profile", * type="string", * required=true * ), * @SWG\Parameter( * name="type", * in="formData", * description="The Client Type this Profile will apply to", * type="string", * required=true * ), * @SWG\Parameter( * name="isDefault", * in="formData", * description="Flag indicating if this is the default profile for the client type", * type="integer", * required=true * ), * @SWG\Response( * response=201, * description="successful operation", * @SWG\Schema(ref="#/definitions/DisplayProfile"), * @SWG\Header( * header="Location", * description="Location of the new record", * type="string" * ) * ) * ) */ public function edit($displayProfileId) { // Create a form out of the config object. $displayProfile = $this->displayProfileFactory->getById($displayProfileId); if ($this->getUser()->userTypeId != 1 && $this->getUser()->userId != $displayProfile->userId) throw new AccessDeniedException(__('You do not have permission to edit this profile')); $displayProfile->name = $this->getSanitizer()->getString('name'); $displayProfile->isDefault = $this->getSanitizer()->getCheckbox('isDefault'); // Capture and validate the posted form parameters in accordance with the display config object. $combined = array(); foreach ($displayProfile->configDefault as $setting) { // Validate the parameter $value = null; switch ($setting['type']) { case 'string': $value = $this->getSanitizer()->getString($setting['name'], $setting['default']); break; case 'int': $value = $this->getSanitizer()->getInt($setting['name'], $setting['default']); break; case 'double': $value = $this->getSanitizer()->getDouble($setting['name'], $setting['default']); break; case 'checkbox': $value = $this->getSanitizer()->getCheckbox($setting['name']); break; default: $value = $this->getSanitizer()->getParam($setting['name'], $setting['default']); } // Add to the combined array $combined[] = array( 'name' => $setting['name'], 'value' => $value, 'type' => $setting['type'] ); } // Recursively merge the arrays and update $displayProfile->config = $combined; // Capture and update commands foreach ($this->commandFactory->query() as $command) { /* @var \Xibo\Entity\Command $command */ if ($this->getSanitizer()->getString('commandString_' . $command->commandId) != null) { // Set and assign the command $command->commandString = $this->getSanitizer()->getString('commandString_' . $command->commandId); $command->validationString = $this->getSanitizer()->getString('validationString_' . $command->commandId); $displayProfile->assignCommand($command); } else { $displayProfile->unassignCommand($command); } } // Save the changes $displayProfile->save(); // Clear the display cached $this->pool->deleteItem('display/'); // Return $this->getState()->hydrate([ 'message' => sprintf(__('Edited %s'), $displayProfile->name), 'id' => $displayProfile->displayProfileId, 'data' => $displayProfile ]); } /** * Delete Form * @param int $displayProfileId * @throws \Xibo\Exception\NotFoundException */ function deleteForm($displayProfileId) { // Create a form out of the config object. $displayProfile = $this->displayProfileFactory->getById($displayProfileId); if ($this->getUser()->userTypeId != 1 && $this->getUser()->userId != $displayProfile->userId) throw new AccessDeniedException(__('You do not have permission to edit this profile')); $this->getState()->template = 'displayprofile-form-delete'; $this->getState()->setData([ 'displayProfile' => $displayProfile, 'help' => $this->getHelp()->link('DisplayProfile', 'Delete') ]); } /** * Delete Display Profile * @param int $displayProfileId * * @SWG\Delete( * path="/displayprofile/{displayProfileId}", * operationId="displayProfileDelete", * tags={"displayprofile"}, * summary="Delete Display Profile", * description="Delete an existing Display Profile", * @SWG\Parameter( * name="displayProfileId", * in="path", * description="The Display Profile ID", * type="integer", * required=true * ), * @SWG\Response( * response=204, * description="successful operation" * ) * ) */ function delete($displayProfileId) { // Create a form out of the config object. $displayProfile = $this->displayProfileFactory->getById($displayProfileId); if ($this->getUser()->userTypeId != 1 && $this->getUser()->userId != $displayProfile->userId) throw new AccessDeniedException(__('You do not have permission to edit this profile')); $displayProfile->delete(); // Return $this->getState()->hydrate([ 'httpStatus' => 204, 'message' => sprintf(__('Deleted %s'), $displayProfile->name) ]); } }