suretriggers
/
src
/
Integrations
/
support-portal-for-surecart
/
triggers
/
support-ticket-status-changed.php
new-email-message-fetched.php
1 year ago
new-message-sent.php
1 year ago
new-support-ticket-created.php
1 year ago
support-ticket-status-changed.php
1 year ago
tickets-marked-as-closed.php
1 year ago
tickets-marked-as-open.php
1 year ago
support-ticket-status-changed.php
128 lines
| 1 | <?php |
| 2 | /** |
| 3 | * SupportTicketStatusChanged. |
| 4 | * php version 5.6 |
| 5 | * |
| 6 | * @category SupportTicketStatusChanged |
| 7 | * @package SureTriggers |
| 8 | * @author BSF <username@example.com> |
| 9 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 |
| 10 | * @link https://www.brainstormforce.com/ |
| 11 | * @since 1.0.0 |
| 12 | */ |
| 13 | |
| 14 | namespace SureTriggers\Integrations\SupportPortalForSureCart\Triggers; |
| 15 | |
| 16 | use SureTriggers\Controllers\AutomationController; |
| 17 | use SureTriggers\Integrations\WordPress\WordPress; |
| 18 | use SureTriggers\Traits\SingletonLoader; |
| 19 | use Surelywp_Support_Portal; |
| 20 | |
| 21 | if ( ! class_exists( 'SupportTicketStatusChanged' ) ) : |
| 22 | |
| 23 | /** |
| 24 | * SupportTicketStatusChanged |
| 25 | * |
| 26 | * @category SupportTicketStatusChanged |
| 27 | * @package SureTriggers |
| 28 | * @author BSF <username@example.com> |
| 29 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 |
| 30 | * @link https://www.brainstormforce.com/ |
| 31 | * @since 1.0.0 |
| 32 | * |
| 33 | * @psalm-suppress UndefinedTrait |
| 34 | */ |
| 35 | class SupportTicketStatusChanged { |
| 36 | |
| 37 | |
| 38 | /** |
| 39 | * Integration type. |
| 40 | * |
| 41 | * @var string |
| 42 | */ |
| 43 | public $integration = 'SupportPortalForSureCart'; |
| 44 | |
| 45 | |
| 46 | /** |
| 47 | * Trigger name. |
| 48 | * |
| 49 | * @var string |
| 50 | */ |
| 51 | public $trigger = 'sps_support_ticket_status_changed'; |
| 52 | |
| 53 | use SingletonLoader; |
| 54 | |
| 55 | |
| 56 | /** |
| 57 | * Constructor |
| 58 | * |
| 59 | * @since 1.0.0 |
| 60 | */ |
| 61 | public function __construct() { |
| 62 | add_filter( 'sure_trigger_register_trigger', [ $this, 'register' ] ); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Register action. |
| 67 | * |
| 68 | * @param array $triggers trigger data. |
| 69 | * @return array |
| 70 | */ |
| 71 | public function register( $triggers ) { |
| 72 | |
| 73 | $triggers[ $this->integration ][ $this->trigger ] = [ |
| 74 | 'label' => __( 'Support Ticket Status Changed', 'suretriggers' ), |
| 75 | 'action' => $this->trigger, |
| 76 | 'common_action' => 'surelywp_sp_support_status_update', |
| 77 | 'function' => [ $this, 'trigger_listener' ], |
| 78 | 'priority' => 10, |
| 79 | 'accepted_args' => 2, |
| 80 | ]; |
| 81 | return $triggers; |
| 82 | |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Trigger listener |
| 87 | * |
| 88 | * @param int $support_id Support ID. |
| 89 | * @param string $status Status. |
| 90 | * @since 1.0.0 |
| 91 | * |
| 92 | * @return void |
| 93 | */ |
| 94 | public function trigger_listener( $support_id, $status ) { |
| 95 | if ( ! class_exists( 'Surelywp_Support_Portal' ) ) { |
| 96 | return; |
| 97 | } |
| 98 | global $wpdb; |
| 99 | $result = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}surelywp_sp_support WHERE support_id = %d AND support_status LIKE %s", $support_id, $status ), ARRAY_A ); |
| 100 | $support_res = $wpdb->get_results( $wpdb->prepare( "SELECT field_label, field_value FROM {$wpdb->prefix}surelywp_sp_support_form_fields WHERE support_id = %d", $support_id ), ARRAY_A ); |
| 101 | $support_data = [ |
| 102 | 'support_id' => $result['support_id'], |
| 103 | 'order_id' => $result['order_id'], |
| 104 | 'product_id' => $result['product_id'], |
| 105 | 'support_title' => $result['support_title'], |
| 106 | 'support_status' => Surelywp_Support_Portal::surelywp_sp_get_support_status( $status ), |
| 107 | 'support_data' => $support_res, |
| 108 | ]; |
| 109 | $context = array_merge( $support_data, WordPress::get_user_context( $result['user_id'] ) ); |
| 110 | AutomationController::sure_trigger_handle_trigger( |
| 111 | [ |
| 112 | 'trigger' => $this->trigger, |
| 113 | 'context' => $context, |
| 114 | ] |
| 115 | ); |
| 116 | |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Ignore false positive |
| 122 | * |
| 123 | * @psalm-suppress UndefinedMethod |
| 124 | */ |
| 125 | SupportTicketStatusChanged::get_instance(); |
| 126 | |
| 127 | endif; |
| 128 |