* @copyright Copyright (C) 2019 wpopal.com. All Rights Reserved. * @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html * * @website http://www.wpopal.com * @support http://www.wpopal.com/support/forum.html */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } if ( ! session_id() ) { @session_start(); } /** * @class OpalEstate_Submission * * @version 1.0 */ class OpalEstate_Submission { /** * * */ public $metabox; /** * * */ public $new_attachmenet_ids = array(); /** * Constructor */ public function __construct() { /** * Can not use $this->is_submission_page() || use 'wp_enqueue_scripts' here * because inside this hook global $post == null */ add_action( 'wp_head', [ $this, 'head_check_page' ] ); add_action( 'cmb2_after_init', [ $this, 'process_submission' ], 10000 ); add_action( 'opalestate_single_property_before', [ $this, 'render_button_edit' ] ); if ( is_admin() ) { add_filter( 'opalestate_settings_tabs', [ $this, 'setting_content_tab' ] ); add_filter( 'opalestate_registered_submission_page_settings', [ $this, 'setting_content_fields' ] ); } add_action( 'opalestate_user_content_submission_list_page', [ $this, 'submission_list' ] ); add_action( 'opalestate_user_content_submission_page', [ $this, 'submission' ] ); add_action( 'wp_enqueue_scripts', [ $this, 'scripts_styles' ], 99 ); $this->register_shortcodes(); } /** * Save post. */ public function scripts_styles() { wp_register_style( 'opalesate-submission', OPALESTATE_PLUGIN_URL . 'assets/submission.css' ); wp_register_style( 'opalesate-cmb2-front', OPALESTATE_PLUGIN_URL . 'assets/cmb2-front.css' ); wp_register_script( 'opalestate-submission', OPALESTATE_PLUGIN_URL . 'assets/js/frontend/submission.js', [ 'jquery', ], '1.0', true ); } /* * Is submission page. 'submission_page' option in General Setting */ public function register_shortcodes() { $shortcodes = [ 'submission' => [ 'code' => 'submission', 'label' => esc_html__( 'Submission Form', 'opalestate-pro' ), ], 'submission_list' => [ 'code' => 'submission_list', 'label' => esc_html__( 'My Properties', 'opalestate-pro' ), ] ]; foreach ( $shortcodes as $shortcode ) { add_shortcode( 'opalestate_' . $shortcode['code'], [ $this, $shortcode['code'] ] ); } } /* * Is submission page. 'submission_page' option in General Setting */ public function setting_content_tab( $tabs ) { $tabs['submission_page'] = esc_html__( 'Submission Page', 'opalestate-pro' ); return $tabs; } /* * Is submission page. 'submission_page' option in General Setting */ public function setting_content_fields( $fields = [] ) { $fields = [ 'id' => 'submission_page', 'title' => esc_html__( 'Email Settings', 'opalestate-pro' ), 'show_on' => [ 'key' => 'options-page', 'value' => [ 'opalestate_settings' ], ], 'fields' => apply_filters( 'opalestate_settings_submission', [ [ 'name' => esc_html__( 'Submission Page Settings', 'opalestate-pro' ), 'id' => 'opalestate_title_submission_page_settings', 'type' => 'title', 'after_row' => '
[opalestate_submission]
shortcode should be on this page.', 'opalestate-pro' ),
'id' => 'submission_page',
'type' => 'select',
'options' => opalestate_cmb2_get_post_options( [
'post_type' => 'page',
'numberposts' => -1,
] ),
],
[
'name' => esc_html__( 'Show Content Use Not Login', 'opalestate-pro' ),
'desc' => esc_html__( 'Show Login/Register form and submission form if user not logined', 'opalestate-pro' ),
'id' => 'submission_show_content',
'type' => 'select',
'default' => '',
'options' => [
'' => esc_html__( 'Show Login Form', 'opalestate-pro' ),
'login_submission' => esc_html__( 'Show Login Form and Submission Form', 'opalestate-pro' ),
],
],
[
'name' => esc_html__( 'Enable Admin Approve', 'opalestate-pro' ),
'desc' => esc_html__( 'the Property will be auto approve when user submit, if you do not enable it.', 'opalestate-pro' ),
'id' => 'admin_approve',
'type' => 'checkbox',
],
[
'name' => esc_html__( 'Enable Require Price', 'opalestate-pro' ),
'desc' => esc_html__( 'Enable or Disable require user enter price and price label.', 'opalestate-pro' ),
'id' => 'require_input_price',
'type' => 'checkbox',
],
[
'name' => esc_html__( 'Submission Tab Settings', 'opalestate-pro' ),
'id' => 'opalestate_title_submission_tab_settings',
'type' => 'title',
'before_row' => '' ) : '';
$data = [
'post_title' => sanitize_text_field( $_POST[ $prefix . 'title' ] ),
'post_author' => $user_id,
'post_status' => $post_status,
'post_type' => 'opalestate_property',
'post_date' => $post_date,
'post_content' => $post_content,
];
$unset_fields = [
'text',
'title',
'post_type',
];
unset( $_POST['post_type'] );
foreach ( $unset_fields as $field ) {
unset( $_POST[ $prefix . $field ] );
}
if ( ! empty( $post_id ) ) {
$edit = true;
$data['ID'] = $post_id;
do_action( 'opalestate_process_edit_submission_before' );
} else {
do_action( 'opalestate_process_add_submission_before' );
}
if ( empty( $data['post_title'] ) || empty( $data['post_author'] ) ) {
return opalestate_output_msg_json( false,
__( 'Please enter data for all require fields before submitting', 'opalestate-pro' ),
array(
'heading' => esc_html__('Submission Information' ,'opalestate-pro')
)) ;
}
$post_id = wp_insert_post( $data, true );
if ( ! empty( $post_id ) && ! empty( $_POST['object_id'] ) ) {
$_POST['object_id'] = (int) $post_id;
$metaboxes = apply_filters( 'cmb2_meta_boxes', [] );
/*
* Processing upload files
*/
$this->process_upload_files( $post_id, $_POST );
/**
* Fetch sanitized values
*/
cmb2_get_metabox_form( $metaboxes[ $prefix. 'front' ], $post_id );
$cmb = $this->cmb2_get_metabox();
$sanitized_values = $cmb->get_sanitized_values( $_POST );
$cmb->save_fields( $post_id, 'post', $sanitized_values );
// Create featured image
$featured_image = get_post_meta( $post_id, $prefix . 'featured_image', true );
if ( ! empty( $_POST[ $prefix . 'featured_image' ] ) && isset( $_POST[ $prefix . 'featured_image' ] ) ) {
foreach( $_POST[ $prefix . 'featured_image' ] as $key => $value ) {
set_post_thumbnail( $post_id, $key );
}
unset( $_POST[ $prefix . 'featured_image' ] );
} else {
delete_post_thumbnail( $post_id );
}
// remove meta field;
update_post_meta( $post_id, $prefix . 'featured_image', null );
//redirect
$_SESSION['messages'][] = [ 'success', esc_html__( 'Property has been successfully updated.', 'opalestate-pro' ) ];
do_action( "opalestate_process_submission_after", $user_id, $post_id, $edit );
if ( $edit ) {
$type = OpalEstate()->session->set( 'submission' , 'edit' );
$message = esc_html__('The property has updated completed with new information', 'opalestate-pro' );
do_action( "opalestate_processed_edit_submission", $user_id, $post_id );
} else {
$type = OpalEstate()->session->get( 'submission' , 'addnew' );
$message = esc_html__('You have submitted the property successful', 'opalestate-pro' );
do_action( "opalestate_processed_new_submission", $user_id, $post_id );
}
// set ready of attachment for use.
if( $this->new_attachmenet_ids ){
foreach ( $this->new_attachmenet_ids as $_id ) {
delete_post_meta( $_id, '_pending_to_use_', 1 );
}
}
//
return opalestate_output_msg_json( true,
$message,
array(
'heading' => esc_html__('Submission Information' ,'opalestate-pro'),
'redirect' => opalestate_submssion_page( $post_id, array('do' => 'completed') )
)) ;
}
} else {
return opalestate_output_msg_json( fales,
__('Currently, your account was blocked, please keep contact admin to resolve this!.', 'opalestate-pro' ),
array('heading' => esc_html__('Submission Information' ,'opalestate-pro') )
) ;
}
}
return opalestate_output_msg_json( fales,
__('Sorry! Your submitted datcould not save a at this time', 'opalestate-pro' ),
array('heading' => esc_html__('Submission Information', 'opalestate-pro') )
) ;
}
}
/**
*
*
*/
private function get_field_name( $field ){
return OPALESTATE_PROPERTY_PREFIX.$field;
}
/**
*
*
*/
private function process_upload_files ( $post_id ) {
//upload images for featured and gallery images
if( isset($_FILES) && !empty($_FILES) ){
///
$fields = array(
$this->get_field_name('gallery'),
$this->get_field_name('featured_image'),
);
foreach( $_FILES as $key => $value ) {
// allow processing in fixed collection
if( in_array($key, $fields) ){
$ufile = $_FILES[$key];
/// /////
if( isset( $ufile['name'] ) && is_array( $ufile['name'] ) ){
$output = array();
foreach ( $ufile['name'] as $f_key => $f_value ) {
$loop_file = array(
'name' => $ufile['name'][$f_key],
'type' => $ufile['type'][$f_key],
'tmp_name' => $ufile['tmp_name'][$f_key],
'error' => $ufile['error'][$f_key],
'size' => $ufile['size'][$f_key]
);
$new_atm = $this->upload_image( $loop_file, $post_id );
if( $new_atm ){
$_POST[$key] = isset($_POST[$key]) ? $_POST[$key] : array();
$_POST[$key][$new_atm['attachment_id']] = $new_atm['url'];
$this->new_attachmenet_ids[$new_atm['attachment_id']] = $new_atm['attachment_id'];
}
}
}
///
elseif( isset($ufile['name']) ) {
$new_atm = $this->upload_image( $ufile, $post_id );
if( $new_atm ){
$_POST[$key][$new_atm['attachment_id']] = $new_atm['url'];
$this->new_attachmenet_ids[$new_atm['attachment_id']] = $new_atm['attachment_id'];
}
}
//// / //
}
}
// for group files
$fields = array(
$this->get_field_name('public_floor_group')
);
foreach( $_FILES as $key => $value ) {
if( in_array($key, $fields) ){
$ufile = $_FILES[$key];
if( isset( $ufile['name'] ) && is_array( $ufile['name'] ) ){
$output = array();
foreach ( $ufile['name'] as $f_key => $f_value ) {
foreach( $f_value as $u_key => $u_v ) {
$loop_file = array(
'name' => $ufile['name'][$f_key][$u_key],
'type' => $ufile['type'][$f_key][$u_key],
'tmp_name' => $ufile['tmp_name'][$f_key][$u_key],
'error' => $ufile['error'][$f_key][$u_key],
'size' => $ufile['size'][$f_key][$u_key]
);
$new_atm = $this->upload_image( $loop_file, $post_id );
if( $new_atm ){
$_POST[$key][$f_key][$u_key] = $new_atm['attachment_id'];
$this->new_attachmenet_ids[$new_atm['attachment_id']] = $new_atm['attachment_id'];
}
}
}
}
}
}
}
}
/**
* Process upload images for properties
*/
public function upload_image( $submitted_file, $parent_id=0 ){
return opalesate_upload_image( $submitted_file, $parent_id );
}
/**
* FrontEnd Submission
*/
private function cleanup() {
$user_id = get_current_user_id();
opalestate_clean_attachments( $user_id );
}
/**
* FrontEnd Submission
*/
public function submission_list() {
if ( ! is_user_logged_in() ) {
echo opalestate_load_template_path( 'parts/not-allowed' );
return;
}
if ( isset( $_GET['id'] ) && isset( $_GET['remove'] ) ) {
$is_allowed = Opalestate_Property::is_allowed_remove( get_current_user_id(), intval( $_GET['id'] ) );
if ( ! $is_allowed ) {
echo opalestate_load_template_path( 'parts/not-allowed' );
return;
}
if ( wp_delete_post( intval( $_GET['id'] ) ) ) {
$_SESSION['messages'][] = [ 'success', esc_html__( 'Property has been successfully removed.', 'opalestate-pro' ) ];
} else {
$_SESSION['messages'][] = [ 'danger', esc_html__( 'An error occured when removing an item.', 'opalestate-pro' ) ];
}
wp_redirect( opalestate_submssion_list_page() );
}
$args = [];
if ( isset( $_GET['status'] ) && ! empty( $_GET['status'] ) ) {
$args['post_status'] = sanitize_text_field( $_GET['status'] );
}
$loop = Opalestate_Query::get_properties_by_user( $args, get_current_user_id() );
return opalestate_load_template_path( 'user/my-properties', [ 'loop' => $loop ] );
}
}
new OpalEstate_Submission();