src/Service/EventsService.php line 356

Open in your IDE?
  1. <?php
  2. namespace App\Service;
  3. use App\Entity\Adverts;
  4. use App\Entity\Debit;
  5. use App\EntityOtpusk\Events;
  6. use App\Exception\EventsException;
  7. use App\Repository\AgencyRepository;
  8. use App\Repository\BlackListRepository;
  9. use App\Repository\DebitRepository;
  10. use App\Repository\EventsRepository;
  11. use App\Repository\TourRepository;
  12. use App\Repository\AdvertsRepository;
  13. use App\Repository\ManagerLogsRepository;
  14. use App\Service\Ipv6Service;
  15. use ClickHouseDB\Exception\ClickHouseException;
  16. use Doctrine\ORM\EntityManagerInterface;
  17. use Psr\Log\LoggerInterface;
  18. use Symfony\Component\Cache\Adapter\MemcachedAdapter;
  19. use Symfony\Component\HttpClient\HttpClient;
  20. use Symfony\Component\HttpKernel\KernelInterface;
  21. use Symfony\Contracts\HttpClient\HttpClientInterface;
  22. use Symfony\Component\HttpFoundation\RequestStack;
  23. /**
  24.  * Class EventsService
  25.  * @package App\Service
  26.  */
  27. class EventsService
  28. {
  29.     /**
  30.      * @var EntityManagerInterface
  31.      */
  32.     private $em;
  33.     /**
  34.      * @var TourRepository
  35.      */
  36.     private $tourRepository;
  37.     /**
  38.      * @var EventsRepository
  39.      */
  40.     private $eventsRepository;
  41.     /**
  42.      * @var KernelInterface
  43.      */
  44.     private $kernelInterface;
  45.     /**
  46.      * @var DebitRepository
  47.      */
  48.     private $debitRepository;
  49.     /**
  50.      * @var AgencyRepository
  51.      */
  52.     private $agencyRepository;
  53.     /**
  54.      * @var NotificationService
  55.      */
  56.     private $notificationService;
  57.     /**
  58.      * @var ManagerLogsRepository
  59.      */
  60.     private $managerLogsRepository;
  61.     /**
  62.      * @var AdvertsRepository
  63.      */
  64.     private $advertsRepository;
  65.     /**
  66.      * @var HttpClientInterface
  67.      */
  68.     private $client;
  69.     /**
  70.      * @var LoggerInterface
  71.      */
  72.     private $logger;
  73.     /**
  74.      * @var \App\Repository\BlackListRepository
  75.      */
  76.     private BlackListRepository $blackListRepository;
  77.     /**
  78.      * @var RequestStack
  79.      */
  80.     private $requestStack;
  81.     /**
  82.      * EventsService constructor.
  83.      *
  84.      * @param EntityManagerInterface $em
  85.      * @param TourRepository $tourRepository
  86.      * @param EventsRepository $eventsRepository
  87.      * @param BlackListRepository $blackListRepository
  88.      * @param DebitRepository $debitRepository
  89.      * @param AgencyRepository $agencyRepository
  90.      * @param NotificationService $notificationService
  91.      * @param ManagerLogsRepository $managerLogsRepository
  92.      * @param AdvertsRepository $advertsRepository
  93.      * @param KernelInterface $kernelInterface
  94.      * @param LoggerInterface $logger
  95.      * @param HttpClientInterface $client
  96.      * @param Request $request
  97.      */
  98.     public function __construct(
  99.         EntityManagerInterface $em,
  100.         TourRepository $tourRepository,
  101.         EventsRepository $eventsRepository,
  102.         BlackListRepository $blackListRepository,
  103.         DebitRepository $debitRepository,
  104.         AgencyRepository $agencyRepository,
  105.         NotificationService $notificationService,
  106.         ManagerLogsRepository $managerLogsRepository,
  107.         AdvertsRepository $advertsRepository,
  108.         KernelInterface $kernelInterface,
  109.         HttpClientInterface $client,
  110.         LoggerInterface $logger,
  111.         RequestStack $requestStack
  112.     ) {
  113.         $this->em                    $em;
  114.         $this->tourRepository        $tourRepository;
  115.         $this->eventsRepository      $eventsRepository;
  116.         $this->blackListRepository   $blackListRepository;
  117.         $this->kernelInterface       $kernelInterface;
  118.         $this->debitRepository       $debitRepository;
  119.         $this->agencyRepository      $agencyRepository;
  120.         $this->managerLogsRepository $managerLogsRepository;
  121.         $this->advertsRepository     $advertsRepository;
  122.         $this->notificationService   $notificationService;
  123.         $this->client                $client;
  124.         $this->logger                $logger;
  125.         $this->requestStack          $requestStack;
  126.     }
  127.     public function getEvents(Events $event)
  128.     {
  129.         $this->eventsRepository->_connect();
  130.     }
  131.     public function saveEvent(Events $event)
  132.     {
  133.         $tourInfo $this->tourRepository->getTourInfo(
  134.             $event->getOfferId(),
  135.             $event->getOperatorId(),
  136.             $event->getCruiseId()
  137.         );
  138.         if ($tourInfo && $tourInfo->getOfferId()) {
  139.             $event->setOperatorId($tourInfo->getOperatorId());
  140.             $event->setCountryId($tourInfo->getCountryId());
  141.             $event->setHotelId($tourInfo->getHotelId());
  142.             $event->setFromCityId($tourInfo->getFromCityId());
  143.             $event->setCheckIn($tourInfo->getCheckIn());
  144.             $event->setNights($tourInfo->getNights());
  145.             if (empty($tourInfo->getChild())) {
  146.                 $event->setPeople($tourInfo->getAdult());
  147.             } else {
  148.                 if (empty($event->getPeople())) {
  149.                     $child $tourInfo->getChild();
  150.                     if ($child == 1) {
  151.                         $child '06';
  152.                     } elseif ($child == 2) {
  153.                         $child '0608';
  154.                     } elseif ($child == 3) {
  155.                         $child '060810';
  156.                     } elseif ($child == 4) {
  157.                         $child '05070911';
  158.                     }
  159.                     $event->setPeople($tourInfo->getAdult().$child);
  160.                 }
  161.             }
  162.             $event->setFood($tourInfo->getFood());
  163.             $event->setTransport($tourInfo->getTransport());
  164.             $event->setRoomId($tourInfo->getRoomId());
  165.             if ($tourInfo->getCurrency() == 'uah') {
  166.                 $priceUah $tourInfo->getPrice();
  167.             } else {
  168.                 $priceUah $tourInfo->getPriceUah();
  169.                 if (empty($priceUah)) {
  170.                     $priceUah $tourInfo->getPrice() * $tourInfo->getCurrencyRate();
  171.                 }
  172.             }
  173.             $event->setPrice($priceUah);
  174.             $event->setCurrency($tourInfo->getCurrency());
  175.         }
  176.         if(!$event->getHotelId()) {
  177.             $httpClient HttpClient::create();
  178.             $offreId    $event->getOfferId();
  179.             $response   $httpClient->request(
  180.                 'GET',
  181.                 'https://api.otpusk.com/api/2.5/tours/offer?offerId='.$offreId.'&access_token=4b26a-e5237-9b0fa-bcc36-67732',
  182.                 ['headers' => ['User-Agent' => 'pro.otpusk.com']]
  183.             );
  184.             if (200 == $response->getStatusCode()) {
  185.                 $content $response->toArray()['offer'];
  186.             if(!$event->getCountryId() && isset($content['countryId']))
  187.                     $event->setCountryId($content['countryId']);
  188.             if(!$event->getHotelId() && isset($content['hotelId']))
  189.                     $event->setHotelId($content['hotelId']);
  190.             if(!$event->getFromCityId() && isset($content['fromCity']))
  191.                     $event->setFromCityId($content['fromCity']);
  192.             if(!$event->getRoomId() && isset($content['roomId']))
  193.                     $event->setRoomId($content['roomId']);
  194.             if(!$event->getPrice() && isset($content['priceUah']))
  195.                     $event->setPrice($content['priceUah']);
  196.             }
  197.         }
  198.         $event->setEventPrice(0);
  199.         // Ищем объявление
  200.         $advertsRepository $this->em->getRepository(Adverts::class);
  201.         /** @var $advertInfo Adverts */
  202.         $advertInfo $advertsRepository->find($event->getAdvertId());
  203.         $event->setEventPrice(0);
  204.         if ($advertInfo && $advertInfo->getAgency() &&
  205.             $advertInfo->getAgency()->getActive() > &&
  206.             $advertInfo->getAgency()->getStatus() == 'premium')
  207.         {
  208.             $event->setAgencyId($advertInfo->getAgency()->getId());
  209.             $event->setEventPrice($advertInfo->getPrice() ?? 50);
  210.         } else {
  211.             $event->setEventPosition(22);
  212.         }
  213.         /*
  214.         if ($event->getEventPrice() > 0) {
  215.             if (!$tourInfo || !$tourInfo->getOfferId()) {
  216.                 // если не найден offer
  217.                 $event->setEventPrice(0);
  218.                 $event->setEventPosition(24);
  219.             }
  220.         }
  221.         */
  222.         // fixme: нужно как-то проверять относится ли officeId и advertId к одному агентству
  223.         if ($event->getEventPrice() > 0) {
  224.             try {
  225.                 $ip $this->blackListRepository->getByIp(intval($event->getIp()));
  226.                 if ($ip) {
  227.                     // Ip в черном списке
  228.                     $event->setEventPrice(0);
  229.                     $event->setEventPosition(31);
  230.                 }
  231.             } catch (ClickHouseException $e) {
  232.                 $events 'error: '.$e->getMessage();
  233.             }
  234.             if (isset($_COOKIE['DM'])) {
  235.                 header('X-31-blacklist: '.$ip);
  236.             }
  237.         }
  238.         if ($event->getEventPrice() > 0) {
  239.             // проверяем был ли уже такое событие сегодня у этого объявления
  240.             $option    = array(
  241.                 \Memcached::OPT_PREFIX_KEY => (getenv('MEMCACHED_PREFIX') ? getenv(
  242.                     'MEMCACHED_PREFIX'
  243.                 ) : ($_ENV['MEMCACHED_PREFIX'] ?? '')),
  244.             );
  245.             $client    MemcachedAdapter::createConnection(
  246.                 getenv('MEMCACHED_SERV') ? getenv('MEMCACHED_SERV') : $_ENV['MEMCACHED_SERV'],
  247.                 $option
  248.             );
  249.             $cache_key 'event_'.$event->getEventDate()->format('Ymd').'_'.$event->getAdvertId().'_'.$event->getIp();
  250.             if (isset($_COOKIE['DM'])) {
  251.                 $MEMCACHED_PREFIX = (getenv('MEMCACHED_PREFIX') ? getenv(
  252.                     'MEMCACHED_PREFIX'
  253.                 ) : ($_ENV['MEMCACHED_PREFIX'] ?? ''));
  254.                 $MEMCACHED_SERV   = (getenv('MEMCACHED_SERV') ? getenv('MEMCACHED_SERV') : $_ENV['MEMCACHED_SERV']);
  255.                 $client->set('test_'.$cache_keytime(), 24 60 60);
  256.                 header(
  257.                     'X-26-memTest: '.$MEMCACHED_SERV.'@'.$MEMCACHED_PREFIX.'&'.$cache_key.'='.$client->get(
  258.                         'test_'.$cache_key
  259.                     )
  260.                 );
  261.             }
  262.             if ($event_time $client->get($cache_key)) {
  263.                 // уникальное событие, если сегодня уже было
  264.                 $event->setEventPrice(0);
  265.                 $event->setEventPosition(26);
  266.             } else {
  267.                 $client->set($cache_keytime(), time() + (24 60 60));
  268.             }
  269.         }
  270.         if ($event->getEventPrice() > 0) {
  271.             try {
  272.                 $log $this->managerLogsRepository->findOneBy(['ip' => $event->getIp()]);
  273.                 if ($log && $log->getIp2Long() == $event->getIp()) {
  274.                     // игнорируем если это IP менеджера любого из агентства
  275.                     $event->setEventPrice(0);
  276.                     $event->setEventPosition(27);
  277.                 }
  278.             } catch (Exception $e) {
  279.             }
  280.             if (isset($_COOKIE['DM'])) {
  281.                 header('X-27-isManager: '.$event->getIp().'='.($log $log->getIp2Long() : -1));
  282.             }
  283.         }
  284.         if ($event->getEventPrice() > 0) {
  285.             if ($advertInfo->getDaybudget() > 0) {
  286.                 try {
  287.                     $dayCost $this->debitRepository->findCostsForCurrentDay($advertInfo->getAgency()->getId());
  288.                     if ($dayCost && $dayCost >= $advertInfo->getDaybudget()) {
  289.                         // если превысили дневной бюджет
  290.                         $event->setEventPrice(0);
  291.                         $event->setEventPosition(28);
  292.                     }
  293.                 } catch (Exception $e) {
  294.                     $dayCost 'error: '.$e->getMessage();
  295.                 }
  296.                 if (isset($_COOKIE['DM'])) {
  297.                     header('X-28-dayLimit: '.$dayCost.'>='.$advertInfo->getDaybudget());
  298.                 }
  299.             }
  300.         }
  301.         if ($event->getEventPrice() > 0) {
  302.             try {
  303.                 $events $this->eventsRepository->getTotalEventsToDayByIp(intval($event->getIp()));
  304.                 if ($events >= 3) {
  305.                     // Не более 3-х платных взаимодействий в сутки с одного IP в не зависимости от объявлений
  306.                     $event->setEventPrice(0);
  307.                     $event->setEventPosition(29);
  308.                 }
  309.             } catch (ClickHouseException $e) {
  310.                 $events 'error: '.$e->getMessage();
  311.             }
  312.             if (isset($_COOKIE['DM'])) {
  313.                 header('X-29-events: '.$events.'>='3);
  314.             }
  315.         }
  316.         // TODO return if didnt help
  317.         /*
  318.         if ($event->getEventPrice() > 0) {
  319.             if (isset($_COOKIE['DM'])) header('X-30-IP: ' . $event->getIp() .' = '. Ipv6Service::long2ip($event->getIp()));
  320.             try {
  321.                 $countryIso = $this->eventsRepository->checkCountryIp($event->getIp());
  322.                 if ($countryIso && $countryIso != 'UA') {
  323.                     //Если ip не из Украины
  324.                     $event->setEventPrice(0);
  325.                     $event->setEventPosition(30);
  326.                 }
  327.             } catch (ClickHouseException $e) {
  328.                 $countryIso = 'error: '.$e->getMessage();
  329.             }
  330.             if (isset($_COOKIE['DM'])) header('X-30-CountryCode: ' . $countryIso);
  331.         }
  332.         */
  333.         try {
  334.             $this->eventsRepository->save($event);
  335.         } catch (ClickHouseException $e) {
  336.             if (isset($_COOKIE['DM'])) {
  337.                 header('X-88-error: '.$e->getMessage());
  338.             }
  339.         }
  340.         return $event->getEventPrice();
  341.     }
  342.     public function sendGA($clientId=false$sessionId=falseEvents $event$getEvent=false)
  343.     {
  344.         $APP_ENV = (getenv('APP_ENV') ? getenv('APP_ENV') : $_ENV['APP_ENV']);
  345.         if ($APP_ENV != 'prod') {
  346.             $this->logger->info('Error Send GA env: '.$APP_ENV);
  347.             return false;
  348.         }
  349.         $account_id = (getenv('GA_ACCOUNT') ? getenv('GA_ACCOUNT') : ($_ENV['GA_ACCOUNT'] ?? ''));
  350.         if (isset($_COOKIE['DM'])) {
  351.             header('X-ACCOUNT-ID: '.$account_id);
  352.             header('X-Event-Price: '.$event->getEventPrice());
  353.             header('X-client: '.$clientId);
  354.         }
  355.         if ($event->getEventPrice() <= 0) {
  356.             $this->logger->info('Error Send GA price: '.$event->getEventPrice());
  357.             return false;
  358.         }
  359.         if (empty($account_id)) {
  360.             $this->logger->info('Error Send GA account: '.$account_id);
  361.             return null;
  362.         }
  363.         $trans_id date('d0m').'0'
  364.                     .sprintf("%u"$event->getIp()).'_'
  365.                     .$event->getAdvertId().'_'
  366.                     .($event->getCruiseId() > '' $event->getCountryId().'_')
  367.                     .$event->getRegionId().'_'
  368.                     .($event->getCruiseId() > 'excursion' 'package');
  369.         if (isset($_COOKIE['DM'])) {
  370.             header('X-TRANS-ID: '.$trans_id);
  371.         }
  372.         if (!empty($clientId)) {
  373.             /*
  374.             // send GA #33394
  375.             $response = $this->client->request(
  376.                 'POST',
  377.                 'http://www.google-analytics.com/collect',
  378.                 [
  379.                     'body' => [
  380.                         'v' => '1', //версия протокола, походу второй нет, только первая
  381.                         'tid' => $account_id, //ид гугл аналитики.
  382.                         'cid' => $clientId, //Client ID – будет отдавать фронт
  383.                         't' => 'transaction', //тип хита в этом случае
  384.                         'ti' => $trans_id, //ид транзакции
  385.                         'tr' => $event->getEventPrice() // сумма транзакции
  386.                     ],
  387.                     'timeout' => 5,
  388.                     'max_duration' => 5,
  389.                     'buffer' => false,
  390.                     'verify_peer' => false,
  391.                     'verify_host' => false,
  392.                     'headers' => [
  393.                         'User-Agent' => 'www.otpusk.com',
  394.                     ],
  395.                 ]
  396.             );
  397.             $this->logger->info('Send GA1 ' . $response->getInfo('url') . ' status: ' . $response->getStatusCode());
  398.             if (isset($_COOKIE['DM'])) {
  399.                 header('X-SEND-GA1: ' . $response->getStatusCode());
  400.             }
  401.             $response = $this->client->request(
  402.                 'POST',
  403.                 'http://www.google-analytics.com/collect',
  404.                 [
  405.                     'body' => [
  406.                         'v' => '1', //версия протокола, походу второй нет, только первая
  407.                         'tid' => $account_id, //ид гугл аналитики.
  408.                         'cid' => $clientId, //Client ID – будет отдавать фронт
  409.                         't' => 'item', //тип хита в этом случае
  410.                         'ti' => $trans_id, //ид транзакции
  411.                         'in' => $event->getAgencyId(), // Название турфирмы
  412.                         'ip' => $event->getPrice(), // стоимость товара
  413.                         'iv' => ($event->getCruiseId() > 0 ? 'Excursion' : 'Package'),
  414.                     ],
  415.                     'timeout' => 5,
  416.                     'max_duration' => 5,
  417.                     'buffer' => false,
  418.                     'verify_peer' => false,
  419.                     'verify_host' => false,
  420.                     'headers' => [
  421.                         'User-Agent' => 'www.otpusk.com',
  422.                     ],
  423.                 ]
  424.             );
  425.             $this->logger->info('Send GA2 ' . $response->getInfo('url') . ' status: ' . $response->getStatusCode());
  426.             if (isset($_COOKIE['DM'])) {
  427.                 header('X-SEND-GA2: ' . $response->getStatusCode());
  428.             }
  429.             */
  430.             $post = [
  431.                 'client_id' => $clientId,
  432.                 'non_personalized_ads' => false,
  433.                 'events' => [
  434.                     [
  435.                         //'name' => 'purchase',
  436.                         'name' => 'api'.ucfirst($getEvent??$event->getEventTypeName()), // 'purchase',
  437.                         //'timestamp_micros' => microtime(true) * 1000000,
  438.                         'params' => [
  439.                             'eventCategory' => 'offerPageAds',
  440.                             'type' => ($event->getCruiseId() > 'Excursion' 'Package'),
  441.                             'value' => (float)$event->getEventPrice(),
  442.                             'lang' => 'UK',
  443.                             'currency' => 'UAH',
  444.                             'client_id' => $clientId,
  445.                             'session_id' => $sessionId,
  446.                             'debug_mode' => true,
  447.                             /*
  448.                             'transaction_id' => $trans_id,
  449.                             //'agency_id' => $event->getAgencyId(),
  450.                             'items' => [
  451.                                 [
  452.                                     'item_id' => (string)($event->getAdvertId() . $event->getRegionId()),
  453.                                     'item_name' => 'id: ' . ((string)$event->getAdvertId() . $event->getRegionId()),
  454.                                     //'item_name' => $event->getEventType(),
  455.                                     'item_category' => ($event->getCruiseId() > 0 ? 'Excursion' : 'Package'),
  456.                                     //'item_brand' => $event->getAgencyId(),
  457.                                     'price' => (float)$event->getEventPrice(),
  458.                                     'currency' => 'UAH',
  459.                                     'quantity' => 1,
  460.                                 ]
  461.                             ],
  462.                             */
  463.                         ]
  464.                     ]
  465.                 ],
  466.                 //'validationBehavior' => 'ENFORCE_RECOMMENDATIONS'
  467.             ];
  468.             $userAgent 'www.otpusk.com';
  469.             $currentRequest $this->requestStack->getCurrentRequest();
  470.             if ($currentRequest) {
  471.                 $userAgent $currentRequest->headers->get('User-Agent''www.otpusk.com');
  472.             }
  473.             $headers = [
  474.                 'User-Agent' => $userAgent,
  475.                 'Content-Type' => 'application/json',
  476.                 'Accept' => 'application/json',
  477.             ];
  478.             $response $this->client->request(
  479.                 'POST',
  480.                 'https://www.google-analytics.com/mp/collect?api_secret=' urlencode('X7iB6sPfTWqTIvOwjwqV7Q') . '&measurement_id=' urlencode('G-V52QLQJ1C6'),
  481.                 [
  482.                     'body' => json_encode($post),
  483.                     'timeout' => 5,
  484.                     'max_duration' => 5,
  485.                     'buffer' => false,
  486.                     'verify_peer' => false,
  487.                     'verify_host' => false,
  488.                     'headers' => $headers,
  489.                 ]
  490.             );
  491.             $this->logger->info('Send GA4 ' $response->getInfo('url') . ' status: ' $response->getStatusCode());
  492.             if (isset($_COOKIE['DM'])) {
  493.                 header('X-SEND-GA4: ' $response->getInfo('url') . ' ' $response->getStatusCode() . ' ' json_encode($post) . ' ' json_encode($headers));
  494.             }
  495.         }
  496.         return true;
  497.     }
  498.     public function gelLast($limit 20)
  499.     {
  500.         return $this->eventsRepository->findAll(10);
  501.     }
  502.     public function updateDebitsByEvents()
  503.     {
  504.         $now    = new \DateTime('now');
  505.         $now    $now->format('Y-m-d');
  506.         $events $this->eventsRepository->findToDayEvents($now);
  507.         foreach ($events as $event) {
  508.             $data false;
  509.             if ($event['agencyId']) {
  510.                 $agency $this->agencyRepository->findOneBy(['id' => $event['agencyId'], 'status' => 'premium']);
  511.                 if ($agency) {
  512.                     $debit $this->debitRepository->findByAgencyAndEvent($agency$now);
  513.                     if ( ! $debit) {
  514.                         $debit = new Debit();
  515.                         $debit->setAgency($agency);
  516.                         $debit->setDateType(3);
  517.                         $debit->setType('event');
  518.                         $debit->setStatus('paid');
  519.                         $debit->setDate(new \DateTime($now));
  520.                         $debit->setCreatedAt(new \DateTime($now.' 12:00:00'));
  521.                     }
  522.                     $debit->setSum($event['eventPrices']);
  523.                     $this->em->persist($debit);
  524.                     $this->em->flush();
  525.                     $data $this->debitRepository->checkingNegativeBalance($event['agencyId']);
  526.                 }
  527.             }
  528.             if ($data) {
  529.                 if ($agency && $agency->getStatus() == 'premium') {
  530.                     $handle curl_init();
  531.                     $url    'https://control.otpusk.com/api/setagencynopaid?agencyId='.$event['agencyId'].'&access_token=4b26a-e5237-9b0fa-bcc36-67732';
  532.                     curl_setopt($handleCURLOPT_USERAGENT'pro.otpusk.com');
  533.                     curl_setopt($handleCURLOPT_SSL_VERIFYHOSTfalse);
  534.                     curl_setopt($handleCURLOPT_SSL_VERIFYPEERfalse);
  535.                     curl_setopt($handleCURLOPT_URL$url);
  536.                     curl_setopt($handleCURLOPT_RETURNTRANSFERtrue);
  537.                     curl_setopt($handleCURLOPT_FAILONERRORtrue);
  538.                     var_dump(curl_exec($handle));
  539.                     echo 'http code: '.var_export(curl_getinfo($handleCURLINFO_HTTP_CODE), 1).PHP_EOL;
  540.                     echo 'agencyId: '.var_export($event['agencyId'], 1).PHP_EOL;
  541.                     echo 'curl error: '.var_export(curl_error($handle), 1).PHP_EOL;
  542.                     curl_close($handle);
  543.                     if ($data['email']) {
  544.                         $this->notificationService->negativeBalance($data);
  545.                     }
  546.                 }
  547.             }
  548.         }
  549.     }
  550.     public function updateDebitsByEventsAgencies()
  551.     {
  552.         $now      = new \DateTime('now');
  553.         $now      $now->format('Y-m-d');
  554.         $agencies $this->eventsRepository->findAgenciesByEvents();
  555.         $agencies array_column($agencies'agencyId');
  556.         if ( ! empty($agencies)) {
  557.             $events $this->eventsRepository->findToDayEvents($now$agencies);
  558.             foreach ($events as $event) {
  559.                 $data false;
  560.                 if ($event['agencyId']) {
  561.                     $agency $this->agencyRepository->findOneBy(['id' => $event['agencyId'], 'status' => 'premium']);
  562.                     if ($agency) {
  563.                         $debit $this->debitRepository->findByAgencyAndEvent($agency$now);
  564.                         if ( ! $debit) {
  565.                             $debit = new Debit();
  566.                             $debit->setAgency($agency);
  567.                             $debit->setDateType(3);
  568.                             $debit->setType('event');
  569.                             $debit->setStatus('paid');
  570.                             $debit->setDate(new \DateTime($now));
  571.                             $debit->setCreatedAt(new \DateTime($now.' 12:00:00'));
  572.                         }
  573.                         $debit->setSum($event['eventPrices']);
  574.                         $this->em->persist($debit);
  575.                         $this->em->flush();
  576.                         $data $this->debitRepository->checkingNegativeBalance($event['agencyId']);
  577.                     }
  578.                 }
  579.                 if ($data) {
  580.                     if ($agency && $agency->getStatus() == 'premium') {
  581.                         $handle curl_init();
  582.                         $url    'https://control.otpusk.com/api/setagencynopaid?agencyId='.$event['agencyId'].'&access_token=4b26a-e5237-9b0fa-bcc36-67732';
  583.                         curl_setopt($handleCURLOPT_USERAGENT'pro.otpusk.com');
  584.                         curl_setopt($handleCURLOPT_SSL_VERIFYHOSTfalse);
  585.                         curl_setopt($handleCURLOPT_SSL_VERIFYPEERfalse);
  586.                         curl_setopt($handleCURLOPT_URL$url);
  587.                         curl_setopt($handleCURLOPT_RETURNTRANSFERtrue);
  588.                         curl_setopt($handleCURLOPT_FAILONERRORtrue);
  589.                         var_dump(curl_exec($handle));
  590.                         echo 'http code: '.var_export(curl_getinfo($handleCURLINFO_HTTP_CODE), 1).PHP_EOL;
  591.                         echo 'agencyId: '.var_export($event['agencyId'], 1).PHP_EOL;
  592.                         echo 'curl error: '.var_export(curl_error($handle), 1).PHP_EOL;
  593.                         curl_close($handle);
  594.                         if ($data['email']) {
  595.                             $this->notificationService->negativeBalance($data);
  596.                         }
  597.                     }
  598.                 }
  599.             }
  600.         }
  601.     }
  602.     public function fixDebitsByEvents()
  603.     {
  604.         $datesArray = [
  605.             '2021-04-12',
  606.             '2021-04-11',
  607.             '2021-04-10',
  608.             '2021-04-09',
  609.             '2021-04-08',
  610.             '2021-04-07',
  611.             '2021-04-06',
  612.             '2021-04-05',
  613.             '2021-04-04',
  614.             '2021-04-03',
  615.             '2021-04-02',
  616.         ];
  617.         foreach ($datesArray as $now) {
  618.             $events $this->eventsRepository->findToDayEvents($now);
  619.             foreach ($events as $event) {
  620.                 if ($event['agencyId']) {
  621.                     $agency $this->agencyRepository->findOneBy(['id' => $event['agencyId']]);
  622.                     if ($agency) {
  623.                         $debit $this->debitRepository->findByAgencyAndEvent($agency$now);
  624.                         if ( ! $debit) {
  625.                             $debit = new Debit();
  626.                             $debit->setAgency($agency);
  627.                             $debit->setDateType(3);
  628.                             $debit->setType('event');
  629.                             $debit->setStatus('paid');
  630.                             $debit->setDate(new \DateTime($now));
  631.                         }
  632.                         $debit->setSum($event['eventPrices']);
  633.                         $this->em->persist($debit);
  634.                         $this->em->flush();
  635.                     }
  636.                 }
  637.             }
  638.         }
  639.     }
  640.     public function updateEmptyEvents()
  641.     {
  642.         $events $this->eventsRepository->findEventsUntillNow('2021-10-19');
  643.         foreach ($events as $event) {
  644.             $httpClient HttpClient::create();
  645.             $offreId    $event['offerId'];
  646.             $response   $httpClient->request(
  647.                 'GET',
  648.                 'https://api.otpusk.com/api/2.5/tours/offer?offerId='.$offreId.'&access_token=4b26a-e5237-9b0fa-bcc36-67732',
  649.                 ['headers' => ['User-Agent' => 'pro.otpusk.com']]
  650.             );
  651.             if (200 == $response->getStatusCode()) {
  652.                 $content $response->toArray()['offer'];
  653.                 if ($content) {
  654.                     var_dump($event['offerId']);
  655.                     $this->eventsRepository->updateEvent($event$content);
  656.                     sleep(1);
  657.                 }
  658.             }
  659.         }
  660.     }
  661. }