<?php
namespace App\Controller;
use App\Entity\Preorders;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Request;
use App\Managements\LeadsManagement;
use App\Managements\InvoicesManagement;
use App\Managements\EmailTemplatesManagement;
use Symfony\Component\Mailer\MailerInterface;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Component\Mime\Email;
use Symfony\Component\HttpFoundation\JsonResponse;
use App\Entity\Users;
use App\Helpers\EmailHelper;
use App\Managements\PreordersManagement;
use Symfony\Component\HttpFoundation\Response;
class IndexController extends AbstractController
{
private $mailerInterface;
public function __construct(
EntityManagerInterface $entityManager,
EmailTemplatesManagement $emailTemplatesManagement,
MailerInterface $mailerInterface
) {
$this->entityManager = $entityManager;
$this->emailTemplatesManagement = $emailTemplatesManagement;
$this->mailerInterface = $mailerInterface;
}
/**
* @Route("", name="index")
*/
public function index()
{
if ($this->getUser()) {
$access = $this->getDoctrine()->getRepository(Users::class)->findOneBy(array("email" => $this->getUser()->getEmail()))->getAccessModules();
$_SESSION['accessModules'] = explode(",", $access);
}
if (isset($_SESSION['accessModules'])) {
if (in_array('admin_invoices', $_SESSION['accessModules'])) {
return $this->redirectToRoute('admin_invoices');
} else {
// return $this->redirectToRoute($_SESSION['accessModules'][0]);
return $this->redirectToRoute('admin_panel');
}
} else {
return $this->redirectToRoute('admin');
}
}
/**
* @Route("/admin", name="admin")
*/
public function admin()
{
return $this->redirectToRoute('admin_panel');
}
/**
* @Route("/przypomnij", name="przypomnij")
*/
public function przypomnij(
LeadsManagement $leadsManagement,
InvoicesManagement $invoicesManagement
) {
// $items = $leadsManagement->forToday();
// $emailEntity = $this->emailTemplatesManagement->load("rleads");
// $subject = "Temat";
// // dd($items);
// foreach ($items as $k => $v) {
// $list = '<ol>' . implode('', $v) . '</ol>';
// $template = $emailEntity->getTemplate();
// $template = str_replace('{{leads}}', $list, $template);
// $email = (new Email())
// ->from('biuro@freeline.pl')
// ->to($k)
// ->replyTo('biuro@freeline.pl')
// ->priority(Email::PRIORITY_HIGH)
// ->subject("Leady do kontaktu [" . date("Y-m-d", time()) . "]")
// ->html($template);
// if($k == 'piotr@freeline.pl'){
// $email->addCc('kamil.kneja@freeline.pl');
// }
// $this->mailerInterface->send($email);
// }
// $list = '<ul>';
// $items = $invoicesManagement->forToday();
// foreach ($items as $item) {
// $list .= '<li>Pozycja ' . $item['name'] . ' na dokumencie ' . $item['invoice'] . ' wygasa dnia ' . date_format($item['deadline'], 'Y-m-d') . '</li>';
// }
// $list .= '</ul>';
// if (!empty($items)) {
// $emailEntity = $this->emailTemplatesManagement->load("rpositions");
// $subject = "Temat";
// $template = $emailEntity->getTemplate();
// $template = str_replace('{{rpositions}}', $list, $template);
// $email = (new Email())
// ->from('biuro@freeline.pl')
// // ->to('marek.szmit@freeline.pl')
// ->to('biuro@freeline.pl')
// ->replyTo('biuro@freeline.pl')
// ->priority(Email::PRIORITY_HIGH)
// ->subject("Deadline do kontaktu [" . date("Y-m-d", time()) . "]")
// ->html($template);
// $this->mailerInterface->send($email);
// }
return new JsonResponse(['message' => 'Success sended E-mail'], JsonResponse::HTTP_OK);
}
/**
* @Route("/przypomnij-o-umowach", name="przypomnijUmowy")
*/
public function przypomnijUmowy(
LeadsManagement $leadsManagement,
InvoicesManagement $invoicesManagement
) {
$emailEntity = $this->emailTemplatesManagement->load("agreements");
$template = $emailEntity->getTemplate();
$notSentAgreements = $leadsManagement->getAgreementNotSentYet();
$notSent = $this->prepareAgreementLeadsMail($notSentAgreements, 1);
if ($notSent) {
foreach ($notSent as $email => $content) {
$template = str_replace('{{info}}', $content, $template);
$email = (new Email())
->from('biuro@freeline.pl')
->to($email)
->addBcc('piotr.ostrzyzek@freeline.pl')
->replyTo('biuro@freeline.pl')
->priority(Email::PRIORITY_HIGH)
->subject("Twoje nie wysłane umowy")
->html($template);
$this->mailerInterface->send($email);
}
}
$template = $emailEntity->getTemplate();
$sentAgreements = $leadsManagement->getAgreementSent();
$sent = $this->prepareAgreementLeadsMail($sentAgreements, 2);
if ( $sent ) {
foreach ($sent as $email => $content) {
$template = str_replace('{{info}}', $content, $template);
$email = (new Email())
->from('biuro@freeline.pl')
->to($email)
->replyTo('biuro@freeline.pl')
->priority(Email::PRIORITY_HIGH)
->subject("Twoje oczekujące umowy")
->html($template);
$this->mailerInterface->send($email);
}
}
return new JsonResponse(['message' => 'Success sended E-mail'], JsonResponse::HTTP_OK);
}
/**
* Zwraca przygotowaną listę maili do wysłania, kluczem jest adres e-mail opiekuna
* @param int $type - 1-Nie wysłane, 2-Oczekujące
* @return Array()
*/
private function prepareAgreementLeadsMail($leads, $type = 1)
{
$heading = ($type == 2) ? 'Twoje oczekujące umowy:' : 'Twoje nie wysłane umowy:';
$temp = [];
$users = $this->getDoctrine()->getRepository(Users::class)->findAll();
foreach ($users as $user) {
$mailList[$user->getId()] = $user->getEmail();
}
foreach ($leads as $item) {
if (!isset($temp[$item->getOpiekun()]) || !isset($temp[$item->getOpiekun()]['content'])) {
$temp[$item->getOpiekun()]['content'] = '';
}
$temp[$item->getOpiekun()]['content'] .= '<li><a href="https://my.freelinelab.pl/admin/leads/edytuj/' . $item->getId() . '">' . $item->getName() . ' - ' . $item->getAlias() . '</a></li>';
}
if (count($temp) == 0) {
return false;
}
foreach ($temp as $user => $content) {
$userContent[$mailList[$user]] = $heading . '<br/><ol>' . $content['content'] . '</ol>';
}
return $userContent;
}
/**
* @Route("/przypomnij-selfinfo", name="przypomnij_selfinfo")
*/
public function przypomnijSelfInfo(
LeadsManagement $leadsManagement,
PreordersManagement $preordersManagement
) {
$emailEntity = $this->emailTemplatesManagement->load("selfinfo");
$projects = $this->entityManager->getRepository(Preorders::class)->findPreordersToNotify();
$userProjects = [];
foreach( $projects as $project){
if($project->getWorker()){
$lastContact = $preordersManagement->getLastContact($project->getId());
if( !isset($userProjects[$project->getWorker()->getEmail() ]) ) { $userProjects[$project->getWorker()->getEmail()] = []; }
if ( $lastContact === false ){ $lastContact = 9999; }
$userProjects[$project->getWorker()->getEmail()][$project->getClient()] = $lastContact;
}
}
$response = array();
foreach(array_keys($userProjects) as $user){
if ( !isset($response[$user]) ) { $response[$user] = ''; };
arsort( $userProjects[$user] );
foreach( $userProjects[$user] as $client => $days){
$color = '#cfcfcf';
$text = '#000';
$border = '#e9ecef';
if( $days > 7 && $days !== 9999){
$text = '#664d03';
$color= '#ffda6a';
$border = '#ffe69c';
}
if($days === 9999) {
$days = 'Nigdy';
$border = '#f8d7da';
$color = '#ff8d97';
$text= '#58151c';
}else{
$days .= ' dni temu';
}
$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>';
}
}
foreach( $response as $email => $project ){
$content = '<table><thead><tr><th align="left">Klient</th><th>Ostatni kontakt</th></tr></thead>' . $project . '</table>';
$template = $emailEntity->getTemplate();
$template = str_replace('{{content}}', $content, $template);
$email = (new Email())
->from('biuro@freeline.pl')
->to($email)
->cc('kamil.kneja@freeline.pl')
->replyTo('biuro@freeline.pl')
->priority(Email::PRIORITY_HIGH)
->subject("Przypominam o uzupełnieniu selfinfo [" . date("Y-m-d", time()) . "]")
->html($template);
$this->mailerInterface->send($email);
}
// }
// $list = '<ul>';
// $items = $invoicesManagement->forToday();
// foreach ($items as $item) {
// $list .= '<li>Pozycja ' . $item['name'] . ' na dokumencie ' . $item['invoice'] . ' wygasa dnia ' . date_format($item['deadline'], 'Y-m-d') . '</li>';
// }
// $list .= '</ul>';
// if (!empty($items)) {
// $emailEntity = $this->emailTemplatesManagement->load("rpositions");
// $subject = "Temat";
// $template = $emailEntity->getTemplate();
// $template = str_replace('{{rpositions}}', $list, $template);
// $email = (new Email())
// ->from('biuro@freeline.pl')
// // ->to('marek.szmit@freeline.pl')
// ->to('biuro@freeline.pl')
// ->replyTo('biuro@freeline.pl')
// ->priority(Email::PRIORITY_HIGH)
// ->subject("Deadline do kontaktu [" . date("Y-m-d", time()) . "]")
// ->html($template);
// $this->mailerInterface->send($email);
// }
return new JsonResponse(['message' => 'Success sended E-mail'], JsonResponse::HTTP_OK);
}
/**
* @Route("/wyslij-baze", name="wyslij_backup_bazy")
*/
public function wyslijBackup(
LeadsManagement $leadsManagement
) {
$dbusername = $this->entityManager->getConnection()->getUserName();
$dbname = $this->entityManager->getConnection()->getDatabase();
$dbpassword = $this->entityManager->getConnection()->getPassword();
$datestamp = date("Y-m-d"); // Current date to append to filename of backup file in format of YYYY-MM-DD
$filename = "backup-$datestamp.sql.gz";
$to = "support@myalgebrabook.com";
$from = "support@myalgebrabook.com";
$subject = "MySQL backup file";
$command = "mysqldump -u $dbusername --password=$dbpassword $dbname | gzip > $filename";
$result = passthru($command);
dd($result);
}
/**
* @Route("/test-maila", name="mailer_test")
*/
public function testMailer(
EmailHelper $emailHelper
) {
$template = "notify5";
$content = 'Zrobił problem o taki:<br/>';
$formData = array(
'sslList' => $content,
'clientEmail' => 'marek.szmit@freeline.pl',
'subject' => 'TESTSTTESTEST w Wygasające certyfikaty SSL | Freeline',
'fromEmail' => 'BŁĄD | Freeline Agencja Interaktywna <rozliczenia@freeline.pl>',
'bcc' => 'marek.szmit@freeline.pl'
);
$emailHelper->sendEmail($formData, $template);
return new Response('Test email sent.');
}
}