|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace ByTIC\DocumentGenerator\PdfLetters\Actions; |
|
4
|
|
|
|
|
5
|
|
|
use ByTIC\DocumentGenerator\PdfLetters\Models\Downloads\DownloadsTrait; |
|
6
|
|
|
use ByTIC\DocumentGenerator\PdfLetters\Models\PdfLetters\PdfLettersTrait; |
|
7
|
|
|
use ByTIC\DocumentGenerator\PdfLetters\PdfLettersManager; |
|
8
|
|
|
use Nip\MailModule\Models\EmailsTable\EmailsTrait; |
|
|
|
|
|
|
9
|
|
|
use Nip\Records\AbstractModels\RecordManager as AbstractRecordManager; |
|
10
|
|
|
use Nip\Records\RecordManager; |
|
11
|
|
|
use Nip\Records\Locator\ModelLocator; |
|
12
|
|
|
|
|
13
|
|
|
/** |
|
14
|
|
|
* Class DownloadStatsProcess |
|
15
|
|
|
* @package ByTIC\DocumentGenerator\PdfLetters\Actions |
|
16
|
|
|
*/ |
|
17
|
|
|
class DownloadStatsProcess |
|
18
|
|
|
{ |
|
19
|
|
|
/** |
|
20
|
|
|
* @var PdfLettersManager[] |
|
21
|
|
|
*/ |
|
22
|
|
|
protected $managers = []; |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* DownloadStatsProcess constructor. |
|
26
|
|
|
* @param array $managers |
|
27
|
|
|
*/ |
|
28
|
|
|
public function __construct(array $managers = null) |
|
29
|
|
|
{ |
|
30
|
|
|
$this->managers = is_array($managers) ? $managers : app('dg.pdf-letters.manager')->getManagerClasses(); |
|
31
|
|
|
} |
|
32
|
|
|
|
|
33
|
|
|
public function handle() |
|
34
|
|
|
{ |
|
35
|
|
|
foreach ($this->managers as $manager) { |
|
36
|
|
|
$manager = is_object($manager) ? $manager : ModelLocator::get($manager); |
|
37
|
|
|
$this->processForManager($manager); |
|
|
|
|
|
|
38
|
|
|
} |
|
39
|
|
|
} |
|
40
|
|
|
|
|
41
|
|
|
/** |
|
42
|
|
|
* @param RecordManager|AbstractRecordManager|PdfLettersTrait $letterManager |
|
43
|
|
|
*/ |
|
44
|
|
|
protected function processForManager(AbstractRecordManager $letterManager) |
|
45
|
|
|
{ |
|
46
|
|
|
/** @noinspection PhpUnhandledExceptionInspection */ |
|
47
|
|
|
if (!$letterManager->hasRelation('Downloads')) { |
|
48
|
|
|
return; |
|
49
|
|
|
} |
|
50
|
|
|
$downloadsManager = $letterManager->getDownloadsManager(); |
|
51
|
|
|
$letters = $this->getLastLettersFromDownloads($letterManager, $downloadsManager); |
|
|
|
|
|
|
52
|
|
|
|
|
53
|
|
|
$statsManager = $letterManager->getStatsManager(); |
|
54
|
|
|
foreach ($letters as $letter) { |
|
55
|
|
|
if ($downloadsManager->shouldTrackLetter($letter)) { |
|
|
|
|
|
|
56
|
|
|
continue; |
|
57
|
|
|
} |
|
58
|
|
|
$statsManager->compileForLetter($letter); |
|
|
|
|
|
|
59
|
|
|
} |
|
60
|
|
|
} |
|
61
|
|
|
|
|
62
|
|
|
/** |
|
63
|
|
|
* @param PdfLettersTrait|RecordManager $letterManager |
|
64
|
|
|
* @param DownloadsTrait|RecordManager $downloadsManager |
|
65
|
|
|
*/ |
|
66
|
|
|
protected function getLastLettersFromDownloads($letterManager, $downloadsManager) |
|
67
|
|
|
{ |
|
68
|
|
|
/** @noinspection PhpUnhandledExceptionInspection */ |
|
69
|
|
|
$letterPK = $letterManager->getRelation('Downloads')->getFK(); |
|
|
|
|
|
|
70
|
|
|
|
|
71
|
|
|
$queryDownloads = $downloadsManager->newSelectQuery(); |
|
|
|
|
|
|
72
|
|
|
$queryDownloads->setCols($letterPK); |
|
|
|
|
|
|
73
|
|
|
$queryDownloads->group($letterPK); |
|
|
|
|
|
|
74
|
|
|
|
|
75
|
|
|
$queryLetters = $letterManager->newSelectQuery(); |
|
76
|
|
|
$queryLetters->where('id IN ?', $queryDownloads); |
|
|
|
|
|
|
77
|
|
|
$queryLetters->limit(10); |
|
78
|
|
|
|
|
79
|
|
|
return $letterManager->findByQuery($queryLetters); |
|
|
|
|
|
|
80
|
|
|
} |
|
81
|
|
|
} |
|
82
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths