AnonSec Shell
Server IP : 85.193.89.191  /  Your IP : 3.142.199.22
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/components/bitrix/sender.campaign.selector/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/bitrix/www/bitrix/components/bitrix/sender.campaign.selector/ajax.php
<?php

use Bitrix\Main\Entity\ExpressionField;
use Bitrix\Main\HttpRequest;
use Bitrix\Main\Localization\Loc;
use Bitrix\Sender\Entity;
use Bitrix\Sender\Internals\CommonAjax;
use Bitrix\Sender\Internals\QueryController as Controller;
use Bitrix\Sender\UI;

define('STOP_STATISTICS', true);
define('BX_SECURITY_SHOW_MESSAGE', true);

require_once($_SERVER['DOCUMENT_ROOT'].'/bitrix/modules/main/include/prolog_before.php');

if (!Bitrix\Main\Loader::includeModule('sender'))
{
	return;
}

Loc::loadMessages(__FILE__);

$actions = array();
$actions[] = Controller\Action::create('getCampaigns')->setHandler(
	function (HttpRequest $request, Controller\Response $response)
	{
		$view = UI\TileView::create()
			->addSection(UI\TileView::SECTION_LAST)
			->addSection(UI\TileView::SECTION_FREQ)
			->addSection(UI\TileView::SECTION_ALL);

		$sites = Entity\Campaign::getSites();
		$list = Entity\Campaign::getList([
			'select' => ['ID', 'NAME', 'MAX_DATE_INSERT', 'COUNT_LETTERS', 'SUBSCRIBER_COUNT', 'SITE_ID'],
			'runtime' => [
				new ExpressionField('MAX_DATE_INSERT', 'MAX(%s)', 'CHAIN.DATE_INSERT'),
				new ExpressionField('COUNT_LETTERS', 'COUNT(%s)', 'CHAIN.ID'),
			]
		]);
		foreach ($list as $item)
		{
			$view->addTile(
				$item['ID'],
				$item['NAME'],
				[
					UI\TileView::SECTION_FREQ => $item['COUNT_LETTERS'],
					UI\TileView::SECTION_LAST => $item['MAX_DATE_INSERT'],
					'subscriberCount' => $item['SUBSCRIBER_COUNT'],
					'siteId' => $item['SITE_ID'],
					'siteName' => $sites[$item['SITE_ID']],
				]
			);
		}

		// get response
		$response->initContentJson()->set(array(
			'list' => $view->get(),
		));
	}
);
$checker = CommonAjax\Checker::getViewLetterPermissionChecker();
Controller\Listener::create()->addChecker($checker)->setActions($actions)->run();

Anon7 - 2022
AnonSec Team