123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633 |
- <?php
- namespace Typemill\Controllers;
- use \Symfony\Component\Yaml\Yaml;
- use Typemill\Models\Fields;
- use Typemill\Models\Validation;
- use Typemill\Models\User;
- class SettingsController extends Controller
- {
- /*********************
- ** BASIC SETTINGS **
- *********************/
-
- public function showSettings($request, $response, $args)
- {
- $user = new User();
- $settings = $this->c->get('settings');
- $defaultSettings = \Typemill\Settings::getDefaultSettings();
- $copyright = $this->getCopyright();
- $languages = $this->getLanguages();
- $locale = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? substr($_SERVER["HTTP_ACCEPT_LANGUAGE"],0,2) : 'en';
- $users = $user->getUsers();
- $route = $request->getAttribute('route');
-
- return $this->render($response, 'settings/system.twig', array('settings' => $settings, 'copyright' => $copyright, 'languages' => $languages, 'locale' => $locale, 'formats' => $defaultSettings['formats'] ,'users' => $users, 'route' => $route->getName() ));
- }
-
- public function saveSettings($request, $response, $args)
- {
- if($request->isPost())
- {
- $referer = $request->getHeader('HTTP_REFERER');
- $uri = $request->getUri();
- $base_url = $uri->getBaseUrl();
- # security, users should not be able to fake post with settings from other typemill pages.
- if(!isset($referer[0]) OR $referer[0] !== $base_url . '/tm/settings' )
- {
- $this->c->flash->addMessage('error', 'illegal referer');
- return $response->withRedirect($this->c->router->pathFor('settings.show'));
- }
-
- $settings = \Typemill\Settings::getUserSettings();
- $defaultSettings = \Typemill\Settings::getDefaultSettings();
- $params = $request->getParams();
- $newSettings = isset($params['settings']) ? $params['settings'] : false;
- $validate = new Validation();
- if($newSettings)
- {
- /* make sure only allowed fields are stored */
- $newSettings = array(
- 'title' => $newSettings['title'],
- 'author' => $newSettings['author'],
- 'copyright' => $newSettings['copyright'],
- 'year' => $newSettings['year'],
- 'language' => $newSettings['language'],
- 'editor' => $newSettings['editor'],
- 'formats' => $newSettings['formats'],
- );
-
- $copyright = $this->getCopyright();
- $validate->settings($newSettings, $copyright, $defaultSettings['formats'], 'settings');
- }
- else
- {
- $this->c->flash->addMessage('error', 'Wrong Input');
- return $response->withRedirect($this->c->router->pathFor('settings.show'));
- }
- if(isset($_SESSION['errors']))
- {
- $this->c->flash->addMessage('error', 'Please correct the errors');
- return $response->withRedirect($this->c->router->pathFor('settings.show'));
- }
-
- /* store updated settings */
- \Typemill\Settings::updateSettings(array_merge($settings, $newSettings));
-
- $this->c->flash->addMessage('info', 'Settings are stored');
- return $response->withRedirect($this->c->router->pathFor('settings.show'));
- }
- }
- /*********************
- ** THEME SETTINGS **
- *********************/
-
- public function showThemes($request, $response, $args)
- {
- $userSettings = $this->c->get('settings');
- $themes = $this->getThemes();
- $themedata = array();
- $fieldsModel = new Fields();
- foreach($themes as $themeName)
- {
- /* if theme is active, list it first */
- if($userSettings['theme'] == $themeName)
- {
- $themedata = array_merge(array($themeName => null), $themedata);
- }
- else
- {
- $themedata[$themeName] = null;
- }
- $themeSettings = \Typemill\Settings::getObjectSettings('themes', $themeName);
- if($themeSettings)
- {
- /* store them as default theme data with author, year, default settings and field-definitions */
- $themedata[$themeName] = $themeSettings;
- }
-
- if(isset($themeSettings['forms']['fields']))
- {
- $fields = $fieldsModel->getFields($userSettings, 'themes', $themeName, $themeSettings);
-
- /* overwrite original theme form definitions with enhanced form objects */
- $themedata[$themeName]['forms']['fields'] = $fields;
- }
-
- /* add the preview image */
- $img = getcwd() . DIRECTORY_SEPARATOR . 'themes' . DIRECTORY_SEPARATOR . $themeName . DIRECTORY_SEPARATOR . $themeName . '.jpg';
- $img = file_exists($img) ? $img : false;
-
- $themedata[$themeName]['img'] = $img;
- }
-
- /* add the users for navigation */
- $user = new User();
- $users = $user->getUsers();
- $route = $request->getAttribute('route');
-
- return $this->render($response, 'settings/themes.twig', array('settings' => $userSettings, 'themes' => $themedata, 'users' => $users, 'route' => $route->getName() ));
- }
-
- public function showPlugins($request, $response, $args)
- {
- $userSettings = $this->c->get('settings');
- $plugins = array();
- $fieldsModel = new Fields();
- $fields = array();
- /* iterate through the plugins in the stored user settings */
- foreach($userSettings['plugins'] as $pluginName => $pluginUserSettings)
- {
- /* add plugin to plugin Data, if active, set it first */
- /* if plugin is active, list it first */
- if($userSettings['plugins'][$pluginName]['active'] == true)
- {
- $plugins = array_merge(array($pluginName => null), $plugins);
- }
- else
- {
- $plugins[$pluginName] = Null;
- }
-
- /* Check if the user has deleted a plugin. Then delete it in the settings and store the updated settings. */
- if(!is_dir($userSettings['rootPath'] . 'plugins' . DIRECTORY_SEPARATOR . $pluginName))
- {
- /* remove the plugin settings and store updated settings */
- \Typemill\Settings::removePluginSettings($pluginName);
- continue;
- }
-
- /* load the original plugin definitions from the plugin folder (author, version and stuff) */
- $pluginOriginalSettings = \Typemill\Settings::getObjectSettings('plugins', $pluginName);
- if($pluginOriginalSettings)
- {
- /* store them as default plugin data with plugin author, plugin year, default settings and field-definitions */
- $plugins[$pluginName] = $pluginOriginalSettings;
- }
-
- /* check, if the plugin has been disabled in the form-session-data */
- if(isset($_SESSION['old']) && !isset($_SESSION['old'][$pluginName]['active']))
- {
- $plugins[$pluginName]['settings']['active'] = false;
- }
-
- /* if the plugin defines forms and fields, so that the user can edit the plugin settings in the frontend */
- if(isset($pluginOriginalSettings['forms']['fields']))
- {
- # if the plugin defines frontend fields
- if(isset($pluginOriginalSettings['public']))
- {
- $pluginOriginalSettings['forms']['fields']['recaptcha'] = ['type' => 'checkbox', 'label' => 'Google Recaptcha', 'checkboxlabel' => 'Activate Recaptcha' ];
- $pluginOriginalSettings['forms']['fields']['recaptcha_webkey'] = ['type' => 'text', 'label' => 'Recaptcha Website Key', 'help' => 'Add the recaptcha website key here. You can get the key from the recaptcha website.', 'description' => 'The website key is mandatory if you activate the recaptcha field'];
- $pluginOriginalSettings['forms']['fields']['recaptcha_secretkey'] = ['type' => 'text', 'label' => 'Recaptcha Secret Key', 'help' => 'Add the recaptcha secret key here. You can get the key from the recaptcha website.', 'description' => 'The secret key is mandatory if you activate the recaptcha field'];
- }
-
- /* get all the fields and prefill them with the dafault-data, the user-data or old input data */
- $fields = $fieldsModel->getFields($userSettings, 'plugins', $pluginName, $pluginOriginalSettings);
-
- /* overwrite original plugin form definitions with enhanced form objects */
- $plugins[$pluginName]['forms']['fields'] = $fields;
- }
- }
-
- $user = new User();
- $users = $user->getUsers();
- $route = $request->getAttribute('route');
-
- return $this->render($response, 'settings/plugins.twig', array('settings' => $userSettings, 'plugins' => $plugins, 'users' => $users, 'route' => $route->getName() ));
- }
- /*************************************
- ** SAVE THEME- AND PLUGIN-SETTINGS **
- *************************************/
- public function saveThemes($request, $response, $args)
- {
- if($request->isPost())
- {
- $referer = $request->getHeader('HTTP_REFERER');
- $uri = $request->getUri();
- $base_url = $uri->getBaseUrl();
- # users should not be able to fake post with settings from other typemill pages.
- if(!isset($referer[0]) OR $referer[0] !== $base_url . '/tm/themes' )
- {
- $this->c->flash->addMessage('error', 'illegal referer');
- return $response->withRedirect($this->c->router->pathFor('themes.show'));
- }
-
- $userSettings = \Typemill\Settings::getUserSettings();
- $params = $request->getParams();
- $themeName = isset($params['theme']) ? $params['theme'] : false;
- $userInput = isset($params[$themeName]) ? $params[$themeName] : false;
- $validate = new Validation();
- $themeSettings = \Typemill\Settings::getObjectSettings('themes', $themeName);
-
- if(isset($themeSettings['settings']['images']))
- {
- # get the default settings
- $defaultSettings = \Typemill\Settings::getDefaultSettings();
-
- # merge the default image settings with the theme image settings, delete all others (image settings from old theme)
- $userSettings['images'] = array_merge($defaultSettings['images'], $themeSettings['settings']['images']);
- }
-
- /* set theme name and delete theme settings from user settings for the case, that the new theme has no settings */
- $userSettings['theme'] = $themeName;
- if($userInput)
- {
- /* validate the user-input */
- $this->validateInput('themes', $themeName, $userInput, $validate);
-
- /* set user input as theme settings */
- $userSettings['themes'][$themeName] = $userInput;
- }
-
- /* check for errors and redirect to path, if errors found */
- if(isset($_SESSION['errors']))
- {
- $this->c->flash->addMessage('error', 'Please correct the errors');
- return $response->withRedirect($this->c->router->pathFor('themes.show'));
- }
-
- /* store updated settings */
- \Typemill\Settings::updateSettings($userSettings);
-
- $this->c->flash->addMessage('info', 'Settings are stored');
- return $response->withRedirect($this->c->router->pathFor('themes.show'));
- }
- }
- public function savePlugins($request, $response, $args)
- {
- if($request->isPost())
- {
- $referer = $request->getHeader('HTTP_REFERER');
- $uri = $request->getUri();
- $base_url = $uri->getBaseUrl();
- # security, users should not be able to fake post with settings from other typemill pages.
- if(!isset($referer[0]) OR $referer[0] !== $base_url . '/tm/plugins' )
- {
- $this->c->flash->addMessage('error', 'illegal referer');
- return $response->withRedirect($this->c->router->pathFor('plugins.show'));
- }
-
- $userSettings = \Typemill\Settings::getUserSettings();
- $pluginSettings = array();
- $userInput = $request->getParams();
- $validate = new Validation();
-
- /* use the stored user settings and iterate over all original plugin settings, so we do not forget any... */
- foreach($userSettings['plugins'] as $pluginName => $pluginUserSettings)
- {
- /* if there are no input-data for this plugin, then use the stored plugin settings */
- if(!isset($userInput[$pluginName]))
- {
- $pluginSettings[$pluginName] = $pluginUserSettings;
- }
- else
- {
- /* validate the user-input */
- $this->validateInput('plugins', $pluginName, $userInput[$pluginName], $validate);
- /* use the input data */
- $pluginSettings[$pluginName] = $userInput[$pluginName];
- }
-
- /* deactivate the plugin, if there is no active flag */
- if(!isset($userInput[$pluginName]['active']))
- {
- $pluginSettings[$pluginName]['active'] = false;
- }
- }
- if(isset($_SESSION['errors']))
- {
- $this->c->flash->addMessage('error', 'Please correct the errors below');
- }
- else
- {
- /* if everything is valid, add plugin settings to base settings again */
- $userSettings['plugins'] = $pluginSettings;
-
- /* store updated settings */
- \Typemill\Settings::updateSettings($userSettings);
- $this->c->flash->addMessage('info', 'Settings are stored');
- }
-
- return $response->withRedirect($this->c->router->pathFor('plugins.show'));
- }
- }
- private function validateInput($objectType, $objectName, $userInput, $validate)
- {
- /* fetch the original settings from the folder (plugin or theme) to get the field definitions */
- $originalSettings = \Typemill\Settings::getObjectSettings($objectType, $objectName);
- if(isset($originalSettings['forms']['fields']))
- {
- /* flaten the multi-dimensional array with fieldsets to a one-dimensional array */
- $originalFields = array();
- foreach($originalSettings['forms']['fields'] as $fieldName => $fieldValue)
- {
- if(isset($fieldValue['fields']))
- {
- foreach($fieldValue['fields'] as $subFieldName => $subFieldValue)
- {
- $originalFields[$subFieldName] = $subFieldValue;
- }
- }
- else
- {
- $originalFields[$fieldName] = $fieldValue;
- }
- }
-
- # if the plugin defines frontend fields
- if(isset($originalSettings['public']))
- {
- $originalFields['recaptcha'] = ['type' => 'checkbox', 'label' => 'Google Recaptcha', 'checkboxlabel' => 'Activate Recaptcha' ];
- $originalFields['recaptcha_webkey'] = ['type' => 'text', 'label' => 'Recaptcha Website Key', 'help' => 'Add the recaptcha website key here. You can get the key from the recaptcha website.', 'description' => 'The website key is mandatory if you activate the recaptcha field'];
- $originalFields['recaptcha_secretkey'] = ['type' => 'text', 'label' => 'Recaptcha Secret Key', 'help' => 'Add the recaptcha secret key here. You can get the key from the recaptcha website.', 'description' => 'The secret key is mandatory if you activate the recaptcha field'];
- }
- # if plugin is not active, then skip required
- $skiprequired = false;
- if($objectType == 'plugins' && !isset($userInput['active']))
- {
- $skiprequired = true;
- }
-
- /* take the user input data and iterate over all fields and values */
- foreach($userInput as $fieldName => $fieldValue)
- {
- /* get the corresponding field definition from original plugin settings */
- $fieldDefinition = isset($originalFields[$fieldName]) ? $originalFields[$fieldName] : false;
- if($fieldDefinition)
- {
- /* validate user input for this field */
- $validate->objectField($fieldName, $fieldValue, $objectName, $fieldDefinition, $skiprequired);
- }
- if(!$fieldDefinition && $fieldName != 'active')
- {
- $_SESSION['errors'][$objectName][$fieldName] = array('This field is not defined!');
- }
- }
- }
- }
- /***********************
- ** USER MANAGEMENT **
- ***********************/
-
- public function showUser($request, $response, $args)
- {
- if($_SESSION['role'] == 'editor' && $_SESSION['user'] !== $args['username'])
- {
- return $response->withRedirect($this->c->router->pathFor('user.show', ['username' => $_SESSION['user']] ));
- }
-
- $validate = new Validation();
-
- if($validate->username($args['username']))
- {
- $user = new User();
- $users = $user->getUsers();
- $userrole = $user->getUserroles();
- $userdata = $user->getUser($args['username']);
- $settings = $this->c->get('settings');
-
- if($userdata)
- {
- return $this->render($response, 'settings/user.twig', array('settings' => $settings, 'users' => $users, 'userdata' => $userdata, 'userrole' => $userrole, 'username' => $args['username'] ));
- }
- }
-
- $this->c->flash->addMessage('error', 'User does not exists');
- return $response->withRedirect($this->c->router->pathFor('user.list'));
- }
- public function listUser($request, $response)
- {
- $user = new User();
- $users = $user->getUsers();
- $userdata = array();
- $route = $request->getAttribute('route');
- $settings = $this->c->get('settings');
-
- foreach($users as $username)
- {
- $userdata[] = $user->getUser($username);
- }
-
- return $this->render($response, 'settings/userlist.twig', array('settings' => $settings, 'users' => $users, 'userdata' => $userdata, 'route' => $route->getName() ));
- }
-
- public function newUser($request, $response, $args)
- {
- $user = new User();
- $users = $user->getUsers();
- $userrole = $user->getUserroles();
- $route = $request->getAttribute('route');
- $settings = $this->c->get('settings');
- return $this->render($response, 'settings/usernew.twig', array('settings' => $settings, 'users' => $users, 'userrole' => $userrole, 'route' => $route->getName() ));
- }
-
- public function createUser($request, $response, $args)
- {
- if($request->isPost())
- {
- $referer = $request->getHeader('HTTP_REFERER');
- $uri = $request->getUri();
- $base_url = $uri->getBaseUrl();
- # security, users should not be able to fake post with settings from other typemill pages.
- if(!isset($referer[0]) OR $referer[0] !== $base_url . '/tm/user/new' )
- {
- $this->c->flash->addMessage('error', 'illegal referer');
- return $response->withRedirect($this->c->router->pathFor('user.new'));
- }
-
- $params = $request->getParams();
- $user = new User();
- $userroles = $user->getUserroles();
- $validate = new Validation();
- if($validate->newUser($params, $userroles))
- {
- $userdata = array('username' => $params['username'], 'firstname' => $params['firstname'], 'lastname' => $params['lastname'], 'email' => $params['email'], 'userrole' => $params['userrole'], 'password' => $params['password']);
-
- $user->createUser($userdata);
- $this->c->flash->addMessage('info', 'Welcome, there is a new user!');
- return $response->withRedirect($this->c->router->pathFor('user.list'));
- }
-
- $this->c->flash->addMessage('error', 'Please correct your input');
- return $response->withRedirect($this->c->router->pathFor('user.new'));
- }
- }
-
- public function updateUser($request, $response, $args)
- {
- if($request->isPost())
- {
- $referer = $request->getHeader('HTTP_REFERER');
- $uri = $request->getUri();
- $base_url = $uri->getBaseUrl();
- # security, users should not be able to fake post with settings from other typemill pages.
- if(!isset($referer[0]) OR strpos($referer[0], $base_url . '/tm/user/') === false )
- {
- $this->c->flash->addMessage('error', 'illegal referer');
- return $response->withRedirect($this->c->router->pathFor('user.list'));
- }
-
- $params = $request->getParams();
- $user = new User();
- $userroles = $user->getUserroles();
- $validate = new Validation();
-
- /* non admins have different update rights */
- if($_SESSION['role'] !== 'administrator')
- {
- /* if an editor tries to update other userdata than its own */
- if($_SESSION['user'] !== $params['username'])
- {
- return $response->withRedirect($this->c->router->pathFor('user.show', ['username' => $_SESSION['user']] ));
- }
-
- /* non admins cannot change his userrole */
- $params['userrole'] = $_SESSION['role'];
- }
-
- if($validate->existingUser($params, $userroles))
- {
- $userdata = array('username' => $params['username'], 'firstname' => $params['firstname'], 'lastname' => $params['lastname'], 'email' => $params['email'], 'userrole' => $params['userrole']);
-
- if(empty($params['password']) AND empty($params['newpassword']))
- {
- $user->updateUser($userdata);
- $this->c->flash->addMessage('info', 'Saved all changes');
- return $response->withRedirect($this->c->router->pathFor('user.show', ['username' => $params['username']]));
- }
- elseif($validate->newPassword($params))
- {
- $userdata['password'] = $params['newpassword'];
- $user->updateUser($userdata);
- $this->c->flash->addMessage('info', 'Saved all changes');
- return $response->withRedirect($this->c->router->pathFor('user.show', ['username' => $params['username']]));
- }
- }
-
- $this->c->flash->addMessage('error', 'Please correct your input');
- return $response->withRedirect($this->c->router->pathFor('user.show', ['username' => $params['username']]));
- }
- }
-
- public function deleteUser($request, $response, $args)
- {
- if($request->isPost())
- {
- $referer = $request->getHeader('HTTP_REFERER');
- $uri = $request->getUri();
- $base_url = $uri->getBaseUrl();
- # security, users should not be able to fake post with settings from other typemill pages.
- if(!isset($referer[0]) OR strpos($referer[0], $base_url . '/tm/user/') === false )
- {
- $this->c->flash->addMessage('error', 'illegal referer');
- return $response->withRedirect($this->c->router->pathFor('user.list'));
- }
-
- $params = $request->getParams();
- $validate = new Validation();
- $user = new User();
- /* non admins have different update rights */
- if($_SESSION['role'] !== 'administrator')
- {
- /* if an editor tries to delete other user than its own */
- if($_SESSION['user'] !== $params['username'])
- {
- return $response->withRedirect($this->c->router->pathFor('user.show', ['username' => $_SESSION['user']] ));
- }
- }
-
- if($validate->username($params['username']))
- {
- $user->deleteUser($params['username']);
- # if user deleted his own account
- if($_SESSION['user'] == $params['username'])
- {
- session_destroy();
- return $response->withRedirect($this->c->router->pathFor('auth.show'));
- }
-
- $this->c->flash->addMessage('info', 'Say goodbye, the user is gone!');
- return $response->withRedirect($this->c->router->pathFor('user.list'));
- }
-
- $this->c->flash->addMessage('error', 'Ups, we did not find that user');
- return $response->withRedirect($this->c->router->pathFor('user.show', ['username' => $params['username']]));
- }
- }
- private function getThemes()
- {
- $themeFolder = $this->c->get('settings')['rootPath'] . $this->c->get('settings')['themeFolder'];
- $themeFolderC = scandir($themeFolder);
- $themes = array();
- foreach ($themeFolderC as $key => $theme)
- {
- if (!in_array($theme, array(".","..")))
- {
- if (is_dir($themeFolder . DIRECTORY_SEPARATOR . $theme))
- {
- $themes[] = $theme;
- }
- }
- }
- return $themes;
- }
-
- private function getCopyright()
- {
- return array(
- "©",
- "CC-BY",
- "CC-BY-NC",
- "CC-BY-NC-ND",
- "CC-BY-NC-SA",
- "CC-BY-ND",
- "CC-BY-SA",
- "None"
- );
- }
-
- private function getLanguages()
- {
- return array(
- 'nl' => 'Dutch, Flemish',
- 'en' => 'English',
- 'de' => 'German',
- 'it' => 'Italian',
- );
- }
- }
|