-
Notifications
You must be signed in to change notification settings - Fork 1
/
drupaltodrupal.install
433 lines (425 loc) · 13.7 KB
/
drupaltodrupal.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
<?php
/**
* @file
* Installation file for the Drupal-to-Drupal module.
*/
require_once 'includes/drupaltodrupal.constants.inc';
/**
* Implements hook_install()
*/
function drupaltodrupal_install() {
watchdog('Drupal-to-Drupal', 'hook_install()');
$res = openssl_pkey_new();
openssl_pkey_export($res, $private_key);
$public_key = openssl_pkey_get_details($res);
$public_key = $public_key['key'];
variable_set('drupaltodrupal_private_key', $private_key);
// TODO: save (private) key at different place
// TODO: free resources
// add own instance to database
$id = db_insert('drupaltodrupal_instances')->fields(array(
'url' => $GLOBALS['base_url'] . '/',
'description' => 'this instance.',
'time_inserted' => drupaltodrupal_get_time(),
'public_key_id' => NULL,
))->execute();
$id_pk = db_insert('drupaltodrupal_public_keys')->fields(array(
'id_instance' => $id,
'public_key' => $public_key,
))->execute();
$num_updated = db_update('drupaltodrupal_instances')
->fields(array(
'public_key_id' => $id_pk,
))
->condition('id', $id)
->execute();
$group_id = db_insert('drupaltodrupal_groups')->fields(array(
'name' => 'friends',
'description' => 'N/A',
'auto_member' => 1,
))->execute();
foreach (array('drupaltodrupal_get_friends', 'drupaltodrupal_get_public_key', 'drupaltodrupal_list_permissions', 'drupaltodrupal_get_friendship_certificate') as $method_name) {
$m_id = db_insert('drupaltodrupal_permissions')->fields(array(
'group_id' => $group_id,
'method' => $method_name,
))->execute();
}
variable_set('drupaltodrupal_instance_id', $id);
variable_set('drupaltodrupal_utc_offset', DRUPALTODRUPAL_UTC_OFFSET_DEFAULT);
variable_set('drupaltodrupal_validity', DRUPALTODRUPAL_VALIDITY_DEFAULT);
variable_set('drupaltodrupal_renew_time', DRUPALTODRUPAL_RENEW_TIME_DEFAULT);
variable_set('drupaltodrupal_resend_time', DRUPALTODRUPAL_RESEND_TIME_DEFAULT);
variable_set('drupaltodrupal_timeout', DRUPALTODRUPAL_TIMEOUT_DEFAULT);
variable_set('drupaltodrupal_garbage_time', DRUPALTODRUPAL_GARBAGE_TIME_DEFAULT);
variable_set('drupaltodrupal_delta_0', DRUPALTODRUPAL_DELTA_0_DEFAULT);
variable_set('drupaltodrupal_delta_1', DRUPALTODRUPAL_DELTA_1_DEFAULT);
variable_set('drupaltodrupal_delta_1', DRUPALTODRUPAL_DELTA_1_DEFAULT);
variable_set('drupaltodrupal_auto_accept', DRUPALTODRUPAL_AUTO_ACCEPT);
variable_set('drupaltodrupal_default_request',
$GLOBALS['base_url'] === 'http://localhost/drupal_a'
? 'http://localhost/drupal_b/' : 'http://localhost/drupal_a/');
}
/**
* Implements hook_uninstall()
*/
function drupaltodrupal_uninstall() {
watchdog('Drupal-to-Drupal', 'hook_uninstall()');
variable_del('drupaltodrupal_private_key');
variable_del('drupaltodrupal_instance_id');
variable_del('drupaltodrupal_default_request');
variable_del('drupaltodrupal_utc_offset');
variable_del('drupaltodrupal_validity');
variable_del('drupaltodrupal_renew_time');
variable_del('drupaltodrupal_resend_time');
variable_del('drupaltodrupal_timeout');
variable_del('drupaltodrupal_garbage_time');
variable_del('drupaltodrupal_delta_0');
variable_del('drupaltodrupal_delta_1');
variable_del('drupaltodrupal_auto_accept');
drupal_uninstall_schema('drupaltodrupal');
}
/**
* Implements hook_schema()
*/
function drupaltodrupal_schema() {
$schema = array();
$schema['drupaltodrupal_instances'] = array(
'description' => 'Stores information on Drupal instances.',
'fields' => array(
'id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'primary identifier',
),
'url' => array(
'type' => 'varchar',
'length' => DRUPALTODRUPAL_INSTANCE_URL_MAX_LENGTH,
'not null' => TRUE,
'description' => 'address of the Drupal instance',
),
'description' => array(
'type' => 'varchar',
'length' => DRUPALTODRUPAL_INSTANCE_DESCRIPTION_MAX_LENGTH,
'not null' => TRUE,
'default' => '',
'description' => 'description of the Drupal instance',
),
'time_inserted' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'time this entry was inserted',
),
'last_alive' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
'description' => 'time the Drupal instance was last seen',
),
'public_key_id' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
'description' => 'id of public key belonging to this instance',
),
),
'primary key' => array('id'),
'unique keys' => array('url' => array('url')),
);
$schema['drupaltodrupal_public_keys'] = array(
'description' => 'Stores information on public keys.',
'fields' => array(
'id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'primary identifier',
),
'id_instance' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'id of instance associated with this public key',
),
'public_key' => array(
'type' => 'varchar',
'length' => DRUPALTODRUPAL_PUBLIC_KEY_MAX_LENGTH,
'not null' => FALSE,
'description' => 'public key',
),
),
'primary key' => array('id'),
);
$schema['drupaltodrupal_friendship_certificates'] = array(
'description' => 'Stores certificates on friendship between Drupal instances.',
'fields' => array(
'fcert_id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'primary identifier',
),
'id_signer' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'id of the instance signing the certificate',
),
'id_friend' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'id of the friend',
),
'time_inserted' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'time this entry was inserted into the database',
),
'valid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
'description' => 'flag indicating whether the certificate is valid w.r.t. the corresponding public keys in the database',
),
'valid_until' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'time the friendship expires',
),
'certificate' => array(
'type' => 'blob',
'not null' => FALSE,
'description' => 'certificate for the friendship',
),
),
'primary key' => array('fcert_id'),
);
$schema['drupaltodrupal_outgoing_requests'] = array(
'description' => 'Stores friendship requests made by this instance.',
'fields' => array(
'outreq_id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'primary identifier',
),
'id_offer' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'if of the friendship offered',
),
'id_common_friend' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
'description' => 'id of the common friend',
),
'email' => array(
'type' => 'varchar',
'length' => DRUPALTODRUPAL_EMAIL_MAX_LENGTH,
'not null' => TRUE,
'default' => '',
'description' => 'email address of the requester',
),
'message' => array(
'type' => 'varchar',
'length' => DRUPALTODRUPAL_REQUEST_MESSAGE_MAX_LENGTH,
'not null' => TRUE,
'default' => '',
'description' => 'message attached to request',
),
'time_inserted' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'time the request was inserted',
),
'state' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'state of the request',
),
'reply' => array(
'type' => 'int',
'unsigned' => FALSE,
'not null' => FALSE,
'description' => 'reply to the request',
),
'next_send' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
'description' => 'time the request will be sent again',
),
'type' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'type of the request',
),
),
'primary key' => array('outreq_id'),
);
$schema['drupaltodrupal_incoming_requests'] = array(
'description' => 'Stores friendship requests received.',
'fields' => array(
'inreq_id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'primary identifier',
),
'id_offer' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'id of the friendship offered',
),
'id_common_friend' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
'description' => 'id of a common friend',
),
'email' => array(
'type' => 'varchar',
'length' => DRUPALTODRUPAL_EMAIL_MAX_LENGTH,
'not null' => TRUE,
'default' => '',
'description' => 'email address of the requester',
),
'message' => array(
'type' => 'varchar',
'length' => DRUPALTODRUPAL_REQUEST_MESSAGE_MAX_LENGTH,
'not null' => TRUE,
'default' => '',
'description' => 'message attached to request',
),
'time_sent' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'time the request was sent',
),
'time_received' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'time the request was received',
),
'ip' => array(
'type' => 'varchar',
'length' => DRUPALTODRUPAL_IP_LENGTH,
'not null' => TRUE,
'default' => '',
'description' => 'ip the request came from',
),
'request' => array(
'type' => 'blob',
'not null' => TRUE,
'description' => '(encrypted) request',
),
'signature' => array(
'type' => 'blob',
'not null' => TRUE,
'description' => 'signature of the request',
),
'valid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
'description' => 'flag indicating whether the signature is valid w.r.t. the corresponding public key in the database',
),
'state' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'state of the request',
),
'type' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'type of the request',
),
),
'primary key' => array('inreq_id'),
);
$schema['drupaltodrupal_groups'] = array(
'description' => 'Stores information on groups of Drupal instances.',
'fields' => array(
'id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'primary identifier',
),
'name' => array(
'type' => 'varchar',
'length' => DRUPALTODRUPAL_GROUP_NAME_MAX_LENGTH,
'not null' => TRUE,
'description' => 'name identifying the group',
),
'description' => array(
'type' => 'varchar',
'length' => DRUPALTODRUPAL_GROUP_DESCRIPTION_MAX_LENGTH,
'not null' => TRUE,
'default' => '',
'description' => 'description of the group',
),
'auto_member' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'flag indicating whether a newly added instance should automatically be a member of this group',
),
),
'primary key' => array('id'),
'unique keys' => array('name' => array('name')),
);
$schema['drupaltodrupal_permissions'] = array(
'description' => 'Stores information on permissions of groups of Drupal instances on remote methods.',
'fields' => array(
'group_id' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'group id',
),
'method' => array(
'type' => 'varchar',
'length' => DRUPALTODRUPAL_METHOD_NAME_MAX_LENGTH,
'not null' => TRUE,
'description' => 'name identifying the method',
),
),
'primary key' => array('group_id', 'method'),
);
$schema['drupaltodrupal_group_memberships'] = array(
'description' => 'Stores information on of Drupal instances being members of groups.',
'fields' => array(
'instance_id' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'instance id',
),
'group_id' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'group id',
),
),
'primary key' => array('instance_id', 'group_id'),
);
return $schema;
}