-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.install
563 lines (525 loc) · 16 KB
/
message.install
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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
<?php
/**
* @file
* Install, update, and uninstall functions for the message module.
*/
/**
* Implements hook_install().
*/
function message_install() {
// Create the field holding the message text.
$field = array(
'field_name' => MESSAGE_FIELD_MESSAGE_TEXT,
'type' => 'text_long',
'entity_types' => array('message_type'),
'cardinality' => FIELD_CARDINALITY_UNLIMITED,
'translatable' => TRUE,
'locked' => TRUE,
'settings' => array(
// Mark that this field can be rendered using Message::getText().
'message_text' => TRUE,
),
);
$field = field_create_field($field);
$instance = array(
'field_name' => MESSAGE_FIELD_MESSAGE_TEXT,
'bundle' => 'message_type',
'entity_type' => 'message_type',
'label' => t('Message text'),
'description' => t('This is the text of all messages of this type.'),
'required' => TRUE,
'settings' => array(
'text_processing' => 1,
),
);
field_create_instance($instance);
variable_del('message_entity_delete_cleanup');
}
/**
* Implements hook_uninstall().
*/
function message_uninstall() {
$instance = field_info_instance('message_type', 'message_text', 'message_type');
field_delete_instance($instance);
field_delete_field('message_text');
variable_del('message_delete_cron_limit');
variable_del('message_purge_enable');
variable_del('message_purge_quota');
variable_del('message_purge_days');
variable_del('message_delete_on_entity_delete');
}
/**
* Implements hook_schema()
*/
function message_schema() {
$schema['message_type_category'] = array(
'description' => 'Storage for user-defined message category.',
'fields' => array(
// Although the "category" should be enough as the primary key, the
// numeric ID is required for the internal use of entity API.
'id' => array(
'type' => 'serial',
'not null' => TRUE,
'description' => 'Primary Key: Numeric message type category ID.',
),
'category' => array(
'description' => 'The unified identifier for a message type category.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'description' => array(
'description' => 'Description for this message type category.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'language' => array(
'description' => 'The {languages}.language of this message type category.',
'type' => 'varchar',
'length' => 12,
'not null' => TRUE,
'default' => '',
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
// Set the default to ENTITY_CUSTOM without using the constant as it is
// not safe to use it at this point.
'default' => 0x01,
'size' => 'tiny',
'description' => 'The exportable status of the entity.',
),
'module' => array(
'description' => 'The name of the providing module if the entity has been defined in code.',
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
),
),
'primary key' => array('id'),
'unique keys' => array(
'category' => array('category'),
),
);
$schema['message_type'] = array(
'description' => 'Storage for user-defined message templates.',
'fields' => array(
// Although the "name" should be enough as the primary key, the numeric ID
// is required for the internal use of entity API.
'id' => array(
'type' => 'serial',
'not null' => TRUE,
'description' => 'Primary Key: Numeric message type ID.',
),
'name' => array(
'description' => 'The unified identifier for a message type.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'category' => array(
'description' => 'Reference to a message type category.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => 'message_type',
),
'description' => array(
'description' => 'Description for this message type.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'argument_keys' => array(
'description' => 'Serialized array with the argument keys',
'type' => 'text',
'serialize' => TRUE,
),
'language' => array(
'description' => 'The {languages}.language of this message type.',
'type' => 'varchar',
'length' => 12,
'not null' => TRUE,
'default' => '',
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
// Set the default to ENTITY_CUSTOM without using the constant as it is
// not safe to use it at this point.
'default' => 0x01,
'size' => 'tiny',
'description' => 'The exportable status of the entity.',
),
'module' => array(
'description' => 'The name of the providing module if the entity has been defined in code.',
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
),
'arguments' => array(
'description' => 'Serialized array with the arguments.',
'type' => 'text',
'serialize' => TRUE,
),
'data' => array(
'description' => 'Serialized array with general data.',
'type' => 'text',
'serialize' => TRUE,
'size' => 'big',
),
),
'primary key' => array('id'),
'unique keys' => array(
'name' => array('name'),
),
);
$schema['message'] = array(
'description' => 'An instance of a message type (e.g. like a node is an instance of a node type).',
'fields' => array(
'mid' => array(
'type' => 'serial',
'not null' => TRUE,
'unsigned' => TRUE,
'description' => 'The Unique ID of the message.',
'not null' => TRUE,
),
'type' => array(
'description' => 'Reference to a message a type.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'arguments' => array(
'description' => 'Serialized array with the arguments',
'type' => 'text',
'serialize' => TRUE,
),
'uid' => array(
'description' => 'The user ID of the acting user.',
'type' => 'int',
'default value' => NULL,
'unsigned' => TRUE,
),
'timestamp' => array(
'description' => 'When the message instance was recorded.',
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
),
'language' => array(
'description' => 'The {languages}.language of this message.',
'type' => 'varchar',
'length' => 12,
'not null' => TRUE,
'default' => '',
),
),
'foreign keys' => array(
'message_type' => array(
'table' => 'message_type',
'columns' => array('type' => 'name'),
),
'owner' => array(
'table' => 'users',
'columns' => array('uid' => 'uid'),
),
),
'primary key' => array('mid'),
'indexes' => array(
'type_index' => array('type'),
'timestamp' => array('timestamp'),
),
);
// Cache bins for Entity-cache module.
$cache_schema = drupal_get_schema_unprocessed('system', 'cache');
$types = array(
'message_type_category',
'message_type',
'message',
);
foreach ($types as $type) {
$schema["cache_entity_$type"] = $cache_schema;
$schema["cache_entity_$type"]['description'] = "Cache table used to store $type entity records.";
}
return $schema;
}
/**
* Add in the exportable entity db columns as required by the entity API.
*/
function message_update_7000() {
db_add_field('message_type', 'status', array(
'type' => 'int',
'not null' => TRUE,
// Set the default to ENTITY_CUSTOM without using the constant as it is
// not safe to use it at this point.
'default' => 0x01,
'size' => 'tiny',
'description' => 'The exportable status of the entity.',
));
db_add_field('message_type', 'module', array(
'description' => 'The name of the providing module if the entity has been defined in code.',
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
));
}
/**
* Add the argument keys column of a message type.
*/
function message_update_7001() {
db_add_field('message_type', 'argument_keys', array(
'description' => 'Serialized array with the argument keys',
'type' => 'text',
'serialize' => TRUE,
));
}
/**
* Update the message type text field to have text processing.
*/
function message_update_7002() {
$instance = array(
'field_name' => MESSAGE_FIELD_MESSAGE_TEXT,
'bundle' => 'message_type',
'entity_type' => 'message_type',
'label' => t('Message text'),
'description' => t('This is the text of all messages of this type.'),
'required' => TRUE,
'settings' => array(
'text_processing' => 1,
),
);
field_update_instance($instance);
}
/**
* Add message type category.
*/
function message_update_7003() {
$schema['message_type_category'] = array(
'description' => 'Storage for user-defined message category.',
'fields' => array(
// Although the "category" should be enough as the primary key, the
// numeric ID is required for the internal use of entity API.
'id' => array(
'type' => 'serial',
'not null' => TRUE,
'description' => 'Primary Key: Numeric message type category ID.',
),
'category' => array(
'description' => 'The unified identifier for a message type category.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'description' => array(
'description' => 'Description for this message type category.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
// Set the default to ENTITY_CUSTOM without using the constant as it is
// not safe to use it at this point.
'default' => 0x01,
'size' => 'tiny',
'description' => 'The exportable status of the entity.',
),
'module' => array(
'description' => 'The name of the providing module if the entity has been defined in code.',
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
),
),
'primary key' => array('id'),
'unique keys' => array(
'category' => array('category'),
),
);
db_create_table('message_type_category', $schema['message_type_category']);
db_add_field('message_type', 'category', array(
'description' => 'Reference to a message type category.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => 'message_type',
));
}
/**
* Rename the 'name' column to 'type' in {Message}.
*/
function message_update_7004() {
$column = array(
'description' => 'Reference to a message a type.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
);
db_change_field('message', 'name', 'type', $column);
}
/**
* Add "arguments" column to message-type.
*/
function message_update_7005() {
$column = array(
'description' => 'Serialized array with the arguments',
'type' => 'text',
'serialize' => TRUE,
);
db_add_field('message_type', 'arguments', $column);
}
/**
* Add "data" column to message-type.
*/
function message_update_7006() {
$column = array(
'description' => 'Serialized array with general data.',
'type' => 'text',
'serialize' => TRUE,
'size' => 'big',
);
db_add_field('message_type', 'data', $column);
}
/**
* Add "language" column to all Message's related entities.
*/
function message_update_7007(&$sandbox) {
// Update the existing entities, with the default language.
$langcode = language_default()->language;
$tables = array(
'message_type_category',
'message_type',
'message',
);
if (!isset($sandbox['total'])) {
foreach ($tables as $key => $table) {
$name = str_replace('_', ' ', $table);
$column = array(
'description' => "The {languages}.language of this $name.",
'type' => 'varchar',
'length' => 12,
'not null' => TRUE,
'default' => '',
);
db_add_field($table, 'language', $column);
if ($table == 'message') {
// We don't want to time out when updating messages, so we will
// process it using batches.
$query = db_select($table);
$sandbox['last'] = 0;
$sandbox['total'] = $query->countQuery()->execute()->fetchField();
$sandbox['#finished'] = 0;
}
else {
db_update($table)
->fields(array(
'language' => $langcode,
))
->execute();
}
}
}
elseif ($sandbox['total'] && $sandbox['last'] <= $sandbox['total']) {
// Update messages.
$batch_size = 200;
db_update('message')
->fields(array(
'language' => $langcode,
))
->condition('mid', $sandbox['last'], '>')
->range(0, $batch_size)
->execute();
$sandbox['last'] += $batch_size;
$sandbox['#finished'] = min(0.99, $sandbox['last'] / $sandbox['total']);
}
else {
// Finished processing.
$sandbox['#finished'] = 1;
}
}
/**
* Make message-text field cardinality unlimited.
*/
function message_update_7008() {
$field = field_info_field(MESSAGE_FIELD_MESSAGE_TEXT);
$field['cardinality'] = FIELD_CARDINALITY_UNLIMITED;
field_update_field($field);
}
/**
* Mark message-text field as renderable using getText().
*/
function message_update_7009() {
$field = field_info_field(MESSAGE_FIELD_MESSAGE_TEXT);
$field['settings']['message_text'] = TRUE;
field_update_field($field);
}
/**
* Create cache bins for Entity-cache module.
*/
function message_update_7010() {
$cache_schema = drupal_get_schema_unprocessed('system', 'cache');
$types = array(
'message_type_category',
'message_type',
'message',
);
foreach ($types as $type) {
$schema["cache_entity_$type"] = $cache_schema;
$schema["cache_entity_$type"]['description'] = "Cache table used to store $type entity records.";
}
foreach ($schema as $name => $table) {
db_create_table($name, $table);
}
}
/**
* Add an index to message.type and message.timestamp.
*/
function message_update_7011() {
db_add_index('message', 'type', array('type'));
db_add_index('message', 'timestamp', array('timestamp'));
}
/**
* Update the message type index name to fix an sqlite issue.
*/
function message_update_7012() {
db_drop_index('message', 'type');
db_add_index('message', 'type_index', array('type'));
}
/**
* message.mid is part of the primary key but is not specified to be 'not
* null'.
*/
function message_update_7013() {
// Here we have some special concern:
// 1. Keep the field as serial so the auto_increment will not affected.
// 2. Before setting (or change) a field as serial PK should be dropped.
// 3. BTW, if change a serial field without any index will fail in MySQL.
// Let's add a temporary unique key for mid so MySQL will let it go.
db_add_unique_key('message', 'temp_key', array('mid'));
// Now remove the PK before changing a field as serial (well, even it is
// already a serial field, originally).
db_drop_primary_key('message');
// Here we can successfully alter the serial field without error message.
// See https://api.drupal.org/api/drupal/includes!database!database.inc/function/db_change_field/7
db_change_field('message', 'mid', 'mid', array(
'type' => 'serial',
'unsigned' => TRUE,
'description' => 'The Unique ID of the message.',
'not null' => TRUE,
), array(
'primary key' => array('mid'),
));
// Finally, remove the temporary unique key because no longer useful.
db_drop_unique_key('message', 'temp_key');
}