Issues (12)

Security Analysis    no request data  

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

Console/Helper/DoctrineSchemaDiffHelper.php (4 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
declare(strict_types=1);
4
5
namespace Shapin\Datagen\Bridge\Symfony\Console\Helper;
6
7
use Doctrine\DBAL\Schema\Column;
8
use Doctrine\DBAL\Schema\ColumnDiff;
9
use Doctrine\DBAL\Schema\SchemaDiff;
10
use Doctrine\DBAL\Schema\TableDiff;
11
use Doctrine\DBAL\Types\Type;
12
use Symfony\Component\Console\Output\OutputInterface;
13
14
class DoctrineSchemaDiffHelper
15
{
16
    private $output;
17
    private $diff;
18
19 1
    public function __construct(OutputInterface $output, SchemaDiff $diff)
20
    {
21 1
        $this->output = $output;
22 1
        $this->diff = $diff;
23 1
    }
24
25 1
    public function render(): void
26
    {
27 1
        $this->renderRemovedTables();
28 1
        $this->output->writeln('');
29 1
        $this->renderNewTables();
30 1
        $this->output->writeln('');
31 1
        $this->renderChangedTables();
32 1
    }
33
34 1 View Code Duplication
    protected function renderRemovedTables(): void
0 ignored issues
show
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
35
    {
36 1
        if (0 === \count($this->diff->removedTables)) {
37
            return;
38
        }
39
40 1
        $this->title('Removed tables:');
41
        $this->listing(array_map(function ($table) { return $table->getName(); }, $this->diff->removedTables));
42 1
    }
43
44 1 View Code Duplication
    protected function renderNewTables(): void
0 ignored issues
show
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
45
    {
46 1
        if (0 === \count($this->diff->newTables)) {
47
            return;
48
        }
49
50 1
        $this->title('New tables:');
51
        $this->listing(array_map(function ($table) { return $table->getName(); }, $this->diff->newTables));
52 1
    }
53
54 1
    protected function renderChangedTables(): void
55
    {
56 1
        if (0 === \count($this->diff->changedTables)) {
57
            return;
58
        }
59
60 1
        foreach ($this->diff->changedTables as $table) {
61 1
            $this->renderChangedTable($table);
62
        }
63 1
    }
64
65 1
    protected function renderChangedTable(TableDiff $tableDiff): void
66
    {
67 1
        $addedColumns = $tableDiff->addedColumns;
68 1
        $removedColumns = $tableDiff->removedColumns;
69 1
        $changedColumns = $this->filterChangedColumns($tableDiff->changedColumns);
70
71 1
        if (0 === \count($addedColumns + $removedColumns + $changedColumns)) {
72
            return;
73
        }
74
75 1
        $this->title("Table \"{$tableDiff->name}\" have been changed:");
76
77 1
        foreach ($addedColumns as $column) {
78 1
            $this->renderAddedColumn($column);
79
        }
80 1
        foreach ($removedColumns as $column) {
81 1
            $this->renderRemovedColumn($column);
82
        }
83
84 1
        foreach ($changedColumns as $column) {
85 1
            $this->renderChangedColumn($column);
86
        }
87 1
    }
88
89 1
    protected function renderAddedColumn(Column $column): void
90
    {
91 1
        $this->output->writeln('<fg=green> + '.$this->formatColumn($column).'</>');
92 1
    }
93
94 1
    protected function renderRemovedColumn(Column $column): void
95
    {
96 1
        $this->output->writeln('<fg=red> - '.$this->formatColumn($column).'</>');
97 1
    }
98
99 1
    protected function renderChangedColumn(ColumnDiff $columnDiff): void
100
    {
101 1
        $this->renderRemovedColumn($columnDiff->fromColumn);
0 ignored issues
show
It seems like $columnDiff->fromColumn can be null; however, renderRemovedColumn() does not accept null, maybe add an additional type check?

Unless you are absolutely sure that the expression can never be null because of other conditions, we strongly recommend to add an additional type check to your code:

/** @return stdClass|null */
function mayReturnNull() { }

function doesNotAcceptNull(stdClass $x) { }

// With potential error.
function withoutCheck() {
    $x = mayReturnNull();
    doesNotAcceptNull($x); // Potential error here.
}

// Safe - Alternative 1
function withCheck1() {
    $x = mayReturnNull();
    if ( ! $x instanceof stdClass) {
        throw new \LogicException('$x must be defined.');
    }
    doesNotAcceptNull($x);
}

// Safe - Alternative 2
function withCheck2() {
    $x = mayReturnNull();
    if ($x instanceof stdClass) {
        doesNotAcceptNull($x);
    }
}
Loading history...
102 1
        $this->renderAddedColumn($columnDiff->column);
103 1
    }
104
105 1
    protected function formatColumn(Column $column): string
106
    {
107 1
        $formattedColumn = $column->getName().', '.$column->getType()->getName();
108
109 1
        $options = $this->filterOptions($column);
110
111 1
        if (0 < \count($options)) {
112 1
            $formattedOptions = [];
113 1
            foreach ($options as $key => $value) {
114 1
                $formattedValue = \is_bool($value) ? $value ? 'true' : 'false' : $value;
115 1
                $formattedOptions[] = "$key => $formattedValue";
116
            }
117
118 1
            $formattedColumn .= ', ['.implode(', ', $formattedOptions).']';
119
        }
120
121 1
        return $formattedColumn;
122
    }
123
124 1
    public function filterChangedColumns(array $changedColumns): array
125
    {
126 1
        $filteredChangeColumns = [];
127 1
        foreach ($changedColumns as $columnDiff) {
128 1
            if (['type'] === $columnDiff->changedProperties) {
129
                // Sometimes it looks like type have been changed but it's not the case
130
                if ($columnDiff->fromColumn->getType()->getName() === $columnDiff->column->getType()->getName()) {
131
                    continue;
132
                }
133
            }
134
135 1
            $filteredChangeColumns[] = $columnDiff;
136
        }
137
138 1
        return $filteredChangeColumns;
139
    }
140
141 1
    protected function filterOptions(Column $column): array
142
    {
143 1
        $options = $column->toArray();
144 1
        unset($options['name'], $options['type']);
145
146 1
        $referenceColumn = new Column('tmp', Type::getType($column->getType()->getName()));
147
148
        $options = array_filter($options, function ($value, $key) use (&$referenceColumn) {
149 1
            $method = 'get'.ucfirst($key);
150
            // Keep unknown keys
151 1
            if (!method_exists($referenceColumn, $method)) {
152
                return true;
153
            }
154
155 1
            return $value !== $referenceColumn->$method(); // Ignore default values
156 1
        }, ARRAY_FILTER_USE_BOTH);
157
158 1
        return $options;
159
    }
160
161 1
    protected function title(string $title): void
162
    {
163 1
        $this->output->writeln("<comment>$title</comment>");
164 1
    }
165
166 1
    protected function listing(array $elements): void
167
    {
168
        $elements = array_map(function ($element) {
169 1
            return sprintf(' * %s', $element);
170 1
        }, $elements);
171
172 1
        $this->output->writeln($elements);
0 ignored issues
show
$elements is of type array, but the function expects a string|object<Symfony\Co...onsole\Output\iterable>.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
173 1
    }
174
}
175