force_recode && (LANG_CHARSET == 'ISO-8859-1' || LANG_CHARSET == 'UTF-8')) { return $string; } $target = $this->data['charset']; switch($target) { case 'native': return $string; case 'ISO-8859-1': if (function_exists('iconv')) { $out = iconv('ISO-8859-1', LANG_CHARSET, $string); } elseif (function_exists('recode')) { $out = recode('iso-8859-1..' . LANG_CHARSET, $string); } elseif (LANG_CHARSET == 'UTF-8') { return mb_convert_encoding($string, 'UTF-8', 'ISO-8859-1'); } else { return $string; } return $out; case 'UTF-8': default: $out = mb_convert_encoding($string, 'ISO-8859-1', 'UTF-8'); return $out; } } /** * Decode/Transcode a string with the indicated translation table (member property). Useful for transcoding HTML entities to native characters. * * @access public * @param string input string * @return string output string */ function strtr($data) { return strtr($this->decode($data), $this->trans_table); } /** * Decode/Transcode an array of strings. * * LONG * * @access public * @see $this->strtr() * @param array input array * @return array output array */ function strtrRecursive($data) { foreach ($data as $key => $val) { if (is_array($val)) { $data[$key] = $this->strtrRecursive($val); } else { $data[$key] = $this->strtr($val); } } return $data; } /** * Get the transcoding table, depending on whether it was enabled for the instance of the importer plugin * * The member property $this->trans_table will be filled with the output of this function * * @access public * @see $this->strtr() * @return null */ function getTransTable() { if (!serendipity_db_bool($this->data['use_strtr'])) { $this->trans_table = array(); return true; } // We need to convert interesting characters to HTML entities, except for those with special relevance to HTML. $this->trans_table = get_html_translation_table(HTML_ENTITIES); foreach (get_html_translation_table(HTML_SPECIALCHARS) as $char => $encoded) { if (isset($this->trans_table[$char])) { unset($this->trans_table[$char]); } } } /** * Execute a DB query on the source database of the import, instead of a DB query on the target database * * @access public * @param string SQL Query * @param resource DB connection resource * @return resource SQL response */ function &nativeQuery($query, $db = false) { global $serendipity; mysqli_select_db($db, $this->data['name']); $dbn = false; $target = $this->data['charset']; switch($target) { case 'native': $dbn = SQL_CHARSET; break; case 'ISO-8859-1': $dbn = 'latin1'; break; case 'UTF-8': $dbn = 'utf8'; break; } if ($dbn && $serendipity['dbNames']) { mysqli_set_charset ( $db, $dbn ); } $return = &mysqli_query($db, $query); mysqli_select_db($serendipity['dbConn'], $serendipity['dbName']); serendipity_db_reconnect(); return $return; } } if (isset($serendipity['GET']['importFrom']) && serendipity_checkFormToken()) { $data['importForm'] = true; /* Include the importer */ $class = @require_once(S9Y_INCLUDE_PATH . 'include/admin/importers/'. basename($serendipity['GET']['importFrom']) .'.inc.php'); if ( !class_exists($class) ) { $data['die'] = true; } else { /* Init the importer with form data */ $importer = new $class($serendipity['POST']['import']); /* Yes sir, we are importing if we have valid data */ if ( $importer->validateData() ) { $data['validateData'] = true; /* import() MUST return (bool)true, otherwise we assume it failed */ if ( ($result = $importer->import()) !== true ) { $data['result'] = $result; } /* Apprently we do not have valid data, ask for some */ } else { $data['formToken'] = serendipity_setFormToken(); $fields = $importer->getInputFields(); foreach ($fields as &$field ) { $field['guessedInput'] = serendipity_guessInput($field['type'], 'serendipity[import]['. $field['name'] .']', (isset($serendipity['POST']['import'][$field['name']]) ? $serendipity['POST']['import'][$field['name']] : $field['default']), $field['default']); } $data['fields'] = $fields; $data['notes'] = $importer->getImportNotes(); } } } else { $data['importForm'] = false; $importpath = S9Y_INCLUDE_PATH . 'include/admin/importers/'; $dir = opendir($importpath); $list = array(); while (($file = readdir($dir)) !== false ) { if (!is_file($importpath . $file) || !preg_match('@.php$@', $file)) { continue; } $class = include_once($importpath . $file); if ( class_exists($class) ) { $tmpClass = new $class(array()); $list[substr($file, 0, strpos($file, '.'))] = $tmpClass->info['software']; unset($tmpClass); } } closedir($dir); ksort($list); $data['formToken'] = serendipity_setFormToken(); $data['list'] = $list; } if (!is_object($serendipity['smarty'] ?? null)) { serendipity_smarty_init(); } echo serendipity_smarty_show('admin/import.inc.tpl', $data); /* vim: set sts=4 ts=4 expandtab : */