-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.module
More file actions
463 lines (430 loc) · 12.2 KB
/
data.module
File metadata and controls
463 lines (430 loc) · 12.2 KB
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
<?php
/**
* @file
* Hooks and API functions for data module.
*/
/**
* Load all data tables.
*
* @return array
* Array of TableConfigInterface objects.
*/
function data_get_all_tables($reset = FALSE) {
$storage = \Drupal::entityTypeManager()->getStorage('data_table_config');
if ($reset) {
$storage->resetCache();
}
return $storage->loadMultiple();
}
/**
* Create a table.
*
* @see DataTable class.
*
* @param $name
* String that identifies the data table. It is recommended to use
* data_name() to generate a table name in the data namespace. For
* example: $table = data_get_tabe(data_name('my_table'));
* @param $schema
* Schema for the table.
* @param $title
* A natural title for the table.
*
* @return \Drupal\data\Entity\TableConfigInterface
* A DataTable object if one could be created, FALSE otherwise.
*/
function data_create_table($name, $schema, $title = NULL) {
$storage = \Drupal::entityTypeManager()->getStorage('data_table_config');
/** @var \Drupal\data\Entity\TableConfigInterface $table */
$table = $storage->load($name);
if (!$table || !$table->exists()) {
$table = $storage->create(array('id' => $name, 'table_schema' => $schema));
$table->save();
}
if ($title) {
$table->title = $title;
$table->save();
}
return $table;
}
/**
* Get a table if it exists.
*
* @param string $name
* Unique name of the table.
*
* @return \Drupal\data\Entity\TableConfigInterface
* TableConfig entity, or FALSE in case of failure.
*
* Note: In some circumstances, a table may be defined while it does not exist
* in the database. In these cases, data_get_table() would still return a valid
* DataTable object.
*/
function data_get_table($name) {
$table = \Drupal::entityTypeManager()->getStorage('data_table_config')
->load($name);
if ($table && $table->defined()) {
return $table;
}
return FALSE;
}
/**
* Get a definition key into a schema API type definition.
*
* If no type can be found, FALSE will be returned.
*/
function data_get_field_definition($key) {
$definitions = data_get_field_definitions();
if (isset($definitions[$key])) {
return $definitions[$key];
}
return FALSE;
}
/**
* Get schema API field types supported by Data module.
*/
function data_get_field_types() {
$definitions = data_get_field_definitions();
$types = array();
foreach ($definitions as $def) {
$types[$def['type']] = $def['type'];
}
return $types;
}
/**
* Get schema API field sizes.
*/
function data_get_field_sizes() {
$sizes = array('normal', 'tiny', 'small', 'medium', 'big');
return array_combine($sizes, $sizes);
}
/**
* Get a Schema API PK definition for a given field type.
*/
function data_get_pk_definition($field_name, $spec) {
if ($spec['type'] == 'text') {
return array($field_name, 255);
}
else {
return $field_name;
}
}
/**
* Get a Schema API index definition for a given field type.
* @todo: support multiple name/type combinations.
*/
function data_get_index_definition($field_name, $spec) {
// Default to 255 for now.
if ($spec['type'] == 'text') {
// @todo: what's the right format here? this is broken.
return array(array($field_name, 255));
}
else {
return array($field_name);
}
}
/**
* Get a list of supported field definitions.
*
* This list is a sub set of Schema API data types
* http://drupal.org/node/159605
* The keys are simplified handles.
*/
function data_get_field_definitions() {
$built_in = array(
'int' => array(
'type' => 'int',
'not null' => FALSE,
),
'unsigned int' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
),
'serial' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'varchar' => array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
),
'text' => array(
'type' => 'text',
'not null' => FALSE,
),
'bigtext' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
),
'float' => array(
'type' => 'float',
'size' => 'medium',
'not null' => FALSE,
),
'double' => array(
'type' => 'float',
'size' => 'big',
'not null' => FALSE,
),
'geometry' => array(
'type' => 'geometry',
'mysql_type' => 'geometry',
'pgsql_type' => 'geometry',
),
);
\Drupal::moduleHandler()->alter('data_field_definitions', $built_in);
return $built_in;
}
/**
* Create a table name in the data namespace.
* @todo: make overridable.
*/
function data_name($table) {
return 'data_table_' . $table;
}
/**
* Create a safe name for MySQL field or table names.
*
* @todo: IMPROVE.
*
* - make sure all unsafe characters are removed.
* - filter magic words.
* - test pgsql.
*/
function data_safe_name($name) {
$map = array(
'.' => '_',
':' => '',
'/' => '',
'-' => '_',
' ' => '_',
',' => '_',
);
$simple = trim(strtolower(strip_tags($name)));
// Limit length to 64 as per http://dev.mysql.com/doc/refman/5.0/en/identifiers.html
$simple = substr(strtr($simple, $map), 0, 64);
if (is_numeric($simple)) {
// We need to escape numerics because Drupal's drupal_write_record()
// does not properly escape token MYSQL names.
$simple = '__num_' . $simple;
}
return db_escape_table($simple);
}
/**
* Helper function to create a natural name.
* underscored_name -> Underscored name
*/
function data_natural_name($name) {
return ucfirst(strtolower(str_replace('_', ' ', $name)));
}
/**
* Helper function to generate a schema.
*
* Example:
* $table->create(data_build_schema($keys));
*
* @todo: check for table name collisions
* @todo: add type detection
* @todo: add meta info handling
* @todo: add primary key handling
* @todo: may be add option to add a full fledged schema here?
*/
function data_build_schema($keys) {
// Build the table definition.
// Fall back to varchar if no valid type is given.
$fields = $schema = array();
foreach ($keys as $k => $key) {
if ($definition = data_get_field_definition($key)) {
$fields[data_safe_name($k)] = $definition;
}
else {
$fields[data_safe_name($k)] = data_get_field_definition('varchar');
}
}
$schema['fields'] = $fields;
$schema['indexes'] = array();
return $schema;
}
/**
* Build a full schema api field definition.
*
* @param $stub
* Array with at least one key 'type'.
*/
function data_build_field_definition($stub) {
$spec = array();
$spec['type'] = $stub['type'];
$spec['size'] = empty($stub['size']) ? 'normal' : $stub['size'];
if ($spec['type'] == 'int') {
$spec['unsigned'] = empty($stub['unsigned']) ? FALSE : TRUE;
}
if ($spec['type'] == 'varchar') {
$spec['length'] = 255;
unset($spec['size']);
}
if ($spec['type'] == 'geometry') {
$spec['mysql_type'] = 'geometry';
$spec['pgsql_type'] = 'GEOMETRY';
}
return $spec;
}
/**
* Export a data table. This does not export the content of a table - only its schema
* and any meta information (title, name, meta...).
*
* @param $name
* The name of the table to be exported.
*
* @return
* Exportable code.
*/
function data_export($name, $indent = '') {
ctools_include('export');
$result = ctools_export_load_object('data_tables', 'names', array($name));
if (isset($result[$name])) {
return ctools_export_object('data_tables', $result[$name], $indent);
}
}
/**
* Loads data table info from the database and from CTools exportables.
*
* @param $name
* The name of a table to load. If NULL or omitted, all tables are loaded.
* @param $reset
* Whether to reset CTools' static cache.
*/
function _data_load_table($name = NULL, $reset = FALSE) {
// @todo: implement this.
return FALSE;
ctools_include('export');
if ($reset) {
drupal_static_reset('ctools_export_load_object');
drupal_static_reset('ctools_export_load_object_all');
}
if ($name === NULL) {
return ctools_export_load_object('data_tables', 'all', array());
}
else {
$tables = ctools_export_load_object('data_tables', 'names', array($name));
if (isset($tables[$name])) {
return $tables[$name];
}
return FALSE;
}
return FALSE;
}
/**
* Helper function for adjusting a table's real schema.
* @todo: this should live in schema module and should use better defined $reason keys.
*
* @throws DataException on error.
*/
function data_alter_table($table, $field_reason) {
list($field, $reason) = explode(': ', $field_reason);
$schema = $table->get('table_schema');
switch ($reason) {
case 'not in database':
if (isset($schema['fields'][$field])) {
$table->addField($field, $schema['fields'][$field]);
}
break;
case 'missing in database':
list($type, $field) = explode(' ', $field);
// @todo: support multiple keys.
if ($type == 'indexes') {
$table->addIndex($field);
}
elseif ($type == 'unique keys') {
$table->addUniqueKey($field);
}
elseif ($type == 'primary key') {
$table->addPrimaryKey($schema['primary keys']);
}
break;
case 'primary key:<br />declared': // @todo: yikes!
$table->dropPrimaryKey();
$table->changePrimaryKey($schema['primary keys']);
case 'missing in schema':
if ($field == 'primary key') {
$table->dropPrimaryKey();
}
break;
case 'unexpected column in database':
$table->dropField($field);
break;
}
}
/**
* Starts overriding a data table by copying it from the default definition into the DB.
* This function does not have any effect if called on a table that does already exist in
* data_tables.
*/
function _data_override($name) {
if (!db_query("SELECT name FROM {data_tables} WHERE name = :name", array(':name' => $name))->fetchField()) {
if ($table = _data_load_table($name)) {
drupal_write_record('data_tables', $table);
}
}
}
/**
* Implements hook_date_views_fields().
*
* All modules that create custom fields that use the
* 'views_handler_field_date' handler can provide
* additional information here about the type of
* date they create so the date can be used by
* the Date API views date argument and date filter.
*
* @todo: remove the above comment when this hook is properly documented in
* Date module: https://drupal.org/node/2171345
*
* For fields to be considered by Date's compound filter and argument handlers,
* they must have the 'is date' property set. This is taken care of by our
* hook_views_data(), via data_get_table_field_views_data().
*/
function data_date_views_fields($field) {
// $field is of the form "TABLE.FIELD".
list($table_name, $field_name) = explode('.', $field);
$tables = data_get_all_tables();
// If this is being called for a field that's not on one of our data tables,
// then we have nothing to say.
if (!isset($tables[$table_name])) {
return;
}
$table = $tables[$table_name];
$meta = $table->get('meta');
// We require the field to be configured for its date properties.
// See data_ui_date_form().
if (!isset($meta['fields'][$field_name]['date'])) {
return;
}
// Default values; cribbed from date_views_date_views_fields().
$values = array(
// The type of date: DATE_UNIX, DATE_ISO, DATE_DATETIME.
'sql_type' => DATE_UNIX,
// Timezone handling options: 'none', 'site', 'date', 'utc' .
'tz_handling' => 'site',
// Needed only for dates that use 'date' tz_handling.
'timezone_field' => '',
// Needed only for dates that use 'date' tz_handling.
'offset_field' => '',
// Array of "table.field" values for related fields that should be
// loaded automatically in the Views SQL.
'related_fields' => array(),
// Granularity of this date field's db data.
'granularity' => array('year', 'month', 'day', 'hour', 'minute', 'second'),
);
// Override any properties that may have been set in the table metadata.
foreach (array_keys($values) as $property) {
// The use of '' as the empty value in the form select elements in
// data_ui_date_form() means we can use empty() here.
if (!empty($meta['fields'][$field_name]['date'][$property])) {
$values[$property] = $meta['fields'][$field_name]['date'][$property];
}
}
return $values;
}