芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/sommatv/lib/Upgrade/LayoutStructureStep.php
store = $store; $this->log = $log; $this->config = $config; } /** * @param \Slim\Helper\Set $container * @throws \Xibo\Exception\NotFoundException */ public function doStep($container) { /** @var PermissionFactory $permissionFactory */ $permissionFactory = $container->get('permissionFactory'); /** @var LayoutFactory $layoutFactory */ $layoutFactory = $container->get('layoutFactory'); // Create the new structure $dbh = $this->store->getConnection(); // Run the SQL to create the necessary tables $statements = Install::remove_remarks(self::$dbStructure); $statements = Install::split_sql_file($statements, ';'); foreach ($statements as $sql) { $dbh->exec($sql); } // Build a keyed array of existing widget permissions $mediaPermissions = []; foreach ($this->store->select('SELECT groupId, layoutId, regionId, mediaId, `view`, `edit`, `del` FROM `lklayoutmediagroup`', []) as $row) { $permission = $permissionFactory->createEmpty(); $permission->entityId = 6; // Widget $permission->groupId = $row['groupId']; $permission->objectId = $row['layoutId']; $permission->objectIdString = $row['regionId']; $permission->view = $row['view']; $permission->edit = $row['edit']; $permission->delete = $row['del']; $mediaPermissions[$row['mediaId']] = $permission; } // Build a keyed array of existing region permissions $regionPermissions = []; foreach ($this->store->select('SELECT groupId, layoutId, regionId, `view`, `edit`, `del` FROM `lklayoutregiongroup`', []) as $row) { $permission = $permissionFactory->createEmpty(); $permission->entityId = 7; // Widget $permission->groupId = $row['groupId']; $permission->objectId = $row['layoutId']; $permission->view = $row['view']; $permission->edit = $row['edit']; $permission->delete = $row['del']; $regionPermissions[$row['regionId']] = $permission; } // Get the library location to store backups of existing XLF $libraryLocation = $this->config->GetSetting('LIBRARY_LOCATION'); // We need to go through each layout, save the XLF as a backup in the library and then upgrade it. foreach ($this->store->select('SELECT layoutId, xml FROM `layout`', []) as $oldLayout) { $oldLayoutId = intval($oldLayout['layoutId']); try { // Does this layout have any XML associated with it? If not, then it is an empty layout. if (empty($oldLayout['xml'])) { // This is frankly, odd, so we better log it $this->log->critical('Layout upgrade without any existing XLF, i.e. empty. ID = ' . $oldLayoutId); // Pull out the layout record, and set some best guess defaults $layout = $layoutFactory->getById($oldLayoutId); $layout->schemaVersion = 2; $layout->width = 1920; $layout->height = 1080; } else { // Save off a copy of the XML in the library file_put_contents($libraryLocation . 'archive_' . $oldLayoutId . '.xlf', $oldLayout['xml']); // Create a new layout from the XML $layout = $layoutFactory->loadByXlf($oldLayout['xml'], $layoutFactory->getById($oldLayoutId)); } // Save the layout $layout->save(['notify' => false]); // Now that we have new ID's we need to cross reference them with the old IDs and recreate the permissions foreach ($layout->regions as $region) { /* @var \Xibo\Entity\Region $region */ if (array_key_exists($region->tempId, $regionPermissions)) { $permission = $regionPermissions[$region->tempId]; /* @var \Xibo\Entity\Permission $permission */ // Double check we are for the same layout if ($permission->objectId == $layout->layoutId) { $permission = clone $permission; $permission->objectId = $region->regionId; $permission->save(); } } foreach ($region->playlists as $playlist) { /* @var \Xibo\Entity\Playlist $playlist */ foreach ($playlist->widgets as $widget) { /* @var \Xibo\Entity\Widget $widget */ if (array_key_exists($widget->tempId, $mediaPermissions)) { $permission = $mediaPermissions[$widget->tempId]; /* @var \Xibo\Entity\Permission $permission */ if ($permission->objectId == $layout->layoutId && $region->tempId == $permission->objectIdString) { $permission = clone $permission; $permission->objectId = $widget->widgetId; $permission->save(); } } } } } } catch (\Exception $e) { $this->log->critical('Error upgrading Layout, this should be checked post-upgrade. ID: ' . $oldLayoutId); $this->log->error($e->getMessage() . ' - ' . $e->getTraceAsString()); } } // Drop the permissions $dbh->exec('DROP TABLE `lklayoutmediagroup`;'); $dbh->exec('DROP TABLE `lklayoutregiongroup`;'); } private static $dbStructure = <<