2017 © Pedro Peláez
 

library clinicaltrials

ClinicalTrials Web Service Guzzle Client

image

tutor/clinicaltrials

ClinicalTrials Web Service Guzzle Client

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 400 % Grown

The README.md

ClinicalTrials Web Service Guzzle Client

Provides an implementation of the Guzzle library to query ClinicalTrials Web Service., (*1)

NCI Clinical Trials Search API For information on NCI's efforts to improve how patients and oncologists find information and learn about cancer clinical trials please visit: https://www.cancer.gov/syndication/api, (*2)

  • https://clinicaltrialsapi.cancer.gov/

Usage

To use the ClinicalTrials API Client simply instantiate the client., (*3)

<?php

require dirname(__FILE__).'/../vendor/autoload.php';

use Tutor\ClinicalTrials\ClinicalTrialsClient;
$client = ClinicalTrialsClient::factory();

// if you want to see what is happening, add debug => true to the factory call
$client = ClinicalTrialsClient::factory(['debug' => true]);

Invoke Commands using the __call method (auto-complete phpDocs are included), (*4)

<?php

$client = ClinicalTrialsClient::factory();
$response = $client->query([
  'brief_title_fulltext' => 'diabetes',
]);

Or Use the getCommand method (in this case you need to work with the $response['data'] array:, (*5)

<?php

$client = ClinicalTrialsClient::factory();

//Retrieve the Command from Guzzle
$command = $client->getCommand('Query', [
  'brief_title_fulltext' => 'diabetes',
]);
$command->prepare();

$response = $command->execute();

$data = $response['data'];

Examples

You can execute the examples in the examples directory., (*6)

You can look at the services.json for details on what methods are available and what parameters are available to call them., (*7)

https://clinicaltrialsapi.cancer.gov/v1/clinical-trials?eligibility.structured.gender=female&brief_summary_fulltext=%22diabetes%22, (*8)

<?php

$client = ClinicalTrialsClient::factory();
$response = $client->query([
  'eligibility.structured.gender' => 'female',
  'brief_summary_fulltext' => 'diabetes',
]);

TODO

  • [ ] Add all query fields
  • [ ] Add some more examples
  • [ ] Add tests
  • [ ] Add some Response models

Contributions welcome

Found a bug, open an issue, preferably with the debug output and what you did. Bugfix? Open a Pull Request and I'll look into it., (*9)

License

The use ClinicalTrials\ClinicalTrialsClient API client is available under an MIT License., (*10)

The Versions

19/04 2018

dev-master

9999999-dev http://github.com/jorgetutor/clinicaltrials

ClinicalTrials Web Service Guzzle Client

  Sources   Download

MIT

The Requires

 

api guzzle tutor clinicaltrials