remote__data.inc 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  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 (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. return tripal_build_remote_content_url($remote_site, $path, $q);
  214. }
  215. /**
  216. * Makes a request to a remote Tripal web services site.
  217. *
  218. * @param $query
  219. * The query string. This string is added to the URL for the remote
  220. * website.
  221. */
  222. private function makeRemoteRequest($query) {
  223. $path = $query;
  224. $q = '';
  225. if (preg_match('/\?/', $query)) {
  226. list($path, $q) = explode('?', $query);
  227. }
  228. $data = tripal_get_remote_content($this->remote_site->id, $path, $q);
  229. return $data;
  230. }
  231. /**
  232. *
  233. * @see TripalField::settingsForm()
  234. */
  235. public function instanceSettingsForm() {
  236. $element = parent::instanceSettingsForm();
  237. // Get the setting for the option for how this widget.
  238. $instance = $this->instance;
  239. $settings = '';
  240. $site_list = '';
  241. $tokens = array();
  242. // Get the form info from the bundle about to be saved.
  243. $bundle = tripal_load_bundle_entity(array('name' => $instance['bundle']));
  244. // Retrieve all available tokens.
  245. $tokens = tripal_get_entity_tokens($bundle);
  246. $element['data_info'] = array(
  247. '#type' => 'fieldset',
  248. '#title' => 'Remote Data Settings',
  249. '#description' => 'These settings allow you to provide a Tripal web
  250. services query to identify content on another Tripal site and display
  251. that here within this field. You must specify the query to execute and
  252. the field to display.',
  253. '#collapsible' => TRUE,
  254. '#collapsed' => FALSE,
  255. '#prefix' => "<div id='set_titles-fieldset'>",
  256. '#suffix' => '</div>',
  257. );
  258. // Get the site info from the tripal_sites table.
  259. $sites = db_select('tripal_sites', 's')
  260. ->fields('s')
  261. ->execute()->fetchAll();
  262. foreach ($sites as $site) {
  263. $rows[$site->id] =$site->name;
  264. }
  265. $element['data_info']['remote_site'] = array(
  266. '#type' => 'select',
  267. '#title' => t('Remote Tripal Site'),
  268. '#options' => $rows,
  269. '#default_value' => $this->instance['settings']['data_info']['remote_site'],
  270. );
  271. $element['data_info']['query'] = array(
  272. '#type' => 'textarea',
  273. '#title' => 'Query to Execute',
  274. '#description' => 'Enter the query that will retreive the remote records. ' .
  275. 'If the full URL to the content web service is ' .
  276. 'https://[tripal_site]/web-services/content/v0.1/. Then this field should ' .
  277. 'contain the text immediately after the content/v0.1 portion of the URL. ' .
  278. 'For information about building web services queries see the ' .
  279. 'online documentation at ' . l('The Tripal v3 User\'s Guide', 'http://tripal.info/tutorials/v3.x/web-services') . '. ' .
  280. 'For example, suppose this field is attached to an ' .
  281. 'Organism content type on the local site, and you want to retrieve a ' .
  282. 'field for the same organism on a remote Tripal site then you will ' .
  283. 'want to query on the genus and species. Also, you want the genus and ' .
  284. 'species to match the organism that this field is attached to. You can ' .
  285. 'use tokens to do this (see the "Available Tokesn" fieldset below). ' .
  286. 'For this example, the query text should be ' .
  287. 'Organism?genus=[taxrank__genus]&species=[taxrank__species].',
  288. '#default_value' => $this->instance['settings']['data_info']['query'],
  289. '#rows' => 5,
  290. '#required' => TRUE
  291. );
  292. $element['data_info']['rd_field_name'] = array(
  293. '#type' => 'textfield',
  294. '#title' => 'Field to Display',
  295. '#description' => 'The results returned by the query should match
  296. entities (or records) from the selected remote site. That entity
  297. will have multiple fields. Only one remote field can be shown by
  298. this field. Please enter the name of the field you would like
  299. to display. Some fields have "subfields". You can display a subfield
  300. rather than the entire field by entering a comma-separated sequence
  301. of subfields. For example, for relationships, you may only want to
  302. show the "clause", therefore, the entry here would be: realtionship,clause.',
  303. '#default_value' => $this->instance['settings']['data_info']['rd_field_name'],
  304. '#required' => TRUE
  305. );
  306. $element['data_info']['token_display']['tokens'] = array(
  307. '#type' => 'hidden',
  308. '#value' => serialize($tokens)
  309. );
  310. $element['data_info']['token_display'] = array(
  311. '#type' => 'fieldset',
  312. '#title' => 'Available Tokens',
  313. '#description' => 'Copy the token and paste it into the "Query" text field above.',
  314. '#collapsible' => TRUE,
  315. '#collapsed' => TRUE
  316. );
  317. $element['data_info']['token_display']['content'] = array(
  318. '#type' => 'item',
  319. '#markup' => theme_token_list($tokens),
  320. );
  321. $element['data_info']['description'] = array(
  322. '#type' => 'textarea',
  323. '#title' => 'Description',
  324. '#description' => 'Describe the data being pulled in.',
  325. '#default_value' => $this->instance['settings']['data_info']['description'],
  326. '#rows' => 1
  327. );
  328. $fid = $this->instance['settings']['data_info']['site_logo'] ? $this->instance['settings']['data_info']['site_logo'] : NULL;
  329. $file = NULL;
  330. if ($fid) {
  331. $file = file_load($fid);
  332. }
  333. $element['data_info']['site_logo'] = array(
  334. '#title' => 'Remote Site Logo',
  335. '#description' => t('When data is taken from a remote site and shown to the user,
  336. the site from which the data was retrieved is indicated. If you would like to
  337. include the logo for the remote site, please upload an image here.'),
  338. '#type' => 'managed_file',
  339. '#default_value' => $file ? $file->fid : NULL,
  340. '#theme' => 'image_widget',
  341. '#attached' => array(
  342. 'css' => array(
  343. 'image-preview' => drupal_get_path('module', 'image') . '/image.css',
  344. ),
  345. ),
  346. 'preview' => array(
  347. '#markup' => theme('image_style', array('style_name' => 'thumbnail', 'path' => $file ? $file->uri : '')),
  348. ),
  349. );
  350. return $element;
  351. }
  352. /**
  353. *
  354. * @param unknown $form
  355. * @param unknown $form_state
  356. */
  357. public function instanceSettingsFormValidate($form, &$form_state) {
  358. $site_logo = $form_state['values']['instance']['settings']['data_info']['site_logo'];
  359. // If we have a site logo then add usage information.
  360. if ($site_logo) {
  361. $file = file_load($site_logo);
  362. $file_usage = file_usage_list($file);
  363. if (!array_key_exists('tripal_ws', $file_usage)) {
  364. file_usage_add($file, 'tripal_ws', 'site-logo', 1);
  365. }
  366. }
  367. }
  368. }