tripal_chado.field_storage.inc 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  1. <?php
  2. /**
  3. * Implements hook_field_storage_info().
  4. */
  5. function tripal_chado_field_storage_info() {
  6. return array(
  7. 'field_chado_storage' => array(
  8. 'label' => t('Chado'),
  9. 'description' => t('Stores fields in the local Chado database.'),
  10. 'settings' => array(),
  11. // The logo_url key is supported by Tripal. It's not a Drupal key. It's
  12. // used for adding a logo or picture for the data store to help make it
  13. // more easily recognized on the field_ui_field_overview_form. Ideally
  14. // the URL should point to a relative path on the local Drupal site.
  15. 'logo_url' => url(drupal_get_path('module', 'tripal') . '/theme/images/250px-ChadoLogo.png'),
  16. ),
  17. );
  18. }
  19. /**
  20. * Implements hook_field_storage_write().
  21. */
  22. function tripal_chado_field_storage_write($entity_type, $entity, $op, $fields) {
  23. // Get the bundle and the term for this entity.
  24. $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
  25. $term = entity_load('TripalTerm', array('id' => $entity->term_id));
  26. $term = reset($term);
  27. $cvterm = $term->details['cvterm'];
  28. // Get the base table, type field and record_id from the entity.
  29. $base_table = $entity->chado_table;
  30. $type_field = $entity->chado_column;
  31. $record = $entity->chado_record;
  32. $record_id = $entity->chado_record_id;
  33. $base_schema = chado_get_schema($base_table);
  34. $base_pkey = $base_schema['primary key'][0];
  35. // Convert the fields into a key/value list of fields and their values.
  36. $field_vals = tripal_chado_field_storage_write_merge_fields($fields, $entity_type, $entity);
  37. // Write the record for the base table. First get the values for this table
  38. // and set the record_id (update) or the type_id (insert)
  39. $values = $field_vals[$base_table][0];
  40. if ($record_id) {
  41. $values[$base_pkey] = $record_id;
  42. }
  43. else {
  44. $values[$type_field] = $cvterm->cvterm_id;
  45. }
  46. $base_record_id = tripal_chado_field_storage_write_table($base_table, $values);
  47. // If this is an insert then add the chado_entity record.
  48. if ($op == FIELD_STORAGE_INSERT) {
  49. // Add a record to the chado_entity table so that the data for the
  50. // fields can be pulled from Chado when loaded the next time.
  51. $record = array(
  52. 'entity_id' => $entity->id,
  53. 'record_id' => $base_record_id,
  54. 'data_table' => $base_table,
  55. 'type_table' => $base_table,
  56. 'field' => $type_field,
  57. );
  58. $success = drupal_write_record('chado_entity', $record);
  59. if (!$success) {
  60. drupal_set_message('Unable to insert new Chado entity.', 'error');
  61. }
  62. }
  63. // Now that we have handled the base table, we need to handle linking tables.
  64. foreach ($field_vals as $table_name => $details) {
  65. // Skip the base table as we've already dealt with it.
  66. if ($table_name == $base_table) {
  67. continue;
  68. }
  69. foreach ($details as $delta => $values) {
  70. $record_id = tripal_chado_field_storage_write_table($table_name, $values);
  71. }
  72. }
  73. }
  74. /**
  75. * Write (inserts/oupdates) a nested array of values for a table.
  76. *
  77. * The $values array is of the same format used by chado_insert_record() and
  78. * chado_update_record(). However, both of those methods will use any nested
  79. * arrays (i.e. representing foreign keys) to select an appropriate record ID
  80. * that can be substituted as the value. Here, the nested arrays are
  81. * either inserted or updated as well, but the choice is determined if the
  82. * primary key value is present. If present an update occurs, if not present
  83. * then an insert occurs.
  84. *
  85. * This function is recursive and nested arrays from the lowest point of the
  86. * "tree" are dealt with first.
  87. *
  88. * @param $table_name
  89. * The name of the table on which the insertion/update is performed.
  90. * @param $values
  91. * The values array for the insertion.
  92. * @throws Exception
  93. * @return
  94. * The unique record ID.
  95. */
  96. function tripal_chado_field_storage_write_table($table_name, $values) {
  97. $schema = chado_get_schema($table_name);
  98. $fkeys = $schema['foreign keys'];
  99. $pkey = $schema['primary key'][0];
  100. // Before inserting or updating this table, recruse if there are any
  101. // nested FK array values.
  102. foreach ($values as $column => $value) {
  103. // If this value is an array then it must be a FK... let's recurse.
  104. if (is_array($value)) {
  105. // Find the name of the FK table for this column.
  106. $fktable_name = '';
  107. foreach ($fkeys as $fktable => $details) {
  108. foreach ($details['columns'] as $fkey_lcolumn => $fkey_rcolumn) {
  109. if ($fkey_lcolumn == $column) {
  110. $fktable_name = $fktable;
  111. }
  112. }
  113. }
  114. // Recurse on this recod.
  115. $record_id = tripal_chado_field_storage_write_table($fktable_name, $values[$column]);
  116. $values[$column] = $record_id;
  117. }
  118. }
  119. // Fields with a cardinality greater than 1 will often submit an
  120. // empty form. We want to remove these empty submissions. We can detect
  121. // them if all of the fields are empty.
  122. $num_empty = 0;
  123. foreach ($values as $column => $value) {
  124. if (!$value) {
  125. $num_empty++;
  126. }
  127. }
  128. if ($num_empty == count(array_keys($values))) {
  129. return '';
  130. }
  131. // If the primary key column has a value then this will be an udpate,
  132. // otherwise it's an insert.
  133. if (!array_key_exists($pkey, $values) or !$values[$pkey]) {
  134. // Before inserting, we want to make sure the record does not
  135. // already exist. Using the unique constraint check for a matching record.
  136. $options = array('is_duplicate' => TRUE);
  137. $is_duplicate = chado_select_record($table_name, array('*'), $values, $options);
  138. if($is_duplicate) {
  139. $record = chado_select_record($table_name, array('*'), $values);
  140. return $record[0]->$pkey;
  141. }
  142. // Insert the values array as a new record in the table.
  143. $record = chado_insert_record($table_name, $values);
  144. if ($record === FALSE) {
  145. throw new Exception('Could not insert Chado record into table: "' . $tablename . '".');
  146. }
  147. return $record[$pkey];
  148. }
  149. // We have an incoming record_id so this is an update.
  150. else {
  151. // TODO: what if the unique constraint matches another record? That is
  152. // not being tested for here.
  153. $match[$pkey] = $values[$pkey];
  154. if (!chado_update_record($table_name, $match, $values)) {
  155. drupal_set_message("Could not update Chado record in table: $tablename.", 'error');
  156. }
  157. return $values[$pkey];
  158. }
  159. }
  160. /**
  161. * Implements hook_field_storage_load().
  162. *
  163. * Responsible for loading the fields from the Chado database and adding
  164. * their values to the entity.
  165. */
  166. function tripal_chado_field_storage_load($entity_type, $entities, $age,
  167. $fields, $options) {
  168. $load_current = $age == FIELD_LOAD_CURRENT;
  169. global $language;
  170. $langcode = $language->language;
  171. foreach ($entities as $id => $entity) {
  172. // Get the base table and record id for the fields of this entity.
  173. $details = db_select('chado_entity', 'ce')
  174. ->fields('ce')
  175. ->condition('entity_id', $entity->id)
  176. ->execute()
  177. ->fetchObject();
  178. if (!$details) {
  179. // TODO: what to do if record is missing!
  180. }
  181. // Get some values needed for loading the values from Chado.
  182. $base_table = $details->data_table;
  183. $type_field = $details->field;
  184. $record_id = $details->record_id;
  185. // Get this table's schema.
  186. $schema = chado_get_schema($base_table);
  187. $pkey_field = $schema['primary key'][0];
  188. // Get the base record if one exists
  189. $columns = array('*');
  190. $match = array($pkey_field => $record_id);
  191. $record = chado_generate_var($base_table, $match);
  192. $entity->chado_record = $record;
  193. // For now, expand all 'text' fields.
  194. // TODO: we want to be a bit smarter and allow the user to configure this
  195. // for now we'll expand.
  196. foreach ($schema['fields'] as $field_name => $details) {
  197. if ($schema['fields'][$field_name]['type'] == 'text') {
  198. $record = chado_expand_var($record, 'field', $base_table . '.' . $field_name);
  199. }
  200. }
  201. // Iterate through the entity's fields so we can get the column names
  202. // that need to be selected from each of the tables represented.
  203. $tables = array();
  204. foreach ($fields as $field_id => $ids) {
  205. // By the time this hook runs, the relevant field definitions have been
  206. // populated and cached in FieldInfo, so calling field_info_field_by_id()
  207. // on each field individually is more efficient than loading all fields in
  208. // memory upfront with field_info_field_by_ids().
  209. $field = field_info_field_by_id($field_id);
  210. $field_name = $field['field_name'];
  211. $field_type = $field['type'];
  212. $field_module = $field['module'];
  213. // Skip fields that don't map to a Chado table (e.g. kvproperty_adder).
  214. if (!array_key_exists('settings', $field) or !array_key_exists('chado_table', $field['settings'])) {
  215. continue;
  216. }
  217. // Get the Chado table and column for this field.
  218. $field_table = $field['settings']['chado_table'];
  219. $field_column = $field['settings']['chado_column'];
  220. // There are only two types of fields: 1) fields that represent a single
  221. // column of the base table, or 2) fields that represent a linked record
  222. // in a many-to-one relationship with the base table.
  223. // Type 1: fields from base tables.
  224. if ($field_table == $base_table) {
  225. // Set an empty value by default, and if there is a record, then update.
  226. $entity->{$field_name}['und'][0]['value'] = '';
  227. if ($record and property_exists($record, $field_column)) {
  228. // If the field column is an object then it's a FK to another table.
  229. // and because $record object is created by the chado_generate_var()
  230. // function we must go one more level deeper to get the value
  231. if (is_object($record->$field_column)) {
  232. $entity->{$field_name}['und'][0][$field_table . '__' . $field_column] = $record->$field_column->$field_column;
  233. }
  234. else {
  235. // For non FK fields we'll make the field value be the same
  236. // as the column value.
  237. $entity->{$field_name}['und'][0]['value'] = $record->$field_column;
  238. $entity->{$field_name}['und'][0][$field_table . '__' . $field_column] = $record->$field_column;
  239. }
  240. }
  241. // Allow the creating module to alter the value if desired. The
  242. // module should do this if the field has any other form elements
  243. // that need populationg besides the value which was set above.
  244. module_load_include('inc', $field_module, 'includes/fields/' . $field_type);
  245. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  246. $field_obj = new $field_type();
  247. $field_obj->load($field, $entity, array('record' => $record));
  248. }
  249. $load_function = $field_type . '_load';
  250. if (function_exists($load_function)) {
  251. $load_function($field, $entity, $base_table, $record);
  252. }
  253. }
  254. // Type 2: fields for linked records. These fields will have any number
  255. // of form elements that might need populating so we'll offload the
  256. // loading of these fields to the field itself.
  257. if ($field_table != $base_table) {
  258. // Set an empty value by default, and let the hook function update it.
  259. $entity->{$field_name}['und'][0]['value'] = '';
  260. $load_function = $field_type . '_load';
  261. module_load_include('inc', $field_module, 'includes/fields/' . $field_type);
  262. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  263. $field_obj = new $field_type();
  264. if (method_exists($field_obj, 'load')) {
  265. $field_obj->load($field, $entity, array('record' => $record));
  266. }
  267. }
  268. if (function_exists($load_function)) {
  269. $load_function($field, $entity, $base_table, $record);
  270. }
  271. }
  272. } // end: foreach ($fields as $field_id => $ids) {
  273. } // end: foreach ($entities as $id => $entity) {
  274. }
  275. /**
  276. * Merges the values of all fields into a single array keyed by table name.
  277. */
  278. function tripal_chado_field_storage_write_merge_fields($fields, $entity_type, $entity) {
  279. $new_fields = array();
  280. // Iterate through all of the fields and organize them into a
  281. // new fields array keyed by the table name
  282. foreach ($fields as $field_id => $ids) {
  283. // Get the field name and information about it.
  284. $field = field_info_field_by_id($field_id);
  285. $field_name = $field['field_name'];
  286. // Some fields (e.g. chado_linker_cvterm_adder) don't add data to
  287. // Chado so they don't have a table, but they are still attached to the
  288. // entity. Just skip these.
  289. if (!array_key_exists('chado_table', $field['settings'])) {
  290. continue;
  291. }
  292. $chado_table = $field['settings']['chado_table'];
  293. $chado_column = $field['settings']['chado_column'];
  294. // Iterate through the field's items. Fields with cardinality ($delta) > 1
  295. // are multi-valued.
  296. $items = field_get_items($entity_type, $entity, $field_name);
  297. foreach ($items as $delta => $item) {
  298. foreach ($item as $item_name => $value) {
  299. $matches = array();
  300. if (preg_match('/^(.*?)__(.*?)$/', $item_name, $matches)) {
  301. $table_name = $matches[1];
  302. $column_name = $matches[2];
  303. // Is this a nested FK field? If so break it down into a sub array.
  304. if (preg_match('/^(.*?)--(.*?)$/', $column_name, $matches)) {
  305. $parent_item_name = $matches[1];
  306. $sub_item_name = $matches[2];
  307. $sub_item = tripal_chado_field_storage_expand_field($sub_item_name, $value);
  308. if (count(array_keys($sub_item))) {
  309. // If we've already encountered this table and column then we've
  310. // already seen the numeric FK value or we've already added a
  311. // subcolumn. If the former we want to convert this to an array
  312. // so we can add the details.
  313. if (!array_key_exists($table_name, $new_fields) or
  314. !array_key_exists($delta, $new_fields[$table_name]) or
  315. !array_key_exists($parent_item_name, $new_fields[$table_name][$delta]) or
  316. !is_array($new_fields[$table_name][$delta][$parent_item_name])) {
  317. $new_fields[$table_name][$delta][$parent_item_name] = array();
  318. }
  319. $new_fields[$table_name][$delta][$parent_item_name] += $sub_item;
  320. }
  321. }
  322. else {
  323. // If not seen this table and column then just add it. If we've
  324. // already seen it then it means it's a FK field and we've already
  325. // added subfields so do nothing.
  326. if (!array_key_exists($table_name, $new_fields) or
  327. !array_key_exists($delta, $new_fields[$table_name]) or
  328. !array_key_exists($column_name, $new_fields[$table_name][$delta])) {
  329. $new_fields[$table_name][$delta][$column_name] = $value;
  330. }
  331. }
  332. }
  333. }
  334. // If there is no value set for the field using the
  335. // [table_name]__[field name] naming schema then check if a 'value' item
  336. // is present and if so use that.
  337. if ((!array_key_exists($chado_table, $new_fields) or
  338. !array_key_exists($delta, $new_fields[$chado_table]) or
  339. !array_key_exists($chado_column, $new_fields[$chado_table][$delta])) and
  340. array_key_exists('value', $items[$delta]) and
  341. !is_array($items[$delta]['value'])) {
  342. $new_fields[$chado_table][$delta][$chado_column] = $items[$delta]['value'];
  343. }
  344. }
  345. }
  346. return $new_fields;
  347. }
  348. /**
  349. * Recurses through a field's item name breaking it into a nested array.
  350. *
  351. *
  352. */
  353. function tripal_chado_field_storage_expand_field($item_name, $value) {
  354. $matches = array();
  355. if (preg_match('/^(.*?)--(.*?)$/', $item_name, $matches)) {
  356. $parent_item_name = $matches[1];
  357. $sub_item_name = $matches[2];
  358. $sub_item = tripal_chado_field_storage_expand_field($sub_item_name, $value);
  359. return array($parent_item_name => $sub_item);
  360. }
  361. else {
  362. return array($item_name => $value);
  363. }
  364. }
  365. /**
  366. * Implements hook_field_storage_query().
  367. *
  368. * Used by EntityFieldQuery to find the entities having certain field values.
  369. *
  370. * We do not support use of the EntityFieldQuery API for Tripal based fields
  371. * because EFQ doesn't support when multiple storage backends are used. Instead
  372. * use the TripalFieldQuery class and implement the hook_storage_tquery()
  373. * function.
  374. */
  375. function tripal_chado_field_storage_query($query) {
  376. }
  377. /**
  378. * Implements hook_field_storage_tquery().
  379. *
  380. * Used by TripalFieldQuery to find the entities having certain field values.
  381. *
  382. * @param $conditions
  383. */
  384. function tripal_chado_field_storage_tquery($conditions) {
  385. $filter = array();
  386. foreach ($conditions as $index => $condition) {
  387. $field = $condition['field'];
  388. $field_type = $field['type'];
  389. $field_module = $field['module'];
  390. $settings = $field['settings'];
  391. $chado_table = $settings['chado_table'];
  392. $chado_column = $settings['chado_column'];
  393. // Allow the creating module to alter the value if desired.
  394. $value = '';
  395. module_load_include('inc', $field_module, 'includes/fields/' . $field_type);
  396. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  397. $field_obj = new $field_type();
  398. if (method_exists($field_obj, 'query')) {
  399. $value = $field_obj->query($condition);
  400. }
  401. }
  402. // If there is no field to rewrite the value then use defaults.
  403. else {
  404. $value = $condition['value'];
  405. }
  406. // use the appropriate operator.
  407. $operator = $condition['operator'];
  408. switch ($operator) {
  409. case '=':
  410. $filter[$chado_table][$chado_column] = $condition['value'];
  411. break;
  412. case '>':
  413. case '>=':
  414. case '<':
  415. case '<=':
  416. $filter[$chado_table][$chado_column] = array(
  417. 'op' => $operator,
  418. 'data' => $value,
  419. );
  420. break;
  421. case '<>':
  422. $filter[$chado_table][$chado_column] = array(
  423. 'op' => 'NOT',
  424. 'data' => $value,
  425. );
  426. break;
  427. case 'CONTAINS':
  428. break;
  429. $filter[$chado_table][$chado_column] = array(
  430. 'op' => 'LIKE',
  431. 'data' => '%' . $value . '%',
  432. );
  433. case 'STARTS WITH':
  434. $filter[$chado_table][$chado_column] = array(
  435. 'op' => 'LIKE',
  436. 'data' => $value . '%',
  437. );
  438. break;
  439. default:
  440. // unrecognized operation.
  441. break;
  442. }
  443. }
  444. // Iterate through the filters and perform the query
  445. $entity_ids = array();
  446. foreach ($filter as $chado_table => $values) {
  447. // First get the matching record IDs from the Chado table.
  448. $schema = chado_get_schema($chado_table);
  449. $pkey = $schema['primary key'][0];
  450. $results = chado_select_record($chado_table, array($pkey), $values);
  451. $record_ids = array();
  452. foreach ($results as $result) {
  453. $record_ids[] = $result->$pkey;
  454. }
  455. // Next look for matching IDs in the chado_entity table.
  456. $filter_ids = array();
  457. $results = db_select('chado_entity', 'CE')
  458. ->fields('CE', array('entity_id'))
  459. ->condition('record_id', $record_ids)
  460. ->execute();
  461. while ($result = $results->fetchObject()) {
  462. $filter_ids[] = $result->entity_id;
  463. }
  464. // Take the intersection of IDs in this filter with those in the
  465. // final $entity_ids;
  466. if (count($entity_ids) == 0) {
  467. $entity_ids = $filter_ids;
  468. }
  469. else {
  470. $entity_ids = array_intersect($entity_ids, $filter_ids);
  471. }
  472. }
  473. return $entity_ids;
  474. }