TaskHandler.php in Maestro 8.2
File
src/Utility/TaskHandler.php
View source
<?php
namespace Drupal\maestro\Utility;
use Drupal\Core\Url;
use Drupal\Component\Utility\UrlHelper;
use Drupal\maestro\Engine\MaestroEngine;
class TaskHandler {
public static function getType($handler) {
global $base_url;
$handler = str_replace($base_url, '', $handler);
$handler_type = 'unknown';
$is_externalRoute = UrlHelper::isExternal($handler);
if ($is_externalRoute === FALSE) {
try {
if (function_exists($handler)) {
$handler_type = 'function';
}
else {
$url = Url::fromUri("internal:" . $handler);
if ($url && $url
->isRouted()) {
$handler_type = 'internal';
}
}
} catch (\InvalidArgumentException $e) {
$handler_type = 'unknown';
}
}
else {
$handler_type = 'external';
}
return $handler_type;
}
public static function getHandlerURL($queueID) {
global $base_url;
$url = FALSE;
$queueRecord = \Drupal::entityTypeManager()
->getStorage('maestro_queue')
->load($queueID);
$templateMachineName = MaestroEngine::getTemplateIdFromProcessId($queueRecord->process_id
->getString());
$query_options = [
'queueid' => $queueID,
];
$handler = $queueRecord->handler
->getString();
if ($handler && !empty($handler) && $queueRecord->is_interactive
->getString() == '1') {
$handler = str_replace($base_url, '', $handler);
$handler_type = TaskHandler::getType($handler);
$handler_url_parts = UrlHelper::parse($handler);
$query_options += $handler_url_parts['query'];
}
elseif ($queueRecord->is_interactive
->getString() == '1' && empty($handler)) {
$handler_type = 'function';
}
else {
return FALSE;
}
$query_options += [
'modal' => 'notmodal',
];
switch ($handler_type) {
case 'external':
$url = Url::fromUri($handler, [
'query' => $query_options,
])
->toString();
break;
case 'internal':
$url = Url::fromUserInput($handler, [
'query' => $query_options,
])
->toString();
break;
case 'function':
$url = Url::fromRoute('maestro.execute', $query_options, [
'absolute' => TRUE,
])
->toString();
break;
default:
$url = FALSE;
break;
}
return $url;
}
}
Classes
Name |
Description |
TaskHandler |
Internal function that helps determine the handler type that is
used for interactive tasks. |