remote__data.inc 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. <?php
  2. /**
  3. * @class
  4. * Purpose:
  5. *
  6. * Data:
  7. * Assumptions:
  8. */
  9. class remote__data extends WebServicesField {
  10. // --------------------------------------------------------------------------
  11. // EDITABLE STATIC CONSTANTS
  12. //
  13. // The following constants SHOULD be set for each descendant class. They are
  14. // used by the static functions to provide information to Drupal about
  15. // the field and it's default widget and formatter.
  16. // --------------------------------------------------------------------------
  17. // The default label for this field.
  18. public static $default_label = 'Remote Tripal Site';
  19. // The default description for this field.
  20. public static $default_description = 'Allows for inclusion of remote data from another Tripal site.';
  21. // The default widget for this field.
  22. public static $default_widget = 'remote__data_widget';
  23. // The default formatter for this field.
  24. public static $default_formatter = 'remote__data_formatter';
  25. // The module that manages this field.
  26. public static $module = 'tripal_ws';
  27. // A list of global settings. These can be accessed within the
  28. // globalSettingsForm. When the globalSettingsForm is submitted then
  29. // Drupal will automatically change these settings for all fields.
  30. // Once instances exist for a field type then these settings cannot be
  31. // changed.
  32. public static $default_settings = array(
  33. 'storage' => 'field_tripal_ws_storage',
  34. // It is expected that all fields set a 'value' in the load() function.
  35. // In many cases, the value may be an associative array of key/value pairs.
  36. // In order for Tripal to provide context for all data, the keys should
  37. // be a controlled vocabulary term (e.g. rdfs:type). Keys in the load()
  38. // function that are supported by the query() function should be
  39. // listed here.
  40. 'searchable_keys' => array(),
  41. );
  42. // Provide a list of instance specific settings. These can be access within
  43. // the instanceSettingsForm. When the instanceSettingsForm is submitted
  44. // then Drupal with automatically change these settings for the instance.
  45. // It is recommended to put settings at the instance level whenever possible.
  46. // If you override this variable in a child class be sure to replicate the
  47. // term_name, term_vocab, term_accession and term_fixed keys as these are
  48. // required for all TripalFields.
  49. public static $default_instance_settings = array(
  50. // The short name for the vocabulary (e.g. schema, SO, GO, PATO, etc.).
  51. 'term_vocabulary' => 'schema',
  52. // The name of the term.
  53. 'term_name' => 'Thing',
  54. // The unique ID (i.e. accession) of the term.
  55. 'term_accession' => 'property',
  56. // Set to TRUE if the site admin is not allowed to change the term
  57. // type, otherwise the admin can change the term mapped to a field.
  58. 'term_fixed' => FALSE,
  59. // Indicates if this field should be automatically attached to display
  60. // or web services or if this field should be loaded separately. This
  61. // is convenient for speed. Fields that are slow should for loading
  62. // should have auto_attach set to FALSE so tha their values can be
  63. // attached asynchronously.
  64. 'auto_attach' => FALSE,
  65. // Settings to allow the site admin to set the remote data source info.
  66. 'data_info' => array(
  67. 'query' => '',
  68. 'remote_site' => '',
  69. 'description' => '',
  70. 'rd_field_name' => '',
  71. 'site_logo' => '',
  72. ),
  73. );
  74. // A boolean specifying that users should not be allowed to create
  75. // fields and instances of this field type through the UI. Such
  76. // fields can only be created programmatically with field_create_field()
  77. // and field_create_instance().
  78. public static $no_ui = FALSE;
  79. // A boolean specifying that the field will not contain any data. This
  80. // should exclude the field from web services or downloads. An example
  81. // could be a quick search field that appears on the page that redirects
  82. // the user but otherwise provides no data.
  83. public static $no_data = TRUE;
  84. // Holds an object describing the remote site that tihs field connects to.
  85. private $remote_site = NULL;
  86. // Set to TRUE if this field is being loaded via web services. WE don't
  87. // want remote fields loaded when a web-service call is made.
  88. private $loaded_via_ws = FALSE;
  89. public function __construct($field, $instance) {
  90. parent::__construct($field, $instance);
  91. // This field should not do anything if it is loaded via web-services.
  92. // We don't want remote content to be available in web services. There
  93. // is an if statement to not show this field in the web services but the
  94. // entity_load function doesn't know this field shouldn't be loaded so
  95. // we need to short-circuit that.
  96. if (preg_match('/web-services/', $_SERVER['REQUEST_URI'])) {
  97. $this->loaded_via_ws = TRUE;
  98. return;
  99. }
  100. // Get the site url from the tripal_sites table.
  101. if (array_key_exists('data_info', $instance['settings'])) {
  102. $site_id_ws = $instance['settings']['data_info']['remote_site'];
  103. if ($site_id_ws) {
  104. $this->remote_site = db_select('tripal_sites', 'ts')
  105. ->fields('ts')
  106. ->condition('ts.id', $site_id_ws)
  107. ->execute()
  108. ->fetchObject();
  109. }
  110. }
  111. }
  112. /**
  113. * @see WebServicesField::load()
  114. */
  115. public function load($entity) {
  116. // If this field is being loaded via web services then just return.
  117. if ($this->loaded_via_ws == TRUE) {
  118. return;
  119. }
  120. $field_name = $this->field['field_name'];
  121. $field_type = $this->field['type'];
  122. // Set some defaults for the empty record.
  123. $entity->{$field_name}['und'][0] = array(
  124. 'value' => '',
  125. 'remote_entity' => NULL,
  126. 'error' => FALSE,
  127. 'warning' => FALSE,
  128. 'admin_message' => '',
  129. 'query_str' => '',
  130. );
  131. // Get the query set by the admin for this field and replace any tokens
  132. $query_str = $this->instance['settings']['data_info']['query'];
  133. $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
  134. $query_str = tripal_replace_entity_tokens($query_str, $entity, $bundle);
  135. // Make the request.
  136. $data = $this->makeRemoteRequest($query_str);
  137. if(!$data){
  138. $entity->{$field_name}['und'][0]['value'] = 'ERROR: there was a problem retrieving content for this field.';
  139. $entity->{$field_name}['und'][0]['admin_message'] = "The remote service returned no data.";
  140. $entity->{$field_name}['und'][0]['remote_entity'] = NULL;
  141. $entity->{$field_name}['und'][0]['error'] = TRUE;
  142. $entity->{$field_name}['und'][0]['warning'] = FALSE;
  143. $entity->{$field_name}['und'][0]['query_str'] = $this->buildRemoteURL($this->remote_site, $query_str);
  144. return;
  145. }
  146. // Make sure we didn't have a problem
  147. if (array_key_exists('error', $data)) {
  148. $entity->{$field_name}['und'][0]['value'] = 'ERROR: there was a problem retrieving content for this field.';
  149. $entity->{$field_name}['und'][0]['admin_message'] = "The content is currently not available because the " .
  150. "remote service reported the following error: " . $data['error'] . ".";
  151. $entity->{$field_name}['und'][0]['remote_entity'] = NULL;
  152. $entity->{$field_name}['und'][0]['error'] = TRUE;
  153. $entity->{$field_name}['und'][0]['warning'] = FALSE;
  154. $entity->{$field_name}['und'][0]['query_str'] = $this->buildRemoteURL($this->remote_site, $query_str);
  155. return;
  156. }
  157. $num_items = count($data['member']);
  158. if ($num_items == 0) {
  159. $entity->{$field_name}['und'][0]['value'] = 'Content is unavailable on the remote service.';
  160. $entity->{$field_name}['und'][0]['admin_message'] = "The query to the remote service returned an empty result set. If you " .
  161. "think this is an error, please check the query string and the remote service to verify. ";
  162. $entity->{$field_name}['und'][0]['warning'] = TRUE;
  163. $entity->{$field_name}['und'][0]['error'] = FALSE;
  164. $entity->{$field_name}['und'][0]['remote_entity'] = NULL;
  165. $entity->{$field_name}['und'][0]['query_str'] = $this->buildRemoteURL($this->remote_site, $query_str);
  166. return;
  167. }
  168. // Iterate through the members returned and save those for the field.
  169. for ($i = 0; $i < $num_items; $i++) {
  170. $member = $data['member'][$i];
  171. // Get the cotent type and remote entity id
  172. $content_type = $member['@type'];
  173. $remote_entity_id = $member['@id'];
  174. $remote_entity_id = preg_replace('/^.*\/(\d+)/', '$1', $remote_entity_id);
  175. // Separate the query_field if it has subfields.
  176. $rd_field_name = $this->instance['settings']['data_info']['rd_field_name'];
  177. $subfields = explode(',', $rd_field_name);
  178. $query_field = $subfields[0];
  179. // Next get the the details about this member.
  180. $query_field_url = $content_type . '/' . $remote_entity_id . '/' . $query_field;
  181. $field_data = $this->makeRemoteRequest($query_field_url);
  182. // If we encounter any type of error, we'll reset the field and return.
  183. if ($field_data && array_key_exists('error', $field_data)) {
  184. $entity->{$field_name} = [];
  185. $entity->{$field_name}['und'][0]['value'] = 'ERROR: there was a problem retrieving secific content for this field.';
  186. $entity->{$field_name}['und'][0]['admin_message'] = "While iterating through the list of results, the " .
  187. "remote service reported the following error: " . $field_data['error'] . ". " ;
  188. $entity->{$field_name}['und'][0]['remote_entity'] = NULL;
  189. $entity->{$field_name}['und'][0]['error'] = TRUE;
  190. $entity->{$field_name}['und'][0]['warning'] = FALSE;
  191. $entity->{$field_name}['und'][0]['query_str'] = $this->buildRemoteURL($this->remote_site, $query_field_url);
  192. return;
  193. }
  194. // Set the field data as the value.
  195. $field_data_type = $field_data['@type'];
  196. $entity->{$field_name}['und'][$i]['value'] = $field_data;
  197. $entity->{$field_name}['und'][$i]['remote_entity'] = $member;
  198. $entity->{$field_name}['und'][$i]['error'] = FALSE;
  199. $entity->{$field_name}['und'][$i]['warning'] = FALSE;
  200. $entity->{$field_name}['und'][$i]['admin_message'] = '';
  201. $entity->{$field_name}['und'][$i]['query_str'] = $this->buildRemoteURL($this->remote_site, $query_field_url);;
  202. }
  203. }
  204. /**
  205. * Used to build the full URL for the query.
  206. */
  207. private function buildRemoteURL($remote_site, $query) {
  208. $path = $query;
  209. $q = '';
  210. if (preg_match('/\?/', $query)) {
  211. list($path, $q) = explode('?', $query);
  212. }
  213. if(empty($remote_site)) {
  214. tripal_report_error('tripal_ws', TRIPAL_ERROR, 'Unable to find remote_site in remote__data field while attempting to build the remote URL.');
  215. return null;
  216. }
  217. return tripal_build_remote_content_url($remote_site, $path, $q);
  218. }
  219. /**
  220. * Makes a request to a remote Tripal web services site.
  221. *
  222. * @param $query
  223. * The query string. This string is added to the URL for the remote
  224. * website.
  225. * @return array on success or null if request fails.
  226. */
  227. private function makeRemoteRequest($query) {
  228. $path = $query;
  229. $q = '';
  230. if (preg_match('/\?/', $query)) {
  231. list($path, $q) = explode('?', $query);
  232. }
  233. if(empty($this->remote_site)) {
  234. tripal_report_error('tripal_ws', TRIPAL_ERROR, 'Unable to find remote_site while attempting to make the request.');
  235. return null;
  236. }
  237. try {
  238. $data = tripal_get_remote_content($this->remote_site->id, $path, $q);
  239. } catch (Exception $exception) {
  240. tripal_report_error('tripal_ws', TRIPAL_ERROR, $exception->getMessage());
  241. return null;
  242. }
  243. return $data;
  244. }
  245. /**
  246. *
  247. * @see TripalField::settingsForm()
  248. */
  249. public function instanceSettingsForm() {
  250. $element = parent::instanceSettingsForm();
  251. // Get the setting for the option for how this widget.
  252. $instance = $this->instance;
  253. $settings = '';
  254. $site_list = '';
  255. $tokens = array();
  256. // Get the form info from the bundle about to be saved.
  257. $bundle = tripal_load_bundle_entity(array('name' => $instance['bundle']));
  258. // Retrieve all available tokens.
  259. $tokens = tripal_get_entity_tokens($bundle);
  260. $element['data_info'] = array(
  261. '#type' => 'fieldset',
  262. '#title' => 'Remote Data Settings',
  263. '#description' => 'These settings allow you to provide a Tripal web
  264. services query to identify content on another Tripal site and display
  265. that here within this field. You must specify the query to execute and
  266. the field to display.',
  267. '#collapsible' => TRUE,
  268. '#collapsed' => FALSE,
  269. '#prefix' => "<div id='set_titles-fieldset'>",
  270. '#suffix' => '</div>',
  271. );
  272. // Get the site info from the tripal_sites table.
  273. $sites = db_select('tripal_sites', 's')
  274. ->fields('s')
  275. ->execute()->fetchAll();
  276. foreach ($sites as $site) {
  277. $rows[$site->id] =$site->name;
  278. }
  279. $element['data_info']['remote_site'] = array(
  280. '#type' => 'select',
  281. '#title' => t('Remote Tripal Site'),
  282. '#options' => $rows,
  283. '#default_value' => $this->instance['settings']['data_info']['remote_site'],
  284. );
  285. $element['data_info']['query'] = array(
  286. '#type' => 'textarea',
  287. '#title' => 'Query to Execute',
  288. '#description' => 'Enter the query that will retreive the remote records. ' .
  289. 'If the full URL to the content web service is ' .
  290. 'https://[tripal_site]/web-services/content/v0.1/. Then this field should ' .
  291. 'contain the text immediately after the content/v0.1 portion of the URL. ' .
  292. 'For information about building web services queries see the ' .
  293. 'online documentation at ' . l('The Tripal v3 User\'s Guide', 'http://tripal.info/tutorials/v3.x/web-services') . '. ' .
  294. 'For example, suppose this field is attached to an ' .
  295. 'Organism content type on the local site, and you want to retrieve a ' .
  296. 'field for the same organism on a remote Tripal site then you will ' .
  297. 'want to query on the genus and species. Also, you want the genus and ' .
  298. 'species to match the organism that this field is attached to. You can ' .
  299. 'use tokens to do this (see the "Available Tokesn" fieldset below). ' .
  300. 'For this example, the query text should be ' .
  301. 'Organism?genus=[taxrank__genus]&species=[taxrank__species].',
  302. '#default_value' => $this->instance['settings']['data_info']['query'],
  303. '#rows' => 5,
  304. '#required' => TRUE
  305. );
  306. $element['data_info']['rd_field_name'] = array(
  307. '#type' => 'textfield',
  308. '#title' => 'Field to Display',
  309. '#description' => 'The results returned by the query should match
  310. entities (or records) from the selected remote site. That entity
  311. will have multiple fields. Only one remote field can be shown by
  312. this field. Please enter the name of the field you would like
  313. to display. Some fields have "subfields". You can display a subfield
  314. rather than the entire field by entering a comma-separated sequence
  315. of subfields. For example, for relationships, you may only want to
  316. show the "clause", therefore, the entry here would be: realtionship,clause.',
  317. '#default_value' => $this->instance['settings']['data_info']['rd_field_name'],
  318. '#required' => TRUE
  319. );
  320. $element['data_info']['token_display']['tokens'] = array(
  321. '#type' => 'hidden',
  322. '#value' => serialize($tokens)
  323. );
  324. $element['data_info']['token_display'] = array(
  325. '#type' => 'fieldset',
  326. '#title' => 'Available Tokens',
  327. '#description' => 'Copy the token and paste it into the "Query" text field above.',
  328. '#collapsible' => TRUE,
  329. '#collapsed' => TRUE
  330. );
  331. $element['data_info']['token_display']['content'] = array(
  332. '#type' => 'item',
  333. '#markup' => theme_token_list($tokens),
  334. );
  335. $element['data_info']['description'] = array(
  336. '#type' => 'textarea',
  337. '#title' => 'Description',
  338. '#description' => 'Describe the data being pulled in.',
  339. '#default_value' => $this->instance['settings']['data_info']['description'],
  340. '#rows' => 1
  341. );
  342. $fid = $this->instance['settings']['data_info']['site_logo'] ? $this->instance['settings']['data_info']['site_logo'] : NULL;
  343. $file = NULL;
  344. if ($fid) {
  345. $file = file_load($fid);
  346. }
  347. $element['data_info']['site_logo'] = array(
  348. '#title' => 'Remote Site Logo',
  349. '#description' => t('When data is taken from a remote site and shown to the user,
  350. the site from which the data was retrieved is indicated. If you would like to
  351. include the logo for the remote site, please upload an image here.'),
  352. '#type' => 'managed_file',
  353. '#default_value' => $file ? $file->fid : NULL,
  354. '#theme' => 'image_widget',
  355. '#attached' => array(
  356. 'css' => array(
  357. 'image-preview' => drupal_get_path('module', 'image') . '/image.css',
  358. ),
  359. ),
  360. 'preview' => array(
  361. '#markup' => theme('image_style', array('style_name' => 'thumbnail', 'path' => $file ? $file->uri : '')),
  362. ),
  363. );
  364. return $element;
  365. }
  366. /**
  367. *
  368. * @param unknown $form
  369. * @param unknown $form_state
  370. */
  371. public function instanceSettingsFormValidate($form, &$form_state) {
  372. $site_logo = $form_state['values']['instance']['settings']['data_info']['site_logo'];
  373. // If we have a site logo then add usage information.
  374. if ($site_logo) {
  375. $file = file_load($site_logo);
  376. $file_usage = file_usage_list($file);
  377. if (!array_key_exists('tripal_ws', $file_usage)) {
  378. file_usage_add($file, 'tripal_ws', 'site-logo', 1);
  379. }
  380. }
  381. }
  382. }