File: /var/www/html/wp-content/plugins/flamingo/includes/class-inbound-message.php
<?php
class Flamingo_Inbound_Message {
const post_type = 'flamingo_inbound';
const spam_status = 'flamingo-spam';
const channel_taxonomy = 'flamingo_inbound_channel';
public static $found_items = 0;
public $id;
public $channel;
public $date;
public $subject;
public $from;
public $from_name;
public $from_email;
public $fields;
public $meta;
public $akismet;
public $spam;
public static function register_post_type() {
register_post_type( self::post_type, array(
'labels' => array(
'name' => __( 'Flamingo Inbound Messages', 'flamingo' ),
'singular_name' => __( 'Flamingo Inbound Message', 'flamingo' ) ),
'rewrite' => false,
'query_var' => false ) );
register_post_status( self::spam_status, array(
'label' => __( 'Spam', 'flamingo' ),
'public' => false,
'exclude_from_search' => true,
'show_in_admin_all_list' => false,
'show_in_admin_status_list' => true ) );
register_taxonomy( self::channel_taxonomy, self::post_type, array(
'labels' => array(
'name' => __( 'Flamingo Inbound Message Channels', 'flamingo' ),
'singular_name' => __( 'Flamingo Inbound Message Channel', 'flamingo' ) ),
'public' => false,
'hierarchical' => true,
'rewrite' => false,
'query_var' => false ) );
}
public static function find( $args = '' ) {
$defaults = array(
'posts_per_page' => 10,
'offset' => 0,
'orderby' => 'ID',
'order' => 'ASC',
'meta_key' => '',
'meta_value' => '',
'post_status' => 'any',
'tax_query' => array(),
'channel' => '',
'channel_id' => '' );
$args = wp_parse_args( $args, $defaults );
$args['post_type'] = self::post_type;
if ( ! empty( $args['channel_id'] ) ) {
$args['tax_query'][] = array(
'taxonomy' => self::channel_taxonomy,
'terms' => $args['channel_id'],
'field' => 'term_id' );
}
if ( ! empty( $args['channel'] ) ) {
$args['tax_query'][] = array(
'taxonomy' => self::channel_taxonomy,
'terms' => $args['channel'],
'field' => 'slug' );
}
$q = new WP_Query();
$posts = $q->query( $args );
self::$found_items = $q->found_posts;
$objs = array();
foreach ( (array) $posts as $post )
$objs[] = new self( $post );
return $objs;
}
public static function add( $args = '' ) {
$defaults = array(
'channel' => '',
'subject' => '',
'from' => '',
'from_name' => '',
'from_email' => '',
'fields' => array(),
'meta' => array(),
'akismet' => array(),
'spam' => false );
$args = wp_parse_args( $args, $defaults );
$obj = new self();
$obj->channel = $args['channel'];
$obj->subject = $args['subject'];
$obj->from = $args['from'];
$obj->from_name = $args['from_name'];
$obj->from_email = $args['from_email'];
$obj->fields = $args['fields'];
$obj->meta = $args['meta'];
$obj->akismet = $args['akismet'];
if ( $args['spam'] ) {
$obj->spam = true;
} else {
$obj->spam = isset( $obj->akismet['spam'] ) && $obj->akismet['spam'];
}
$obj->save();
return $obj;
}
public function __construct( $post = null ) {
if ( ! empty( $post ) && ( $post = get_post( $post ) ) ) {
$this->id = $post->ID;
$this->date = get_the_time( __( 'Y/m/d g:i:s A', 'flamingo' ), $this->id );
$this->subject = get_post_meta( $post->ID, '_subject', true );
$this->from = get_post_meta( $post->ID, '_from', true );
$this->from_name = get_post_meta( $post->ID, '_from_name', true );
$this->from_email = get_post_meta( $post->ID, '_from_email', true );
$this->fields = get_post_meta( $post->ID, '_fields', true );
if ( ! empty( $this->fields ) ) {
foreach ( (array) $this->fields as $key => $value ) {
$meta_key = sanitize_key( '_field_' . $key );
if ( metadata_exists( 'post', $post->ID, $meta_key ) ) {
$value = get_post_meta( $post->ID, $meta_key, true );
$this->fields[$key] = $value;
}
}
}
$this->meta = get_post_meta( $post->ID, '_meta', true );
$this->akismet = get_post_meta( $post->ID, '_akismet', true );
$terms = wp_get_object_terms( $this->id, self::channel_taxonomy );
if ( ! empty( $terms ) && ! is_wp_error( $terms ) )
$this->channel = $terms[0]->slug;
if ( self::spam_status == get_post_status( $post ) ) {
$this->spam = true;
} else {
$this->spam = isset( $this->akismet['spam'] ) && $this->akismet['spam'];
}
}
}
public function save() {
if ( ! empty( $this->subject ) )
$post_title = $this->subject;
else
$post_title = __( '(No Title)', 'flamingo' );
$fields = flamingo_array_flatten( $this->fields );
$fields = array_filter( array_map( 'trim', $fields ) );
$post_content = implode( "\n", $fields );
$post_status = $this->spam ? self::spam_status : 'publish';
$postarr = array(
'ID' => absint( $this->id ),
'post_type' => self::post_type,
'post_status' => $post_status,
'post_title' => $post_title,
'post_content' => $post_content );
$post_id = wp_insert_post( $postarr );
if ( $post_id ) {
$this->id = $post_id;
update_post_meta( $post_id, '_subject', $this->subject );
update_post_meta( $post_id, '_from', $this->from );
update_post_meta( $post_id, '_from_name', $this->from_name );
update_post_meta( $post_id, '_from_email', $this->from_email );
foreach ( $this->fields as $key => $value ) {
$meta_key = sanitize_key( '_field_' . $key );
update_post_meta( $post_id, $meta_key, $value );
$this->fields[$key] = null;
}
update_post_meta( $post_id, '_fields', $this->fields );
update_post_meta( $post_id, '_meta', $this->meta );
update_post_meta( $post_id, '_akismet', $this->akismet );
if ( term_exists( $this->channel, self::channel_taxonomy ) )
wp_set_object_terms( $this->id, $this->channel, self::channel_taxonomy );
}
return $post_id;
}
public function trash() {
if ( empty( $this->id ) )
return;
if ( ! EMPTY_TRASH_DAYS )
return $this->delete();
$post = wp_trash_post( $this->id );
return (bool) $post;
}
public function untrash() {
if ( empty( $this->id ) )
return;
$post = wp_untrash_post( $this->id );
return (bool) $post;
}
public function delete() {
if ( empty( $this->id ) )
return;
if ( $post = wp_delete_post( $this->id, true ) )
$this->id = 0;
return (bool) $post;
}
public function spam() {
if ( $this->spam ) {
return;
}
$this->akismet_submit_spam();
$this->spam = true;
return $this->save();
}
public function akismet_submit_spam() {
if ( empty( $this->id ) || empty( $this->akismet ) )
return;
if ( isset( $this->akismet['spam'] ) && $this->akismet['spam'] )
return;
if ( empty( $this->akismet['comment'] ) )
return;
if ( flamingo_akismet_submit_spam( $this->akismet['comment'] ) ) {
$this->akismet['spam'] = true;
update_post_meta( $this->id, '_akismet', $this->akismet );
return true;
}
}
public function unspam() {
if ( ! $this->spam ) {
return;
}
$this->akismet_submit_ham();
$this->spam = false;
return $this->save();
}
public function akismet_submit_ham() {
if ( empty( $this->id ) || empty( $this->akismet ) )
return;
if ( isset( $this->akismet['spam'] ) && ! $this->akismet['spam'] )
return;
if ( empty( $this->akismet['comment'] ) )
return;
if ( flamingo_akismet_submit_ham( $this->akismet['comment'] ) ) {
$this->akismet['spam'] = false;
update_post_meta( $this->id, '_akismet', $this->akismet );
return true;
}
}
}