403Webshell
Server IP : 62.60.133.156  /  Your IP : 216.73.217.51
Web Server : LiteSpeed
System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User : mimradmin ( 1166)
PHP Version : 7.4.33
Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : OFF |  Pkexec : OFF
Directory :  /proc/thread-self/cwd/wp-content/plugins/persian-woocommerce-sms/src/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /proc/thread-self/cwd/wp-content/plugins/persian-woocommerce-sms/src/MetaBox.php
<?php

namespace PW\PWSMS;

use PW\PWSMS\Subscribe\Contacts;
use PWS_SMS;
use WC_Order;

defined( 'ABSPATH' ) || exit;

class MetaBox {

	private $enable_metabox = false;
	private $enable_notification = false;
	private $enable_product_admin_sms = false;

	public function __construct() {

		if ( ! is_admin() ) {
			return;
		}

		$this->enable_metabox           = PWSMS()->get_option( 'enable_metabox' );//سفارش - مشتری
		$this->enable_notification      = PWSMS()->get_option( 'enable_notif_sms_main' );//خبرنامه
		$this->enable_product_admin_sms = PWSMS()->get_option( 'enable_product_admin_sms' );//مدیر محصول

		if ( $this->enable_metabox || $this->enable_notification || $this->enable_product_admin_sms ) {
			add_action( 'add_meta_boxes', [ $this, 'send_sms_metabox' ] );
			add_action( 'add_meta_boxes', [ $this, 'send_post_tracking_code_metabox' ] );

			add_action( 'wp_ajax_pwoosms_metabox', [ $this, 'send_sms_ajax_callback' ] );
		}
	}

	/**
	 * Sends the post tracking code to user in order
	 *
	 */
	public function send_post_tracking_code_metabox() {
		$screen = PWSMS()->is_wc_order_hpos_enabled() ? wc_get_page_screen_id( 'shop-order' ) : 'shop_order';


		add_meta_box( 'send_post_tracking_code_to_buyer', 'ارسال کد رهگیری پستی', [
			$this,
			'send_post_tracking_code_metabox_html',
		], [
			'shop_order',
			$screen,
		], 'side', 'high' );

	}

	public function send_post_tracking_code_metabox_html( $post_or_order_object ) {
		$order_id = $post_or_order_object instanceof WC_Order ? $post_or_order_object->get_id() : $post_or_order_object->ID;

		$mobile = PWSMS()->buyer_mobile( $order_id );

		if ( empty( $mobile ) ) {
			echo '<p>شماره ای برای ارسال پیامک وجود ندارد.</p>';

			return;
		}

		if ( ! PWSMS()->validate_mobile( $mobile ) ) {
			echo '<p>شماره موبایل مشتری معتبر نیست.</p>';

			return;
		}
		?>
		<style>
            #send_post_tracking_code_to_buyer #pwoosms_message {
                height: 30px !important;
            }

            #send_post_tracking_code_to_buyer .select2 {
                width: 100% !important;
            }

		</style>
		<?php
		ob_start(); ?>
		<p>
			<label for="select_group">ارائه دهنده خدمات پست</label><br>
			<select name="select_group" class="wc-enhanced-select" id="select_group" style="width: 100%;">
				<option value="https://tracking.post.ir/">شرکت ملی پست</option>
				<option value="https://tipaxco.com/tracking">تیپاکس</option>
			</select>
		</p>
		<br>
		<?php
		$html_below = ob_get_clean();

		$this->metabox_html( $order_id, 'shop_order', '<p>کد رهگیری</p>', $html_below );
	}


	public function send_sms_metabox() {

		if ( $this->enable_metabox ) {
			$screen = PWSMS()->is_wc_order_hpos_enabled() ? wc_get_page_screen_id( 'shop-order' ) : 'shop_order';


			add_meta_box( 'send_sms_to_buyer', 'ارسال پیامک به مشتری', [
				$this,
				'order_metabox_html',
			], [
				'shop_order',
				$screen,
			], 'side', 'high' );

		}

		if ( $this->enable_notification || $this->enable_product_admin_sms ) {

			add_meta_box( 'send_sms_to_buyer', 'ارسال پیامک به مشترکین این محصول', [
				$this,
				'product_metabox_html',
			], 'product', 'side', 'high' );

		}
	}

	public function send_sms_ajax_callback() {

		check_ajax_referer( 'pwoosms_metabox', 'security' );

		if ( empty( $_POST['post_id'] ) || empty( $_POST['post_type'] ) ) {
			wp_send_json_error( [ 'message' => 'خطای ایجکس رخ داده است.' ] );
		}

		$message = sanitize_text_field( $_POST['message'] ?? '' );

		switch ( $_POST['post_type'] ) {

			case 'shop_order':
				if ( isset( $_POST['group'] ) ) { // Tracking post code action
					$this->order_post_tracking_metabox_result( intval( $_POST['post_id'] ), $message, sanitize_text_field( $_POST['group'] ?? '' ) );
				} else { // Normal SMS sending
					$this->order_metabox_result( intval( $_POST['post_id'] ), $message );
				}
				break;

			case 'product':
				$this->product_metabox_result( intval( $_POST['post_id'] ), $message, sanitize_text_field( $_POST['group'] ?? '' ) );
				break;

			default:
				wp_send_json_error( [ 'message' => 'خطای ایجکس رخ داده است.' ] );
		}
	}

	public function order_post_tracking_metabox_result( $order_id, $tracking_code, $group ) {
		$order = wc_get_order( $order_id );

		if ( ! PWSMS()->is_wc_order( $order ) ) {
			return;
		}

		$mobile  = PWSMS()->buyer_mobile( $order_id );
		$message = PWSMS()->get_option( 'sms_body_set-post-tracking-code' );

		$data = [
			'post_id' => $order_id,
			'type'    => 3,
			'mobile'  => $mobile,
			'message' => PWSMS()->replace_short_codes( $message, 'set-post-tracking-code', $order, [ 'post_tracking_code' => $tracking_code, 'post_tracking_url' => $group ] ),
		];

		if ( ( $result = PWSMS()->send_sms( $data ) ) === true ) {

			$order->add_order_note( sprintf( 'پیامک با موفقیت به مشتری با شماره موبایل %s ارسال شد.<br>متن پیامک: %s', $mobile, $message ) );
			wp_send_json_success( [
				'message'    => 'پیامک با موفقیت ارسال شد.',
				'order_note' => PWSMS()->order_note_metabox( $order ),
			] );

		} else {

			$order->add_order_note( sprintf( 'پیامک به مشتری با شماره موبایل %s ارسال نشد.<br>متن پیامک: %s<br>پاسخ وبسرویس: %s', $mobile, $message, $result ) );
			wp_send_json_error( [
				'message'    => sprintf( 'ارسال پیامک با خطا مواجه شد. %s', $result ),
				'order_note' => PWSMS()->order_note_metabox( $order ),
			] );

		}
	}

	public function order_metabox_result( $order_id, $message ) {

		$order = wc_get_order( $order_id );

		if ( ! PWSMS()->is_wc_order( $order ) ) {
			return;
		}

		$mobile = PWSMS()->buyer_mobile( $order_id );

		$data = [
			'post_id' => $order_id,
			'type'    => 3,
			'mobile'  => $mobile,
			'message' => $message,
		];

		if ( ( $result = PWSMS()->send_sms( $data ) ) === true ) {

			$order->add_order_note( sprintf( 'پیامک با موفقیت به مشتری با شماره موبایل %s ارسال شد.<br>متن پیامک: %s', $mobile, $message ) );
			wp_send_json_success( [
				'message'    => 'پیامک با موفقیت ارسال شد.',
				'order_note' => PWSMS()->order_note_metabox( $order ),
			] );

		} else {

			$order->add_order_note( sprintf( 'پیامک به مشتری با شماره موبایل %s ارسال نشد.<br>متن پیامک: %s<br>پاسخ وبسرویس: %s', $mobile, $message, $result ) );
			wp_send_json_error( [
				'message'    => sprintf( 'ارسال پیامک با خطا مواجه شد. %s', $result ),
				'order_note' => PWSMS()->order_note_metabox( $order ),
			] );

		}
	}

	/*سفارش*/

	public function product_metabox_result( int $product_id, string $message, string $group ) {

		if ( empty( $group ) ) {
			wp_send_json_error( [ 'message' => 'یک گروه برای دریافت پیامک انتخاب کنید.' ] );
		}

		if ( $group == '_product_admins' ) {
			$type    = 6;
			$mobiles = array_keys( PWSMS()->product_admin_mobiles( $product_id ) );
		} else {

			switch ( $group ) {

				case '_onsale'://حراج
					$type = 10;
					break;

				case '_in'://موجود شدن
					$type = 12;
					break;

				case '_low'://کم بودن موجودی
					$type = 14;
					break;

				default:
					$type = 15;
			}

			$mobiles = Contacts::get_contacts_mobile( $product_id, $group );
		}

		$data = [
			'post_id' => $product_id,
			'type'    => $type,
			'mobile'  => $mobiles,
			'message' => $message,
		];

		if ( ( $result = PWSMS()->send_sms( $data ) ) === true ) {
			wp_send_json_success( [
				'message' => sprintf( 'پیامک با موفقیت به %s شماره موبایل ارسال شد.', count( $mobiles ) )
			] );
		} else {
			wp_send_json_error( [ 'message' => sprintf( 'ارسال پیامک با خطا مواجه شد. %s', $result ) ] );
		}
	}

	public function order_metabox_html( $post_or_order_object ) {
		$order_id = $post_or_order_object instanceof WC_Order ? $post_or_order_object->get_id() : $post_or_order_object->ID;

		$mobile = PWSMS()->buyer_mobile( $order_id );

		if ( empty( $mobile ) ) {
			echo '<p>شماره ای برای ارسال پیامک وجود ندارد.</p>';

			return;
		}

		if ( ! PWSMS()->validate_mobile( $mobile ) ) {
			echo '<p>شماره موبایل مشتری معتبر نیست.</p>';

			return;
		}

		$this->metabox_html( $order_id, 'shop_order', sprintf( '<p>ارسال پیامک به شماره %s</p>', $mobile ) );
	}

	/*محصول*/

	private function metabox_html( int $post_id, $post_type, $html_above = '', $html_below = '' ) { ?>

		<div id="pwoosms_metabox_result"></div>

		<?php
		$safemetabox = [
			'a'        => [ 'href' => true, 'title' => true, 'target' => true ],
			'p'        => [],
			'select'   => [ 'id' => true, 'class' => true ],
			'option'   => [ 'value' => true ],
			'label'    => [ 'for' => true ],
			'optgroup' => [
				'label' => true,
			],


		];

		echo wp_kses( $html_above, $safemetabox );


		?>

		<p>
            <textarea rows="5" cols="20" class="input-text" id="pwoosms_message"
                      name="pwoosms_message" style="width: 100%; height: 78px;" title=""></textarea>
		</p>

		<?php echo wp_kses( $html_below, $safemetabox ); ?>

		<div class="wide" id="pwoosms_divider" style="text-align: left">
			<input type="submit" class="pwoosms_submit button save_order button-primary" name="pwoosms_submit"
			       id="pwoosms_submit" value="ارسال پیامک">
		</div>

		<div class="pwoosms_loading">
			<img src="<?php echo PWSMS_URL . '/assets/images/ajax-loader.gif'; ?>">
		</div>

		<style type="text/css">
            .pwoosms_loading {
                position: absolute;
                background: rgba(255, 255, 255, 0.5);
                top: 0;
                left: 0;
                z-index: 9999;
                display: none;
                width: 100%;
                height: 100%;
            }

            .pwoosms_loading img {
                position: absolute;
                top: 40%;
                left: 47%;
            }

            #pwoosms_metabox_result {
                padding: 6px;
                width: 93%;
                display: none;
                border-radius: 2px;
                border: 1px solid #fff;
            }

            #pwoosms_metabox_result.success {
                color: #155724;
                background-color: #d4edda;
                border-color: #c3e6cb;
            }

            #pwoosms_metabox_result.fault {
                color: #721c24;
                background-color: #f8d7da;
                border-color: #f5c6cb;
            }

            #pwoosms_divider {
                width: 100%;
                border-top: 1px solid #e9e9e9;
                padding-top: 5px;
            }
		</style>

		<script type="text/javascript">

            jQuery(document).ready(function ($) {
                $('.pwoosms_submit').unbind().click(function (e) {
                    e.preventDefault();
                    var notes = $('#woocommerce-order-notes .inside');

                    var post_type = '<?php echo esc_attr( $post_type ); ?>';
                    var loading = $(this).closest('.postbox').find('.pwoosms_loading');
                    loading.show();
                    loading.clone().prependTo(notes);
                    var result = $(this).closest('.postbox').find('#pwoosms_metabox_result');

                    var pwsms_ajax_data = {
                        action: 'pwoosms_metabox',
                        security: '<?php echo wp_create_nonce( 'pwoosms_metabox' );?>',
                        post_id: '<?php echo intval( $post_id );?>',
                        post_type: post_type,
                        message: $(this).closest('.postbox').find('#pwoosms_message').val(),
                        group: $(this).closest('.postbox').find('#select_group').val()
                    };

                    result.removeClass('fault', 'success');
                    $(this).attr('disabled', true);

                    $.post('<?php echo admin_url( "admin-ajax.php" );?>', pwsms_ajax_data, function (res) {
                        result.addClass(res.success ? 'success' : 'fault').html(res.data.message).show();
                        $(this).attr('disabled', false);
                        if (typeof res.data.order_note != "undefined" && res.data.order_note.length) {
                            notes.html(res.data.order_note);
                        }
                        loading.hide();
                    });
                });
            });

		</script>

		<?php
	}

	public function product_metabox_html( $post ) {

		$product_id = $post->ID;

		ob_start(); ?>
		<p>
			<label for="select_group">ارسال پیامک به:</label><br>
			<select name="select_group" class="wc-enhanced-select regular-input" id="select_group" style="width: 100% !important;">

				<?php if ( $this->enable_product_admin_sms ) { ?>
					<option value="_product_admins">به مدیران این محصول</option>
				<?php }

				if ( $this->enable_notification ) {

					$groups = Contacts::get_groups( $product_id, false, true );

					if ( ! empty( $groups ) ) { ?>
						<optgroup label="به مشترکین گروه های زیر:">
							<?php foreach ( $groups as $code => $text ) { ?>
								<option
									value="<?php echo esc_attr( $code ); ?>"><?php echo esc_attr( $text ); ?></option>
							<?php } ?>
						</optgroup>
					<?php }
				}
				?>

			</select>
		</p>
		<?php
		$html_above = ob_get_clean();

		$html_below = '';
		if ( $this->enable_notification ) {
			$contact_url = admin_url( 'admin.php?page=persian-woocommerce-sms-pro&tab=contacts&product_id=' . $product_id );
			$html_below  = '<p><a style="text-decoration: none" href="' . $contact_url . '" target="_blank">مشاهده مشترکین خبرنامه این محصول</a></p>';
		}

		$this->metabox_html( $product_id, 'product', $html_above, $html_below );
	}

}

Youez - 2016 - github.com/yon3zu