123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- <?php
- function tripal_core_chado_hal_api() {
- global $base_url;
- // Set some initial variables.
- $response = array();
- $result = array();
- $status = 'success';
- $version = 'v0.1';
- $message = '';
- $api_url = "$base_url/ws/chado/$version";
- $page_limit = 25;
- $pager_id = 0;
-
- try {
- $id = 0;
- $action = '';
-
- // The table name is always specifid as the 3rd argument in the
- // current Drupal path.
- $table_name = arg(3);
- if (!chado_table_exists($table_name)) {
- throw new Exception("Table, '$table_name', is not a valid table.");
- }
- $schema = chado_get_schema($table_name);
- $pkey = $schema['primary key'][0];
-
- // If the fourth argument is numeric then the user is requesting a
- // record from the table. Otherwise the users is specifying an
- // action to perform on the table.
- if (is_numeric(arg(4))) {
- $id = arg(4);
- }
- else {
- $action = arg(4);
- }
-
- // Get any URL query arguments
- $query = drupal_get_query_parameters();
-
- // Specify the options for retrieving data.
- $options = array(
- 'return_array' => 1,
- 'pager' => array(
- 'limit' => $page_limit,
- 'element' => $pager_id
- ),
- );
-
- // Specify the values for selecing records.
- $values = array();
- if ($id) {
- $values[$pkey] = $id;
- }
-
- // Generate the chado variable.
- $var = chado_generate_var($table_name, $values, $options);
- // Links come first
- $result['_links'] = array('self' => array('href' => "$api_url/$table_name"));
-
- // If we have more than one record returned then this is a collection and
- // we should create the appropriate JSON for a collection.
- if (count($var) > 1) {
- $total = chado_pager_get_count($pager_id);
- // Add pager links
- $result['_links']['first'] = array('href' => "$api_url/$table_name");
- $result['_links']['prev'] = array('href' => "$api_url/$table_name?page=2");
- $result['_links']['next'] = array('href' => "$api_url/$table_name?page=4");
- $result['_links']['last'] = array('href' => "$api_url/$table_name?page=12");
-
- $result['count'] = count($var);
- $result['total'] = (integer) $total;
-
- // Do any expansion requested.
- $var = tripal_core_chado_ws_api_expand_object($var, $query);
-
- // Collection names are always plural of the table name
- foreach ($var as $item) {
- $table_name = $item->tablename;
- $item = tripal_core_chado_ws_api_object_format($item, $schema, $api_url, $query);
- $result['_embedded'][$table_name][] = $item;
- }
- }
- // If we only have one record then add it as a single record to the JSON.
- else {
- // Do any expansion requested.
- $var = tripal_core_chado_ws_api_expand_object($var, $query);
- $table_name = $item->tablename;
- $item = tripal_core_chado_ws_api_object_format($var, $schema, $api_url, $query);
- $result = $item;
- }
- }
- catch (Exception $e) {
- watchdog('tripal_ws', $e->getMessage(), array(), WATCHDOG_ERROR);
- $message = $e->getMessage();
- $status = 'error';
- $result = array();
- }
-
- // The responses follow the same format as the AGAVE API with a
- // status, message, version and all data in the "result" object.
- $response['status'] = $status;
- $response['message'] = $message;
- $response['version'] = $version;
- $response['result'] = $result;
- print drupal_json_output($response);
- }
- /**
- *
- * @param unknown $object
- * @param unknown $query
- */
- function tripal_core_chado_ws_api_expand_object($var, $query) {
- $page_limit = 25;
- $pager_id = 0;
- $options = array(
- 'return_array' => 1,
- 'pager' => array(
- 'limit' => $page_limit,
- 'element' => $pager_id
- ),
- );
-
- // If the user has requested to expand any fields then do that
- if ($query['expand_table']) {
- $expand_tables = explode(',', $query['expand_table']);
- foreach($expand_tables as $table) {
- // Does the table exist?
- if(!chado_table_exists($table)) {
- throw new Exception("Table, '$table', is not a valid table and thus cannot be expanded.");
- }
-
- // Expand the variable.
- $var = chado_expand_var($var, 'table', $table, $options);
-
- // if the table could not be expanded then the chado_expand_var
- // function just returns an empty record but sets the table name
- // in the object. For the JSON, we still want to create an _embedded
- // record so we have to create a stdClass object and set the
- // table name.
- if(!isset($var[0]->$table)) {
- $var[0]->$table = new stdClass();
- $var[0]->$table->tablename = $table;
- }
- }
- }
- if ($query['expand_field']) {
- $expand_fields = explode(',', $query['expand_field']);
- foreach($expand_fields as $field) {
- // TODO: check to make sure the field exists
- $var = chado_expand_var($var, 'field', $field);
- }
- }
- if ($query['expand_fkey']) {
- $expand_fkeys = explode(',', $query['expand_fkey']);
- foreach($expand_fkeys as $fkey) {
- // TODO: check to make sure the fkey exists
- $var = chado_expand_var($var, 'foreign_key', $fkey);
- }
- }
- if ($query['expand_node']) {
- $node_types = explode(',', $query['expand_node']);
- foreach($node_types as $node_type) {
- $var = chado_expand_var($var, 'node', $node_type);
- }
- }
- return $var;
- }
- /**
- *
- * @param $object
- * @param $schema
- * @param $api_url
- */
- function tripal_core_chado_ws_api_object_format($object, $schema, $api_url, $query) {
- global $base_url;
- $table_name = $object->tablename;
- $pkey = $schema['primary key'][0];
- $id = $object->$pkey;
- // Add the self link first
- $object->_links = array('self' => array('href' => "$api_url/$table_name/$id"));
-
- // Add the links for the table.
- $object->_links["schema"] = array('href' => "$api_url/$table_name/schema");
-
- // Add links for editing, insert, delete but only if user has permission.
- // TODO: how do we set permissions?
- $object->_links["add"] = array('href' => "$api_url/$table_name/add");
- // Add the links if an id is available.
- if ($id) {
- $object->_links["edit"] = array('href' => "$api_url/$table_name/$id/edit");
- $object->_links["delete"] = array('href' => "$api_url/$table_name/$id/delete");
- }
-
- // Add the link to the Drupal page.
- if ($object->nid) {
- $object->_links["view"] = array('href' => $base_url . url("node/$object->nid"));
- }
-
- // Deal with the expandable tables/fields/fkeys/nodes. Sometimes there are
- // specified in PHP with explicit numerical indexes and sometimes not. But,
- // the JSON converter will maintain the indexes if present which creates
- // an inconsistent look. So, we use the array_values function to just
- // get the list.
- $object->expandable_tables = array_values($object->expandable_tables);
- $object->expandable_fields = array_values($object->expandable_fields);
- $object->expandable_foreign_keys = array_values($object->expandable_foreign_keys);
- $object->expandable_nodes = array_values($object->expandable_nodes);
-
- // Add the links for the expandable fields, fkeys, nodes and tables
- // TODO: making a single key be an array may not be correct for HAL. check this out.
- if (count($object->expandable_fields) > 0) {
- $object->_links["expand_field"][] = array('href' => "$api_url/$table_name?expand_field={field}[,{field}...]");
- $object->_links["expand_field"][] = array('href' => "$api_url/$table_name/$id?expand_field={field}[,{field}...]");
- }
- else {
- unset($object->expandable_fields);
- }
- if (count($object->expandable_foreign_keys) > 0) {
- $object->_links["expand_fkey"][] = array('href' => "$api_url/$table_name?expand_fkey={fkey}[,{fkey}...]");
- $object->_links["expand_fkey"][] = array('href' => "$api_url/$table_name/$id?expand_fkey={fkey}[,{fkey}...]");
- }
- else {
- unset($object->expandable_foreign_keys);
- }
- if (count($object->expandable_nodes) > 0) {
- $object->_links["expand_node"][] = array('href' => "$api_url/$table_name?expand_node={node}[,{node}...]");
- $object->_links["expand_node"][] = array('href' => "$api_url/$table_name/$id?expand_node={node}[,{node}...]");
- }
- else {
- unset($object->expandable_nodes);
- }
- if (count($object->expandable_tables) > 0) {
- $object->_links["expand_table"][] = array('href' => "$api_url/$table_name?expand_table={table}[,{table}...]");
- $object->_links["expand_table"][] = array('href' => "$api_url/$table_name/$id?expand_table={table}[,{table}...]");
- }
- else {
- unset($object->expandable_tables);
- }
-
- // iterate through the items in the object and see if they in turn are
- // objects. If so, then recurse.
- foreach ($object as $key => $value) {
- // If any values are objects then recurse and format them correctly.
- if (is_object($value)) {
- $table_name = $value->tablename;
- $schema = chado_get_schema($table_name);
- if ($schema) {
- // Replace the object with the actual value if it exists. If there is
- // no key value then this is probably an expanded table so just unset
- if (property_exists($value, $key)) {
- $object->$key = $value->$key;
- }
- else {
- unset($object->key);
- }
- // Recursively format the object.
- $value = tripal_core_chado_ws_api_object_format($value, $schema, $api_url, $query);
- // Add the object as an "_embedded" object of the JSON.
- if (array_key_exists($table_name, $object->_embedded)) {
- // If the element is already an array then add to it, otherwise
- // convert it into an array.
- if (is_array($object->_embedded[$table_name])) {
- $object->_embedded[$table_name][] = $value;
- }
- else {
- $first = $object->_embedded[$table_name];
- $object->_embedded[$table_name] = array();
- $object->_embedded[$table_name] = $first;
- $object->_embedded[$table_name][] = $value;
- }
- }
- // This is the first time this embedded table has been seen
- // there fore, add the value as a single element.
- else {
- $object->_embedded[$table_name] = $value;
- }
- }
- else {
- throw new Exception("Table, '$table_name', is not a valid table.");
- }
- }
- }
-
- return $object;
- }
|