forked from kylebrowning/services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.module
849 lines (776 loc) · 24.3 KB
/
services.module
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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
<?php
/**
* @file
* Provides a generic but powerful API for web services.
*/
/**
* Minimum CTools version needed.
*/
define('SERVICES_REQUIRED_CTOOLS_API', '1.7');
/**
* Implements hook_help().
*/
function services_help($path, $arg) {
$output = NULL;
switch ($path) {
case 'admin/help#services':
$output = '<p>' . t('Visit the <a href="@handbook_url">Services Handbook</a> for help and information.', array('@handbook_url' => 'http://drupal.org/node/109782')) . '</p>';
break;
case 'admin/structure/services':
$output = '<p>' . t('Services are collections of methods available to remote applications. They are defined in modules, and may be accessed in a number of ways through server modules. Visit the <a href="@handbook_url">Services Handbook</a> for help and information.', array('@handbook_url' => 'http://drupal.org/node/109782')) . '</p>';
$output .= '<p>' . t('All enabled services and methods are shown. Click on any method to view information or test.') . '</p>';
break;
}
return $output;
}
/**
* Implements hook_perm().
*/
function services_permission() {
return array(
'administer services' => array(
'title' => t('Administer services'),
'description' => t('Configure and setup services module.'),
),
// File resource permissions
'get any binary files' => array(
'title' => t('Get any binary files'),
'description' => t(''),
),
'get own binary files' => array(
'title' => t('Get own binary files'),
'description' => t(''),
),
'save file information' => array(
'title' => t('Save file information'),
'description' => t(''),
),
// System resource permissions
'get a system variable' => array(
'title' => t('Get a system variable'),
'description' => t(''),
),
'set a system variable' => array(
'title' => t('Set a system variable'),
'description' => t(''),
),
// Query-limiting permissions
'perform unlimited index queries' => array(
'title' => t('Perform unlimited index queries'),
'description' => t('This permission will allow user to perform index queries with unlimited number of results.'),
),
);
}
/**
* Implements hook_hook_info().
*/
function services_hook_info() {
$hooks['services_resources'] = array(
'group' => 'services',
);
return $hooks;
}
/**
* Implements hook_menu().
*
* Services UI is defined in the export-ui plugin.
*/
function services_menu() {
$items = array();
if (module_exists('ctools')) {
$endpoints = services_endpoint_load_all();
foreach ($endpoints as $endpoint) {
if (empty($endpoint->disabled)) {
$items[$endpoint->path] = array(
'title' => 'Services endpoint',
'access callback' => 'services_access_menu',
'page callback' => 'services_endpoint_callback',
'page arguments' => array($endpoint->name),
'type' => MENU_CALLBACK,
);
}
}
}
$items['services/session/token'] = array(
'page callback' => '_services_session_token',
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
return $items;
}
/**
* Implements of hook_ctools_plugin_api().
*/
function services_ctools_plugin_api($module, $api) {
if ($module == 'services' && $api == 'plugins') {
return array('version' => 3);
}
}
/**
* Implement of hook_ctools_plugin_directory().
*/
function services_ctools_plugin_directory($module, $type) {
// Safety: go away if CTools is not at an appropriate version.
if (!module_invoke('ctools', 'api_version', SERVICES_REQUIRED_CTOOLS_API)) {
return;
}
if ($type =='export_ui') {
return 'plugins/export_ui';
}
}
/**
* Access callback that always returns TRUE.
*
* This callback is necessary for services like login and logout that should
* always be wide open and accessible.
*
* *** USE THIS WITH GREAT CAUTION ***
*
* If you think you need it you are almost certainly wrong.
*/
function services_access_menu() {
return TRUE;
}
/**
* Implements hook_theme().
*/
function services_theme() {
return array(
'services_endpoint_index' => array(
'template' => 'services_endpoint_index',
'arguments' => array('endpoints' => NULL),
),
'services_resource_table' => array(
'render element' => 'table',
'file' => 'services.admin.inc',
),
);
}
/**
* Returns information about the installed server modules on the system.
*
* @return array
* An associative array keyed after module name containing information about
* the installed server implementations.
*/
function services_get_servers($reset = FALSE) {
$servers = &drupal_static(__FUNCTION__);
if (!$servers || $reset) {
$servers = array();
foreach (module_implements('server_info') as $module) {
if ($module != 'sqlsrv') {
$servers[$module] = call_user_func($module . '_server_info');
}
}
}
return $servers;
}
/**
* Menu system page callback for server endpoints.
*
* @param string $endpoint
* The endpoint name.
* @return void
*/
function services_endpoint_callback($endpoint_name) {
module_load_include('inc', 'services', 'includes/services.runtime');
// Explicitly set the title to avoid expensive menu calls in token
// and elsewhere.
if (!($title = drupal_set_title())) {
drupal_set_title('Services endpoint');
}
$endpoint = services_endpoint_load($endpoint_name);
$server = $endpoint->server;
if (function_exists($server . '_server')) {
// call the server
services_set_server_info_from_array(array(
'module' => $server,
'endpoint' => $endpoint_name,
'endpoint_path' => $endpoint->path,
'debug' => $endpoint->debug,
'settings' => $endpoint->server_settings,
));
if ($endpoint->debug) {
watchdog('services', 'Calling server: %server', array('%server' => $server . '_server'), WATCHDOG_DEBUG);
watchdog('services', 'Server info main object: <pre>@info</pre>', array('@info' => print_r(services_server_info_object(), TRUE)), WATCHDOG_DEBUG);
}
print call_user_func($server . '_server');
// Do not let this output
drupal_page_footer();
exit();
}
// return 404 if the server doesn't exist
drupal_not_found();
}
/**
* Create a new endpoint with defaults appropriately set from schema.
*
* @return stdClass
* An endpoint initialized with the default values.
*/
function services_endpoint_new() {
ctools_include('export');
return ctools_export_new_object('services_endpoint');
}
/**
* Load a single endpoint.
*
* @param string $name
* The name of the endpoint.
* @return stdClass
* The endpoint configuration.
*/
function services_endpoint_load($name) {
ctools_include('export');
$result = ctools_export_load_object('services_endpoint', 'names', array($name));
if (isset($result[$name])) {
return $result[$name];
}
return FALSE;
}
/**
* Load all endpoints.
*
* @return array
* Array of endpoint objects keyed by endpoint names.
*/
function services_endpoint_load_all() {
ctools_include('export');
return ctools_export_load_object('services_endpoint');
}
/**
* Saves an endpoint in the database.
*
* @return void
*/
function services_endpoint_save($endpoint) {
if (is_array($endpoint) && isset($endpoint['build_info'])) {
$endpoint = $endpoint['build_info']['args'][0];
}
// Set a default of an array if the value is not present.
foreach (array('server_settings', 'resources', 'authentication') as $endpoint_field) {
if (empty($endpoint->{$endpoint_field})) {
$endpoint->{$endpoint_field} = array();
}
}
ctools_export_crud_save('services_endpoint', $endpoint);
ctools_export_load_object_reset('services_endpoint');
menu_rebuild();
cache_clear_all('services:' . $endpoint->name . ':', 'cache', TRUE);
}
/**
* Remove an endpoint.
*
* @return void
*/
function services_endpoint_delete($endpoint) {
ctools_export_crud_delete('services_endpoint', $endpoint);
ctools_export_load_object_reset('services_endpoint');
menu_rebuild();
cache_clear_all('services:' . $endpoint->name . ':', 'cache', TRUE);
}
/**
* Export an endpoint.
*
* @return string
*/
function services_endpoint_export($endpoint, $indent = '') {
ctools_include('export');
return ctools_export_object('services_endpoint', $endpoint, $indent);
}
/**
* Gets all resource definitions.
*
* @param string $endpoint_name
* Optional. The endpoint endpoint that's being used.
* @return array
* An array containing all resources.
*/
function services_get_resources($endpoint_name = '') {
$cache_key = 'services:' . $endpoint_name . ':resources';
$resources = array();
if (($cache = cache_get($cache_key)) && isset($cache->data)) {
$resources = $cache->data;
}
else {
module_load_include('inc', 'services', 'includes/services.resource_build');
$resources = _services_build_resources($endpoint_name);
cache_set($cache_key, $resources);
}
return $resources;
}
/**
* Load the resources of the endpoint.
*
* @return array
*/
function services_get_resources_apply_settings($endpoint_name) {
$resources = services_get_resources($endpoint_name);
module_load_include('inc', 'services', 'includes/services.resource_build');
$endpoint = services_endpoint_load($endpoint_name);
_services_apply_endpoint($resources, $endpoint, TRUE);
return $resources;
}
/**
* Returns information about resource API version information.
* The resource API is the way modules expose resources to services,
* not the API that is exposed to the consumers of your services.
*
* @return array
* API version information. 'default_version' is the version that's assumed
* if the module doesn't declare an API version. 'versions' is an array
* containing the known API versions. 'current_version' is the current
* version number.
*/
function services_resource_api_version_info() {
$info = array(
'default_version' => 3001,
'versions' => array(3002),
);
$info['current_version'] = max($info['versions']);
return $info;
}
/**
* Implements hook_services_resources().
*/
function services_services_resources() {
module_load_include('inc', 'services', 'includes/services.resource_build');
// Return resources representing legacy services
return _services_core_resources();
}
/**
* Implementation of hook_services_authentication_info().
*/
function services_services_authentication_info() {
return array(
'title' => t('Session authentication'),
'description' => t("Uses Drupal's built in sessions to authenticate."),
'authenticate_call' => '_services_sessions_authenticate_call',
);
}
/**
* Authenticates a call using Drupal's built in sessions
*
* @return string
* Error message in case error occured.
*/
function _services_sessions_authenticate_call($module, $controller) {
global $user;
$original_user = services_get_server_info('original_user');
if ($original_user->uid == 0) {
return;
}
if ($controller['callback'] != '_user_resource_get_token') {
$non_safe_method_called = !in_array($_SERVER['REQUEST_METHOD'], array('GET', 'HEAD', 'OPTIONS', 'TRACE'));
$csrf_token_invalid = !isset($_SERVER['HTTP_X_CSRF_TOKEN']) || !drupal_valid_token($_SERVER['HTTP_X_CSRF_TOKEN'], 'services');
if ($non_safe_method_called && $csrf_token_invalid) {
return t('CSRF validation failed');
}
}
if ($user->uid != $original_user->uid) {
$user = $original_user;
}
}
/**
* Get operation class information.
*
* @return array An array with operation class information keyed by operation machine name.
*/
function services_operation_class_info() {
return array(
'operations' => array(
'title' => t('CRUD operations'),
'name' => t('CRUD operation'),
'class_singular' => 'operation',
),
'actions' => array(
'title' => t('Actions'),
'name' => t('action'),
'class_singular' => 'action',
),
'relationships' => array(
'title' => t('Relationships'),
'name' => t('relationship'),
'class_singular' => 'relationship',
),
'targeted_actions' => array(
'title' => t('Targeted actions'),
'name' => t('targeted action'),
'class_singular' => 'targeted_action',
),
);
}
/**
* Returns all the controller names for a endpoint.
*
* @param string $endpoint
* The endpoint that should be used.
* @return array
* An array containing all controller names.
*/
function services_controllers_list($endpoint) {
$controllers = array();
$class_info = services_operation_class_info();
$resources = services_get_resources($endpoint);
foreach ($resources as $resource_name => $resource) {
foreach ($class_info as $class_name => $class) {
if (empty($resource[$class_name])) {
continue;
}
foreach ($resource[$class_name] as $op_name => $op) {
$method = "{$resource_name}.{$op_name}";
if (empty($controllers[$method])) {
$controllers[$method] = $method;
}
else {
watchdog('services', 'Naming collision when listing controllers as methods. The %class %operation is not included in the listing.', array(
'%class' => $class['name'],
'%operation' => $op_name,
), WATCHDOG_WARNING);
}
}
}
}
return $controllers;
}
/**
* Returns the requested controller.
*
* @param string $name
* The name of the controller in the format: {resource}.{name} or
* {resource}.{operation}. Examples: "node.retrieve", "system.getVariable".
* @param string $endpoint
* The endpoint that should be used.
*/
function services_controller_get($name, $endpoint) {
list($resource_name, $method) = explode('.', $name);
$resources = services_get_resources($endpoint);
if (isset($resources[$resource_name])) {
$res = $resources[$resource_name];
if (isset($res[$method])) {
return $res[$method];
}
else {
$class_info = services_operation_class_info();
// Handle extended operations
foreach ($class_info as $class => $info) {
if (isset($res[$class]) && isset($res[$class][$method])) {
return $res[$class][$method];
}
}
}
}
}
/**
* Returns an array of available updates versions for a resource.
*
* @return
* If services has updates, an array of available updates sorted by version.
* Otherwise, array().
*/
function services_get_updates() {
$updates = &drupal_static(__FUNCTION__, array());
if (!isset($updates) || empty($updates)) {
$updates = array();
module_load_include('inc', 'services', 'includes/services.resource_build');
// Load the resources for services.
_services_core_resources();
// Prepare regular expression to match all possible defined
// _resource_resource_method_update_N_N().
$regexp = '/_(?P<resource>.+)_resource_(?P<method>.+)_update_(?P<major>\d+)_(?P<minor>\d+)$/';
$functions = get_defined_functions();
// Narrow this down to functions ending with an integer, since all
// _resource_resource_method_update_N_N() functions end this way, and there are other
// possible functions which match '_update_'. We use preg_grep() here
// instead of foreaching through all defined functions, since the loop
// through all PHP functions can take significant page execution time.
// Luckily this only happens when the cache is cleared for an endpoint
// and resources are re-generated.
foreach (preg_grep('/_\d+$/', $functions['user']) as $function) {
// If this function is a service update function, add it to the list of
// services updates.
if (preg_match($regexp, $function, $matches)) {
$resource = $matches['resource'];
$method = $matches['method'];
$major = $matches['major'];
$minor = $matches['minor'];
$updates[$resource][$method][] = array(
'version' => $major .'_'. $minor,
'major' => $major,
'minor' => $minor,
'callback' => $function,
'resource' => $resource,
'method' => $method,
);
}
}
}
return $updates;
}
/**
* Determine if any potential versions exist as valid headers.
* returns false if no version is present in the header for the specific call.
*/
function _services_version_header_options() {
$available_headers = array();
$updates = services_get_updates();
if(is_array($updates)) {
foreach ($updates as $resource => $update) {
foreach ($update as $method_name => $method) {
$available_headers[] = 'services_'. $resource .'_'.$method_name .'_version';
}
}
}
foreach($available_headers as $key => $version_header_option) {
if(array_key_exists($version_header_option, $headers = getallheaders())) {
$version = $headers[$version_header_option];
}
}
return isset($version) ? $version : FALSE;
}
/**
* Returns currently set api version for an endpoint resource method.
*
* @param $endpoint
* A fully loadded endpoint.
* @param $resource
* A resource name.
* @param $method
* A method name.
* @return
* an array with the major and minor api versions
*/
function services_get_resource_api_version($endpoint, $resource, $method) {
if (isset($endpoint->resources[$resource]) ) {
$class_info = services_operation_class_info();
foreach ($class_info as $class_name => $class) {
if (!empty($resource[$class_name])) {
if (isset($endpoint->resources[$resource][$class_name][$method]['settings']['services']['resource_api_version'])) {
if($version = _services_version_header_options()) {
$split = explode('.', $version);
} else {
$split = explode('.', $endpoint->resources[$resource][$class_name][$method]['settings']['services']['resource_api_version']);
}
return array(
'major' => $split[0],
'minor' => $split[1],
);
}
}
}
}
}
/**
* Apply versions to the controller.
*
* @param $controller
* A controller array.
* @param $options
* A options array filled with verison information.
* @return
* An array with the major and minor api versions
*/
function services_request_apply_version(&$controller, $options = array()) {
if (isset($options)) {
extract($options);
}
if (isset($version) && $version == '1.0') {
//do nothing
return;
}
$updates = services_get_updates();
if (isset($method) && isset($updates[$resource][$method])) {
foreach ($updates[$resource][$method] as $update) {
if (!isset($version)) {
$endpoint = services_get_server_info('endpoint', '');
$endpoint = services_endpoint_load($endpoint);
$default_version = services_get_resource_api_version($endpoint, $resource, $method);
}
else {
$default_version = explode('.', $version);
$default_version['major'] = $default_version[0];
$default_version['minor'] = $default_version[1];
}
// Apply updates until we hit our default update for the site.
if ($update['major'] <= $default_version['major'] && $update['minor'] <= $default_version['minor']) {
$update_data = call_user_func($update['callback']);
$controller = array_merge($controller, $update_data);
}
}
}
}
/**
* Convert a resource to RPC-style methods.
*
* @param array $resource
* A resource definition.
* @param string $resource_name
* The resource name, ie: node.
*
* @return array
* An array of RPC method definitions
*/
function services_resources_as_procedures($resource, $resource_name) {
$methods = array();
$class_info = services_operation_class_info();
foreach ($class_info as $class_name => $class) {
if (empty($resource[$class_name])) {
continue;
}
foreach ($resource[$class_name] as $op_name => $op) {
$method_name = "{$resource_name}.{$op_name}";
if (empty($methods[$method_name])) {
$methods[$method_name] = array(
'method' => $method_name,
) + $op;
}
else {
watchdog('services', 'Naming collision when listing controllers as methods. The %class %operation wont be available for RPC-style servers.', array(
'%class' => $class['name'],
'%operation' => $op_name,
), WATCHDOG_WARNING);
}
}
}
return $methods;
}
/**
* Helper function to build index queries.
*
* @param $query
* Object database query object.
* @param $page
* Integer page number we are requesting.
* @param $fields
* Array fields to return.
* @param $parameter
* Array parameters to add to the index query.
* @param $page_size
* Integer number of items to be returned.
* @param $resource
* String name of the resource building the index query
*/
function services_resource_build_index_query($query, $page, $fields, $parameters, $page_size, $resource) {
$default_limit = variable_get("services_{$resource}_index_page_size", 20);
if (!user_access('perform unlimited index queries') && $page_size > $default_limit) {
$page_size = $default_limit;
}
$query->range($page * $page_size, $page_size);
if ($fields == '*') {
$query->fields('t');
}
else {
$query->fields('t', explode(',', $fields));
}
if (isset($parameters) && is_array($parameters)) {
foreach ($parameters as $parameter => $parameter_value) {
$query->condition($parameter, services_str_getcsv($parameter_value), 'IN');
}
}
}
/**
* Emulate str_getcsv on systems where it is not available.
*
* @ingroup php_wrappers
*/
function services_str_getcsv($input, $delimiter = ',', $enclosure = '"', $escape = '\\') {
$ret = array();
if (!function_exists('str_getcsv')) {
$temp = fopen("php://memory", "rw");
fwrite($temp, $input);
fseek($temp, 0);
$ret = fgetcsv($temp, 0, $delimiter, $enclosure);
fclose($temp);
}
else {
$ret = str_getcsv($input, $delimiter, $enclosure, $escape);
}
return $ret;
}
/**
* Helper function to build a list of items satisfying the index query.
*
* @param $results
* Object database query results object.
* @param $type
* String type of index that is being processed.
* @param $field
* String field to use for looking up uri.
*/
function services_resource_build_index_list($results, $type, $field) {
// Put together array of matching items to return.
$items = array();
foreach ($results as $result) {
if ($uri = services_resource_uri(array($type, $result->{$field}))) {
$result->uri = $uri;
if ($type == 'user') {
services_remove_user_data($result);
}
}
$items[] = $result;
}
return $items;
}
/**
* Helper function to remove data from the user object.
*
* @param $account
* Object user object.
*/
function services_remove_user_data($account) {
global $user;
// Remove the user password from the account object.
unset($account->pass);
// Remove the user mail, if current user don't have "administer users"
// permission, and the requested account not match the current user.
if (!user_access('administer users') && isset($account->uid) && isset($user->uid) && $account->uid !== $user->uid) {
unset($account->mail);
}
// Remove the user init, if current user don't have "administer users"
// permission.
if (!user_access('administer users')) {
unset($account->init);
}
drupal_alter('services_account_object', $account);
// Add the full URL to the user picture, if one is present.
if (variable_get('user_pictures', FALSE) && isset($account->picture->uri)) {
$account->picture->url = file_create_url($account->picture->uri);
}
}
/**
* Helper function to execute a index query.
*
* @param $query
* Object dbtng query object.
*/
function services_resource_execute_index_query($query) {
try {
return $query->execute();
}
catch (PDOException $e) {
return services_error(t('Invalid query provided, double check that the fields and parameters you defined are correct and exist. ' . $e->getMessage()), 406);
}
}
/**
* If we are running nginx we need to implement getallheaders our self.
*
* Code is taken from http://php.net/manual/en/function.getallheaders.php
*/
if (!function_exists('getallheaders')) {
function getallheaders() {
foreach ($_SERVER as $name => $value) {
if (substr($name, 0, 5) == 'HTTP_') {
$headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value;
}
}
return $headers;
}
}
/**
* Page callback to generate token.
*/
function _services_session_token() {
drupal_add_http_header('Content-Type', 'text/plain');
print drupal_get_token('services');
drupal_exit();
}