Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CreateController.php « View « Controllers « classes « libraries - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29160c747f4b452790dc265ebc26e0c58a378beb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<?php

declare(strict_types=1);

namespace PhpMyAdmin\Controllers\View;

use PhpMyAdmin\Controllers\AbstractController;
use PhpMyAdmin\Controllers\Table\StructureController;
use PhpMyAdmin\DatabaseInterface;
use PhpMyAdmin\Html\Generator;
use PhpMyAdmin\Http\ServerRequest;
use PhpMyAdmin\Message;
use PhpMyAdmin\ResponseRenderer;
use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Statements\CreateStatement;
use PhpMyAdmin\SqlParser\TokensList;
use PhpMyAdmin\Template;
use PhpMyAdmin\Url;
use PhpMyAdmin\Util;

use function __;
use function array_merge;
use function explode;
use function htmlspecialchars;
use function in_array;
use function is_array;
use function is_string;
use function sprintf;
use function str_contains;
use function substr;

/**
 * Handles creation of VIEWs.
 */
class CreateController extends AbstractController
{
    /** @var DatabaseInterface */
    private $dbi;

    public function __construct(ResponseRenderer $response, Template $template, DatabaseInterface $dbi)
    {
        parent::__construct($response, $template);
        $this->dbi = $dbi;
    }

    public function __invoke(ServerRequest $request): void
    {
        $this->checkParameters(['db']);
        $GLOBALS['text_dir'] = $GLOBALS['text_dir'] ?? null;
        $GLOBALS['urlParams'] = $GLOBALS['urlParams'] ?? null;
        $GLOBALS['view_algorithm_options'] = $GLOBALS['view_algorithm_options'] ?? null;
        $GLOBALS['view_with_options'] = $GLOBALS['view_with_options'] ?? null;
        $GLOBALS['view_security_options'] = $GLOBALS['view_security_options'] ?? null;

        $GLOBALS['message'] = $GLOBALS['message'] ?? null;
        $GLOBALS['sep'] = $GLOBALS['sep'] ?? null;
        $GLOBALS['arr'] = $GLOBALS['arr'] ?? null;
        $GLOBALS['view_columns'] = $GLOBALS['view_columns'] ?? null;
        $GLOBALS['column_map'] = $GLOBALS['column_map'] ?? null;
        $GLOBALS['systemDb'] = $GLOBALS['systemDb'] ?? null;
        $GLOBALS['pma_transformation_data'] = $GLOBALS['pma_transformation_data'] ?? null;
        $GLOBALS['containerBuilder'] = $GLOBALS['containerBuilder'] ?? null;
        $GLOBALS['new_transformations_sql'] = $GLOBALS['new_transformations_sql'] ?? null;
        $GLOBALS['view'] = $GLOBALS['view'] ?? null;
        $GLOBALS['item'] = $GLOBALS['item'] ?? null;
        $GLOBALS['parts'] = $GLOBALS['parts'] ?? null;

        $GLOBALS['errorUrl'] = Util::getScriptNameForOption($GLOBALS['cfg']['DefaultTabDatabase'], 'database');
        $GLOBALS['errorUrl'] .= Url::getCommon(['db' => $GLOBALS['db']], '&');

        if (! $this->hasDatabase()) {
            return;
        }

        $GLOBALS['urlParams']['goto'] = Url::getFromRoute('/table/structure');
        $GLOBALS['urlParams']['back'] = Url::getFromRoute('/view/create');

        $GLOBALS['view_algorithm_options'] = [
            'UNDEFINED',
            'MERGE',
            'TEMPTABLE',
        ];

        $GLOBALS['view_with_options'] = [
            'CASCADED',
            'LOCAL',
        ];

        $GLOBALS['view_security_options'] = [
            'DEFINER',
            'INVOKER',
        ];

        // View name is a compulsory field
        if (isset($_POST['view']['name']) && empty($_POST['view']['name'])) {
            $GLOBALS['message'] = Message::error(__('View name can not be empty!'));
            $this->response->addJSON('message', $GLOBALS['message']);
            $this->response->setRequestStatus(false);

            return;
        }

        if (isset($_POST['createview']) || isset($_POST['alterview'])) {
            /**
             * Creates the view
             */
            $GLOBALS['sep'] = "\r\n";

            if (isset($_POST['createview'])) {
                $GLOBALS['sql_query'] = 'CREATE';
                if (isset($_POST['view']['or_replace'])) {
                    $GLOBALS['sql_query'] .= ' OR REPLACE';
                }
            } else {
                $GLOBALS['sql_query'] = 'ALTER';
            }

            if (
                isset($_POST['view']['algorithm'])
                && in_array($_POST['view']['algorithm'], $GLOBALS['view_algorithm_options'])
            ) {
                $GLOBALS['sql_query'] .= $GLOBALS['sep'] . ' ALGORITHM = ' . $_POST['view']['algorithm'];
            }

            if (! empty($_POST['view']['definer'])) {
                if (! str_contains($_POST['view']['definer'], '@')) {
                    $GLOBALS['sql_query'] .= $GLOBALS['sep'] . 'DEFINER='
                        . Util::backquote($_POST['view']['definer']);
                } else {
                    $GLOBALS['arr'] = explode('@', $_POST['view']['definer']);
                    $GLOBALS['sql_query'] .= $GLOBALS['sep'] . 'DEFINER=' . Util::backquote($GLOBALS['arr'][0]);
                    $GLOBALS['sql_query'] .= '@' . Util::backquote($GLOBALS['arr'][1]) . ' ';
                }
            }

            if (
                isset($_POST['view']['sql_security'])
                && in_array($_POST['view']['sql_security'], $GLOBALS['view_security_options'])
            ) {
                $GLOBALS['sql_query'] .= $GLOBALS['sep'] . ' SQL SECURITY '
                    . $_POST['view']['sql_security'];
            }

            $GLOBALS['sql_query'] .= $GLOBALS['sep'] . ' VIEW '
                . Util::backquote($_POST['view']['name']);

            if (! empty($_POST['view']['column_names'])) {
                $GLOBALS['sql_query'] .= $GLOBALS['sep'] . ' (' . $_POST['view']['column_names'] . ')';
            }

            $GLOBALS['sql_query'] .= $GLOBALS['sep'] . ' AS ' . $_POST['view']['as'];

            if (isset($_POST['view']['with']) && in_array($_POST['view']['with'], $GLOBALS['view_with_options'])) {
                $GLOBALS['sql_query'] .= $GLOBALS['sep'] . ' WITH ' . $_POST['view']['with'] . '  CHECK OPTION';
            }

            if (! $this->dbi->tryQuery($GLOBALS['sql_query'])) {
                if (! isset($_POST['ajax_dialog'])) {
                    $GLOBALS['message'] = Message::rawError($this->dbi->getError());

                    return;
                }

                $this->response->addJSON(
                    'message',
                    Message::error(
                        '<i>' . htmlspecialchars($GLOBALS['sql_query']) . '</i><br><br>'
                        . $this->dbi->getError()
                    )
                );
                $this->response->setRequestStatus(false);

                return;
            }

            // If different column names defined for VIEW
            $GLOBALS['view_columns'] = [];
            if (isset($_POST['view']['column_names'])) {
                $GLOBALS['view_columns'] = explode(',', $_POST['view']['column_names']);
            }

            $GLOBALS['column_map'] = $this->dbi->getColumnMapFromSql($_POST['view']['as'], $GLOBALS['view_columns']);

            $GLOBALS['systemDb'] = $this->dbi->getSystemDatabase();
            $GLOBALS['pma_transformation_data'] = $GLOBALS['systemDb']->getExistingTransformationData($GLOBALS['db']);

            if ($GLOBALS['pma_transformation_data'] !== false) {
                // SQL for store new transformation details of VIEW
                $GLOBALS['new_transformations_sql'] = $GLOBALS['systemDb']->getNewTransformationDataSql(
                    $GLOBALS['pma_transformation_data'],
                    $GLOBALS['column_map'],
                    $_POST['view']['name'],
                    $GLOBALS['db']
                );

                // Store new transformations
                if ($GLOBALS['new_transformations_sql'] != '') {
                    $this->dbi->tryQuery($GLOBALS['new_transformations_sql']);
                }
            }

            unset($GLOBALS['pma_transformation_data']);

            if (! isset($_POST['ajax_dialog'])) {
                $GLOBALS['message'] = Message::success();
                /** @var StructureController $controller */
                $controller = $GLOBALS['containerBuilder']->get(StructureController::class);
                $controller($request);
            } else {
                $this->response->addJSON(
                    'message',
                    Generator::getMessage(
                        Message::success(),
                        $GLOBALS['sql_query']
                    )
                );
                $this->response->setRequestStatus(true);
            }

            return;
        }

        $GLOBALS['sql_query'] = ! empty($_POST['sql_query']) ? $_POST['sql_query'] : '';

        // prefill values if not already filled from former submission
        $GLOBALS['view'] = [
            'operation' => 'create',
            'or_replace' => '',
            'algorithm' => '',
            'definer' => '',
            'sql_security' => '',
            'name' => '',
            'column_names' => '',
            'as' => $GLOBALS['sql_query'],
            'with' => '',
        ];

        // Used to prefill the fields when editing a view
        if (isset($_GET['db'], $_GET['table'])) {
            $GLOBALS['item'] = $this->dbi->fetchSingleRow(
                sprintf(
                    "SELECT `VIEW_DEFINITION`, `CHECK_OPTION`, `DEFINER`,
            `SECURITY_TYPE`
            FROM `INFORMATION_SCHEMA`.`VIEWS`
            WHERE TABLE_SCHEMA='%s'
            AND TABLE_NAME='%s';",
                    $this->dbi->escapeString($_GET['db']),
                    $this->dbi->escapeString($_GET['table'])
                )
            );
            $createView = $this->dbi->getTable($_GET['db'], $_GET['table'])
                ->showCreate();

            // CREATE ALGORITHM=<ALGORITHM> DE...
            $GLOBALS['parts'] = explode(' ', substr($createView, 17));
            $GLOBALS['item']['ALGORITHM'] = $GLOBALS['parts'][0];

            $GLOBALS['view']['operation'] = 'alter';
            $GLOBALS['view']['definer'] = $GLOBALS['item']['DEFINER'];
            $GLOBALS['view']['sql_security'] = $GLOBALS['item']['SECURITY_TYPE'];
            $GLOBALS['view']['name'] = $_GET['table'];
            $GLOBALS['view']['as'] = $GLOBALS['item']['VIEW_DEFINITION'];
            $GLOBALS['view']['with'] = $GLOBALS['item']['CHECK_OPTION'];
            $GLOBALS['view']['algorithm'] = $GLOBALS['item']['ALGORITHM'];

            // MySQL 8.0+ - issue #16194
            if (empty($GLOBALS['view']['as']) && is_string($createView)) {
                $parser = new Parser($createView);
                /**
                 * @var CreateStatement $stmt
                 */
                $stmt = $parser->statements[0];
                $GLOBALS['view']['as'] = isset($stmt->body) ? TokensList::build($stmt->body) : $GLOBALS['view']['as'];
            }
        }

        if (isset($_POST['view']) && is_array($_POST['view'])) {
            $GLOBALS['view'] = array_merge($GLOBALS['view'], $_POST['view']);
        }

        $GLOBALS['urlParams']['db'] = $GLOBALS['db'];
        $GLOBALS['urlParams']['reload'] = 1;

        $this->addScriptFiles(['sql.js']);

        echo $this->template->render('view_create', [
            'ajax_dialog' => isset($_POST['ajax_dialog']),
            'text_dir' => $GLOBALS['text_dir'],
            'url_params' => $GLOBALS['urlParams'],
            'view' => $GLOBALS['view'],
            'view_algorithm_options' => $GLOBALS['view_algorithm_options'],
            'view_with_options' => $GLOBALS['view_with_options'],
            'view_security_options' => $GLOBALS['view_security_options'],
        ]);
    }
}