src/Controller/AgencyController.php line 579

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\Subscription;
  4. use App\Repository\AgencyCrmIntegrationsRepository;
  5. use App\Repository\AuctionRequestRepository;
  6. use App\Repository\AuctionSourceRepository;
  7. use App\Repository\DebitRepository;
  8. use App\Repository\EventsRepository;
  9. use App\Repository\ManagerRepository;
  10. use App\Repository\SubscriptionRepository;
  11. use App\Service\GeoService;
  12. use DateTime;
  13. use Doctrine\ORM\EntityManagerInterface;
  14. use Doctrine\ORM\Tools\Pagination\Paginator;
  15. use Knp\Component\Pager\Pagination\PaginationInterface;
  16. use Knp\Component\Pager\PaginatorInterface;
  17. use Psr\Log\LoggerInterface;
  18. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  19. use Symfony\Component\Console\Helper\Helper as ConsoleHelper;
  20. use Symfony\Component\HttpClient\HttpClient;
  21. use Symfony\Component\HttpFoundation\JsonResponse;
  22. use Symfony\Component\HttpFoundation\Request;
  23. use Symfony\Component\HttpFoundation\Response;
  24. use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
  25. use Symfony\Contracts\HttpClient\Exception\DecodingExceptionInterface;
  26. use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
  27. use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
  28. use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
  29. use Symfony\Component\Routing\Annotation\Route;
  30. class AgencyController extends AbstractController
  31. {
  32.     private PaginatorInterface $paginator;
  33.     private ManagerRepository $managerRepository;
  34.     private AuctionRequestRepository $auctionRepository;
  35.     private DebitRepository $debitRepository;
  36.     private SubscriptionRepository $subscriptionRepository;
  37.     private GeoService $geoService;
  38.     private EntityManagerInterface $em;
  39.     private AuctionSourceRepository $auctionSource;
  40.     public function __construct(
  41.         EntityManagerInterface $em,
  42.         AuctionRequestRepository $auctionRequestRepository,
  43.         ManagerRepository $managerRepository,
  44.         DebitRepository $debitRepository,
  45.         SubscriptionRepository $subscriptionRepository,
  46.         GeoService $geoService,
  47.         AuctionSourceRepository $auctionSource,
  48.         PaginatorInterface $paginator,
  49.         LoggerInterface $logger
  50.     ) {
  51.         $this->em                     $em;
  52.         $this->auctionRepository      $auctionRequestRepository;
  53.         $this->managerRepository      $managerRepository;
  54.         $this->debitRepository        $debitRepository;
  55.         $this->subscriptionRepository $subscriptionRepository;
  56.         $this->geoService             $geoService;
  57.         $this->paginator              $paginator;
  58.         $this->auctionSource          $auctionSource;
  59.         $this->logger                  $logger;
  60.     }
  61.     /**
  62.      * @Route("/auction", name="agency_auction")
  63.      */
  64.     public function agencyRequests(): Response
  65.     {
  66.         return $this->redirect('/birzha');
  67.     }
  68.     /**
  69.      * @Route("/birzha/login", name="agency_birzha_login")
  70.      * @param Request $request
  71.      *
  72.      * @return Response
  73.      * @throws ClientExceptionInterface
  74.      * @throws RedirectionExceptionInterface
  75.      * @throws ServerExceptionInterface
  76.      */
  77.     public function agencyBirzhaLogin(Request $request): Response
  78.     {
  79.         $host      $request->getHost();
  80.         $network   null;
  81.         $loginData $this->checkLoginData();
  82.         $manager   $loginData['manager'];
  83.         if ($manager) {
  84.             return $this->redirect('/birzha');
  85.         }
  86.         if ($host == 'birzha.tat.ua') {
  87.             $network 'tat';
  88.         }
  89.         return $this->render('login.html.twig', [
  90.             'manager' => $manager,
  91.             'network' => $network,
  92.         ]);
  93.     }
  94.     /**
  95.      * @Route("/birzha", name="agency_birzha")
  96.      * @param Request $request
  97.      *
  98.      * @return Response
  99.      * @throws ClientExceptionInterface
  100.      * @throws RedirectionExceptionInterface
  101.      * @throws ServerExceptionInterface
  102.      */
  103.     public function agencyBirzha(Request $request): Response
  104.     {
  105.         $host $request->getHost();
  106.         if ( ! empty($request->query->all()) && isset($request->query->all()['r'])) {
  107.             setcookie(
  108.                 'referral',
  109.                 $request->query->all()['r'],
  110.                 ['expires' => strtotime("+30 day"), 'domain' => '.otpusk.com']
  111.             );
  112.             setcookie(
  113.                 'referral',
  114.                 $request->query->all()['r'],
  115.                 ['expires' => strtotime("+30 day"), 'domain' => '.tat.ua']
  116.             );
  117.         }
  118.         $network null;
  119.         //      $data for manager test
  120.         if (($request->getHost() == '127.0.0.1')) {
  121.             $date $request->get('data');
  122.             if ( ! $date) {
  123.                 $date $request->query->all();
  124.             }
  125.             $id null;
  126.             if (isset($date['manager']) && ! isset($loginData['services'])) {
  127.                 $manager $this->managerRepository->findOneBy(['id' => $date['manager']]);
  128.                 if ($manager) {
  129.                     $id     $manager->getId();
  130.                     $agency $manager->getAgency();
  131.                     $this->get('session')->set(
  132.                         'loginData',
  133.                         [
  134.                             "id"       => $id,
  135.                             "services" => ["agency" => ["id" => $agency->getId(), "name" => $agency->getName()]],
  136.                         ]
  137.                     );
  138.                 }
  139.             }
  140.         }
  141. //        end of test manager
  142.         $loginData     $this->checkLoginData();
  143.         $manager       $loginData['manager'];
  144.         $agency        $loginData['agency'];
  145.         $balance       $this->balance($agency);
  146.         $filterData    = isset($_COOKIE['requests-filter']) ? (array)json_decode($_COOKIE['requests-filter']) : null;
  147.         $auctions      $this->auctionRepository->findByNotArchive($filterData);
  148.         $dataCountries $this->auctionRepository->findByCountry();
  149.         $dataRegions   $this->auctionRepository->findByRegion();
  150.         $pagination    $this->pagination($auctions$request);
  151.         $description   '';
  152.         if ($host == 'birzha.tat.ua') {
  153.             $network 'tat';
  154.         }
  155.         $sources $this->auctionSource->findBy(['active' => 0]);
  156.         return $this->render('agency.html.twig', [
  157.             'requests'      => $pagination,
  158.             'manager'       => $manager,
  159.             'balance'       => $balance,
  160.             'description'   => $description,
  161.             'network'       => $network,
  162.             'host'          => $host,
  163.             'filterData'    => $filterData,
  164.             'sources'       => $sources,
  165.             'dataCountries' => $dataCountries,
  166.             'dataRegions'   => $dataRegions,
  167.         ]);
  168.     }
  169.     /**
  170.      * @Route("", name="land")
  171.      * @param Request $request
  172.      *
  173.      * @return Response
  174.      */
  175.     public function land(Request $request): Response
  176.     {
  177.         $host      $request->getHost();
  178.         $loginData $this->checkLoginData();
  179.         $agency    $loginData['agency'];
  180.         if ( ! empty($request->query->all()) && isset($request->query->all()['r'])) {
  181.             setcookie(
  182.                 'referral',
  183.                 $request->query->all()['r'],
  184.                 ['expires' => strtotime("+30 day"), 'domain' => '.otpusk.com']
  185.             );
  186.             setcookie(
  187.                 'referral',
  188.                 $request->query->all()['r'],
  189.                 ['expires' => strtotime("+30 day"), 'domain' => '.tat.ua']
  190.             );
  191.         }
  192.         if ($host == 'birzha.tat.ua') {
  193.             return $this->render('/tat/landing.html.twig');
  194.         }
  195.         return $this->render('/landing.html.twig');
  196.     }
  197.     /**
  198.      * @Route("/birzha/my-own", name="birzha_my_own")
  199.      * @param Request $request
  200.      *
  201.      * @return Response
  202.      * @throws ClientExceptionInterface
  203.      * @throws RedirectionExceptionInterface
  204.      * @throws ServerExceptionInterface
  205.      */
  206.     public function agencyMyOwn(
  207.         Request $request
  208.     ): Response {
  209.         $loginData  $this->checkLoginData();
  210.         $manager    $loginData['manager'];
  211.         $agency     $loginData['agency'];
  212.         $host       $request->getHost();
  213.         $pagination $network null;
  214.         $balance    $this->balance($agency);
  215.         $filterData = isset($_COOKIE['requests-filter']) ? (array)json_decode($_COOKIE['requests-filter']) : null;
  216.         if ($agency) {
  217.             $auctions   $this->debitRepository->findByAgency($agency->getId(), $filterData);
  218.             $pagination $this->pagination($auctions$request);
  219.         }
  220.         $dataCountries $this->auctionRepository->findByCountry();
  221.         $dataRegions   $this->auctionRepository->findByRegion();
  222. //        $description   = 'Ви можете відмовитися від купленої заявки (і повернути кошти) якщо номер телефону клієнта вказано
  223. // некоректне або абонент не бере слухавку протягом доби.<br>
  224. // <strong>Для цього напишіть на vera@otpusk.com номер заявки та прикріпіть скріншот, де видно дата та час дзвінка туристу.</strong>
  225. //  Після перевірки кошти будуть повернуті на баланс.';
  226.         $description '';
  227.         if ($host == 'birzha.tat.ua') {
  228.             $network 'tat';
  229.         }
  230.         $sources $this->auctionSource->findBy(['active' => 0]);
  231.         if ( ! $manager) {
  232.             return $this->redirect('/birzha/login');
  233.         }
  234.         return $this->render('agency.html.twig', [
  235.             'requests'      => $pagination,
  236.             'manager'       => $manager,
  237.             'agency'        => $agency,
  238.             'balance'       => $balance,
  239.             'own'           => true,
  240.             'description'   => $description,
  241.             'network'       => $network,
  242.             'filterData'    => $filterData,
  243.             'sources'       => $sources,
  244.             'dataCountries' => $dataCountries,
  245.             'dataRegions'   => $dataRegions,
  246.         ]);
  247.     }
  248.     /**
  249.      * @Route("/auction/my-own", name="agency_my_own")
  250.      * @param Request $request
  251.      *
  252.      * @return Response
  253.      * @throws ClientExceptionInterface
  254.      * @throws RedirectionExceptionInterface
  255.      * @throws ServerExceptionInterface
  256.      */
  257.     public function agencyMyOwnOLD(
  258.         Request $request
  259.     ): Response {
  260.         $loginData $this->checkLoginData();
  261.         $manager   $loginData['manager'];
  262.         if ($manager) {
  263.             return $this->redirect('/birzha/my-own');
  264.         }
  265.         return $this->render('login.html.twig', [
  266.             'manager' => $manager,
  267.         ]);
  268.     }
  269.     /**
  270.      * @Route("/birzha/rules", name="agency_auction_rules")
  271.      * @param AuctionSourceRepository $sourceRepository
  272.      *
  273.      * @return Response
  274.      * @throws ClientExceptionInterface
  275.      * @throws DecodingExceptionInterface
  276.      * @throws RedirectionExceptionInterface
  277.      * @throws ServerExceptionInterface
  278.      * @throws TransportExceptionInterface
  279.      */
  280.     public function agencyRules(
  281.         Request $request,
  282.         AuctionSourceRepository $sourceRepository
  283.     ): Response {
  284.         $loginData $this->checkLoginData();
  285.         $manager   $loginData['manager'];
  286.         $agency    $loginData['agency'];
  287.         if ( ! $manager) {
  288.             return $this->redirect('/birzha/login');
  289.         }
  290.         $countries   $this->geoService->countries();
  291.         $regions     $this->geoService->regions();
  292.         $sources     $sourceRepository->findAll();
  293.         $balance     $this->balance($agency);
  294.         $description 'На цій сторінці ви зможете налаштувати правила для автоматичної покупки заявок на аукціоні за прийнятною для Вас ціною, без особистої участі в аукціоні.';
  295.         $host        $request->getHost();
  296.         $network     null;
  297.         if ($host == 'birzha.tat.ua') {
  298.             $network 'tat';
  299.         }
  300.         return $this->render('rules.html.twig', [
  301.             'countries'   => $countries,
  302.             'regions'     => $regions,
  303.             'manager'     => $manager,
  304.             'agency'      => $agency,
  305.             'balance'     => $balance,
  306.             'sources'     => $sources,
  307.             'description' => $description,
  308.             'network'     => $network,
  309.         ]);
  310.     }
  311.     /**
  312.      * @Route("/birzha/subscription", name="agency_subscription")
  313.      * @return Response
  314.      * @throws ClientExceptionInterface
  315.      * @throws DecodingExceptionInterface
  316.      * @throws RedirectionExceptionInterface
  317.      * @throws ServerExceptionInterface
  318.      * @throws TransportExceptionInterface
  319.      */
  320.     public function agencySubscription(Request $request): Response
  321.     {
  322.         $loginData $this->checkLoginData();
  323.         $manager   $loginData['manager'];
  324.         $agency    $loginData['agency'];
  325.         if ( ! $manager) {
  326.             return $this->redirect('/birzha/login');
  327.         }
  328.         $balance $this->balance($agency);
  329.         $cities  $this->geoService->regions('ukr');
  330.         $host    $request->getHost();
  331.         $network null;
  332.         if ($host == 'birzha.tat.ua') {
  333.             $network 'tat';
  334.         }
  335.         return $this->render('subscription.html.twig', [
  336.             'cities'  => $cities,
  337.             'manager' => $manager,
  338.             'agency'  => $agency,
  339.             'balance' => $balance,
  340.             'network' => $network,
  341.         ]);
  342.     }
  343.     /**
  344.      * @Route("/stats", name="events-index")
  345.      * @param EventsRepository $eventsRepository
  346.      * @param Request $request
  347.      *
  348.      * @return Response
  349.      */
  350.     public function indexEvents(
  351.         EventsRepository $eventsRepository,
  352.         Request $request
  353.     ): Response {
  354.         $loginData $this->checkLoginData();
  355.         $manager   $loginData['manager'];
  356.         $agency    $loginData['agency'];
  357.         if ( ! $manager) {
  358.             return $this->redirect('/birzha/login');
  359.         }
  360.         $balance $this->balance($agency);
  361.         $events  $eventNames null;
  362.         if ($agency) {
  363.             $date $request->get('data');
  364.             $stat $request->get('stats-id');
  365.             if ( ! $date) {
  366.                 $date $request->query->all();
  367.             }
  368.             $events      $eventsRepository->findDataAgency($agency->getId(), $date$stat);
  369.             $eventsDates $eventsRepository->findDatesAndNamesAgency($agency->getId());
  370.             $eventNames  array_column($eventsDates'advertName''advertNum');
  371.         }
  372.         $meta          = [];
  373.         $meta['title'] = 'Статистика';
  374.         return $this->render('events.html.twig', [
  375.             'manager'    => $manager,
  376.             'agency'     => $agency,
  377.             'balance'    => $balance,
  378.             'events'     => $events,
  379.             'eventNames' => $eventNames,
  380.             'meta'       => $meta,
  381.         ]);
  382.     }
  383.     /**
  384.      * @Route("/finance", name="finance-index")
  385.      * @param Request $request
  386.      * @param DebitRepository $debitRepository
  387.      *
  388.      * @return Response
  389.      */
  390.     public function indexFinance(
  391.         Request $request,
  392.         DebitRepository $debitRepository
  393.     ): Response {
  394.         $loginData $this->checkLoginData();
  395.         $manager   $loginData['manager'];
  396.         $agency    $loginData['agency'];
  397.         if ( ! $manager) {
  398.             return $this->redirect('/birzha/login');
  399.         }
  400.         $balance     $this->balance($agency);
  401.         $balanceFrom $balanceTo null;
  402.         if ($agency) {
  403.             $date $request->get('data');
  404.             if ( ! $date) {
  405.                 $date $request->query->all();
  406.             }
  407.             if ( ! $date) {
  408.                 $now      = new DateTime('now');
  409.                 $dateFrom = new DateTime('now');
  410.                 $dateFrom->modify('first day of this month');
  411.                 $dateFrom $dateFrom->format('Y-m-d');
  412.                 $dateTo   $now->format('Y-m-d');
  413.             } else {
  414.                 $dates    explode(" - "$date['dates']);
  415.                 $dateFrom = new \DateTime($dates['0']);
  416.                 $dateTo   = new \DateTime($dates['1']);
  417.                 $dateFrom $dateFrom->format('Y-m-d');
  418.                 $dateTo   $dateTo->format('Y-m-d');
  419.             }
  420.             $balanceFrom floatval($debitRepository->checkingPaid($agency->getId(), $dateFrom'<')) - floatval(
  421.                     $debitRepository->checkingCost($agency->getId(), $dateFrom.' 00:00:00''<=')
  422.                 );
  423.             $balanceTo   floatval($debitRepository->checkingPaid($agency->getId(), $dateTo'<=')) - floatval(
  424.                     $debitRepository->checkingCost($agency->getId(), $dateTo.' 23:59:59''<=')
  425.                 );
  426.             $debits      $debitRepository->findDebitsAgency($agency->getId(), $date);
  427.             $paid        $debitRepository->findPaidAgency($agency->getId(), $date);
  428.         }
  429.         $debits array_merge($debits$paid);
  430.         usort($debits, array($this"sortFunction"));
  431.         $meta          = [];
  432.         $meta['title'] = 'Финансы';
  433.         return $this->render('finances.html.twig', [
  434.             'manager'     => $manager,
  435.             'agency'      => $agency,
  436.             'balance'     => $balance,
  437.             'debits'      => $debits,
  438.             'meta'        => $meta,
  439.             'balanceFrom' => $balanceFrom,
  440.             'balanceTo'   => $balanceTo,
  441.         ]);
  442.     }
  443.     private function sortFunction($a$b)
  444.     {
  445.         return strtotime($b["date"]) - strtotime($a["date"]);
  446.     }
  447.     private function balance($agency): float
  448.     {
  449.         if ($agency) {
  450.             $costArray $this->debitRepository->findAllGreaterThanPrice($agency->getId());
  451.             $paidArray $this->debitRepository->findPaid($agency->getId());
  452.             $cost      array_sum(array_column($costArray'cost'));
  453.             $paid      array_sum(array_column($paidArray'paid'));
  454.             return $paid $cost;
  455.         } else {
  456.             return 0;
  457.         }
  458.     }
  459.     private function pagination($query$request): PaginationInterface
  460.     {
  461.         $pg = new Paginator($query);
  462.         $pg->setUseOutputWalkers(false);
  463.         if ($pg->count() > 1200) {
  464.             $query->setHint('knp_paginator.count'1200);
  465.         } else {
  466.             $query->setHint('knp_paginator.count'$pg->count());
  467.         }
  468.         if ($request->get('page'1) > 100) {
  469.             $query->setDQL('SELECT r FROM App\Entity\AuctionRequest r WHERE 1 = 2');
  470.             return $this->paginator->paginate($query$request->get('page'1), 12);
  471.         }
  472.         return $this->paginator->paginate($query$request->get('page'1), 12);
  473.     }
  474.     function ruleSave($ruleEntity$rule$sourceRepository)
  475.     {
  476.         $ruleEntity->setActive(false);
  477.         if (isset($rule['active']) && $rule['active'] == 1) {
  478.             $ruleEntity->setActive(true);
  479.         }
  480.         if (isset($rule['price']) && $rule['price']) {
  481.             $ruleEntity->setPrice($rule['price']);
  482.         }
  483.         if (isset($rule['type']) && $rule['type']) {
  484.             $ruleEntity->setType(intval($rule['type']));
  485.         }
  486.         if (isset($rule['countries']) && $rule['countries']) {
  487.             $ruleEntity->setCountries($rule['countries']);
  488.         }
  489.         if (isset($rule['regions']) && $rule['regions']) {
  490.             $ruleEntity->setRegions($rule['regions']);
  491.         }
  492.         if (isset($rule['source']) && $rule['source']) {
  493.             $source $sourceRepository->findOneBy(['id' => $rule['source']]);
  494.             $ruleEntity->setSource($source);
  495.         }
  496.         $manager $this->managerRepository->findOneBy(['id' => $rule['manager']]);
  497.         $ruleEntity->setManager($manager);
  498.         $this->em->persist($ruleEntity);
  499.     }
  500.     function checkSubscription($manager)
  501.     {
  502.         if ($manager && ! $manager->getSubscription()) {
  503.             $ifExist $this->subscriptionRepository->findOneBy(['manager' => $manager]);
  504.             if ( ! $ifExist) {
  505.                 $subscription = new Subscription();
  506.                 $subscription->setManager($manager);
  507.                 $cities $manager->getAgency()->getCities();
  508.                 if (is_array($cities)){
  509.                     foreach ($cities as $item) {
  510.                         if ($item) {
  511.                             $array[] = $item;
  512.                         }
  513.                     }
  514.                     $subscription->setRegions($array);
  515.                 }else {
  516.                     $cities str_replace("["""$cities);
  517.                     $cities str_replace("]"""$cities);
  518.                     $cities str_replace(" """$cities);
  519.                     $cities explode("\""$cities);
  520.                     $array  = [];
  521.                     foreach ($cities as $item) {
  522.                         if ($item) {
  523.                             $array[] = $item;
  524.                         }
  525.                     }
  526.                     $subscription->setRegions($array);
  527.                 }
  528.                 $this->em->persist($subscription);
  529.                 $this->em->flush();
  530.             }
  531.         }
  532.     }
  533.     function checkLoginData()
  534.     {
  535.         $manager   $agency null;
  536.         $loginData $this->get('session')->get('loginData');
  537.         if ( ! $loginData && isset($_COOKIE['loginData'])) {
  538.             $loginData json_decode($_COOKIE['loginData'], 1);
  539.         }
  540.         if ($loginData && isset($loginData['id']) && !isset($_COOKIE['admin_login'])) {
  541.             $manager $this->managerRepository->findOneById($loginData['id']);
  542.             $this->checkSubscription($manager);
  543.         } else
  544.             if (isset($_COOKIE['authautologin']) or isset($_COOKIE['cookie_login'])) {
  545.             $url            'https://www.otpusk.com/me/auth/me/?_='.rand(123456789987654321);
  546.             $recoverRequest curl_init();
  547.             if (isset($_COOKIE['authautologin'])) {
  548.                 $login 'Cookie: authautologin='.$_COOKIE['authautologin'];
  549.                 $userAgent $_SERVER['HTTP_USER_AGENT'];
  550.             } else {
  551.                 $login 'Cookie: '.$_COOKIE['cookie_login'];
  552.                 $userAgent 'www.otpusk.com';
  553.             }
  554.             curl_setopt_array($recoverRequest, array(
  555.                 CURLOPT_URL            => $url,
  556.                 CURLOPT_USERAGENT      => $userAgent,
  557.                 CURLOPT_HEADER         => false,
  558.                 CURLOPT_HTTPHEADER     => array(
  559.                     'Content-Type: application/json',
  560.                     $login,
  561.                 ),
  562.                 CURLOPT_REFERER        => 'https://pro.otpusk.com',
  563.                 CURLOPT_RETURNTRANSFER => true,
  564.                 CURLOPT_SSL_VERIFYHOST => false,
  565.                 CURLOPT_SSL_VERIFYPEER => false,
  566.                 CURLOPT_TIMEOUT        => 2,
  567.             ));
  568.             $data curl_exec($recoverRequest);
  569.             if (substr($data03) == pack('H*''EFBBBF')) {
  570.                 $data substr($data3);
  571.             }
  572.             $loginData json_decode($data1);
  573.             if (isset($loginData['error'])) {
  574.                 $this->logger->debug('checkLoginData :' json_decode($loginData['error'])
  575.                 );
  576.               return  ['manager' => $manager'agency' => $agency];
  577.             } else {
  578.                 $loginDataCookie json_encode($data1);
  579.                 $this->get('session')->set('loginData'$loginData);
  580.                 $this->get('session')->set('user_login'$loginData['mail']);
  581.                 setcookie('user_login'$loginData['mail'], -86400'/''.otpusk.com');
  582.                 setcookie('user_login'$loginData['mail'], -86400'/');
  583.                 setcookie('loginData'$loginDataCookie, -86400'/''.otpusk.com');
  584.                 setcookie('loginData'$loginDataCookie, -86400'/');
  585.                 if ($loginData && isset($loginData['services']) && isset($loginData['services']['agency']) && isset($loginData['services']['agency']['id']) && isset($loginData['id'])) {
  586.                     $manager $this->managerRepository->findOneById($loginData['id']);
  587.                     if ($manager->getName() != $loginData['name']) {
  588.                         $manager->setName($loginData['name']);
  589.                         $this->em->persist($manager);
  590.                         $this->em->flush();
  591.                     }
  592.                     $this->checkSubscription($manager);
  593.                 }
  594.             }
  595.         }
  596.         if ($manager) {
  597.             $agency $manager->getAgency();
  598.             if ($loginData && isset($loginData['services']) && isset($loginData['services']['agency'])) {
  599.                 if ($agency->getName() != $loginData['services']['agency']['name']) {
  600.                     $agency->setName($loginData['services']['agency']['name']);
  601.                     $this->em->persist($agency);
  602.                     $this->em->flush();
  603.                 }
  604.             }
  605.         }
  606.         return ['manager' => $manager'agency' => $agency];
  607.     }
  608.     /**
  609.      * @Route("/crm-settings", name="crm-index")
  610.      * @param \App\Repository\AgencyCrmIntegrationsRepository $agencyCrm
  611.      *
  612.      * @return Response
  613.      */
  614.     public function indexCrm(
  615.         Request $request,
  616.         AgencyCrmIntegrationsRepository $agencyCrm
  617.     ): Response {
  618.         $loginData $this->checkLoginData();
  619.         $manager   $loginData['manager'];
  620.         $agency    $loginData['agency'];
  621.         if ( ! $manager) {
  622.             return $this->redirect('/birzha/login');
  623.         }
  624.         $balance $this->balance($agency);
  625.         $data    $tokens = [];
  626.         if ($agency) {
  627.             $tokens $agencyCrm->findBy(['agency' => $agency->getId()]);
  628.         }
  629.         foreach ($tokens as $token) {
  630.             $data[$token->getCrmId()] = ['token' => $token->getToken(), 'userId' => $token->getUserId()];
  631.         }
  632.         $meta['title'] = 'Интеграция с CRM';
  633.         $host          $request->getHost();
  634.         $network       null;
  635.         if ($host == 'birzha.tat.ua') {
  636.             $network 'tat';
  637.         }
  638.         return $this->render('crm.html.twig', [
  639.             'manager' => $manager,
  640.             'agency'  => $agency,
  641.             'balance' => $balance,
  642.             'data'    => $data,
  643.             'meta'    => $meta,
  644.             'network' => $network,
  645.         ]);
  646.     }
  647.     /**
  648.      * @Route("/test", name="test-index")
  649.      */
  650.     public function test()
  651.     {
  652.         $httpClient HttpClient::create();
  653.         $response   $httpClient->request(
  654.             'GET',
  655.             'https://api.otpusk.com/api/2.4/tours/cities?countryId=116&access_token=4b26a-e5237-9b0fa-bcc36-67732',
  656.             ['headers' => ['User-Agent' => 'pro.otpusk.com']]
  657.         );
  658.         $content    $response->toArray()['countries'];
  659.         $res        = [];
  660.         foreach ($content as $item) {
  661.             $res[$item['id']] = ['name' => $item['name'], 'iso' => $item['iso']];
  662.         }
  663.         file_put_contents('/app/private/test.php''<?php $arr = '.var_export($restrue).';');
  664.         dd($res);
  665.     }
  666. }