Passed
Push — master ( 9142c7...2196ce )
by Aimeos
13:39
created

Standard::limit()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 16
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 16
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
5
 * @copyright Aimeos (aimeos.org), 2015-2024
6
 * @package Controller
7
 * @subpackage Order
8
 */
9
10
11
namespace Aimeos\Controller\Jobs\Order\Email\Payment;
12
13
14
/**
15
 * Order payment e-mail job controller.
16
 *
17
 * @package Controller
18
 * @subpackage Order
19
 */
20
class Standard
21
	extends \Aimeos\Controller\Jobs\Base
22
	implements \Aimeos\Controller\Jobs\Iface
23
{
24
	/** controller/jobs/order/email/payment/name
25
	 * Class name of the used order email payment scheduler controller implementation
26
	 *
27
	 * Each default job controller can be replace by an alternative imlementation.
28
	 * To use this implementation, you have to set the last part of the class
29
	 * name as configuration value so the controller factory knows which class it
30
	 * has to instantiate.
31
	 *
32
	 * For example, if the name of the default class is
33
	 *
34
	 *  \Aimeos\Controller\Jobs\Order\Email\Payment\Standard
35
	 *
36
	 * and you want to replace it with your own version named
37
	 *
38
	 *  \Aimeos\Controller\Jobs\Order\Email\Payment\Mypayment
39
	 *
40
	 * then you have to set the this configuration option:
41
	 *
42
	 *  controller/jobs/order/email/payment/name = Mypayment
43
	 *
44
	 * The value is the last part of your own class name and it's case sensitive,
45
	 * so take care that the configuration value is exactly named like the last
46
	 * part of the class name.
47
	 *
48
	 * The allowed characters of the class name are A-Z, a-z and 0-9. No other
49
	 * characters are possible! You should always start the last part of the class
50
	 * name with an upper case character and continue only with lower case characters
51
	 * or numbers. Avoid chamel case names like "MyPayment"!
52
	 *
53
	 * @param string Last part of the class name
54
	 * @since 2014.03
55
	 */
56
57
	/** controller/jobs/order/email/payment/decorators/excludes
58
	 * Excludes decorators added by the "common" option from the order email payment controllers
59
	 *
60
	 * Decorators extend the functionality of a class by adding new aspects
61
	 * (e.g. log what is currently done), executing the methods of the underlying
62
	 * class only in certain conditions (e.g. only for logged in users) or
63
	 * modify what is returned to the caller.
64
	 *
65
	 * This option allows you to remove a decorator added via
66
	 * "controller/jobs/common/decorators/default" before they are wrapped
67
	 * around the job controller.
68
	 *
69
	 *  controller/jobs/order/email/payment/decorators/excludes = array( 'decorator1' )
70
	 *
71
	 * This would remove the decorator named "decorator1" from the list of
72
	 * common decorators ("\Aimeos\Controller\Jobs\Common\Decorator\*") added via
73
	 * "controller/jobs/common/decorators/default" to this job controller.
74
	 *
75
	 * @param array List of decorator names
76
	 * @since 2015.09
77
	 * @see controller/jobs/common/decorators/default
78
	 * @see controller/jobs/order/email/payment/decorators/global
79
	 * @see controller/jobs/order/email/payment/decorators/local
80
	 */
81
82
	/** controller/jobs/order/email/payment/decorators/global
83
	 * Adds a list of globally available decorators only to the order email payment controllers
84
	 *
85
	 * Decorators extend the functionality of a class by adding new aspects
86
	 * (e.g. log what is currently done), executing the methods of the underlying
87
	 * class only in certain conditions (e.g. only for logged in users) or
88
	 * modify what is returned to the caller.
89
	 *
90
	 * This option allows you to wrap global decorators
91
	 * ("\Aimeos\Controller\Jobs\Common\Decorator\*") around the job controller.
92
	 *
93
	 *  controller/jobs/order/email/payment/decorators/global = array( 'decorator1' )
94
	 *
95
	 * This would add the decorator named "decorator1" defined by
96
	 * "\Aimeos\Controller\Jobs\Common\Decorator\Decorator1" only to this job controller.
97
	 *
98
	 * @param array List of decorator names
99
	 * @since 2015.09
100
	 * @see controller/jobs/common/decorators/default
101
	 * @see controller/jobs/order/email/payment/decorators/excludes
102
	 * @see controller/jobs/order/email/payment/decorators/local
103
	 */
104
105
	/** controller/jobs/order/email/payment/decorators/local
106
	 * Adds a list of local decorators only to the order email payment controllers
107
	 *
108
	 * Decorators extend the functionality of a class by adding new aspects
109
	 * (e.g. log what is currently done), executing the methods of the underlying
110
	 * class only in certain conditions (e.g. only for logged in users) or
111
	 * modify what is returned to the caller.
112
	 *
113
	 * This option allows you to wrap local decorators
114
	 * ("\Aimeos\Controller\Jobs\Order\Email\Payment\Decorator\*") around this job controller.
115
	 *
116
	 *  controller/jobs/order/email/payment/decorators/local = array( 'decorator2' )
117
	 *
118
	 * This would add the decorator named "decorator2" defined by
119
	 * "\Aimeos\Controller\Jobs\Order\Email\Payment\Decorator\Decorator2" only to this job
120
	 * controller.
121
	 *
122
	 * @param array List of decorator names
123
	 * @since 2015.09
124
	 * @see controller/jobs/common/decorators/default
125
	 * @see controller/jobs/order/email/payment/decorators/excludes
126
	 * @see controller/jobs/order/email/payment/decorators/global
127
	 */
128
129
130
	use \Aimeos\Controller\Jobs\Mail;
131
132
133
	/**
134
	 * Returns the localized name of the job.
135
	 *
136
	 * @return string Name of the job
137
	 */
138
	public function getName() : string
139
	{
140
		return $this->context()->translate( 'controller/jobs', 'Order payment related e-mails' );
141
	}
142
143
144
	/**
145
	 * Returns the localized description of the job.
146
	 *
147
	 * @return string Description of the job
148
	 */
149
	public function getDescription() : string
150
	{
151
		return $this->context()->translate( 'controller/jobs', 'Sends order confirmation or payment status update e-mails' );
152
	}
153
154
155
	/**
156
	 * Executes the job.
157
	 *
158
	 * @throws \Aimeos\Controller\Jobs\Exception If an error occurs
159
	 */
160
	public function run()
161
	{
162
		$context = $this->context();
163
		$config = $context->config();
164
165
		$orderManager = \Aimeos\MShop::create( $context, 'order' );
166
		$limitDate = date( 'Y-m-d H:i:s', time() - $this->limit() * 86400 );
167
168
		$default = [
169
			\Aimeos\MShop\Order\Item\Base::PAY_REFUND,
170
			\Aimeos\MShop\Order\Item\Base::PAY_PENDING,
171
			\Aimeos\MShop\Order\Item\Base::PAY_AUTHORIZED,
172
			\Aimeos\MShop\Order\Item\Base::PAY_RECEIVED,
173
		];
174
175
		/** controller/jobs/order/email/payment/status
176
		 * Only send order payment notification e-mails for these payment status values
177
		 *
178
		 * Notification e-mail about payment status changes can be sent for these
179
		 * status values:
180
		 *
181
		 * * 0: deleted
182
		 * * 1: canceled
183
		 * * 2: refused
184
		 * * 3: refund
185
		 * * 4: pending
186
		 * * 5: authorized
187
		 * * 6: received
188
		 * * 7: transferred
189
		 *
190
		 * User-defined status values are possible but should be in the private
191
		 * block of values between 30000 and 32767.
192
		 *
193
		 * @param integer Payment status constant
194
		 * @since 2014.03
195
		 * @see controller/jobs/order/email/delivery/status
196
		 * @see controller/jobs/order/email/payment/limit-days
197
		 */
198
		foreach( (array) $config->get( 'controller/jobs/order/email/payment/status', $default ) as $status )
199
		{
200
			$param = [\Aimeos\MShop\Order\Item\Status\Base::EMAIL_PAYMENT, (string) $status];
201
			$filter = $orderManager->filter();
202
			$filter->add( $filter->and( [
203
				$filter->compare( '>=', 'order.mtime', $limitDate ),
204
				$filter->compare( '==', 'order.statuspayment', $status ),
205
				$filter->compare( '==', $filter->make( 'order:status', $param ), 0 ),
206
			] ) );
207
208
			$start = 0;
209
			$ref = ['order'] + $context->config()->get( 'mshop/order/manager/subdomains', [] );
210
211
			do
212
			{
213
				$items = $orderManager->search( $filter->slice( $start ), $ref );
214
215
				$this->notify( $items, $status );
216
217
				$count = count( $items );
218
				$start += $count;
219
			}
220
			while( $count >= $filter->getLimit() );
221
		}
222
	}
223
224
225
	/**
226
	 * Returns the address item from the order
227
	 *
228
	 * @param \Aimeos\MShop\Order\Item\Iface $basket Order including address items
229
	 * @return \Aimeos\MShop\Common\Item\Address\Iface Address item
230
	 * @throws \Aimeos\Controller\Jobs\Exception If no suitable address item is available
231
	 */
232
	protected function address( \Aimeos\MShop\Order\Item\Iface $basket ) : \Aimeos\MShop\Common\Item\Address\Iface
233
	{
234
		if( ( $addr = current( $basket->getAddress( 'payment' ) ) ) !== false && $addr->getEmail() ) {
235
			return $addr;
236
		};
237
238
		$msg = sprintf( 'No address with e-mail found in order base with ID "%1$s"', $basket->getId() );
239
		throw new \Aimeos\Controller\Jobs\Exception( $msg );
240
	}
241
242
243
	/**
244
	 * Adds the given list of files as attachments to the mail message object
245
	 *
246
	 * @param \Aimeos\Base\Mail\Message\Iface $msg Mail message
247
	 * @param array $files List of absolute file paths
248
	 */
249
	protected function attachments( \Aimeos\Base\Mail\Message\Iface $msg ) : \Aimeos\Base\Mail\Message\Iface
250
	{
251
		$context = $this->context();
252
		$fs = $context->fs();
253
254
		/** controller/jobs/order/email/payment/attachments
255
		 * List of file paths whose content should be attached to all payment e-mails
256
		 *
257
		 * This configuration option allows you to add files to the e-mails that are
258
		 * sent to the customer when the payment status changes, e.g. for the order
259
		 * confirmation e-mail. These files can't be customer specific.
260
		 *
261
		 * @param array List of absolute file paths
262
		 * @since 2016.10
263
		 * @see controller/jobs/order/email/delivery/attachments
264
		 */
265
		$files = $context->config()->get( 'controller/jobs/order/email/payment/attachments', [] );
266
267
		foreach( $files as $filepath )
268
		{
269
			if( $fs->has( $filepath ) ) {
270
				$msg->attach( $fs->read( $filepath ), basename( $filepath ) );
271
			}
272
		}
273
274
		return $msg;
275
	}
276
277
278
	/**
279
	 * Returns the PDF file name
280
	 *
281
	 * @param \Aimeos\MShop\Order\Item\Iface $order Order item
282
	 * @return string PDF file name
283
	 */
284
	protected function filename( \Aimeos\MShop\Order\Item\Iface $order ) : string
285
	{
286
		return $this->context()->translate( 'controller/jobs', 'Invoice' ) . '-' . $order->getInvoiceNumber() . '.pdf';
287
	}
288
289
290
	/**
291
	 * Returns the number of days after no e-mail will be sent anymore
292
	 *
293
	 * @return int Number of days
294
	 */
295
	protected function limit() : int
296
	{
297
		/** controller/jobs/order/email/payment/limit-days
298
		 * Only send payment e-mails of orders that were created in the past within the configured number of days
299
		 *
300
		 * The payment e-mails are normally send immediately after the payment
301
		 * status has changed. This option prevents e-mails for old order from
302
		 * being send in case anything went wrong or an update failed to avoid
303
		 * confusion of customers.
304
		 *
305
		 * @param integer Number of days
306
		 * @since 2014.03
307
		 * @see controller/jobs/order/email/delivery/limit-days
308
		 * @see controller/jobs/service/delivery/process/limit-days
309
		 */
310
		return (int) $this->context()->config()->get( 'controller/jobs/order/email/payment/limit-days', 30 );
311
	}
312
313
314
	/**
315
	 * Sends the payment e-mail for the given orders
316
	 *
317
	 * @param \Aimeos\Map $items List of order items implementing \Aimeos\MShop\Order\Item\Iface with their IDs as keys
318
	 * @param int $status Delivery status value
319
	 */
320
	protected function notify( \Aimeos\Map $items, int $status )
321
	{
322
		$context = $this->context();
323
		$sites = $this->sites( $items->getSiteId()->unique() );
324
325
		foreach( $items as $id => $item )
326
		{
327
			try
328
			{
329
				$list = $sites->get( $item->getSiteId(), map() );
330
331
				$this->send( $item, $list->getTheme()->filter()->last(), $list->getLogo()->filter()->last() );
332
				$this->status( $id, $status );
333
334
				$str = sprintf( 'Sent order payment e-mail for order "%1$s" and status "%2$s"', $item->getId(), $status );
335
				$context->logger()->info( $str, 'email/order/payment' );
336
			}
337
			catch( \Exception $e )
338
			{
339
				$str = 'Error while trying to send payment e-mail for order ID "%1$s" and status "%2$s": %3$s';
340
				$msg = sprintf( $str, $item->getId(), $item->getStatusPayment(), $e->getMessage() );
341
				$context->logger()->error( $msg . PHP_EOL . $e->getTraceAsString(), 'email/order/payment' );
342
			}
343
		}
344
	}
345
346
347
	/**
348
	 * Returns the generated PDF file for the order
349
	 *
350
	 * @param \Aimeos\Base\View\Iface $view View object with address and order item assigned
351
	 * @return string|null PDF content or NULL for no PDF file
352
	 */
353
	protected function pdf( \Aimeos\Base\View\Iface $view ) : ?string
354
	{
355
		$config = $this->context()->config();
356
357
		/** controller/jobs/order/email/payment/pdf
358
		 * Enables attaching the order confirmation PDF to the payment e-mail
359
		 *
360
		 * The order confirmation PDF contains the same information like the
361
		 * HTML e-mail and can be also used as invoice if possible.
362
		 *
363
		 * @param bool TRUE to enable attaching the PDF, FALSE to skip the PDF
364
		 * @since 2022.04
365
		 */
366
		if( !$config->get( 'controller/jobs/order/email/payment/pdf', true ) ) {
367
			return null;
368
		}
369
370
		$pdf = new class( PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false ) extends \TCPDF {
371
			private ?\Closure $headerFcn = null;
372
			private ?\Closure $footerFcn = null;
373
374
			public function Footer() { return ( $fcn = $this->footerFcn ) ? $fcn( $this ) : null; }
375
			public function Header() { return ( $fcn = $this->headerFcn ) ? $fcn( $this ) : null; }
376
			public function setFooterFunction( \Closure $fcn ) { $this->footerFcn = $fcn; }
377
			public function setHeaderFunction( \Closure $fcn ) { $this->headerFcn = $fcn; }
378
		};
379
		$pdf->setCreator( PDF_CREATOR );
380
		$pdf->setAuthor( 'Aimeos' );
381
382
		/** controller/jobs/order/email/payment/template-pdf
383
		 * Relative path to the template for the PDF part of the payment emails.
384
		 *
385
		 * The template file contains the text and processing instructions
386
		 * to generate the result shown in the body of the frontend. The
387
		 * configuration string is the path to the template file relative
388
		 * to the templates directory (usually in templates/controller/jobs).
389
		 * You can overwrite the template file configuration in extensions and
390
		 * provide alternative templates.
391
		 *
392
		 * @param string Relative path to the template
393
		 * @since 2022.10
394
		 * @see controller/jobs/order/email/payment/template-html
395
		 * @see controller/jobs/order/email/payment/template-text
396
		 */
397
		$template = $config->get( 'controller/jobs/order/email/payment/template-pdf', 'order/email/payment/pdf' );
398
399
		// Generate HTML before creating first PDF page to include header added in template
400
		$content = $view->set( 'pdf', $pdf )->render( $template );
401
402
		$pdf->addPage();
403
		$pdf->writeHtml( $content );
404
		$pdf->lastPage();
405
406
		return $pdf->output( '', 'S' );
407
	}
408
409
410
	/**
411
	 * Sends the payment related e-mail for a single order
412
	 *
413
	 * @param \Aimeos\MShop\Order\Item\Iface $order Order item
414
	 * @param string|null $theme Theme name or NULL for default theme
415
	 * @param string|null $logoPath Relative path to the logo in the fs-media file system
416
	 */
417
	protected function send( \Aimeos\MShop\Order\Item\Iface $order, string $theme = null, string $logoPath = null )
418
	{
419
		/** controller/jobs/order/email/payment/template-html
420
		 * Relative path to the template for the HTML part of the payment emails.
421
		 *
422
		 * The template file contains the HTML code and processing instructions
423
		 * to generate the result shown in the body of the frontend. The
424
		 * configuration string is the path to the template file relative
425
		 * to the templates directory (usually in templates/controller/jobs).
426
		 * You can overwrite the template file configuration in extensions and
427
		 * provide alternative templates.
428
		 *
429
		 * @param string Relative path to the template
430
		 * @since 2022.04
431
		 * @see controller/jobs/order/email/payment/template-text
432
		 */
433
434
		/** controller/jobs/order/email/payment/template-text
435
		 * Relative path to the template for the text part of the payment emails.
436
		 *
437
		 * The template file contains the text and processing instructions
438
		 * to generate the result shown in the body of the frontend. The
439
		 * configuration string is the path to the template file relative
440
		 * to the templates directory (usually in templates/controller/jobs).
441
		 * You can overwrite the template file configuration in extensions and
442
		 * provide alternative templates.
443
		 *
444
		 * @param string Relative path to the template
445
		 * @since 2022.04
446
		 * @see controller/jobs/order/email/payment/template-html
447
		 */
448
449
		$address = $this->address( $order );
450
451
		$context = $this->context();
452
		$context->locale()->setLanguageId( $address->getLanguageId() );
453
454
		$msg = $this->call( 'mailTo', $address );
455
		$msg = $this->attachments( $msg );
456
457
		$view = $this->view( $order, $theme );
458
		$view->logo = $msg->embed( $this->call( 'mailLogo', $logoPath ), basename( (string) $logoPath ) );
459
		$view->summaryBasket = $order;
460
		$view->addressItem = $address;
461
		$view->orderItem = $order;
462
463
		$config = $context->config();
464
465
		/** controller/jobs/order/email/payment/cc-email
466
		 * E-Mail address all payment e-mails should be also sent to
467
		 *
468
		 * Using this option you can send a copy of all payment related e-mails
469
		 * to a second e-mail account. This can be handy for testing and checking
470
		 * the e-mails sent to customers.
471
		 *
472
		 * It also allows shop owners with a very small volume of orders to be
473
		 * notified about payment changes. Be aware that this isn't useful if the
474
		 * order volumne is high or has peeks!
475
		 *
476
		 * @param string E-mail address or list of e-mail addresses
477
		 * @since 2023.10
478
		 */
479
		$msg->cc( $config->get( 'controller/jobs/order/email/payment/cc-email', '' ) );
480
481
		/** controller/jobs/order/email/payment/bcc-email
482
		 * Hidden e-mail address all payment e-mails should be also sent to
483
		 *
484
		 * Using this option you can send a copy of all payment related e-mails
485
		 * to a second e-mail account. This can be handy for testing and checking
486
		 * the e-mails sent to customers.
487
		 *
488
		 * It also allows shop owners with a very small volume of orders to be
489
		 * notified about payment changes. Be aware that this isn't useful if the
490
		 * order volumne is high or has peeks!
491
		 *
492
		 * @param string|array E-mail address or list of e-mail addresses
493
		 * @since 2014.03
494
		 */
495
		$msg->bcc( $config->get( 'controller/jobs/order/email/payment/bcc-email', [] ) );
496
497
		$msg->subject( sprintf( $context->translate( 'controller/jobs', 'Your order %1$s' ), $order->getInvoiceNumber() ) )
498
			->html( $view->render( $config->get( 'controller/jobs/order/email/payment/template-html', 'order/email/payment/html' ) ) )
499
			->text( $view->render( $config->get( 'controller/jobs/order/email/payment/template-text', 'order/email/payment/text' ) ) )
500
			->attach( $this->pdf( $view ), $this->call( 'filename', $order ), 'application/pdf' )
501
			->send();
502
	}
503
504
505
	/**
506
	 * Adds the status of the delivered e-mail for the given order ID
507
	 *
508
	 * @param string $orderId Unique order ID
509
	 * @param int $value Status value
510
	 */
511
	protected function status( string $orderId, int $value )
512
	{
513
		$manager = \Aimeos\MShop::create( $this->context(), 'order/status' );
514
515
		$item = $manager->create()
516
			->setParentId( $orderId )
517
			->setType( \Aimeos\MShop\Order\Item\Status\Base::EMAIL_PAYMENT )
518
			->setValue( $value );
519
520
		$manager->save( $item );
521
	}
522
523
524
	/**
525
	 * Returns the site items for the given site codes
526
	 *
527
	 * @param iterable $siteIds List of site IDs
528
	 * @return \Aimeos\Map Site items with codes as keys
529
	 */
530
	protected function sites( iterable $siteIds ) : \Aimeos\Map
531
	{
532
		$map = [];
533
		$manager = \Aimeos\MShop::create( $this->context(), 'locale/site' );
534
535
		foreach( $siteIds as $siteId )
536
		{
537
			$list = explode( '.', trim( $siteId, '.' ) );
538
			$map[$siteId] = $manager->getPath( end( $list ) );
539
		}
540
541
		return map( $map );
542
	}
543
544
545
	/**
546
	 * Returns the view populated with common data
547
	 *
548
	 * @param \Aimeos\MShop\Order\Item\Iface $base Basket including addresses
549
	 * @param string|null $theme Theme name
550
	 * @return \Aimeos\Base\View\Iface View object
551
	 */
552
	protected function view( \Aimeos\MShop\Order\Item\Iface $base, string $theme = null ) : \Aimeos\Base\View\Iface
553
	{
554
		$address = $this->address( $base );
555
		$langId = $address->getLanguageId() ?: $base->locale()->getLanguageId();
556
557
		$view = $this->call( 'mailView', $langId );
558
		$view->intro = $this->call( 'mailIntro', $address );
559
		$view->css = $this->call( 'mailCss', $theme );
560
		$view->address = $address;
561
		$view->urlparams = [
562
			'currency' => $base->getPrice()->getCurrencyId(),
563
			'site' => $base->getSiteCode(),
564
			'locale' => $langId,
565
		];
566
567
		return $view;
568
	}
569
}
570