remote__data_formatter.inc 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. <?php
  2. class remote__data_formatter extends WebServicesFieldFormatter {
  3. // The default label for this field.
  4. public static $default_label = 'Remote Data';
  5. // The list of field types for which this formatter is appropriate.
  6. public static $field_types = array('remote__data');
  7. // The list of default settings for this formatter.
  8. public static $default_settings = array(
  9. 'setting1' => 'default_value',
  10. );
  11. /**
  12. * Provides the field's setting form.
  13. *
  14. * This function corresponds to the hook_field_formatter_settings_form()
  15. * function of the Drupal Field API.
  16. *
  17. * The settings form appears on the 'Manage Display' page of the content
  18. * type administration page. This function provides the form that will
  19. * appear on that page.
  20. *
  21. * To add a validate function, please create a static function in the
  22. * implementing class, and indicate that this function should be used
  23. * in the form array that is returned by this function.
  24. *
  25. * This form will not be displayed if the formatter_settings_summary()
  26. * function does not return anything.
  27. *
  28. * param $field
  29. * The field structure being configured.
  30. * param $instance
  31. * The instance structure being configured.
  32. * param $view_mode
  33. * The view mode being configured.
  34. * param $form
  35. * The (entire) configuration form array, which will usually have no use
  36. * here. Typically for reference only.
  37. * param $form_state
  38. * The form state of the (entire) configuration form.
  39. *
  40. * @return
  41. * A Drupal Form array containing the settings form for this field.
  42. */
  43. public function settingsForm($view_mode, $form, &$form_state) {
  44. }
  45. /**
  46. * Provides the display for a field
  47. *
  48. * This function corresponds to the hook_field_formatter_view()
  49. * function of the Drupal Field API.
  50. *
  51. * This function provides the display for a field when it is viewed on
  52. * the web page. The content returned by the formatter should only include
  53. * what is present in the $items[$delta]['values] array. This way, the
  54. * contents that are displayed on the page, via webservices and downloaded
  55. * into a CSV file will always be identical. The view need not show all
  56. * of the data in the 'values' array.
  57. *
  58. * @param $element
  59. * @param $entity_type
  60. * @param $entity
  61. * @param $langcode
  62. * @param $items
  63. * @param $display
  64. *
  65. * @return
  66. * An element array compatible with that returned by the
  67. * hook_field_formatter_view() function.
  68. */
  69. public function view(&$element, $entity_type, $entity, $langcode, $items, $display) {
  70. $content = '';
  71. // Get the settings
  72. $settings = $display['settings'];
  73. $field_name = $this->field['field_name'];
  74. // Get any subfields and the header label. Shift the array because the
  75. // results should already be the value of the fisrt entry.
  76. $rd_field_name = $this->instance['settings']['data_info']['rd_field_name'];
  77. $subfields = explode(',', $rd_field_name);
  78. $header_label = $this->getHeaderLabel($subfields);
  79. $flabel = array_shift($subfields);
  80. // Get the site logo if one is provided
  81. $site_logo = $this->instance['settings']['data_info']['site_logo'];
  82. if ($site_logo) {
  83. $site_logo = file_load($site_logo);
  84. }
  85. // Get the site name where the data came from.
  86. $site_id_ws = $this->instance['settings']['data_info']['remote_site'];
  87. $site = db_select('tripal_sites', 'ts')
  88. ->fields('ts', array('name', 'url'))
  89. ->condition('ts.id', $site_id_ws)
  90. ->execute()
  91. ->fetchObject();
  92. // Iterate through the results and create a generic table.
  93. $rows = array();
  94. $headers = array('');
  95. foreach ($items as $index => $item) {
  96. $remote_entity_label = $item['remote_entity']['label'];
  97. $remote_entity_page = $item['remote_entity']['ItemPage'];
  98. $link = t('View !data on %site',
  99. array('!data' => l('this content', $remote_entity_page, array('attributes' => array('target' => '_blank'))),
  100. '%site' => $site->name));
  101. $value = $item['value'];
  102. if (!$value) {
  103. continue;
  104. }
  105. $error = $item['error'];
  106. if ($error) {
  107. $rows[] = [['error' => $value]];
  108. continue;
  109. }
  110. // If this is a collection then handle it as a list of members.
  111. if (array_key_exists('members', $value)) {
  112. foreach ($value['members'] as $subvalue) {
  113. $subvalue = $this->refineSubValue($subvalue, $subfields, $header_label);
  114. $rows[] = array($subvalue);
  115. }
  116. }
  117. else {
  118. if (count($subfields) > 0) {
  119. $subvalue = $this->refineSubValue($value, $subfields, $header_label);
  120. $rows[] = array($subvalue);
  121. }
  122. else {
  123. if (array_key_exists($flabel, $value)) {
  124. $rows[] = array($value[$flabel]);
  125. }
  126. else {
  127. $value['Link'] = l('View content on ' . $site->name, $remote_entity_page, array('attributes' => array('target' => '_blank')));
  128. $rows[] = array($value);
  129. }
  130. }
  131. }
  132. }
  133. $has_sub_tables = FALSE;
  134. for ($i = 0; $i < count($rows); $i++) {
  135. if (is_array($rows[$i][0])) {
  136. $rows[$i][0] = $this->createTable($rows[$i]);
  137. $has_sub_tables = TRUE;
  138. }
  139. }
  140. // If we don't have tables for each row then we'll put everything into
  141. // a table.
  142. if (!$has_sub_tables) {
  143. $headers = array($header_label . '(s)');
  144. $content .= theme_table(array(
  145. 'header' => $headers,
  146. 'rows' => $rows,
  147. 'attributes' => array(
  148. 'class' => 'tripal-remote--data-field-table',
  149. ),
  150. 'sticky' => FALSE,
  151. 'caption' => "",
  152. 'colgroups' => array(),
  153. 'empty' => 'There are no results.',
  154. ));
  155. }
  156. else {
  157. for ($i = 0; $i < count($rows); $i++) {
  158. if (count($rows) > 1) {
  159. $content .= '<span class="tripal-remote--data-field-table-label">' . $header_label . ' ' . ($i + 1) . '</span>';
  160. }
  161. $content .= $rows[$i][0];
  162. }
  163. }
  164. $content .= '<p>';
  165. if (is_object($site_logo)) {
  166. $content .= '<img class="tripal-remote--data-field-logo" src="' . file_create_url($site_logo->uri) . '"><br/>';
  167. }
  168. $content .= t('This content provided by !site.',
  169. array('!site' => l($site->name, $site->url, array('attributes' => array("target" => '_blank')))));
  170. $content .= '</p>';
  171. // Return the content for this field.
  172. $element[0] = array(
  173. '#type' => 'markup',
  174. '#markup' => '<div class="tripal-remote--data-field">' . $content . '</div>',
  175. );
  176. }
  177. /**
  178. * Retrieves the header label given the subfields criteria.
  179. *
  180. * @param $subfields
  181. * An array of the sequence of subfields.
  182. */
  183. private function getHeaderLabel($subfields) {
  184. $subfield = array_shift($subfields);
  185. $header_label = ucwords(preg_replace('/_/', ' ', $subfield));
  186. if (count($subfields) > 0) {
  187. $header_label .= ' ' . $this->getHeaderLabel($subfields);
  188. }
  189. return $header_label;
  190. }
  191. /**
  192. * Adjusts the items array to contain only the section/subsection desired.
  193. *
  194. * The field settings can indicate a field with sub fields that should
  195. * be displayed (e.g. organism,genus or relationship,clause). We want
  196. * to adjust the item to only include what the user requested.
  197. *
  198. * @param $values
  199. * @param $subfields
  200. */
  201. private function refineSubValue($values, $subfields) {
  202. // Remove unwanted elements.
  203. unset($values['@id']);
  204. unset($values['@context']);
  205. unset($values['@type']);
  206. unset($values['remote_entity']);
  207. $subfield = array_shift($subfields);
  208. if (array_key_exists($subfield, $values)) {
  209. if (is_array($values[$subfield]) and count($subfields) > 0) {
  210. return $this->refineSubvalue($values[$subfield], $subfields);
  211. }
  212. else {
  213. return $values[$subfield];
  214. }
  215. }
  216. else {
  217. return $values;
  218. }
  219. }
  220. /**
  221. * A recursive function for displaying an item in a table.
  222. *
  223. * @param $item
  224. * An item from the $items array passed to the view() function.
  225. * @return
  226. * An HTML formatted Table.
  227. */
  228. private function createTable($item, &$pkey = '', &$rows = array(), $depth = 0) {
  229. foreach ($item as $key => $value) {
  230. // Skip JSON-LD keys.
  231. if (preg_match('/^\@/', $key)) {
  232. continue;
  233. }
  234. $key = preg_replace('/_/', ' ', $key);
  235. $key = ucwords($key);
  236. if ($pkey) {
  237. $key = $pkey . ' ' . $key;
  238. }
  239. if (is_array($value)) {
  240. $this->createTable($value, $key, $rows, $depth + 1);
  241. }
  242. else {
  243. $rows[] = array(
  244. 'data'=> array(
  245. $key,
  246. $value
  247. ),
  248. 'no_striping' => TRUE,
  249. );
  250. }
  251. }
  252. if ($depth == 0) {
  253. $headers = array('Data Type', 'Value');
  254. return theme_table(array(
  255. 'header' => $headers,
  256. 'rows' => $rows,
  257. 'attributes' => array(
  258. 'class' => 'tripal-remote--data-field-table',
  259. ),
  260. 'sticky' => FALSE,
  261. 'caption' => "",
  262. 'colgroups' => array(),
  263. 'empty' => 'There are no results.',
  264. ));
  265. }
  266. }
  267. /**
  268. * A recursive function for creating an HTML dictionary list from
  269. * the results for the item provided.
  270. *
  271. * @param $item
  272. * An item from the $items array passed to the view() function.
  273. * @return
  274. * An HTML formatted DL.
  275. */
  276. private function createDL($item, &$pkey = '', &$content= '', $depth = 0) {
  277. if ($depth == 0) {
  278. $content = '<dl class="tripal-remote--data-field-dl">';
  279. }
  280. foreach ($item as $key => $value) {
  281. // Skip JSON-LD keys.
  282. if (preg_match('/^\@/', $key)) {
  283. continue;
  284. }
  285. $key = preg_replace('/_/', ' ', $key);
  286. $key = ucwords($key);
  287. if ($pkey) {
  288. $key = $pkey . ' ' . $key;
  289. }
  290. if (is_array($value)) {
  291. $this->createDL($value, $key, $content, $depth + 1);
  292. }
  293. else {
  294. $content .= '<dt>' . $key . '&nbsp;:&nbsp;</dt><dd>' . $value . '</dd>';
  295. }
  296. }
  297. if ($depth == 0) {
  298. $content .= '</dl>';
  299. return $content;
  300. }
  301. }
  302. /**
  303. * A recursive function for creating an HTML dictionary list from
  304. * the results for the item provided.
  305. *
  306. * @param $item
  307. * An item from the $items array passed to the view() function.
  308. * @return
  309. * An HTML formatted DL.
  310. */
  311. private function createNestedDL($item) {
  312. $content = '<dl>';
  313. foreach ($item as $key => $value) {
  314. // Skip JSON-LD keys.
  315. if (preg_match('/^\@/', $key)) {
  316. continue;
  317. }
  318. $key = preg_replace('/_/', ' ', $key);
  319. $key = ucwords($key);
  320. if (is_array($value)) {
  321. $value = $this->createDL($value);
  322. }
  323. $content .= '<dt>' . $key . '</dt><dd>' . $value . '</dd>';
  324. }
  325. $content .= '</dl>';
  326. return $content;
  327. }
  328. /**
  329. * Provides a summary of the formatter settings.
  330. *
  331. * This function corresponds to the hook_field_formatter_settings_summary()
  332. * function of the Drupal Field API.
  333. *
  334. * On the 'Manage Display' page of the content type administration page,
  335. * fields are allowed to provide a settings form. This settings form can
  336. * be used to allow the site admin to define how the field should be
  337. * formatted. The settings are then available for the formatter()
  338. * function of this class. This function provides a text-based description
  339. * of the settings for the site developer to see. It appears on the manage
  340. * display page inline with the field. A field must always return a
  341. * value in this function if the settings form gear button is to appear.
  342. *
  343. * See the hook_field_formatter_settings_summary() function for more
  344. * information.
  345. *
  346. * @param $field
  347. * @param $instance
  348. * @param $view_mode
  349. *
  350. * @return string
  351. * A string that provides a very brief summary of the field settings
  352. * to the user.
  353. *
  354. */
  355. public function settingsSummary($view_mode) {
  356. }
  357. }