AnonSec Shell
Server IP : 104.21.14.48  /  Your IP : 3.144.46.75   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/mu-plugins/vendor/wptool/wp-admin-dash/src/adminDash/services/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/mu-plugins/vendor/wptool/wp-admin-dash/src/adminDash/services/SupportService.php
<?php

namespace Wptool\adminDash\services;

use Wptool\adminDash\exceptions\AdminDashException;
use Wptool\adminDash\exceptions\SupportRequestFailedException;
use Wptool\adminDash\utils\Configuration;

class SupportService {

	private $api_url;

	public function __construct() {
		$this->api_url = Configuration::get( 'support_api_url' );
	}
	/**
	 * Sends POST API request in order to create support request.
	 *
	 * @param $params
	 *
	 * @return array
	 * @throws AdminDashException|SupportRequestFailedException
	 */
	public function send_support_request( $params ) {

		$data = $this->format_support_request_data( $params );

		$response = wp_remote_post(
			$this->api_url . '/support/request',
			array(
				'body' => array(
					'from' => $params['reply_to'],
					'data' => $data,
				),
			)
		);

		if ( is_wp_error( $response ) ) {
			throw new SupportRequestFailedException( $response->get_error_message() );
		}

		return array(
			'reason'   => $params['reason'],
			'reply_to' => $params['reply_to'],
			'subject'  => $params['subject'],
			'message'  => $params['message'],
		);

	}


	/**
	 * Formatting support request data.
	 *
	 * @param $params
	 *
	 * @return array
	 * @throws AdminDashException
	 */
	private function format_support_request_data( $params ) {

		return array(
			'ticket'              => array(
				'subject'     => $params['subject'],
				'description' => $params['message'],
			),
			'customer'            => array(
				'name'  => wp_get_current_user()->name,
				'email' => $params['reply_to'],
			),
			'reason'              => $params['reason'],
			'support_bot_context' => $this->is_reseller() ? 'reseller' : 'godaddy',
			//          'system_status_report' => '',
			'mwp'                 => array(
				'is_reseller' => $this->is_reseller(),
				'plan'        => array(
					'type' => defined( 'GD_PLAN_NAME' ) ? GD_PLAN_NAME : null,
				),
			),
		);
	}

	/**
	 * Checks if account is reseller.
	 *
	 * @return bool
	 */
	private function is_reseller() {
		return defined( 'GD_RESELLER' ) && GD_RESELLER > 1;
	}
}

Anon7 - 2022
AnonSec Team