Beispiel #1
0
 /**
  * This method saves the settings.
  *
  * It will put them in Settings.php or in the settings table.
  *
  * What it does:
  * - Used to save those settings set from ?action=admin;area=serversettings.
  * - Requires the admin_forum permission.
  * - Contains arrays of the types of data to save into Settings.php.
  */
 public function save()
 {
     validateToken('admin-ssc');
     // Fix the darn stupid cookiename! (more may not be allowed, but these for sure!)
     if (isset($_POST['cookiename'])) {
         $_POST['cookiename'] = preg_replace('~[,;\\s\\.$]+~u', '', $_POST['cookiename']);
     }
     // Fix the forum's URL if necessary.
     if (isset($_POST['boardurl'])) {
         if (substr($_POST['boardurl'], -10) == '/index.php') {
             $_POST['boardurl'] = substr($_POST['boardurl'], 0, -10);
         } elseif (substr($_POST['boardurl'], -1) == '/') {
             $_POST['boardurl'] = substr($_POST['boardurl'], 0, -1);
         }
         if (substr($_POST['boardurl'], 0, 7) != 'http://' && substr($_POST['boardurl'], 0, 7) != 'file://' && substr($_POST['boardurl'], 0, 8) != 'https://') {
             $_POST['boardurl'] = 'http://' . $_POST['boardurl'];
         }
     }
     // Any passwords?
     $config_passwords = array('db_passwd', 'ssi_db_passwd', 'cache_password');
     // All the strings to write.
     $config_strs = array('mtitle', 'mmessage', 'language', 'mbname', 'boardurl', 'cookiename', 'webmaster_email', 'db_name', 'db_user', 'db_server', 'db_prefix', 'ssi_db_user', 'cache_accelerator', 'cache_memcached', 'cache_uid');
     $safe_strings = array('mtitle', 'mmessage', 'mbname');
     // All the numeric variables.
     $config_ints = array('cache_enable');
     // All the checkboxes.
     $config_bools = array('db_persist', 'db_error_send', 'maintenance');
     // Now sort everything into a big array, and figure out arrays and etc.
     $new_settings = array();
     foreach ($config_passwords as $config_var) {
         if (isset($_POST[$config_var][1]) && $_POST[$config_var][0] == $_POST[$config_var][1]) {
             $new_settings[$config_var] = '\'' . addcslashes($_POST[$config_var][0], '\'\\') . '\'';
         }
     }
     foreach ($config_strs as $config_var) {
         if (isset($_POST[$config_var])) {
             if (in_array($config_var, $safe_strings)) {
                 $new_settings[$config_var] = '\'' . addcslashes(Util::htmlspecialchars($_POST[$config_var], ENT_QUOTES), '\'\\') . '\'';
             } else {
                 $new_settings[$config_var] = '\'' . addcslashes($_POST[$config_var], '\'\\') . '\'';
             }
         }
     }
     foreach ($config_ints as $config_var) {
         if (isset($_POST[$config_var])) {
             $new_settings[$config_var] = (int) $_POST[$config_var];
         }
     }
     foreach ($config_bools as $key) {
         // Check boxes need to be part of this settings form
         if ($this->_array_value_exists__recursive($key, $this->settings())) {
             if (!empty($_POST[$key])) {
                 $new_settings[$key] = '1';
             } else {
                 $new_settings[$key] = '0';
             }
         }
     }
     // Save the relevant settings in the Settings.php file.
     require_once SUBSDIR . '/Admin.subs.php';
     Settings_Form::save_file($new_settings);
     // Now loop through the remaining (database-based) settings.
     $new_settings = array();
     foreach ($this->_config_vars as $config_var) {
         // We just saved the file-based settings, so skip their definitions.
         if (!is_array($config_var) || $config_var[2] == 'file') {
             continue;
         }
         // Rewrite the definition a bit.
         $new_settings[] = array($config_var[3], $config_var[0]);
     }
     // Save the new database-based settings, if any.
     if (!empty($new_settings)) {
         Settings_Form::save_db($new_settings);
     }
 }
 /**
  * Edit a particular set of language entries.
  */
 public function action_editlang()
 {
     global $settings, $context, $txt, $modSettings, $language, $scripturl;
     require_once SUBSDIR . '/Language.subs.php';
     loadLanguage('ManageSettings');
     // Select the languages tab.
     $context['menu_data_' . $context['admin_menu_id']]['current_subsection'] = 'edit';
     $context['page_title'] = $txt['edit_languages'];
     $context['sub_template'] = 'modify_language_entries';
     $context['lang_id'] = $_GET['lid'];
     list($theme_id, $file_id) = empty($_REQUEST['tfid']) || strpos($_REQUEST['tfid'], '+') === false ? array(1, '') : explode('+', $_REQUEST['tfid']);
     // Clean the ID - just in case.
     preg_match('~([A-Za-z0-9_-]+)~', $context['lang_id'], $matches);
     $context['lang_id'] = $matches[1];
     // Get all the theme data.
     require_once SUBSDIR . '/Themes.subs.php';
     $themes = getCustomThemes();
     // This will be where we look
     $lang_dirs = array();
     $images_dirs = array();
     // Check we have themes with a path and a name - just in case - and add the path.
     foreach ($themes as $id => $data) {
         if (count($data) != 2) {
             unset($themes[$id]);
         } elseif (is_dir($data['theme_dir'] . '/languages/' . $context['lang_id'])) {
             $lang_dirs[$id] = $data['theme_dir'] . '/languages/' . $context['lang_id'];
         }
         // How about image directories?
         if (is_dir($data['theme_dir'] . '/images/' . $context['lang_id'])) {
             $images_dirs[$id] = $data['theme_dir'] . '/images/' . $context['lang_id'];
         }
     }
     $current_file = $file_id ? $lang_dirs[$theme_id] . '/' . $file_id . '.' . $context['lang_id'] . '.php' : '';
     // Now for every theme get all the files and stick them in context!
     $context['possible_files'] = array();
     foreach ($lang_dirs as $theme => $theme_dir) {
         // Open it up.
         $dir = dir($theme_dir);
         while ($entry = $dir->read()) {
             // We're only after the files for this language.
             if (preg_match('~^([A-Za-z]+)\\.' . $context['lang_id'] . '\\.php$~', $entry, $matches) == 0) {
                 continue;
             }
             if (!isset($context['possible_files'][$theme])) {
                 $context['possible_files'][$theme] = array('id' => $theme, 'name' => $themes[$theme]['name'], 'files' => array());
             }
             $context['possible_files'][$theme]['files'][] = array('id' => $matches[1], 'name' => isset($txt['lang_file_desc_' . $matches[1]]) ? $txt['lang_file_desc_' . $matches[1]] : $matches[1], 'selected' => $theme_id == $theme && $file_id == $matches[1]);
         }
         $dir->close();
         usort($context['possible_files'][$theme]['files'], create_function('$val1, $val2', 'return strcmp($val1[\'name\'], $val2[\'name\']);'));
     }
     if ($context['lang_id'] != 'english') {
         $possiblePackage = findPossiblePackages($context['lang_id']);
         if ($possiblePackage !== false) {
             $context['langpack_uninstall_link'] = $scripturl . '?action=admin;area=packages;sa=uninstall;package=' . $possiblePackage[1] . ';pid=' . $possiblePackage[0];
         }
     }
     // We no longer wish to speak this language.
     // @todo - languages have been moved to packages
     // this may or may not be used in the future, for now it's not used at all
     // @deprecated since 1.0
     if (!empty($_POST['delete_main']) && $context['lang_id'] != 'english') {
         checkSession();
         validateToken('admin-mlang');
         // @todo FTP Controls?
         require_once SUBSDIR . '/Package.subs.php';
         // First, Make a backup?
         if (!empty($modSettings['package_make_backups']) && (!isset($_SESSION['last_backup_for']) || $_SESSION['last_backup_for'] != $context['lang_id'] . '$$$')) {
             $_SESSION['last_backup_for'] = $context['lang_id'] . '$$$';
             package_create_backup('backup_lang_' . $context['lang_id']);
         }
         // Second, loop through the array to remove the files.
         foreach ($lang_dirs as $curPath) {
             foreach ($context['possible_files'][1]['files'] as $lang) {
                 if (file_exists($curPath . '/' . $lang['id'] . '.' . $context['lang_id'] . '.php')) {
                     unlink($curPath . '/' . $lang['id'] . '.' . $context['lang_id'] . '.php');
                 }
             }
             // Check for the email template.
             if (file_exists($curPath . '/EmailTemplates.' . $context['lang_id'] . '.php')) {
                 unlink($curPath . '/EmailTemplates.' . $context['lang_id'] . '.php');
             }
         }
         // Third, the agreement file.
         if (file_exists(BOARDDIR . '/agreement.' . $context['lang_id'] . '.txt')) {
             unlink(BOARDDIR . '/agreement.' . $context['lang_id'] . '.txt');
         }
         // Fourth, a related images folder?
         if (!empty($images_dirs)) {
             foreach ($images_dirs as $curPath) {
                 if (is_dir($curPath)) {
                     deltree($curPath);
                 }
             }
         }
         // Members can no longer use this language.
         removeLanguageFromMember($context['lang_id']);
         // Fifth, update getLanguages() cache.
         if (!empty($modSettings['cache_enable'])) {
             cache_put_data('known_languages', null, !empty($modSettings['cache_enable']) && $modSettings['cache_enable'] < 1 ? 86400 : 3600);
         }
         // Sixth, if we deleted the default language, set us back to english?
         if ($context['lang_id'] == $language) {
             require_once SUBSDIR . '/SettingsForm.class.php';
             $language = 'english';
             Settings_Form::save_file(array('language' => '\'' . $language . '\''));
         }
         // Seventh, get out of here.
         redirectexit('action=admin;area=languages;sa=edit;' . $context['session_var'] . '=' . $context['session_id']);
     }
     // Saving primary settings?
     $madeSave = false;
     if (!empty($_POST['save_main']) && !$current_file) {
         checkSession();
         validateToken('admin-mlang');
         // Read in the current file.
         $current_data = implode('', file($settings['default_theme_dir'] . '/languages/' . $context['lang_id'] . '/index.' . $context['lang_id'] . '.php'));
         // These are the replacements. old => new
         $replace_array = array('~\\$txt\\[\'lang_locale\'\\]\\s=\\s(\'|")[^\\r\\n]+~' => '$txt[\'lang_locale\'] = \'' . addslashes($_POST['locale']) . '\';', '~\\$txt\\[\'lang_dictionary\'\\]\\s=\\s(\'|")[^\\r\\n]+~' => '$txt[\'lang_dictionary\'] = \'' . addslashes($_POST['dictionary']) . '\';', '~\\$txt\\[\'lang_spelling\'\\]\\s=\\s(\'|")[^\\r\\n]+~' => '$txt[\'lang_spelling\'] = \'' . addslashes($_POST['spelling']) . '\';', '~\\$txt\\[\'lang_rtl\'\\]\\s=\\s[A-Za-z0-9]+;~' => '$txt[\'lang_rtl\'] = ' . (!empty($_POST['rtl']) ? 'true' : 'false') . ';');
         $current_data = preg_replace(array_keys($replace_array), array_values($replace_array), $current_data);
         $fp = fopen($settings['default_theme_dir'] . '/languages/' . $context['lang_id'] . '/index.' . $context['lang_id'] . '.php', 'w+');
         fwrite($fp, $current_data);
         fclose($fp);
         $madeSave = true;
     }
     // Quickly load index language entries.
     $old_txt = $txt;
     require $settings['default_theme_dir'] . '/languages/' . $context['lang_id'] . '/index.' . $context['lang_id'] . '.php';
     $context['lang_file_not_writable_message'] = is_writable($settings['default_theme_dir'] . '/languages/' . $context['lang_id'] . '/index.' . $context['lang_id'] . '.php') ? '' : sprintf($txt['lang_file_not_writable'], $settings['default_theme_dir'] . '/languages/' . $context['lang_id'] . '/index.' . $context['lang_id'] . '.php');
     // Setup the primary settings context.
     $context['primary_settings'] = array('name' => Util::ucwords(strtr($context['lang_id'], array('_' => ' ', '-utf8' => ''))), 'locale' => $txt['lang_locale'], 'dictionary' => $txt['lang_dictionary'], 'spelling' => $txt['lang_spelling'], 'rtl' => $txt['lang_rtl']);
     // Restore normal service.
     $txt = $old_txt;
     // Are we saving?
     $save_strings = array();
     if (isset($_POST['save_entries']) && !empty($_POST['entry'])) {
         checkSession();
         validateToken('admin-mlang');
         // Clean each entry!
         foreach ($_POST['entry'] as $k => $v) {
             // Only try to save if it's changed!
             if ($_POST['entry'][$k] != $_POST['comp'][$k]) {
                 $save_strings[$k] = cleanLangString($v, false);
             }
         }
     }
     // If we are editing a file work away at that.
     if ($current_file) {
         $context['entries_not_writable_message'] = is_writable($current_file) ? '' : sprintf($txt['lang_entries_not_writable'], $current_file);
         $entries = array();
         // We can't just require it I'm afraid - otherwise we pass in all kinds of variables!
         $multiline_cache = '';
         foreach (file($current_file) as $line) {
             // Got a new entry?
             if ($line[0] == '$' && !empty($multiline_cache)) {
                 preg_match('~\\$(helptxt|txt|editortxt)\\[\'(.+)\'\\]\\s?=\\s?(.+);~ms', strtr($multiline_cache, array("\r" => '')), $matches);
                 if (!empty($matches[3])) {
                     $entries[$matches[2]] = array('type' => $matches[1], 'full' => $matches[0], 'entry' => $matches[3]);
                     $multiline_cache = '';
                 }
             }
             $multiline_cache .= $line;
         }
         // Last entry to add?
         if ($multiline_cache) {
             preg_match('~\\$(helptxt|txt|editortxt)\\[\'(.+)\'\\]\\s?=\\s?(.+);~ms', strtr($multiline_cache, array("\r" => '')), $matches);
             if (!empty($matches[3])) {
                 $entries[$matches[2]] = array('type' => $matches[1], 'full' => $matches[0], 'entry' => $matches[3]);
             }
         }
         // These are the entries we can definitely save.
         $final_saves = array();
         $context['file_entries'] = array();
         foreach ($entries as $entryKey => $entryValue) {
             // Nowadays some entries have fancy keys, so better use something "portable" for the form
             $md5EntryKey = md5($entryKey);
             // Ignore some things we set separately.
             $ignore_files = array('lang_character_set', 'lang_locale', 'lang_dictionary', 'lang_spelling', 'lang_rtl');
             if (in_array($entryKey, $ignore_files)) {
                 continue;
             }
             // These are arrays that need breaking out.
             $arrays = array('days', 'days_short', 'months', 'months_titles', 'months_short', 'happy_birthday_author', 'karlbenson1_author', 'nite0859_author', 'zwaldowski_author', 'geezmo_author', 'karlbenson2_author');
             if (in_array($entryKey, $arrays)) {
                 // Get off the first bits.
                 $entryValue['entry'] = substr($entryValue['entry'], strpos($entryValue['entry'], '(') + 1, strrpos($entryValue['entry'], ')') - strpos($entryValue['entry'], '('));
                 $entryValue['entry'] = explode(',', strtr($entryValue['entry'], array(' ' => '')));
                 // Now create an entry for each item.
                 $cur_index = 0;
                 $save_cache = array('enabled' => false, 'entries' => array());
                 foreach ($entryValue['entry'] as $id => $subValue) {
                     // Is this a new index?
                     if (preg_match('~^(\\d+)~', $subValue, $matches)) {
                         $cur_index = $matches[1];
                         $subValue = substr($subValue, strpos($subValue, '\''));
                     }
                     // Clean up some bits.
                     $subValue = strtr($subValue, array('"' => '', '\'' => '', ')' => ''));
                     // Can we save?
                     if (isset($save_strings[$md5EntryKey . '-+- ' . $cur_index])) {
                         $save_cache['entries'][$cur_index] = strtr($save_strings[$md5EntryKey . '-+- ' . $cur_index], array('\'' => ''));
                         $save_cache['enabled'] = true;
                     } else {
                         $save_cache['entries'][$cur_index] = $subValue;
                     }
                     $context['file_entries'][] = array('key' => $entryKey . '-+- ' . $cur_index, 'display_key' => $entryKey . '-+- ' . $cur_index, 'value' => $subValue, 'rows' => 1);
                     $cur_index++;
                 }
                 // Do we need to save?
                 if ($save_cache['enabled']) {
                     // Format the string, checking the indexes first.
                     $items = array();
                     $cur_index = 0;
                     foreach ($save_cache['entries'] as $k2 => $v2) {
                         // Manually show the custom index.
                         if ($k2 != $cur_index) {
                             $items[] = $k2 . ' => \'' . $v2 . '\'';
                             $cur_index = $k2;
                         } else {
                             $items[] = '\'' . $v2 . '\'';
                         }
                         $cur_index++;
                     }
                     // Now create the string!
                     $final_saves[$entryKey] = array('find' => $entryValue['full'], 'replace' => '$' . $entryValue['type'] . '[\'' . $entryKey . '\'] = array(' . implode(', ', $items) . ');');
                 }
             } else {
                 // Saving?
                 if (isset($save_strings[$md5EntryKey]) && $save_strings[$md5EntryKey] != $entryValue['entry']) {
                     // @todo Fix this properly.
                     if ($save_strings[$md5EntryKey] == '') {
                         $save_strings[$md5EntryKey] = '\'\'';
                     }
                     // Set the new value.
                     $entryValue['entry'] = $save_strings[$md5EntryKey];
                     // And we know what to save now!
                     $final_saves[$entryKey] = array('find' => $entryValue['full'], 'replace' => '$' . $entryValue['type'] . '[\'' . $entryKey . '\'] = ' . $save_strings[$md5EntryKey] . ';');
                 }
                 $editing_string = cleanLangString($entryValue['entry'], true);
                 $context['file_entries'][] = array('key' => $md5EntryKey, 'display_key' => $entryKey, 'value' => $editing_string, 'rows' => (int) (strlen($editing_string) / 38) + substr_count($editing_string, "\n") + 1);
             }
         }
         // Any saves to make?
         if (!empty($final_saves)) {
             checkSession();
             $file_contents = implode('', file($current_file));
             foreach ($final_saves as $save) {
                 $file_contents = strtr($file_contents, array($save['find'] => $save['replace']));
             }
             // Save the actual changes.
             $fp = fopen($current_file, 'w+');
             fwrite($fp, strtr($file_contents, array("\r" => '')));
             fclose($fp);
             $madeSave = true;
         }
         // Another restore.
         $txt = $old_txt;
     }
     // If we saved, redirect.
     if ($madeSave) {
         redirectexit('action=admin;area=languages;sa=editlang;lid=' . $context['lang_id']);
     }
     createToken('admin-mlang');
 }