Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1979 | Rev 6849 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1979 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Command;
6
 
7
use Symfony\Component\Console\Command\Command;
8
use Symfony\Component\Console\Input\InputInterface;
9
//use Symfony\Component\Console\Input\InputOption;
10
use Symfony\Component\Console\Output\OutputInterface;
11
use Laminas\Db\Adapter\AdapterInterface;
6749 efrain 12
use LeadersLinked\Cache\CacheInterface;
1979 efrain 13
use Laminas\Log\LoggerInterface;
14
use LeadersLinked\Mapper\EmailMapper;
15
use PHPMailer\PHPMailer\PHPMailer;
16
use LeadersLinked\Model\Email;
17
use PHPMailer\PHPMailer\SMTP;
18
 
19
class ProcessQueueUserDeletedCommand extends Command
20
{
21
    /**
22
     *
23
     * @var AdapterInterface
24
     */
25
    private $adapter;
26
 
27
 
28
    /**
29
     *
6749 efrain 30
     * @var CacheInterface
1979 efrain 31
     */
32
    private $cache;
33
 
34
    /**
35
     *
36
     * @var  LoggerInterface
37
     */
38
    private $logger;
39
 
40
    /**
41
     *
42
     * @var array
43
     */
44
    private $config;
45
 
46
 
47
    /**
48
     *
49
     * @param AdapterInterface $adapter
6749 efrain 50
     * @param CacheInterface $cache
1979 efrain 51
     * @param LoggerInterface $logger
52
     * @param array $config
53
     */
54
     public function __construct($adapter, $cache, $logger, $config)
55
    {
56
        $this->adapter      = $adapter;
57
        $this->cache        = $cache;
58
        $this->logger       = $logger;
59
        $this->config       = $config;
60
 
61
        parent::__construct();
62
    }
63
 
64
 
65
    protected function execute(InputInterface $input, OutputInterface $output) : int
66
    {
67
 
68
        $sandbox = $this->config['leaderslinked.runmode.sandbox'];
69
        if($sandbox) {
70
            $batch_size     = $this->config['leaderslinked.email.sandbox_batch_size'];
71
            $from_address   = $this->config['leaderslinked.email.sandbox_from_address'];
72
            $from_name      = $this->config['leaderslinked.email.sandbox_from_name'];
73
            $host           = $this->config['leaderslinked.email.sandbox_host'];
74
            $port           = $this->config['leaderslinked.email.sandbox_port'];
75
            $username       = $this->config['leaderslinked.email.sandbox_username'];
76
            $password       = $this->config['leaderslinked.email.sandbox_password'];
77
 
78
        } else {
79
            $batch_size     = $this->config['leaderslinked.email.production_batch_size'];
80
            $from_address   = $this->config['leaderslinked.email.production_from_address'];
81
            $from_name      = $this->config['leaderslinked.email.production_from_name'];
82
            $host           = $this->config['leaderslinked.email.production_host'];
83
            $port           = $this->config['leaderslinked.email.production_port'];
84
            $username       = $this->config['leaderslinked.email.production_username'];
85
            $password       = $this->config['leaderslinked.email.production_password'];
86
        }
87
 
88
        echo 'Username : ' . $username . PHP_EOL;
89
        echo 'Password : ' . $password . PHP_EOL;
90
        echo 'Host : ' . $host . PHP_EOL;
91
        echo 'Port : ' . $port . PHP_EOL;
92
 
93
 
94
 
95
        $output->writeln('Inicio del proceso de la cola de Email');
96
 
97
        $emailCompleted = 0;
98
        $emailError = 0;
99
 
100
        $emailMapper = EmailMapper::getInstance($this->adapter);
101
        $emails = $emailMapper->fetchBatch($batch_size);
102
 
103
 
104
 
105
        if($emails) {
106
            foreach($emails as $email)
107
            {
108
                $content = json_decode($email->content, true);
109
 
110
                $to_address = $content['to_address'];
111
                $to_name    = $content['to_name'];
112
                $cc         = $content['cc'];
113
                $bcc        = $content['bcc'];
114
                $subject    = $content['subject'];
115
                $message    = $content['message'];
116
 
117
 
118
 
119
                $phpMailer = new PHPMailer();
120
                $phpMailer->isSMTP();
121
 
122
                $phpMailer->addAddress($to_address, $to_name);
123
                if($cc) {
124
                    foreach($cc as $address => $name) {
125
                        $phpMailer->addCC($address, $name);
126
                    }
127
                }
128
                if($bcc) {
129
                    foreach($bcc as $address => $name) {
130
                        $phpMailer->addBCC($address, $name);
131
                    }
132
                }
133
 
134
                $phpMailer->setFrom($from_address, $from_name);
135
                $phpMailer->SMTPDebug    = false;
136
                $phpMailer->Host         = $host;
137
                $phpMailer->Port         = $port;
138
                $phpMailer->IsHTML(true);
139
                $phpMailer->SMTPAuth    = true;
140
                $phpMailer->SMTPSecure   = 'tls';
141
                $phpMailer->SMTPAuth     = true;
142
                $phpMailer->Username     = $username;
143
                $phpMailer->Password     = $password;
144
                $phpMailer->Subject      = $subject;
145
                $phpMailer->Body         = $message;
146
                $phpMailer->AltBody      = $message;
147
 
148
                /*
149
                $mail->SMTPOptions = [
150
                    'ssl' => [
151
                        'verify_peer' => false,
152
                        'verify_peer_name' => false,
153
                        'allow_self_signed' => true
154
                    ]
155
                ];
156
                */
157
 
158
                //print_r($phpMailer);
159
 
160
                $result = $phpMailer->send();
161
 
162
                if($result) {
163
                    $emailCompleted++;
164
                    $email->status = Email::STATUS_COMPLETED;
165
                } else {
166
                    if($email->tried == 2) {
167
                        $emailError++;
168
                        $email->status = Email::STATUS_ERROR;
169
                    }
170
                    $email->tried++;
171
 
172
                }
173
                $emailMapper->update($email);
174
 
175
 
176
            }
177
        }
178
 
179
        $output->writeln('Email con Errores descartados: ' . $emailError);
180
        $output->writeln('Email enviados correctamente:'  . $emailCompleted);
181
 
182
        $output->writeln('Fin del proceso de la cola de Email');
183
 
184
        return 0;
185
    }
186
 
187
 
188
 
189
}