use Salic\Settings\LangSettings; require_once 'Salic.php'; if (!Utils::validAuthentication()) { exit; // Utils should call exit(), but just to be sure... } $lang = strtolower(@$_GET['lang']); if (empty($lang)) { $lang = LangSettings::get()->default; } if (!LangSettings::get()->exists($lang)) { echo "Invalid Language: '{$lang}'"; exit; } $salic = new SalicMng($lang); $salic->initTwig(); $page = strtolower(@$_GET['page']); if (!empty($page) && !Validator::checkPageKey($page)) { Utils::dieWith404('there\'s an invalid symbol in the pagekey.'); } if (empty($page)) { // default page try { $page = Settings\NavSettings::get()->homepage; } catch (\Exception $e) { Utils::dieWithError($e, 'Homepage determination', $salic); exit; } } $salic->renderPage($page);
public static function listAvailablePages() { return Utils::listDirs(Settings::baseDir . "pages/"); }
protected function doRenderPage($templatefile, $vars) { $vars['debug_mode'] = GeneralSettings::get()->debugMode; $vars['baseurl'] = $this->baseUrl; $vars['baseurl_international'] = $this->baseUrlInternational; $vars['nav_pages'] = Utils::getNavPageList($this->baseUrl, $this->current_lang); $vars['language'] = $this->current_lang; $vars['languages'] = Settings\LangSettings::get()->available; $vars['default_page'] = Settings\NavSettings::get()->homepage; echo $this->twig->render($templatefile, $vars); }
require_once 'Salic.php'; if (!Utils::validAuthentication()) { exit; // Utils should call exit(), but just to be sure... } // TODO: ? backend language support $salic = new SalicMng(LangSettings::get()->default); $salic->initTwig(); try { $section = @$_GET['section']; if (empty($section)) { // no section selected $salic->renderBackendPage('@salic/backend.html.twig'); exit; } if ($section == 'nav') { $salic->renderBackendPage('@salic/backend_nav.html.twig', array('navSettings' => NavSettings::get(), 'available_pages' => PageSettings::listAvailablePages())); exit; } else { if ($section == 'pages') { if (empty($_GET['page'])) { $salic->renderBackendPage('@salic/backend_pages.html.twig', array()); } } else { throw new \Exception("Invalid section: '{$section}'"); } } } catch (\Exception $e) { Utils::dieWithError($e, 'Rendering backend', $salic); exit; }
<?php namespace Salic; use Salic\Settings\LangSettings; require_once 'Salic.php'; //TODO:? disable error_reporting if (!Utils::validAuthentication()) { exit; // Utils should call exit(), but just to be sure... } $lang = strtolower($_GET['lang']); if (!LangSettings::get()->exists($lang)) { die('{"success": false, "error": "APIException - Invalid Language: ' . $lang . '"}'); } $salic = new SalicMng($lang); $page = strtolower($_GET['page']); if (empty($page)) { die('{"success": false, "error": "APIException - No pagekey given"}'); } if (!Validator::checkPageKey($page)) { die('{"success": false, "error": "APIException - Invalid pagekey"}'); } $salic->savePage($page);
public function doSavePage($pagekey, array $regions) { foreach ($regions as $key => $val) { $page_dir = "site/data/{$pagekey}/"; if (!is_dir($page_dir)) { if (!mkdir($page_dir, 0750, true)) { // rwxr-x---, TODO: configurable directory permissions throw new \Exception("Failed to create directory '{$page_dir}'"); } } $pageSettings = PageSettings::get($pagekey); $blockSettings = BlockSettings::get(); $templateSettings = TemplateSettings::data2($pageSettings->template); // possible key formats: // - '_field' // - 'area_block' // - 'area_block.subblock' if ($key[0] === '_') { // we have a field if (preg_match('/^_([a-z0-9-]+)$/', $key, $matches) !== 1) { // matches 'area-name_block-name' throw new SalicApiException("Invalid field-key format: '{$key}'"); } $fieldKey = $matches[1]; if ($fieldKey && !in_array($fieldKey, $templateSettings->fields)) { throw new SalicApiException("Invalid field: '{$fieldKey}'", $templateSettings->fields); } // save as '_field-key_lang.ext' $filename = '_' . $fieldKey . '_' . $this->current_lang . self::dataFileExtension; } else { // we have a block if (preg_match('/^([a-z0-9-]+)_([a-z0-9-]+)(?:\\.([a-z0-9-]+))?$/', $key, $matches) !== 1) { // matches 'area-name_block-name' or 'area_block.sub-block' throw new SalicApiException("Invalid block-key format: '{$key}'"); } $areaKey = $matches[1]; $blockKey = $matches[2]; $subblock = @$matches[3]; // subblock is optional if (!array_key_exists($areaKey, $pageSettings->areas)) { throw new SalicApiException("Invalid area: '{$areaKey}'", $pageSettings->areas); } if (($myBlock = PageSettings::getBlock($pageSettings->areas[$areaKey], $blockKey)) == null) { throw new SalicApiException("Invalid block: '{$blockKey}'", $pageSettings->areas[$areaKey]); } $blockType = $blockSettings->data($myBlock['type']); if ($subblock) { if ($blockType->subblocks === true ? !is_numeric($subblock) : !in_array($subblock, $blockType->subblocks)) { throw new SalicApiException("Invalid subblock: '{$subblock}'[type={$myBlock['type']}]", $blockType->subblocks); } } if (!$blockType->editable) { throw new SalicApiException("Block not editable: '{$blockKey}'[type={$myBlock['type']}]"); } // save as 'area_block/subblock_lang.ext' if (!$subblock) { $filename = $areaKey . '_' . $blockKey . '_' . $this->current_lang . self::dataFileExtension; } else { Utils::mkdirs($page_dir . $areaKey . '_' . $blockKey); $filename = $areaKey . '_' . $blockKey . '/' . $subblock . '_' . $this->current_lang . self::dataFileExtension; } } $flag = file_put_contents($page_dir . $filename, $val, LOCK_EX); // lock the file exclusively while writing if ($flag === false) { throw new \Exception("Failed to write file '{$page_dir}{$filename}" . self::dataFileExtension . "'"); } //TODO: set file permissions } }