RepositoryGenerator   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 77
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 6
eloc 23
c 2
b 0
f 0
dl 0
loc 77
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A generate() 0 26 3
A rollback() 0 4 2
A __construct() 0 5 1
1
<?php
2
3
namespace PWWEB\Artomator\Generators;
4
5
use InfyOm\Generator\Common\CommandData;
6
use InfyOm\Generator\Generators\BaseGenerator;
7
use InfyOm\Generator\Utils\FileUtil;
8
9
class RepositoryGenerator extends BaseGenerator
10
{
11
    /**
12
     * Command Data.
13
     *
14
     * @var CommandData
15
     */
16
    private $commandData;
17
18
    /**
19
     * Path.
20
     *
21
     * @var string
22
     */
23
    private $path;
24
25
    /**
26
     * Filename.
27
     *
28
     * @var string
29
     */
30
    private $fileName;
31
32
    /**
33
     * Constructor.
34
     *
35
     * @param CommandData $commandData Command data.
36
     */
37
    public function __construct(CommandData $commandData)
38
    {
39
        $this->commandData = $commandData;
40
        $this->path = $commandData->config->pathRepository;
41
        $this->fileName = $this->commandData->modelName.'Repository.php';
42
    }
43
44
    /**
45
     * Generate.
46
     *
47
     * @return void
48
     */
49
    public function generate()
50
    {
51
        $templateData = get_artomator_template('repository');
52
53
        $templateData = fill_template($this->commandData->dynamicVars, $templateData);
54
55
        $searchables = [];
56
57
        foreach ($this->commandData->fields as $field) {
58
            if (true === $field->isSearchable) {
59
                $searchables[] = "'".$field->name."'";
60
            }
61
        }
62
63
        $templateData = str_replace('$FIELDS$', implode(','.infy_nl_tab(1, 2), $searchables), $templateData);
64
65
        $docsTemplate = get_artomator_template('docs.repository');
66
        $docsTemplate = fill_template($this->commandData->dynamicVars, $docsTemplate);
67
        $docsTemplate = str_replace('$GENERATE_DATE$', date('F j, Y, g:i a T'), $docsTemplate);
68
69
        $templateData = str_replace('$DOCS$', $docsTemplate, $templateData);
70
71
        FileUtil::createFile($this->path, $this->fileName, $templateData);
72
73
        $this->commandData->commandComment("\nRepository created: ");
74
        $this->commandData->commandInfo($this->fileName);
75
    }
76
77
    /**
78
     * Rollback.
79
     *
80
     * @return void
81
     */
82
    public function rollback()
83
    {
84
        if (true === $this->rollbackFile($this->path, $this->fileName)) {
85
            $this->commandData->commandComment('Repository file deleted: '.$this->fileName);
86
        }
87
    }
88
}
89