post-fixtures/classes/PostFixtures.inc

293 lines
7.6 KiB
PHP
Raw Normal View History

2009-11-22 20:35:39 +00:00
<?php
2009-11-22 20:50:16 +00:00
2010-01-14 20:24:17 +00:00
/**
* Set up fresh WordPress data quickly and easily.
*/
2009-11-22 20:50:16 +00:00
class PostFixtures {
2009-11-23 00:57:35 +00:00
var $messages;
2010-01-14 20:24:17 +00:00
/**
* Initialize the plugin.
*/
2010-01-14 21:19:58 +00:00
// @codeCoverageIgnoreStart
2009-11-23 00:57:35 +00:00
function init() {
2010-01-14 21:19:58 +00:00
foreach (array(
'admin_init' => array(),
'admin_menu' => array(),
'admin_notices' => array(),
'admin_enqueue_scripts' => array(10, 1),
) as $method => $additional_params) {
call_user_func_array(
'add_action',
array_merge(
array($method, array(&$this, $method)),
$additional_params
)
);
}
2009-11-23 00:57:35 +00:00
}
2010-01-14 21:19:58 +00:00
// @codeCoverageIgnoreEnd
2009-11-23 00:57:35 +00:00
2010-01-14 20:24:17 +00:00
/**
* Print any admin notices.
*/
2010-01-14 21:19:58 +00:00
// @codeCoverageIgnoreStart
2009-11-23 00:57:35 +00:00
function admin_notices() {
if (!empty($this->messages)) { ?>
<div class="fade updated">
<?php foreach ($this->messages as $message) { ?>
<p><?php echo $message ?></p>
<?php } ?>
</div>
<?php }
}
2010-01-14 21:19:58 +00:00
// @codeCoverageIgnoreEnd
2009-11-23 00:57:35 +00:00
2010-01-14 20:24:17 +00:00
/**
* Handle an update.
* @param array $info The post info.
*/
2009-11-23 00:57:35 +00:00
function handle_update($info) {
if (isset($info['is_ok'])) {
$data = $this->parse_json(stripslashes($info['data']));
if (!empty($data)) {
$data = $this->process_data($data);
$this->remove();
$this->create($data);
2010-01-14 20:24:17 +00:00
$this->messages[] = __("New data set loaded into WordPress.", 'post-fixtures');
2009-11-23 00:57:35 +00:00
} else {
2010-01-14 20:24:17 +00:00
$this->messages[] = __("Data is not valid JSON.", 'post-fixtures');
2009-11-23 00:57:35 +00:00
}
}
}
2010-01-14 20:24:17 +00:00
/**
* Handle the admin_menu action.
*/
2010-01-14 21:19:58 +00:00
// @codeCoverageIgnoreStart
2009-11-23 00:57:35 +00:00
function admin_menu() {
global $plugin_page;
2010-01-14 20:24:17 +00:00
$this->hook_suffix = add_submenu_page('tools.php', __('Post Fixtures', 'post-fixtures'), __('Post Fixtures', 'post-fixtures'), 'manage_options', 'post-fixtures', array(&$this, 'render_admin'));
2010-01-14 21:19:58 +00:00
}
// @codeCoverageIgnoreEnd
2009-11-23 00:57:35 +00:00
2010-01-14 21:19:58 +00:00
/**
* Handle the admin_init action.
* This is where the processing happens.
*/
function admin_init() {
if (isset($_POST['pf']['_nonce'])) {
if (wp_verify_nonce($_POST['pf']['_nonce'], 'post-fixtures')) {
$this->handle_update($_POST['pf']);
2009-11-23 00:57:35 +00:00
}
}
2010-01-14 21:19:58 +00:00
unset($_POST['pf']);
2009-11-23 00:57:35 +00:00
}
2010-01-14 20:24:17 +00:00
/**
* Handle the admin_enqueue_scripts action.
* @param string $hook_suffix The hook suffix for the page being loaded.
*/
2010-01-14 21:19:58 +00:00
// @codeCoverageIgnoreStart
2010-01-14 20:24:17 +00:00
function admin_enqueue_scripts($hook_suffix) {
if ($this->hook_suffix == $hook_suffix) {
wp_enqueue_script('jquery');
2010-01-14 21:03:28 +00:00
wp_enqueue_style('post-fixtures', plugin_dir_url(dirname(__FILE__)) . 'style.css');
2010-01-14 20:24:17 +00:00
}
}
2010-01-14 21:19:58 +00:00
// @codeCoverageIgnoreEnd
2010-01-14 20:24:17 +00:00
/**
* Render the admin page.
*/
2010-01-14 20:41:55 +00:00
function render_admin() {
include(dirname(__FILE__) . '/partials/admin.inc');
}
2009-11-23 00:57:35 +00:00
// data handling
2010-01-14 20:24:17 +00:00
/**
* Parse incoming JSON data.
* @param string $input The JSON data to parse.
* @return array|false An array of JSON data, or false if invalid.
*/
2009-11-22 20:50:16 +00:00
function parse_json($input) {
if (($data = json_decode($input)) !== false) {
if (is_array($data) || is_object($data)) {
2009-11-23 13:39:09 +00:00
return (array)$data;
2009-11-22 20:50:16 +00:00
}
}
return false;
}
2009-11-22 22:34:57 +00:00
2010-01-14 20:24:17 +00:00
/**
* Remove all posts in the database.
* This is done via the WP interface so that associated comments are also deleted.
*/
2009-11-22 22:34:57 +00:00
function remove_all_posts() {
2009-11-23 00:57:35 +00:00
if (is_array($posts = get_posts(array('numberposts' => '-1', 'post_status' => 'draft,pending,future,inherit,private,publish')))) {
2009-11-22 22:34:57 +00:00
foreach ($posts as $post) { wp_delete_post($post->ID); }
}
}
2009-11-22 22:58:34 +00:00
2010-01-14 20:24:17 +00:00
/**
* Remove all categories in the database.
*/
2009-11-22 22:58:34 +00:00
function remove_all_categories() {
foreach (get_all_category_ids() as $id) {
wp_delete_category($id);
}
}
2009-11-22 23:11:59 +00:00
2010-01-14 20:24:17 +00:00
/**
* Process the provided data and assemble a list of objects to create in the database.
* @param array $data The data to parse.
* @return array The list of objects to create.
*/
2009-11-22 23:11:59 +00:00
function process_data($data) {
2009-11-23 13:18:59 +00:00
$posts = $categories = $options = array();
foreach ($data as $type => $info) {
switch ($type) {
case 'posts':
$posts = $info;
foreach ($posts as $post) {
$post = (array)$post;
if (isset($post['categories'])) {
$categories = array_merge($categories, $post['categories']);
}
}
break;
2009-11-23 13:18:59 +00:00
case 'options':
$options = $info;
break;
2009-11-22 23:11:59 +00:00
}
}
2009-11-23 00:57:35 +00:00
$categories = array_unique($categories);
2009-11-23 13:18:59 +00:00
return compact('posts', 'categories', 'options');
2009-11-22 23:11:59 +00:00
}
2009-11-22 23:32:52 +00:00
2010-01-14 20:24:17 +00:00
/**
* The categories to create.
* Categories are passed as name/name/name, with parent -> child relationships being constructed as necessary.
*/
2009-11-22 23:32:52 +00:00
function create_categories($categories) {
$category_ids_by_slug = array();
if (is_array($categories)) {
foreach ($categories as $category) {
2009-11-23 12:23:26 +00:00
$nodes = explode('/', $category);
$parent = 0;
$joined_nodes = array();
foreach ($nodes as $node) {
$joined_nodes[] = $node;
$parent = $category_ids_by_slug[implode('/', $joined_nodes)] = wp_insert_category(array('cat_name' => $node, 'slug' => $node, 'category_parent' => $parent));
}
2009-11-22 23:32:52 +00:00
}
}
return $category_ids_by_slug;
}
2009-11-22 23:57:23 +00:00
2010-01-14 20:24:17 +00:00
/**
* The posts to create.
* Post data is passed in just as if you were using wp_insert_post().
* Categories are assigned using slug names separated by commas.
*/
2009-11-22 23:57:23 +00:00
function create_posts($posts, $categories) {
$post_ids_created = array();
if (is_array($posts)) {
foreach ($posts as $post) {
2009-11-23 00:57:35 +00:00
$post = (array)$post;
if (!isset($post['post_status'])) {
$post['post_status'] = 'publish';
}
2009-11-22 23:57:23 +00:00
$id = wp_insert_post($post);
if ($id != 0) {
$post_ids_created[] = $id;
if (isset($post['categories'])) {
$all_categories = array();
foreach ($post['categories'] as $slug) {
if (isset($categories[$slug])) {
$all_categories[] = $categories[$slug];
}
}
wp_set_post_categories($id, $all_categories);
} else {
wp_set_post_categories($id, array(get_option('default_category')));
}
if (isset($post['metadata'])) {
foreach ($post['metadata'] as $key => $value) {
update_post_meta($id, $key, $value);
}
}
}
}
}
return $post_ids_created;
}
2009-11-23 00:05:20 +00:00
2010-01-14 20:24:17 +00:00
/**
* Create everything from the provided data.
* @param array $data The data to use in creation.
*/
2009-11-23 00:05:20 +00:00
function create($data) {
2009-11-23 00:57:35 +00:00
$categories_by_slug = $this->create_categories($data['categories']);
$this->create_posts($data['posts'], $categories_by_slug);
2009-11-23 13:20:52 +00:00
$this->process_blog_options($data['options'], $categories_by_slug);
2009-11-23 00:05:20 +00:00
}
2009-11-23 00:07:13 +00:00
2010-01-14 20:24:17 +00:00
/**
* Remove everything from the WordPress database that Post Fixures handles.
*/
2009-11-23 00:07:13 +00:00
function remove() {
$this->remove_all_posts();
$this->remove_all_categories();
}
2009-11-23 13:16:55 +00:00
2010-01-14 20:24:17 +00:00
/**
* Update the provided blog options.
* Option values can have other values injected into them. Currently only category slug names are available.
* @param array $options The options to set or unset. Pass in `false` to unset them.
* @param array $categories The list of categories to work with in string replacement.
*/
2009-11-23 13:16:55 +00:00
function process_blog_options($options, $categories) {
$this->_category = $categories;
foreach ($options as $option => $value) {
2010-01-14 20:42:45 +00:00
if ($value === false) {
delete_option($option);
} else {
$value = preg_replace_callback('#\$\{([^\}]+)\}#', array(&$this, '_process_blog_options_callback'), $value);
update_option($option, $value);
}
2009-11-23 13:16:55 +00:00
}
unset($this->_category);
}
2010-01-14 20:24:17 +00:00
/**
* Callback for process_blog_options
* @param array $matches Matches from preg_replace_callback
* @return string The replacement value for the match.
*/
2009-11-23 13:16:55 +00:00
function _process_blog_options_callback($matches) {
$value = $matches[0];
$parts = explode(':', $matches[1]);
if (count($parts) > 1) {
2009-11-23 13:24:00 +00:00
$source = strtolower(array_shift($parts));
switch ($source) {
case 'cat': $source = 'category'; break;
}
2009-11-23 13:16:55 +00:00
if (count($parts) == 1) {
$index = reset($parts);
if (isset($this->{"_${source}"})) {
if (isset($this->{"_${source}"}[$index])) {
$value = $this->{"_${source}"}[$index];
}
}
}
}
return $value;
}
2009-11-22 20:50:16 +00:00
}