This repository has been archived by the owner on Jan 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrupal_sync.install
executable file
·254 lines (238 loc) · 6.56 KB
/
drupal_sync.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
<?php
/**
* @file
* Install, update and uninstall functions for the drupal_sync module.
*/
/**
* Implements hook_schema().
*/
function drupal_sync_schema() {
$schema['drupal_sync'] = array(
'description' => 'The base table for synchronization entities between multiple sites.',
'fields' => array(
'eid' => array(
'description' => 'The primary identifier for a entity.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'reid' => array(
'description' => 'The remote identifier for a entity.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
'default' => 0
),
'entity_type' => array(
'description' => 'The type of entity.',
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
'site_id' => array(
'description' => 'The ID of remote site (site name in drupal_sync configuration settings).',
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
'source_eid' => array(
'description' => 'The entity identifier for first source.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'source_site_id' => array(
'description' => 'The ID of first source remote site.',
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
'source_changed' => array(
'description' => 'The Unix timestamp when the source entity was changed.',
'type' => 'int',
'default' => 0,
),
),
'primary key' => array('eid', 'reid', 'site_id', 'entity_type'),
);
$schema['drupal_sync_in_progress'] = array(
'description' => 'The base table for synchronization entities between multiple sites.',
'fields' => array(
'source_eid' => array(
'description' => 'The entity identifier for first source.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'entity_type' => array(
'description' => 'The type of entity.',
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
'source_site_id' => array(
'description' => 'The ID of first source remote site.',
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
'source_changed' => array(
'description' => 'The Unix timestamp when the source entity was changed.',
'type' => 'int',
'default' => 0,
),
'operation' => array(
'description' => 'Synchronization operation.',
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
),
'primary key' => array('source_eid', 'source_site_id', 'operation'),
);
$schema['drupal_sync_queue'] = array(
'description' => 'The table for queue synchronization.',
'fields' => array(
'id' => array(
'description' => 'The primary identifier.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'remote_site_id' => array(
'description' => 'The ID of remove site (URL).',
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
'entity_id' => array(
'description' => 'The local entity ID.',
'type' => 'int',
'not null' => TRUE,
),
'entity_type' => array(
'description' => 'The type of entity.',
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
'entity' => array(
'description' => 'The entity array',
'type' => 'blob',
'not null' => FALSE,
'size' => 'big',
'serialize' => TRUE,
),
'operation' => array(
'description' => 'The sync operation',
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => 'insert',
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'description' => 'Timestamp for when row was created.',
),
'status' => array(
'type' => 'varchar',
'length' => 30,
'not null' => TRUE,
'default' => 'awaiting',
),
),
'primary key' => array('id'),
);
return $schema;
}
/**
* Implements hook_install().
*/
function drupal_sync_install() {
}
/**
* Implements hook_uninstall().
*/
function drupal_sync_uninstall() {
variable_del('drupal_sync_remote_relation_settings');
variable_del('drupal_sync_settings');
variable_del('drupal_sync_update_last_time');
variable_del('drupal_sync_xmlrpc_auth_options');
}
/**
* Add fields to table.
*/
function drupal_sync_update_7000() {
db_add_field('drupal_sync_queue', 'status', array(
'type' => 'varchar',
'length' => 30,
'not null' => TRUE,
'default' => 'awaiting',
));
}
/**
* Add fields to table drupal_sync_in_progress.
*/
function drupal_sync_update_7001() {
db_add_field('drupal_sync_in_progress', 'entity_type', array(
'description' => 'The type of entity.',
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
));
}
/**
* Change primary key in 'drupal_sync' table.
*/
function drupal_sync_update_7002() {
db_drop_primary_key('drupal_sync');
db_add_primary_key('drupal_sync', array('eid', 'reid', 'site_id', 'entity_type'));
}
/**
* Change field reid in drupal_sync_table, now reid can be NULL.
*/
function drupal_sync_update_7003() {
db_change_field('drupal_sync', 'reid', 'reid',
array(
'description' => 'The remote identifier for a entity.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
));
}
/**
* Change field reid in drupal_sync_table, now reid cant be NULL.
*/
function drupal_sync_update_7004() {
db_change_field('drupal_sync', 'reid', 'reid',
array(
'description' => 'The remote identifier for a entity.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
));
}
/**
* Change field reid in drupal_sync_table, now reid can be NULL.
*/
function drupal_sync_update_7005() {
db_change_field('drupal_sync', 'reid', 'reid',
array(
'description' => 'The remote identifier for a entity.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
'default' => 0
));
}