AnonSec Shell
Server IP : 85.193.89.191  /  Your IP : 3.135.203.3
Web Server : Apache
System : Linux 956367-cx40159.tmweb.ru 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
User : bitrix ( 600)
PHP Version : 8.1.27
Disable Function : NONE
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/bitrix/www/bitrix/modules/bizproc/lib/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/bitrix/www/bitrix/modules/bizproc/lib//schedulerevent.php
<?php

namespace Bitrix\Bizproc;

use Bitrix\Main;;

/**
 * Class SchedulerEventTable
 *
 * DO NOT WRITE ANYTHING BELOW THIS
 *
 * <<< ORMENTITYANNOTATION
 * @method static EO_SchedulerEvent_Query query()
 * @method static EO_SchedulerEvent_Result getByPrimary($primary, array $parameters = [])
 * @method static EO_SchedulerEvent_Result getById($id)
 * @method static EO_SchedulerEvent_Result getList(array $parameters = [])
 * @method static EO_SchedulerEvent_Entity getEntity()
 * @method static \Bitrix\Bizproc\EO_SchedulerEvent createObject($setDefaultValues = true)
 * @method static \Bitrix\Bizproc\EO_SchedulerEvent_Collection createCollection()
 * @method static \Bitrix\Bizproc\EO_SchedulerEvent wakeUpObject($row)
 * @method static \Bitrix\Bizproc\EO_SchedulerEvent_Collection wakeUpCollection($rows)
 */
class SchedulerEventTable extends Main\Entity\DataManager
{
	/**
	 * @return string
	 */
	public static function getTableName()
	{
		return 'b_bp_scheduler_event';
	}

	/**
	 * @return array
	 */
	public static function getMap()
	{
		return array(
			'ID' => array(
				'data_type' => 'integer',
				'primary' => true,
				'autocomplete' => true,
			),
			'WORKFLOW_ID' => array(
				'data_type' => 'string'
			),
			'HANDLER' => array(
				'data_type' => 'string'
			),
			'EVENT_MODULE' => array(
				'data_type' => 'string'
			),
			'EVENT_TYPE' => array(
				'data_type' => 'string'
			),
			'ENTITY_ID' => array(
				'data_type' => 'string'
			),
			'EVENT_PARAMETERS' => array(
				'data_type' => 'text',
				'serialized' => true
			)
		);
	}

	public static function deleteBySubscription($workflowId, $handler, $eventModule, $eventType, $entityId = null)
	{
		$connection = Main\Application::getConnection();
		$sqlHelper = $connection->getSqlHelper();

		$table = $sqlHelper->forSql(static::getTableName());
		$workflowId = $sqlHelper->forSql($workflowId);
		$handler = $sqlHelper->forSql($handler);
		$eventModule = $sqlHelper->forSql($eventModule);
		$eventType = $sqlHelper->forSql($eventType);
		$entityId = $entityId !== null ? $sqlHelper->forSql($entityId) : null;

		$connection->queryExecute("DELETE 
			FROM {$table} 
			WHERE 
				WORKFLOW_ID = '{$workflowId}' 
				AND HANDLER = '{$handler}' 
				AND EVENT_MODULE = '{$eventModule}' 
				AND EVENT_TYPE = '{$eventType}'"
				.($entityId !== null ? " AND ENTITY_ID = '{$entityId}'" : '')
		);
	}

	public static function deleteByWorkflow($workflowId)
	{
		$connection = Main\Application::getConnection();
		$sqlHelper = $connection->getSqlHelper();

		$table = $sqlHelper->forSql(static::getTableName());
		$workflowId = $sqlHelper->forSql($workflowId);

		$connection->queryExecute("DELETE FROM {$table} WHERE WORKFLOW_ID = '{$workflowId}'");
	}

	public static function isSubscribed($workflowId, $handler, $eventModule, $eventType, $entityId = null)
	{
		$filter = array(
			'=WORKFLOW_ID' => (string)$workflowId,
			'=HANDLER' => (string)$handler,
			'=EVENT_MODULE' => (string)$eventModule,
			'=EVENT_TYPE' => (string)$eventType
		);

		if ($entityId !== null)
			$filter['=ENTITY_ID'] = (string)$entityId;

		$row = static::getList(array(
			'select' => array('ID'),
			'filter' => $filter
		))->fetch();

		return (is_array($row));
	}

	public static function hasSubscriptions($eventModule, $eventType)
	{
		$filter = array(
			'=EVENT_MODULE' => $eventModule,
			'=EVENT_TYPE' => $eventType
		);

		$row = static::getList(array(
			'select' => array('ID'),
			'filter' => $filter,
			'limit' => 1
		))->fetch();

		return (is_array($row));
	}
}

Anon7 - 2022
AnonSec Team