$email . ':' . $password); $url = $scheme . $servername . $api_path; $ret = z_fetch_url($url, $binary, $redirects, $opts); if (!$ret['success']) { $ret = z_fetch_url('http://' . $servername . $api_path, $binary, $redirects, $opts); } if ($ret['success']) { $data = $ret['body']; } else { notice(t('Unable to download data from old server') . EOL); } } if (!$data) { logger('Empty file.'); notice(t('Imported file is empty.') . EOL); return; } $data = json_decode($data, true); //logger('import: data: ' . print_r($data,true)); //print_r($data); if (!is_array($data)) { return; } // if(array_key_exists('compatibility',$data) && array_key_exists('database',$data['compatibility'])) { // $v1 = substr($data['compatibility']['database'],-4); // $v2 = substr(DB_UPDATE_VERSION,-4); // if($v2 > $v1) { // $t = sprintf( t('Warning: Database versions differ by %1$d updates.'), $v2 - $v1 ); // notice($t . EOL); // } // } $codebase = 'zap'; if ((!array_path_exists('compatibility/codebase', $data)) || $data['compatibility']['codebase'] !== $codebase) { notice(t('Data export format is not compatible with this software')); return; } $channel = App::get_channel(); if (array_key_exists('item', $data) && $data['item']) { import_items($channel, $data['item'], false, ((array_key_exists('relocate', $data)) ? $data['relocate'] : null)); } info(t('Import completed') . EOL); } /** * @brief Generate item import page. * * @return string with parsed HTML. */ public function get() { if (!local_channel()) { notice(t('Permission denied') . EOL); return login(); } $o = replace_macros(Theme::get_template('item_import.tpl'), array( '$title' => t('Import Items'), '$desc' => t('Use this form to import existing posts and content from an export file.'), '$label_filename' => t('File to Upload'), '$form_security_token' => get_form_security_token('import_items'), '$submit' => t('Submit') )); return $o; } }