* @link https://www.fireplugins.com * @copyright Copyright © 2024 FirePlugins All Rights Reserved * @license GNU GPLv3 or later */ namespace FireBox\Core\Controllers; if (!defined('ABSPATH')) { exit; // Exit if accessed directly. } use FPFramework\Base\Form; class BoxImport extends BaseController { /** * The form settings name * * @var string */ const settings_name = 'firebox_import'; /** * Render the page content * * @return void */ public function render() { // page content add_action('firebox/settings_page', [$this, 'settingsPageContent']); // render layout firebox()->renderer->admin->render('pages/settings'); } /** * Import box * * @param array $input * * @return void */ public function processBoxesImport($input) { $file = $this->getUploadedFile(); // ensure a file was given if (!is_array($file) || !isset($file['name']) || empty($file['name'])) { add_settings_error(self::settings_name, 'settings_updated', fpframework()->_('FPF_PLEASE_SELECT_A_FILE_TO_UPLOAD'), 'error'); return; } $ext = explode('.', $file['name']); // ensure given file plugin was given if (!in_array($ext[count($ext) - 1], ['fbox'])) { add_settings_error(self::settings_name, 'settings_updated', fpframework()->_('FPF_PLEASE_CHOOSE_A_VALID_FILE'), 'error'); return; } $publish_all = isset($input['publish_all']) ? $input['publish_all'] : 0; // read file contents $data = $this->getUploadedFileContents($file['tmp_name']); // if empty data file then abort if (empty($data)) { add_settings_error(self::settings_name, 'settings_updated', fpframework()->_('FPF_FILE_EMPTY'), 'error'); return; } if (!$items = json_decode($data, true)) { add_settings_error(self::settings_name, 'settings_updated', firebox()->_('FB_CAMPAIGN_IMPORT_CONTENTS_ERROR'), 'error'); return; } if (is_null($items)) { $items = []; } if (!$items) { return; } // import all boxes if (!$new_box_id = $this->importBoxes($items, $publish_all)) { add_settings_error(self::settings_name, 'settings_updated', firebox()->_('FB_CAMPAIGN_IMPORT_CONTENTS_ERROR'), 'error'); return; } add_settings_error(self::settings_name, 'settings_updated', fpframework()->_('FPF_ITEMS_SAVED'), 'success'); return $new_box_id; } /** * Returns the uploaded file * * @return mixed */ protected function getUploadedFile() { $file = isset($_FILES['file']) ? $_FILES['file'] : ''; return $file; } /** * Returns the contents of the file * * @param string $tmp_name * * @return string */ protected function getUploadedFileContents($tmp_name) { // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents return file_get_contents($tmp_name); } /** * Imports boxes data * * @param array $items * @param int $publish_all * * @return boolean */ protected function importBoxes($items, $publish_all = 0) { $success = true; foreach ($items as $item) { if (!isset($item['meta'])) { $success = false; break; } // get meta $meta = $item['meta']; // remote meta from item unset($item['meta']); if (!isset($item['box'])) { $success = false; break; } $box = $item['box']; // remove ID $box['ID'] = ''; $factory = new \FPFramework\Base\Factory(); $tz = wp_timezone(); $date_without_tz = $factory->getDate(); $date_with_tz = $factory->getDate()->setTimezone($tz); $box['post_date'] = $date_with_tz->format('Y-m-d H:i:s'); $box['post_date_gmt'] = $date_without_tz->format('Y-m-d H:i:s'); // set publish status if (in_array($publish_all, [0, 1])) { $box['post_status'] = ($publish_all == 0) ? 'draft' : 'publish'; } // insert new box if (!$new_box_id = firebox()->tables->box->insert((object) $box)) { $success = false; break; } // add meta options for new box update_post_meta($new_box_id, 'fpframework_meta_settings', wp_slash($meta)); $success = $new_box_id; } return $success; } /** * What the settings page will contain * * @return void */ public function settingsPageContent() { $form = new Form(\FireBox\Core\Admin\Forms\Import::getSettings(), [ 'fields_name_prefix' => self::settings_name, 'section_name' => self::settings_name, 'class' => 'settings-ui-inner-fields', 'button_label' => 'FPF_IMPORT' ]); echo $form->render(); } }