Esempio n. 1
0
 /**
  * @Secure(roles={"ROLE_CA"})
  */
 public function sendTestAction(CampaignFaxing $campaign)
 {
     $form = $this->createForm('enigmatic_crm_campaign_faxing_test', array('phone' => null));
     $form->handleRequest($this->get('request'));
     if ($form->isSubmitted() && $form->isValid()) {
         $data = $form->getData();
         $num_fax = $data['phone'];
         if (strlen($num_fax) == 12) {
             $num_fax = '00' . substr($num_fax, 1, 12);
         } else {
             $num_fax = '0033' . substr($num_fax, 1, 10);
         }
         $mail = $this->get('enigmatic_mailer');
         $i = 1;
         foreach ($campaign->getFaxs() as $fax) {
             $mail->addAttach($fax->getAbsolutePath(), 'fax' . $i . '.pdf');
             $i++;
         }
         $mail->sendMail($num_fax . '@ecofax.fr', $this->renderView('EnigmaticCRMBundle:CampaignFaxing/Email:faxing.html.twig', array('subject' => $this->container->getParameter('enigmatic_crm.ecofax.login'), 'content' => $this->container->getParameter('enigmatic_crm.ecofax.password'))));
         $this->get('session')->getFlashBag()->add('success', $this->get('translator')->trans('enigmatic.crm.campaign_faxing.message.send_test'));
         return $this->redirect($this->generateUrl('enigmatic_crm_campaign_faxing_view', array('campaign' => $campaign->getId())));
     }
     return $this->get('enigmatic.render')->render($this->renderView('EnigmaticCRMBundle:CampaignFaxing:sendTest.html.twig', array('campaign' => $campaign, 'form' => $form->createView())));
 }
Esempio n. 2
0
 public function grantCampaignFaxing(CampaignFaxing $campaignFaxing)
 {
     $grant = false;
     if ($this->authorizationChecker->isGranted('ROLE_RS')) {
         $grant = true;
     } elseif ($this->authorizationChecker->isGranted('ROLE_RCA')) {
         $agency = $this->userManager->getCurrent()->getAgency();
         foreach ($campaignFaxing->getOwner()->getAgencies() as $histoAgence) {
             if ($agency == $histoAgence->getAgency()) {
                 if ($histoAgence->getDateCreated() <= $campaignFaxing->getDateCreated()) {
                     if ($histoAgence->getEnd()) {
                         if ($histoAgence->getEnd()->getDateEnd() > $campaignFaxing->getDateCreated()) {
                             $grant = true;
                         }
                     } else {
                         $grant = true;
                     }
                 }
             }
         }
     } elseif ($this->authorizationChecker->isGranted('ROLE_CA')) {
         $agency = $this->userManager->getCurrent()->getAgency();
         foreach ($campaignFaxing->getOwner()->getAgencies() as $histoAgence) {
             if ($agency == $histoAgence->getAgency()) {
                 if ($histoAgence->getDateCreated() <= $campaignFaxing->getDateCreated()) {
                     if ($histoAgence->getEnd() == null) {
                         $grant = true;
                     }
                 }
             }
         }
         if ($grant) {
             $grant = false;
             if ($campaignFaxing->getOwner() == $this->userManager->getCurrent()) {
                 $grant = true;
             }
         }
     }
     return $grant;
 }