forked from greenpeace-cee/at.greenpeace.advancedlogtables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvancedlogtables.php
147 lines (133 loc) · 5.2 KB
/
advancedlogtables.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
<?php
require_once 'advancedlogtables.civix.php';
use CRM_Advancedlogtables_Config as C;
use CRM_Advancedlogtables_ExtensionUtil as E;
/**
* Implements hook_civicrm_config().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_config
*/
function advancedlogtables_civicrm_config(&$config) {
_advancedlogtables_civix_civicrm_config($config);
}
/**
* Implements hook_civicrm_install().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_install
*/
function advancedlogtables_civicrm_install() {
_advancedlogtables_civix_civicrm_install();
}
/**
* Implements hook_civicrm_enable().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_enable
*/
function advancedlogtables_civicrm_enable() {
_advancedlogtables_civix_civicrm_enable();
}
/**
* Alter log table triggers and tables based on settings
*
* This code is based on nz.co.fuzion.innodbtriggers by Eileen McNaughton
*
* @TODO: Handle existing indexes
*
* @param $logTableSpec
*/
function advancedlogtables_civicrm_alterLogTables(&$logTableSpec) {
// Load exclusion table list
$pseudovars = C::singleton()->getParams();
$negated = $pseudovars['negateexclusion'];
foreach (array_keys($logTableSpec) as $tableName) {
if (!$negated) {
if (!empty($pseudovars['excludedtables']) && !in_array($tableName, $pseudovars['excludedtables'])) {
$logTableSpec[$tableName]['engine'] = Civi::settings()->get('advancedlogtables_storage_engine');
$logTableSpec[$tableName]['engine_config'] = Civi::settings()->get('advancedlogtables_storage_engine_config');
if (Civi::settings()->get('advancedlogtables_index_contact')) {
$contactReferences = CRM_Dedupe_Merger::cidRefs();
$contactRefsForTable = CRM_Utils_Array::value($tableName, $contactReferences, []);
foreach ($contactRefsForTable as $fieldName) {
$logTableSpec[$tableName]['indexes']['index_' . $fieldName] = $fieldName;
}
}
if (Civi::settings()->get('advancedlogtables_index_conn_id')) {
$logTableSpec[$tableName]['indexes']['index_log_conn_id'] = 'log_conn_id';
}
if (Civi::settings()->get('advancedlogtables_index_log_date')) {
$logTableSpec[$tableName]['indexes']['index_log_date'] = 'log_date';
}
if (Civi::settings()->get('advancedlogtables_index_id')) {
// Check if current table has an "id" column. If so, index it too
$dsn = DB::parseDSN(CIVICRM_DSN);
$dbName = $dsn['database'];
$dao = CRM_Core_DAO::executeQuery(
"SELECT
COLUMN_NAME
FROM
INFORMATION_SCHEMA.COLUMNS
WHERE
TABLE_SCHEMA = '{$dbName}' AND
TABLE_NAME = '{$tableName}' AND
COLUMN_NAME = 'id'"
);
if ($dao->fetch()) {
$logTableSpec[$tableName]['indexes']['index_id'] = 'id';
}
}
} else {
unset($logTableSpec[$tableName]);
}
} else {
if (!empty($pseudovars['excludedtables']) && in_array($tableName, $pseudovars['excludedtables'])) {
$logTableSpec[$tableName]['engine'] = Civi::settings()->get('advancedlogtables_storage_engine');
$logTableSpec[$tableName]['engine_config'] = Civi::settings()->get('advancedlogtables_storage_engine_config');
if (Civi::settings()->get('advancedlogtables_index_contact')) {
$contactReferences = CRM_Dedupe_Merger::cidRefs();
$contactRefsForTable = CRM_Utils_Array::value($tableName, $contactReferences, []);
foreach ($contactRefsForTable as $fieldName) {
$logTableSpec[$tableName]['indexes']['index_' . $fieldName] = $fieldName;
}
}
if (Civi::settings()->get('advancedlogtables_index_conn_id')) {
$logTableSpec[$tableName]['indexes']['index_log_conn_id'] = 'log_conn_id';
}
if (Civi::settings()->get('advancedlogtables_index_log_date')) {
$logTableSpec[$tableName]['indexes']['index_log_date'] = 'log_date';
}
if (Civi::settings()->get('advancedlogtables_index_id')) {
// Check if current table has an "id" column. If so, index it too
$dsn = DB::parseDSN(CIVICRM_DSN);
$dbName = $dsn['database'];
$dao = CRM_Core_DAO::executeQuery(
"SELECT
COLUMN_NAME
FROM
INFORMATION_SCHEMA.COLUMNS
WHERE
TABLE_SCHEMA = '{$dbName}' AND
TABLE_NAME = '{$tableName}' AND
COLUMN_NAME = 'id'"
);
if ($dao->fetch()) {
$logTableSpec[$tableName]['indexes']['index_id'] = 'id';
}
}
} else {
unset($logTableSpec[$tableName]);
}
}
}
}
function advancedlogtables_civicrm_navigationMenu(&$menu) {
$path = "Administer/System Settings";
_advancedlogtables_civix_insert_navigation_menu($menu, $path, array(
'label' => E::ts('Advancedlog Tables'),
'name' => 'advancedlogtables_config',
'url' => 'civicrm/admin/advancedlogtables/config?reset=1',
'permission' => 'administer CiviCRM',
'operator' => '',
'separator' => 0,
));
_advancedlogtables_civix_navigationMenu($menu);
}