AnkietyGO/questions/components/core/class-post.php

180 lines
4.7 KiB
PHP

<?php
/**
* Questions Post Class
*
* Extended functions for posts
*
* @author awesome.ug, Author <support@awesome.ug>
* @package Questions/Core
* @version 1.0.0
* @since 1.0.0
* @license GPL 2
Copyright 2015 awesome.ug (support@awesome.ug)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
if ( !defined( 'ABSPATH' ) ) exit;
class Questions_Post{
var $id;
var $post;
var $meta;
var $terms;
var $comments;
/**
* Initializes the class.
* @since 1.0.0
*/
public function __construct( $post_id ){
if( empty( $post_id ) )
return FALSE;
$this->id = $post_id;
$this->post = get_post( $post_id );
$this->meta = get_post_meta( $post_id );
$this->comments = get_comments( array( 'post_id' => $post_id ) );
}
/**
* Dublicating posts
* @param bool $copy_meta
* @param bool $copy_comments
* @param bool $copy_taxonomies
* @param bool $draft
* @return int $post_id The id of the new post
*/
public function duplicate( $copy_meta = TRUE, $copy_taxonomies = TRUE, $copy_comments = TRUE, $draft = FALSE ){
$copy = clone $this->post;
$copy->ID = '';
if( $draft )
$copy->post_status = 'draft';
$copy->post_date = '';
$copy->post_modified = '';
$copy->post_date_gmt = '';
$copy->post_modified_gmt = '';
$post_id = wp_insert_post( $copy );
if( $copy_meta ):
$this->duplicate_meta( $post_id );
endif;
if( $copy_taxonomies ):
$this->dublicate_taxonomies( $post_id );
endif;
if( $copy_comments ):
$this->duplicate_comments( $post_id );
endif;
return $post_id;
}
/**
* Dublicates comments of a post
* @param int $post_id The ID of the post
* @return bool
*/
public function duplicate_comments( $post_id ){
$comment_transfer = array();
if( empty( $post_id ) )
return FALSE;
foreach( $this->comments AS $comment ):
$comment = (array) $comment;
$comment[ 'comment_post_ID' ] = $post_id;
$old_comment_id = $comment[ 'comment_ID' ];
$new_comment_id = wp_insert_comment( $comment );
$comment_transfer[ $old_comment_id ] = $new_comment_id;
endforeach;
// Running all new comments and updating parents
foreach( $comment_transfer AS $old_comment_id => $new_comment_id ):
$comment = get_comment( $new_comment_id, ARRAY_A );
// If comment has parrent comment
if( 0 != $comment[ 'comment_parent' ] ):
$comment[ 'comment_parent' ] = $comment_transfer[ $comment[ 'comment_parent' ] ];
wp_update_comment( $comment );
endif;
endforeach;
return TRUE;
}
/**
* Dublicating taxonomies of a post
* @param $post_id
*/
public function dublicate_taxonomies( $post_id ){
global $wpdb;
if( empty( $post_id ) )
return FALSE;
$sql = $wpdb->prepare( "SELECT * FROM {$wpdb->term_relationships} WHERE object_id=%d", $this->id );
$results = $wpdb->get_results( $sql );
if( count( $results ) > 0 ) {
foreach ( $results AS $result ) {
$wpdb->insert(
$wpdb->term_relationships,
array(
'object_id' => $post_id,
'term_taxonomy_id' => $result->term_taxonomy_id,
'term_order' => $result->term_order
),
array(
'%d',
'%d',
'%d'
)
);
}
}
return TRUE;
}
/**
* Dublicates comments of a post
* @param $post_id The ID of the post
* @return bool
*/
public function duplicate_meta( $post_id ){
if( empty( $post_id ) )
return FALSE;
$forbidden_keys = apply_filters( 'questions_dublicate_forbidden_terms', array(
'_edit_lock',
'_edit_last'
));
foreach( $this->meta AS $meta_key => $meta_value ):
if( !in_array( $meta_key, $forbidden_keys ) )
foreach( $meta_value AS $value )
add_post_meta( $post_id, $meta_key, $value );
endforeach;
return TRUE;
}
}