-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtblproperties.php
396 lines (345 loc) · 12.1 KB
/
tblproperties.php
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
<?php
/*
* Display the properties of a table: columns and tables group ownership
*/
// Include application functions
include_once('./libraries/lib.inc.php');
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
// Callback function to adjust the icons and links for constraints on table columns
function cstrRender($s, $p) {
global $misc, $data;
$str ='';
foreach ($p['keys'] as $k => $c) {
if (is_null($p['keys'][$k]['consrc'])) {
$atts = $data->getAttributeNames($_REQUEST['table'], explode(' ', $p['keys'][$k]['indkey']));
$c['consrc'] = ($c['contype'] == 'u' ? "UNIQUE (" : "PRIMARY KEY (") . join(',', $atts) . ')';
}
if ($c['p_field'] == $s)
switch ($c['contype']) {
case 'p':
$str .= '<img src="'. $misc->icon('PrimaryKey') .'" alt="[pk]" title="'. htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8') .'" />';
break;
case 'f':
$str .= '<a href="tblproperties.php?'. $misc->href ."&table=". urlencode($c['f_table']) ."&schema=". urlencode($c['f_schema']) ."\"><img src=\"".
$misc->icon('ForeignKey') .'" alt="[fk]" title="'. htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8') .'" /></a>';
break;
case 'u':
$str .= '<img src="'. $misc->icon('UniqueConstraint') .'" alt="[uniq]" title="'. htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8') .'" />';
break;
case 'c':
$str .= '<img src="'. $misc->icon('CheckConstraint') .'" alt="[check]" title="'. htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8') .'" /></a>';
}
}
return $str;
}
// Callback function to add a link to the tables group's description when the group name is suffixed by "###LINK###"
function renderlinktogroup($val) {
global $misc;
if (preg_match("/(.*)###LINK###$/", $val, $matches)) {
$val = $matches[1];
return "<a href=\"emajgroups.php?action=show_group&" . $misc->href . "&group=". urlencode($val) . "\">" . $val . "</a>";
} else {
return $val;
}
}
// Callback function to modify the isemaj column content
// It replaces the database value by an icon
function renderIsEmaj($val) {
global $misc, $lang;
if ($val == 't') {
$icon = $misc->icon('EmajIcon');
$alt = $lang['stremajtrigger'];
return "<img src=\"{$icon}\" alt=\"{$alt}\" title=\"{$alt}\"/>";
}
return;
}
// Function to dynamicaly modify actions list for each table column description
function attPre(&$rowdata, $actions) {
global $data;
$rowdata->fields['+type'] = $data->formatType($rowdata->fields['type'], $rowdata->fields['atttypmod']);
$attname = $rowdata->fields['attname'];
$table = $_REQUEST['table'];
$data->fieldClean($attname);
$data->fieldClean($table);
$actions['browse']['attr']['href']['urlvars']['query'] = "SELECT \"{$attname}\", count(*) AS \"count\"
FROM \"{$table}\" GROUP BY \"{$attname}\" ORDER BY \"{$attname}\"";
return $actions;
}
// Function to dynamicaly modify actions list for each trigger
function triggerPre(&$rowdata, $actions) {
// disable both buttons if the trigger is an E-Maj trigger, otherwise, disable the useless button
if ($rowdata->fields('tgisautodisable') == 't') {
$actions['autoDisableTrigger']['disable'] = true;
} elseif ($rowdata->fields('tgisautodisable') == 'f') {
$actions['noAutoDisableTrigger']['disable'] = true;
} else {
$actions['autoDisableTrigger']['disable'] = true;
$actions['noAutoDisableTrigger']['disable'] = true;
}
return $actions;
}
/**
* Show the table's properties: E-Maj group owning the table, if any, list of columns in the table, list of triggers
*/
function showProperties($msg = '') {
global $data, $conf, $misc, $lang, $emajdb;
$misc->printHeader('table', 'table', 'properties');
$misc->printMsg($msg);
$misc->printTitle(sprintf($lang['strtblproperties'], $_REQUEST['schema'], $_REQUEST['table']));
// Get table
$tdata = $data->getTable($_REQUEST['table']);
// Get columns
$attrs = $data->getTableAttributes($_REQUEST['table']);
// Get constraints keys
$ck = $data->getConstraintsWithFields($_REQUEST['table']);
// Get triggers
$triggers = $emajdb->getTriggersTable($_REQUEST['schema'], $_REQUEST['table']);
// Show comment, if any
if ($tdata->fields['relcomment'] !== null)
echo "<p>{$lang['strcommentlabel']}<span class=\"comment\">{$misc->printVal($tdata->fields['relcomment'])}</span></p>\n";
// Display the table structure
$columns = array(
'column' => array(
'title' => $lang['strcolumn'],
'field' => field('attname'),
'vars' => array('column' => 'attname'),
),
'type' => array(
'title' => $lang['strtype'],
'field' => field('+type'),
),
'notnull' => array(
'title' => $lang['strnotnull'],
'field' => field('attnotnull'),
'type' => 'bool',
'params'=> array('true' => 'NOT NULL', 'false' => ''),
),
'default' => array(
'title' => $lang['strdefault'],
'field' => field('adsrc'),
),
'keyprop' => array(
'title' => $lang['strconstraints'],
'field' => field('attname'),
'type' => 'callback',
'params'=> array(
'function' => 'cstrRender',
'keys' => $ck->getArray()
)
),
'comment' => array(
'title' => $lang['strcomment'],
'field' => field('comment'),
'type' => 'spanned',
'params'=> array(
'cliplen' => 32,
'class' => 'tooltip right-aligned-tooltip',
),
),
);
$actions = array();
$misc->printTable($attrs, $columns, $actions, 'tblproperties-columns', null, 'attPre');
echo "<hr/>\n";
// Display the E-Maj properties, if any
if ($emajdb->isEnabled() && $emajdb->isAccessible() && $emajdb->getNumEmajVersion() >= 20200) {
$misc->printTitle($lang['stremajproperties']);
$type = $emajdb->getEmajTypeTblSeq($_REQUEST['schema'], $_REQUEST['table']);
if ($type == 'L') {
echo "<p>{$lang['stremajlogtable']}</p>\n";
} elseif ($type == 'E') {
echo "<p>{$lang['strinternaltable']}</p>\n";
} else {
$groups = $emajdb->getTableGroupsTblSeq($_REQUEST['schema'], $_REQUEST['table']);
$columns = array(
'group' => array(
'title' => $lang['strgroup'],
'field' => field('rel_group'),
'type' => 'callback',
'params'=> array('function' => 'renderlinktogroup')
),
'starttime' => array(
'title' => $lang['strassigned'],
'field' => field('start_datetime'),
'type' => 'spanned',
'params'=> array(
'dateformat' => $lang['stroldtimestampformat'],
'locale' => $lang['applocale'],
'class' => 'tooltip left-aligned-tooltip',
),
),
'stoptime' => array(
'title' => $lang['strremoved'],
'field' => field('stop_datetime'),
'type' => 'spanned',
'params'=> array(
'dateformat' => $lang['stroldtimestampformat'],
'locale' => $lang['applocale'],
'class' => 'tooltip left-aligned-tooltip',
),
),
);
$misc->printTable($groups, $columns, $actions, 'tblproperties-groups', $lang['strtblnogroupownership']);
}
echo "<hr/>\n";
}
// Display the table triggers
$misc->printTitle($lang['strtriggers']);
$urlvars = $misc->getRequestVars();
$columns = array(
'tgrank' => array(
'title' => $lang['strexecorder'],
'field' => field('tgrank'),
'params'=> array('align' => 'center'),
),
'tgname' => array(
'title' => $lang['strtrigger'],
'field' => field('tgname'),
),
'tglevel' => array(
'title' => $lang['strlevel'],
'field' => field('tglevel'),
'params'=> array('align' => 'center'),
),
'tgevent' => array(
'title' => $lang['strtriggeringevent'],
'field' => field('tgevent'),
),
'tgfnct' => array(
'title' => $lang['strcalledfunction'],
'field' => field('tgfnct'),
),
'tgenabled' => array(
'title' => $lang['strstate'],
'field' => field('tgstate'),
),
'tgisemaj' => array(
'title' => $lang['strisemaj'],
'field' => field('tgisemaj'),
'type' => 'callback',
'params'=> array('function' => 'renderIsEmaj', 'align' => 'center'),
'sorter_text_extraction' => 'img_alt',
),
);
if ($emajdb->isEnabled() && $emajdb->isAccessible()) {
if ($emajdb->getNumEmajVersion() >= 30100) { // version >= 3.1.0
$columns = array_merge($columns, array(
'emajisautodisable' => array(
'title' => $lang['strisautodisable'],
'field' => field('tgisautodisable'),
'info' => $lang['strisautodisablehelp'],
'params'=> array(
'map' => array('t' => 'ON', 'f' => 'OFF'),
'align' => 'center'
),
),
'actions' => array(
'title' => $lang['stractions'],
),
));
}
}
$actions = array();
if ($emajdb->isEnabled() && $emajdb->isAccessible()) {
if ($emajdb->getNumEmajVersion() >= 30100) { // version >= 3.1.0
if ($emajdb->isEmaj_Adm()) {
$actions = array_merge($actions, array(
'noAutoDisableTrigger' => array(
'content' => 'Manuel',
'icon' => 'Off',
'attr' => array (
'href' => array (
'url' => 'tblproperties.php',
'urlvars' => array_merge($urlvars, array (
'action' => 'no_auto_disable_trigger',
'schema' => $_REQUEST['schema'],
'table' => $_REQUEST['table'],
'trigger' => field('tgname'),
)))),
),
'autoDisableTrigger' => array(
'content' => 'Auto',
'icon' => 'On',
'attr' => array (
'href' => array (
'url' => 'tblproperties.php',
'urlvars' => array_merge($urlvars, array (
'action' => 'auto_disable_trigger',
'schema' => $_REQUEST['schema'],
'table' => $_REQUEST['table'],
'trigger' => field('tgname'),
)))),
),
));
}
}
}
$misc->printTable($triggers, $columns, $actions, 'tblproperties-triggers', $lang['strnotriggerontable'], 'triggerPre', array('sorter' => true, 'filter' => false));
}
/**
* Register the selected trigger as 'not to be automatically disabled at rollback'
* Then show the updated table properties
*/
function noAutoDisableTrigger() {
global $lang, $emajdb;
$nbTriggers = $emajdb->ignoreAppTrigger('ADD', $_REQUEST['schema'], $_REQUEST['table'], $_REQUEST['trigger']);
if ($nbTriggers > 0) {
showProperties(sprintf($lang['strtriggernoautook'], htmlspecialchars($_REQUEST['trigger']), $_REQUEST['schema'], $_REQUEST['table']));
} else {
showProperties('',sprintf($lang['strtriggerprocerr'], htmlspecialchars($_REQUEST['trigger']), $_REQUEST['schema'], $_REQUEST['table']));
}
}
/**
* Register the selected trigger as 'to be automatically disabled at rollback'
* Then show the updated table properties
*/
function autoDisableTrigger() {
global $lang, $emajdb;
$nbTriggers = $emajdb->ignoreAppTrigger('REMOVE', $_REQUEST['schema'], $_REQUEST['table'], $_REQUEST['trigger']);
if ($nbTriggers > 0) {
showProperties(sprintf($lang['strtriggerautook'], htmlspecialchars($_REQUEST['trigger']), $_REQUEST['schema'], $_REQUEST['table']));
} else {
showProperties('',sprintf($lang['strtriggerprocerr'], htmlspecialchars($_REQUEST['trigger']), $_REQUEST['schema'], $_REQUEST['table']));
}
}
function doTree() {
global $misc, $data;
$columns = $data->getTableAttributes($_REQUEST['table']);
$reqvars = $misc->getRequestVars('column');
$attrs = array (
'text' => field('attname'),
'icon' => 'Column',
'iconAction' => url('display.php',
$reqvars,
array(
'table' => $_REQUEST['table'],
'column' => field('attname'),
'query' => replace(
'SELECT "%column%", count(*) AS "count" FROM "%table%" GROUP BY "%column%" ORDER BY "%column%"',
array (
'%column%' => field('attname'),
'%table%' => $_REQUEST['table']
)
)
)
),
'toolTip'=> field('comment')
);
$misc->printTree($columns, $attrs, 'tblcolumns');
exit;
}
if ($action == 'tree') doTree();
$misc->printHtmlHeader($lang['strtables'] . ' - ' . $_REQUEST['table']);
$misc->printBody();
switch ($action) {
case 'auto_disable_trigger':
autoDisableTrigger();
break;
case 'no_auto_disable_trigger':
noAutoDisableTrigger();
break;
default:
showProperties();
break;
}
$misc->printFooter();
?>