src/Controller/IndexController.php line 60

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\Preorders;
  4. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. use Symfony\Component\HttpFoundation\Request;
  7. use App\Managements\LeadsManagement;
  8. use App\Managements\InvoicesManagement;
  9. use App\Managements\EmailTemplatesManagement;
  10. use Symfony\Component\Mailer\MailerInterface;
  11. use Doctrine\ORM\EntityManagerInterface;
  12. use Symfony\Component\Mime\Email;
  13. use Symfony\Component\HttpFoundation\JsonResponse;
  14. use App\Entity\Users;
  15. use App\Helpers\EmailHelper;
  16. use App\Managements\PreordersManagement;
  17. use Symfony\Component\HttpFoundation\Response;
  18. class IndexController extends AbstractController
  19. {
  20.     private $mailerInterface;
  21.     public function __construct(
  22.         EntityManagerInterface $entityManager,
  23.         EmailTemplatesManagement $emailTemplatesManagement,
  24.         MailerInterface $mailerInterface
  25.     ) {
  26.         $this->entityManager $entityManager;
  27.         $this->emailTemplatesManagement =  $emailTemplatesManagement;
  28.         $this->mailerInterface =  $mailerInterface;
  29.     }
  30.     /**
  31.      * @Route("", name="index")
  32.      */
  33.     public function index()
  34.     {
  35.         if ($this->getUser()) {
  36.             $access $this->getDoctrine()->getRepository(Users::class)->findOneBy(array("email" => $this->getUser()->getEmail()))->getAccessModules();
  37.             $_SESSION['accessModules'] = explode(","$access);
  38.         }
  39.         if (isset($_SESSION['accessModules'])) {
  40.             if (in_array('admin_invoices'$_SESSION['accessModules'])) {
  41.                 return $this->redirectToRoute('admin_invoices');
  42.             } else {
  43.                 // return $this->redirectToRoute($_SESSION['accessModules'][0]);                
  44.                 return $this->redirectToRoute('admin_panel');
  45.             }
  46.         } else {
  47.             return $this->redirectToRoute('admin');
  48.         }
  49.     }
  50.     /**
  51.      * @Route("/admin", name="admin")
  52.      */
  53.     public function admin()
  54.     {
  55.         return $this->redirectToRoute('admin_panel');
  56.     }
  57.     /**
  58.      * @Route("/przypomnij", name="przypomnij")
  59.      */
  60.     public function przypomnij(
  61.         LeadsManagement $leadsManagement,
  62.         InvoicesManagement $invoicesManagement
  63.     ) {
  64.         // $items = $leadsManagement->forToday();
  65.         // $emailEntity = $this->emailTemplatesManagement->load("rleads");
  66.         // $subject = "Temat";
  67.         // // dd($items);
  68.     
  69.         // foreach ($items as $k => $v) {
  70.         //     $list = '<ol>' . implode('', $v) . '</ol>';
  71.             
  72.         //     $template = $emailEntity->getTemplate();
  73.         //     $template = str_replace('{{leads}}', $list, $template);
  74.             
  75.         //     $email = (new Email())
  76.         //         ->from('biuro@freeline.pl')
  77.         //         ->to($k)
  78.         //         ->replyTo('biuro@freeline.pl')
  79.         //         ->priority(Email::PRIORITY_HIGH)
  80.         //         ->subject("Leady do kontaktu [" . date("Y-m-d", time()) . "]")
  81.         //         ->html($template);
  82.         //     if($k == 'piotr@freeline.pl'){
  83.         //         $email->addCc('kamil.kneja@freeline.pl');
  84.         //     }
  85.         //     $this->mailerInterface->send($email);
  86.         // }
  87.         // $list = '<ul>';
  88.         // $items = $invoicesManagement->forToday();
  89.         // foreach ($items as $item) {
  90.         //     $list .= '<li>Pozycja ' . $item['name'] . ' na dokumencie ' . $item['invoice'] . ' wygasa dnia ' . date_format($item['deadline'], 'Y-m-d') . '</li>';
  91.         // }
  92.         // $list .= '</ul>';
  93.         // if (!empty($items)) {
  94.         //     $emailEntity = $this->emailTemplatesManagement->load("rpositions");
  95.         //     $subject = "Temat";
  96.         //     $template = $emailEntity->getTemplate();
  97.         //     $template = str_replace('{{rpositions}}', $list, $template);
  98.         //     $email = (new Email())
  99.         //         ->from('biuro@freeline.pl')
  100.         //         // ->to('marek.szmit@freeline.pl')
  101.         //         ->to('biuro@freeline.pl')
  102.         //         ->replyTo('biuro@freeline.pl')
  103.         //         ->priority(Email::PRIORITY_HIGH)
  104.         //         ->subject("Deadline do kontaktu [" . date("Y-m-d", time()) . "]")
  105.         //         ->html($template);
  106.         //     $this->mailerInterface->send($email);
  107.         // }
  108.         return new JsonResponse(['message' => 'Success sended E-mail'], JsonResponse::HTTP_OK);
  109.     }
  110.     /**
  111.      * @Route("/przypomnij-o-umowach", name="przypomnijUmowy")
  112.      */
  113.     public function przypomnijUmowy(
  114.         LeadsManagement $leadsManagement,
  115.         InvoicesManagement $invoicesManagement
  116.     ) {
  117.         $emailEntity $this->emailTemplatesManagement->load("agreements");
  118.         $template $emailEntity->getTemplate();
  119.         $notSentAgreements $leadsManagement->getAgreementNotSentYet();
  120.         $notSent $this->prepareAgreementLeadsMail($notSentAgreements1);
  121.         
  122.         if ($notSent) {
  123.             foreach ($notSent as $email => $content) {
  124.                 $template str_replace('{{info}}'$content$template);
  125.                 $email = (new Email())
  126.                     ->from('biuro@freeline.pl')
  127.                     ->to($email)
  128.                     ->addBcc('piotr.ostrzyzek@freeline.pl')
  129.                     ->replyTo('biuro@freeline.pl')
  130.                     ->priority(Email::PRIORITY_HIGH)
  131.                     ->subject("Twoje nie wysłane umowy")
  132.                     ->html($template);
  133.                 $this->mailerInterface->send($email);
  134.             }
  135.         }
  136.         $template $emailEntity->getTemplate();
  137.         $sentAgreements =  $leadsManagement->getAgreementSent();
  138.         $sent $this->prepareAgreementLeadsMail($sentAgreements2);
  139.         
  140.         if ( $sent ) {
  141.             foreach ($sent as $email => $content) {
  142.                 $template str_replace('{{info}}'$content$template);
  143.                 $email = (new Email())
  144.                     ->from('biuro@freeline.pl')
  145.                     ->to($email)
  146.                     ->replyTo('biuro@freeline.pl')
  147.                     ->priority(Email::PRIORITY_HIGH)
  148.                     ->subject("Twoje oczekujące umowy")
  149.                     ->html($template);
  150.                 $this->mailerInterface->send($email);
  151.             }
  152.         }
  153.         return new JsonResponse(['message' => 'Success sended E-mail'], JsonResponse::HTTP_OK);
  154.     }
  155.     /**
  156.      * Zwraca przygotowaną listę maili do wysłania, kluczem jest adres e-mail opiekuna
  157.      * @param int $type - 1-Nie wysłane, 2-Oczekujące
  158.      * @return Array()
  159.      */
  160.     private function prepareAgreementLeadsMail($leads$type 1)
  161.     {
  162.         $heading = ($type == 2) ? 'Twoje oczekujące umowy:' 'Twoje nie wysłane umowy:';
  163.         $temp = [];
  164.         $users $this->getDoctrine()->getRepository(Users::class)->findAll();
  165.         foreach ($users as $user) {
  166.             $mailList[$user->getId()] = $user->getEmail();
  167.         }
  168.         foreach ($leads as $item) {
  169.             if (!isset($temp[$item->getOpiekun()]) || !isset($temp[$item->getOpiekun()]['content'])) {
  170.                 $temp[$item->getOpiekun()]['content'] = '';
  171.             }
  172.             $temp[$item->getOpiekun()]['content'] .= '<li><a href="https://my.freelinelab.pl/admin/leads/edytuj/' $item->getId() . '">' $item->getName() . ' - ' $item->getAlias() . '</a></li>';
  173.         }
  174.         if (count($temp) == 0) {
  175.             return false;
  176.         }
  177.         foreach ($temp as $user => $content) {
  178.             $userContent[$mailList[$user]] = $heading '<br/><ol>' $content['content'] . '</ol>';
  179.         }
  180.         return $userContent;
  181.     }
  182.     /**
  183.      * @Route("/przypomnij-selfinfo", name="przypomnij_selfinfo")
  184.      */
  185.     public function przypomnijSelfInfo(
  186.         LeadsManagement $leadsManagement,
  187.         PreordersManagement $preordersManagement
  188.     ) {
  189.         $emailEntity $this->emailTemplatesManagement->load("selfinfo");
  190.         $projects $this->entityManager->getRepository(Preorders::class)->findPreordersToNotify();
  191.         $userProjects = [];
  192.         foreach( $projects as $project){
  193.             if($project->getWorker()){
  194.                 $lastContact $preordersManagement->getLastContact($project->getId());
  195.                 if( !isset($userProjects[$project->getWorker()->getEmail() ]) ) { $userProjects[$project->getWorker()->getEmail()] = []; }
  196.                 if ( $lastContact === false ){ $lastContact =  9999; }                
  197.                 $userProjects[$project->getWorker()->getEmail()][$project->getClient()] = $lastContact;
  198.             }
  199.         }       
  200.         $response = array(); 
  201.         foreach(array_keys($userProjects) as $user){
  202.             if ( !isset($response[$user]) ) { $response[$user] = ''; };
  203.             arsort$userProjects[$user] );
  204.             foreach( $userProjects[$user] as $client => $days){
  205.                 $color '#cfcfcf';
  206.                 $text '#000';
  207.                 $border '#e9ecef';
  208.                 if( $days && $days !== 9999){
  209.                     $text '#664d03';
  210.                     $color'#ffda6a'
  211.                     $border '#ffe69c';
  212.                 }
  213.                 if($days === 9999) {
  214.                     $days 'Nigdy';
  215.                     $border '#f8d7da';
  216.                     $color '#ff8d97';
  217.                     $text'#58151c';
  218.                 }else{
  219.                     $days .= ' dni temu';
  220.                 }
  221.                 $response[$user] .= '<tr ><td style="padding: 5px 0;">' $client '</td><td style="vertical-align: middle; padding-left: 10px"><span style="padding: 4px 10px; border-radius: 15px; border: 1px solid ' $border '; background: ' $color '; color:' $text ';">' $days '</span></li></td></tr>';
  222.             }
  223.         }
  224.        
  225.         foreach( $response as $email => $project ){
  226.             $content '<table><thead><tr><th align="left">Klient</th><th>Ostatni kontakt</th></tr></thead>' $project '</table>';
  227.             $template $emailEntity->getTemplate();            
  228.             $template str_replace('{{content}}'$content$template);            
  229.             $email = (new Email())
  230.                 ->from('biuro@freeline.pl')                
  231.                 ->to($email)
  232.                 ->cc('kamil.kneja@freeline.pl')
  233.                 ->replyTo('biuro@freeline.pl')
  234.                 ->priority(Email::PRIORITY_HIGH)
  235.                 ->subject("Przypominam o uzupełnieniu selfinfo [" date("Y-m-d"time()) . "]")
  236.                 ->html($template);
  237.             $this->mailerInterface->send($email);
  238.         }
  239.         
  240.             
  241.         
  242.         // }
  243.         // $list = '<ul>';
  244.         // $items = $invoicesManagement->forToday();
  245.         // foreach ($items as $item) {
  246.         //     $list .= '<li>Pozycja ' . $item['name'] . ' na dokumencie ' . $item['invoice'] . ' wygasa dnia ' . date_format($item['deadline'], 'Y-m-d') . '</li>';
  247.         // }
  248.         // $list .= '</ul>';
  249.         // if (!empty($items)) {
  250.         //     $emailEntity = $this->emailTemplatesManagement->load("rpositions");
  251.         //     $subject = "Temat";
  252.         //     $template = $emailEntity->getTemplate();
  253.         //     $template = str_replace('{{rpositions}}', $list, $template);
  254.         //     $email = (new Email())
  255.         //         ->from('biuro@freeline.pl')
  256.         //         // ->to('marek.szmit@freeline.pl')
  257.         //         ->to('biuro@freeline.pl')
  258.         //         ->replyTo('biuro@freeline.pl')
  259.         //         ->priority(Email::PRIORITY_HIGH)
  260.         //         ->subject("Deadline do kontaktu [" . date("Y-m-d", time()) . "]")
  261.         //         ->html($template);
  262.         //     $this->mailerInterface->send($email);
  263.         // }
  264.         return new JsonResponse(['message' => 'Success sended E-mail'], JsonResponse::HTTP_OK);
  265.     }
  266.     /**
  267.      * @Route("/wyslij-baze", name="wyslij_backup_bazy")
  268.      */
  269.     public function wyslijBackup(
  270.         LeadsManagement $leadsManagement
  271.     ) {
  272.         $dbusername $this->entityManager->getConnection()->getUserName();
  273.         $dbname $this->entityManager->getConnection()->getDatabase();
  274.         $dbpassword $this->entityManager->getConnection()->getPassword();
  275.         $datestamp date("Y-m-d");      // Current date to append to filename of backup file in format of YYYY-MM-DD
  276.         $filename "backup-$datestamp.sql.gz";
  277.         $to "support@myalgebrabook.com";
  278.         $from "support@myalgebrabook.com";
  279.         $subject "MySQL backup file";
  280.         $command "mysqldump -u $dbusername --password=$dbpassword $dbname | gzip > $filename";
  281.         $result passthru($command);
  282.         dd($result);
  283.     }
  284.     /**
  285.      * @Route("/test-maila", name="mailer_test")
  286.      */
  287.     public function testMailer(
  288.         EmailHelper $emailHelper
  289.     ) {
  290.         $template "notify5";
  291.         $content 'Zrobił problem o taki:<br/>';
  292.         $formData = array(
  293.             'sslList' => $content,
  294.             'clientEmail' => 'marek.szmit@freeline.pl',
  295.             'subject' => 'TESTSTTESTEST w Wygasające certyfikaty SSL | Freeline',
  296.             'fromEmail' => 'BŁĄD | Freeline Agencja Interaktywna <rozliczenia@freeline.pl>',
  297.             'bcc' => 'marek.szmit@freeline.pl'
  298.         );
  299.         $emailHelper->sendEmail($formData$template);
  300.         return new Response('Test email sent.');
  301.     }
  302. }