403Webshell
Server IP : 104.21.14.103  /  Your IP : 3.137.223.255
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/proc/thread-self/root/proc/self/root/proc/self/root/proc/thread-self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/Automation/Engine/Endpoints/Automations/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/proc/thread-self/root/proc/self/root/proc/self/root/proc/thread-self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/Automation/Engine/Endpoints/Automations/AutomationsDuplicateEndpoint.php
<?php declare(strict_types = 1);

namespace MailPoet\Automation\Engine\Endpoints\Automations;

if (!defined('ABSPATH')) exit;


use MailPoet\API\REST\Request;
use MailPoet\API\REST\Response;
use MailPoet\Automation\Engine\API\Endpoint;
use MailPoet\Automation\Engine\Builder\DuplicateAutomationController;
use MailPoet\Automation\Engine\Mappers\AutomationMapper;
use MailPoet\Validator\Builder;

class AutomationsDuplicateEndpoint extends Endpoint {
  /** @var AutomationMapper */
  private $automationMapper;

  /** @var DuplicateAutomationController */
  private $duplicateController;

  public function __construct(
    DuplicateAutomationController $duplicateController,
    AutomationMapper $automationMapper
  ) {
    $this->automationMapper = $automationMapper;
    $this->duplicateController = $duplicateController;
  }

  public function handle(Request $request): Response {
    $automationId = intval($request->getParam('id'));
    $duplicate = $this->duplicateController->duplicateAutomation($automationId);
    return new Response($this->automationMapper->buildAutomation($duplicate));
  }

  public static function getRequestSchema(): array {
    return [
      'id' => Builder::integer()->required(),
    ];
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit