-
Notifications
You must be signed in to change notification settings - Fork 1
/
d2d.install
429 lines (423 loc) · 12.9 KB
/
d2d.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
<?php
/**
* @file
* Installation file for the D2D module.
*/
require_once 'includes/d2d.constants.inc';
/**
* Implements hook_install().
*/
function d2d_install() {
variable_set('d2d_online', FALSE);
variable_set('d2d_utc_offset', D2D_UTC_OFFSET_DEFAULT);
variable_set('d2d_timeout', D2D_TIMEOUT_DEFAULT);
variable_set('d2d_delta_0', D2D_DELTA_0_DEFAULT);
variable_set('d2d_delta_1', D2D_DELTA_1_DEFAULT);
variable_set('d2d_my_id', NULL);
variable_set('d2d_friendship_autoaccept', FALSE);
variable_set('d2d_friendship_autoaccept_localhost', FALSE);
$group_id = db_insert('d2d_groups')->fields(array(
'name' => 'friends',
'description' => 'N/A',
'auto_member' => 1,
))->execute();
foreach (array('d2d_get_public_key', 'd2d_list_permissions') as $method_name) {
db_insert('d2d_permissions')->fields(array(
'group_id' => $group_id,
'method' => $method_name,
))->execute();
}
menu_rebuild();
}
/**
* Implements hook_uninstall().
*/
function d2d_uninstall() {
variable_del('d2d_online');
variable_del('d2d_my_id');
variable_del('d2d_utc_offset');
variable_del('d2d_timeout');
variable_del('d2d_delta_0');
variable_del('d2d_delta_1');
variable_del('d2d_private_key');
}
/**
* Implements hook_schema().
*/
function d2d_schema() {
$schema = array();
$schema['d2d_instances'] = array(
'description' => 'Stores information on Drupal instances.',
'fields' => array(
'id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'primary identifier (local id)',
),
'd2d_id' => array(
'type' => 'varchar',
'length' => D2D_INSTANCE_IDENTIFIER_LENGTH,
'not null' => TRUE,
'description' => 'global d2d id',
),
'name' => array(
'type' => 'varchar',
'length' => D2D_INSTANCE_NAME_MAX_LENGTH,
'not null' => TRUE,
'description' => 'name of the Drupal instance',
),
'url' => array(
'type' => 'varchar',
'length' => D2D_INSTANCE_URL_MAX_LENGTH,
'not null' => TRUE,
'description' => 'address of the Drupal instance',
),
'description' => array(
'type' => 'varchar',
'length' => D2D_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',
),
// Four different states of friendship:
// 0: no friendship
// 1: friendship request sent but not accepted
// 2: friendship request received but not accepted
// 3: friendship established.
'friendship_state' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'integer indicating the state of friendship',
),
),
'primary key' => array('id'),
'unique keys' => array('d2d_id' => array('d2d_id')),
);
$schema['d2d_public_keys'] = array(
'description' => 'Stores information on public keys.',
'fields' => array(
'id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'primary identifier',
),
'instance_id' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'id of instance associated with this public key',
),
'public_key' => array(
'type' => 'varchar',
'length' => D2D_PUBLIC_KEY_MAX_LENGTH,
'not null' => FALSE,
'description' => 'public key',
),
),
'primary key' => array('id'),
);
$schema['d2d_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' => D2D_GROUP_NAME_MAX_LENGTH,
'not null' => TRUE,
'description' => 'name identifying the group',
),
'description' => array(
'type' => 'varchar',
'length' => D2D_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['d2d_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' => D2D_METHOD_NAME_MAX_LENGTH,
'not null' => TRUE,
'description' => 'name identifying the method',
),
),
'primary key' => array('group_id', 'method'),
);
$schema['d2d_group_memberships'] = array(
'description' => 'Stores information on 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'),
);
$schema['d2d_nonces'] = array(
'description' => 'Stores recently used pairs of nonces and timestamps.',
'fields' => array(
'nonce' => array(
'type' => 'varchar',
'length' => D2D_NONCE_LENGTH,
'not null' => TRUE,
'description' => 'nonce',
),
'timestamp' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'timestamp of the nonce',
),
),
'primary key' => array('nonce', 'timestamp'),
);
$schema['d2d_notifications'] = array(
'description' => 'Stores information on notifications.',
'fields' => array(
'id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'primary identifier',
),
'type' => array(
'type' => 'varchar',
'length' => D2D_NOTIFICATION_TYPE_MAX_LENGTH,
'not null' => TRUE,
'description' => 'type of notification',
),
'd2d_id' => array(
'type' => 'varchar',
'length' => D2D_INSTANCE_IDENTIFIER_LENGTH,
'not null' => TRUE,
'description' => 'global d2d id',
),
'content' => array(
'type' => 'blob',
'not null' => TRUE,
'description' => 'content / data of the notification',
),
'timestamp' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'timestamp of the notification',
),
'seen' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'flag indicating whether the notification has been read',
),
),
'primary key' => array('id'),
);
$schema['d2d_outgoing_requests'] = array(
'description' => 'Stores information on outgoing requests.',
'fields' => array(
'id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'primary identifier',
),
'receiver_id' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => '(internal) id of the instance the request is sent to',
),
'type' => array(
'type' => 'varchar',
'length' => D2D_REQUEST_TYPE_MAX_LENGTH,
'not null' => TRUE,
'description' => 'type of the request',
),
'data' => array(
'type' => 'blob',
'not null' => TRUE,
'description' => 'data sent with this request',
),
'time_insert' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'timestamp the request was inserted',
),
'time_next_send' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'earliest time the request will be sent (again)',
),
'time_invalid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'time from which on the request will not be sent anymore',
),
'max_send_trials' => array(
'type' => 'int',
'unsigned' => FALSE,
'not null' => TRUE,
'default' => 1,
'description' => 'number of times this request will be resent',
),
),
'primary key' => array('id'),
);
$schema['d2d_incoming_requests'] = array(
'description' => 'Stores information on incoming requests.',
'fields' => array(
'id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'primary identifier',
),
'sender_d2d_id' => array(
'type' => 'varchar',
'length' => D2D_INSTANCE_IDENTIFIER_LENGTH,
'not null' => TRUE,
'description' => 'D2D id the request was received from',
),
'type' => array(
'type' => 'varchar',
'length' => D2D_REQUEST_TYPE_MAX_LENGTH,
'not null' => TRUE,
'description' => 'type of the request',
),
'arguments' => array(
'type' => 'blob',
'not null' => TRUE,
'description' => 'arguments received with the request',
),
'time_insert' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'timestamp the request was inserted into the database',
),
'timestamp' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'timestamp of the request',
),
'url' => array(
'type' => 'varchar',
'length' => D2D_INSTANCE_URL_MAX_LENGTH,
'not null' => TRUE,
'description' => 'address under which the sender of the request claims to be available',
),
'ip' => array(
'type' => 'varchar',
'length' => D2D_IP_MAX_LENGTH,
'not null' => TRUE,
'description' => 'ip the request was received from',
),
'signed_data' => array(
'type' => 'blob',
'not null' => TRUE,
'description' => 'part of the request that was signed',
),
'signature' => array(
'type' => 'blob',
'not null' => TRUE,
'description' => 'signature of the part that was signed',
),
'signature_valid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'flag indicating whether the signature is valid or not',
),
),
'primary key' => array('id'),
);
return $schema;
}
/**
* Implements hook_requirements().
*/
function d2d_requirements($phase) {
$requirements = array();
$t = get_t();
$openssl_installed = defined('OPENSSL_VERSION_TEXT');
$php_version = phpversion();
// Report and test PHP version.
$requirements['d2d_php'] = array(
'title' => $t('PHP'),
'value' => $php_version,
);
if (version_compare($php_version, D2D_MINIMUM_PHP) < 0) {
$requirements['d2d_php']['description'] = $t('Your PHP installation is too old. D2D requires at least PHP %version.', array('%version' => D2D_MINIMUM_PHP));
$requirements['d2d_php']['severity'] = REQUIREMENT_ERROR;
}
// Report and test if OpenSSL is enabled.
$requirements['d2d_openssl'] = array(
'title' => $t('OpenSSL'),
'value' => $openssl_installed ? $t('Enabled @version', array('@version' => OPENSSL_VERSION_TEXT)) : $t('Not found.'),
);
if (!$openssl_installed) {
$requirements['d2d_openssl']['description'] = $t('D2D requires OpenSSL extension in PHP being enabled');
$requirements['d2d_openssl']['severity'] = REQUIREMENT_ERROR;
}
return $requirements;
}