tripal_core.chado_nodes.properties.api.inc 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008
  1. <?php
  2. /**
  3. * @file
  4. * API to manage the chado prop table for various Tripal Node Types
  5. *
  6. * How To Use:
  7. * @code
  8. function chado_example_form($form, $form_state) {
  9. // Default values for form elements can come in the following ways:
  10. //
  11. // 1) as elements of the $node object. This occurs when editing an existing node
  12. // 2) in the $form_state['values'] array which occurs on a failed validation or
  13. // ajax callbacks when the ajax call originates from non-submit fields other
  14. // than button
  15. // 3) in the $form_state['input'] array which occurs on ajax callbacks from submit
  16. // form elements (e.g. buttons) and the form is being rebuilt but has not yet
  17. // been validated
  18. //
  19. // The reference elements added by this function do use AJAX calls from buttons,
  20. // therefore, it is important to check for form values in the $form_state['values']
  21. // for case #2 above, and in the $form_state['input'] for case #3.
  22. // See the chado analysis node form for an example.
  23. // Next, add in all the form array definition particular to your node type
  24. // To add in the chado properties form elements, you first need to prepare the arguments
  25. // for the function call.
  26. $details = array(
  27. 'property_table' => 'example_property', // the name of the table linking additional properties to this node
  28. 'base_foreign_key' => 'example_id', // key to link to the chado content created by this node
  29. 'base_key_value' => $example_id, // the value of the above key
  30. 'cv_name' => 'example_prop_cv', // the name of the cv governing the _prop.type_id
  31. 'fieldset_title' => 'Additional References', // the non-translated title for this fieldset
  32. 'additional_instructions' => '' // a non-stranslated string providing additional instructions
  33. );
  34. // Finally, and add the additional form elements to the form
  35. chado_node_properties_form($form, $form_state, $details);
  36. return $form;
  37. }
  38. function chado_example_insert($node) {
  39. // if there is an example_id in the $node object then this must be a sync so
  40. // we can skip adding the chado_example as it is already there, although
  41. // we do need to proceed with the rest of the insert
  42. if (!property_exists($node, 'example_id')) {
  43. // Add record to chado example table
  44. // Add to any other tables needed
  45. // Add all properties
  46. // Existing _property links will be cleared and then re-added
  47. tripal_api_chado_node_properties_form_update_properties(
  48. $node, // the node object passed in via hook_insert()
  49. 'example_property', // the name of the _property linking table
  50. 'example', // the name of the base chado table for the node
  51. 'example_id', // key to link to the chado content created by this node
  52. $node->example_id // value of the above key
  53. );
  54. }
  55. // Add record to chado_example linking example_id to new node
  56. }
  57. function chado_example_update($node) {
  58. // Update record in chado example table
  59. // Update any other tables needed
  60. // Update all properties
  61. // Existing _property links will be cleared and then re-added
  62. tripal_api_chado_node_properties_form_update_properties(
  63. $node, // the node object passed in via hook_insert()
  64. 'example_property', // the name of the _property linking table
  65. 'example', // the name of the base chado table for the node
  66. 'example_id', // key to link to the chado content created by this node
  67. $node->example_id // value of the above key
  68. );
  69. // Don't need to update chado_example linking table since niether example_id or nid can be changed in update
  70. }
  71. * @endcode
  72. *
  73. * @ingroup tripal_chado_node_api
  74. */
  75. /**
  76. * Retrieve a property for a given base table record
  77. *
  78. * @param $basetable
  79. * The base table for which the property should be retrieved. Thus to retrieve a property
  80. * for a feature the basetable=feature and property is retrieved from featureprop
  81. * @param $record_id
  82. * The foriegn key field of the base table. This should be in integer.
  83. * @param $property
  84. * The cvterm name describing the type of properties to be retrieved
  85. * @param $cv_name
  86. * The name of the cv that the above cvterm is part of
  87. *
  88. * @return
  89. * An array in the same format as that generated by the function
  90. * tripal_core_generate_chado_var(). If only one record is returned it
  91. * is a single object. If more than one record is returned then it is an array
  92. * of objects
  93. *
  94. * @ingroup tripal_chado_node_api
  95. */
  96. function tripal_core_get_property($basetable, $record_id, $property, $cv_name) {
  97. // get the foreign key for this property table
  98. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  99. $fkcol = key($table_desc['foreign keys'][$basetable]['columns']);
  100. // construct the array of values to be selected
  101. $values = array(
  102. $fkcol => $record_id,
  103. 'type_id' => array(
  104. 'cv_id' => array(
  105. 'name' => $cv_name,
  106. ),
  107. 'name' => $property,
  108. 'is_obsolete' => 0
  109. ),
  110. );
  111. $results = tripal_core_generate_chado_var($basetable . 'prop', $values);
  112. if ($results) {
  113. $results = tripal_core_expand_chado_vars($results, 'field', $basetable . 'prop.value');
  114. }
  115. return $results;
  116. }
  117. /**
  118. * Insert a property for a given base table. By default if the property already
  119. * exists a new property is added with the next available rank. If
  120. * $update_if_present argument is specified then the record will be updated if it
  121. * exists rather than adding a new property.
  122. *
  123. * @param $basetable
  124. * The base table for which the property should be inserted. Thus to insert a property
  125. * for a feature the basetable=feature and property is inserted into featureprop
  126. * @param $record_id
  127. * The foriegn key value of the base table. This should be in integer.
  128. * @param $property
  129. * The cvterm name describing the type of properties to be inserted
  130. * @param $cv_name
  131. * The name of the cv that the above cvterm is part of
  132. * @param $value
  133. * The value of the property to be inserted (can be empty)
  134. * @param $update_if_present
  135. * A boolean indicating whether an existing record should be updated. If the
  136. * property already exists and this value is not specified or is zero then
  137. * a new property will be added with the next largest rank.
  138. *
  139. * @return
  140. * Return True on Insert/Update and False otherwise
  141. *
  142. * @ingroup tripal_chado_node_api
  143. */
  144. function tripal_core_insert_property($basetable, $record_id, $property,
  145. $cv_name, $value, $update_if_present = 0) {
  146. // first see if the property already exists, if the user want's to update
  147. // then we can do that, but otherwise we want to increment the rank and
  148. // insert
  149. $props = tripal_core_get_property($basetable, $record_id, $property, $cv_name);
  150. if (!is_array($props) and $props) {
  151. $props = array($props);
  152. }
  153. $rank = 0;
  154. if (count($props) > 0) {
  155. if ($update_if_present) {
  156. return tripal_core_update_property($basetable, $record_id, $property, $cv_name, $value);
  157. }
  158. else {
  159. // iterate through the properties returned and check to see if the
  160. // property with this value already exists if not, get the largest rank
  161. // and insert the same property but with this new value
  162. foreach ($props as $p) {
  163. if ($p->rank > $rank) {
  164. $rank = $p->rank;
  165. }
  166. if (strcmp($p->value, $value) == 0) {
  167. return TRUE;
  168. }
  169. }
  170. // now add 1 to the rank
  171. $rank++;
  172. }
  173. }
  174. // make sure the cvterm exists. Otherwise we'll get an error with
  175. // prepared statements not matching
  176. $values = array(
  177. 'cv_id' => array(
  178. 'name' => $cv_name,
  179. ),
  180. 'name' => $property,
  181. );
  182. $options = array();
  183. $term = tripal_core_chado_select('cvterm', array('cvterm_id'), $values, $options);
  184. if (!$term or count($term) == 0) {
  185. watchdog('tripal_core', "Cannot find property '%prop_name' in vocabulary '%cvname'.",
  186. array('%prop_name' => $property, '%cvname' => $cv_name), WATCHDOG_ERROR);
  187. return FALSE;
  188. }
  189. // get the foreign key for this property table
  190. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  191. $fkcol = key($table_desc['foreign keys'][$basetable]['columns']);
  192. // construct the array of values to be inserted
  193. $values = array(
  194. $fkcol => $record_id,
  195. 'type_id' => array(
  196. 'cv_id' => array(
  197. 'name' => $cv_name,
  198. ),
  199. 'name' => $property,
  200. ),
  201. 'value' => $value,
  202. 'rank' => $rank,
  203. );
  204. $options = array();
  205. $result = tripal_core_chado_insert($basetable . 'prop', $values, $options);
  206. return $result;
  207. }
  208. /**
  209. * Update a property for a given base table record and property name. This
  210. * function should be used only if one record of the property will be present.
  211. * If the property name can have multiple entries (with increasing rank) then
  212. * use the function named tripal_core_update_property_by_id
  213. *
  214. * @param $basetable
  215. * The base table for which the property should be updated. The property table
  216. * is constructed using a combination of the base table name and the suffix
  217. * 'prop' (e.g. basetable = feature then property tabie is featureprop).
  218. * @param $record_id
  219. * The foreign key of the basetable to update a property for. This should be in integer.
  220. * For example, if the basetable is 'feature' then the $record_id should be the feature_id
  221. * @param $property
  222. * The cvterm name of property to be updated
  223. * @param $cv_name
  224. * The name of the cv that the above cvterm is part of
  225. * @param $value
  226. * The value of the property to be inserted (can be empty)
  227. * @param $insert_if_missing
  228. * A boolean indicating whether a record should be inserted if one doesn't exist to update
  229. *
  230. * Note: The property to be updated is select via the unique combination of $record_id and
  231. * $property and then it is updated with the supplied value
  232. *
  233. * @return
  234. * Return True on Update/Insert and False otherwise
  235. *
  236. * @ingroup tripal_chado_node_api
  237. */
  238. function tripal_core_update_property($basetable, $record_id, $property,
  239. $cv_name, $value, $insert_if_missing = 0) {
  240. // first see if the property is missing (we can't update a missing property
  241. $prop = tripal_core_get_property($basetable, $record_id, $property, $cv_name);
  242. if (count($prop)==0) {
  243. if ($insert_if_missing) {
  244. return tripal_core_insert_property($basetable, $record_id, $property, $cv_name, $value);
  245. }
  246. else {
  247. return FALSE;
  248. }
  249. }
  250. // get the foreign key for this property table
  251. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  252. $fkcol = key($table_desc['foreign keys'][$basetable]['columns']);
  253. // construct the array that will match the exact record to update
  254. $match = array(
  255. $fkcol => $record_id,
  256. 'type_id' => array(
  257. 'cv_id' => array(
  258. 'name' => $cv_name,
  259. ),
  260. 'name' => $property,
  261. ),
  262. );
  263. // construct the array of values to be updated
  264. $values = array(
  265. 'value' => $value,
  266. );
  267. return tripal_core_chado_update($basetable . 'prop', $match, $values);
  268. }
  269. /**
  270. * Update a property for a given base table record. This function should be
  271. * used if multiple records of the same property will be present. Also, use this
  272. * function to change the property name of an existing property.
  273. *
  274. * @param $basetable
  275. * The base table for which the property should be updated. The property table
  276. * is constructed using a combination of the base table name and the suffix
  277. * 'prop' (e.g. basetable = feature then property tabie is featureprop).
  278. * @param $record_id
  279. * The primary key of the base table. This should be in integer.
  280. * For example, if the basetable is 'feature' then the $record_id should be the featureprop_id
  281. * @param $property
  282. * The cvterm name of property to be updated
  283. * @param $cv_name
  284. * The name of the cv that the above cvterm is part of
  285. * @param $value
  286. * The value of the property to be inserted (can be empty)
  287. *
  288. * @return
  289. * Return True on Update/Insert and False otherwise
  290. *
  291. * @ingroup tripal_chado_node_api
  292. */
  293. function tripal_core_update_property_by_id($basetable, $record_id, $property,
  294. $cv_name, $value) {
  295. // get the primary key for this property table
  296. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  297. $pkcol = $table_desc['primary key'][0];
  298. // construct the array that will match the exact record to update
  299. $match = array(
  300. $pkcol => $record_id,
  301. );
  302. // construct the array of values to be updated
  303. $values = array(
  304. 'type_id' => array(
  305. 'cv_id' => array(
  306. 'name' => $cv_name,
  307. ),
  308. 'name' => $property,
  309. ),
  310. 'value' => $value,
  311. );
  312. return tripal_core_chado_update($basetable . 'prop', $match, $values);
  313. }
  314. /**
  315. * Deletes a property for a given base table record using the property name
  316. *
  317. * @param $basetable
  318. * The base table for which the property should be deleted. Thus to deleted a property
  319. * for a feature the basetable=feature and property is deleted from featureprop
  320. * @param $record_id
  321. * The primary key of the basetable to delete a property for. This should be in integer.
  322. * @param $property
  323. * The cvterm name describing the type of property to be deleted
  324. * @param $cv_name
  325. * The name of the cv that the above cvterm is part of
  326. *
  327. * Note: The property to be deleted is select via the unique combination of $record_id and $property
  328. *
  329. * @return
  330. * Return True on Delete and False otherwise
  331. *
  332. * @ingroup tripal_chado_node_api
  333. */
  334. function tripal_core_delete_property($basetable, $record_id, $property, $cv_name) {
  335. // get the foreign key for this property table
  336. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  337. $fkcol = key($table_desc['foreign keys'][$basetable]['columns']);
  338. // construct the array that will match the exact record to update
  339. $match = array(
  340. $fkcol => $record_id,
  341. 'type_id' => array(
  342. 'cv_id' => array(
  343. 'name' => $cv_name,
  344. ),
  345. 'name' => $property,
  346. ),
  347. );
  348. return tripal_core_chado_delete($basetable . 'prop', $match);
  349. }
  350. /**
  351. * Deletes a property using the property ID
  352. *
  353. * @param $basetable
  354. * The base table for which the property should be deleted. Thus to deleted a property
  355. * for a feature the basetable=feature and property is deleted from featureprop
  356. * @param $record_id
  357. * The primary key of the basetable to delete a property for. This should be in integer.
  358. *
  359. * @return
  360. * Return True on Delete and False otherwise
  361. *
  362. * @ingroup tripal_chado_node_api
  363. */
  364. function tripal_core_delete_property_by_id($basetable, $record_id) {
  365. // get the foreign key for this property table
  366. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  367. $pkcol = $table_desc['primary key'][0];
  368. // construct the array that will match the exact record to update
  369. $match = array(
  370. $pkcol => $record_id,
  371. );
  372. return tripal_core_chado_delete($basetable . 'prop', $match);
  373. }
  374. /**
  375. * @section
  376. * Properties Form to be added to node forms
  377. */
  378. /**
  379. * Provides a form for adding to BASEprop table
  380. *
  381. * @param $form
  382. * The Drupal form array into which the property form elements will be added
  383. * @param $form_state
  384. * The corresponding form_state array for the form
  385. * @param $details
  386. * An array defining details needed by this form. Required Keys are:
  387. * - property_table: the name of the property linking table (ie: featureprop)
  388. * - base_foreign_key: the name of the foreign key linking this table to the non-property table (ie: feature_id)
  389. * - base_key_value: the value of the base_foreign_key for the current form (ie: 999 if the feature_id=999)
  390. * Require ONE of the following:
  391. * The controlled vocabulary governing the property types
  392. * -cv_id: the unique key from the cv table
  393. * -cv_name: the cv.name field uniquely identifying the controlled vocab
  394. * Optional keys include:
  395. * - fieldset_title: the non-translated title for this fieldset
  396. * - additional_instructions: a non-translated string providing additional instructions
  397. * - select_options: must be an array where the [key] is a valid cvterm_id and
  398. * the [value] is the human-readable name of the option. This is generated from the cv_name/id by default
  399. *
  400. * @ingroup tripal_chado_node_api
  401. */
  402. function chado_node_properties_form(&$form, &$form_state, $details) {
  403. // Set Defaults for optional fields
  404. $details['fieldset_title'] = 'Properties';
  405. $details['additional_instructions'] = '';
  406. // Get Property Types for the Select List
  407. if (isset($details['select_options'])) {
  408. $property_options = $details['select_options'];
  409. }
  410. else {
  411. if (isset($details['cv_name'])) {
  412. $property_options = array();
  413. $property_options[] = 'Select a Property';
  414. $sql = "
  415. SELECT DISTINCT CVT.cvterm_id, CVT.name, CVT.definition
  416. FROM {cvterm} CVT
  417. INNER JOIN {cv} CV ON CVT.cv_id = CV.cv_id
  418. WHERE
  419. CV.name = :cv_name AND
  420. NOT CVT.is_obsolete = 1
  421. ORDER BY CVT.name ASC
  422. ";
  423. $prop_types = chado_query($sql, array(':cv_name' => $details['cv_name']));
  424. while ($prop = $prop_types->fetchObject()) {
  425. $property_options[$prop->cvterm_id] = $prop->name;
  426. }
  427. } elseif (isset($details['cv_id'])) {
  428. $property_options = array();
  429. $property_options[] = 'Select a Property';
  430. $sql = "
  431. SELECT DISTINCT CVT.cvterm_id, CVT.name, CVT.definition
  432. FROM {cvterm} CVT
  433. INNER JOIN {cv} CV ON CVT.cv_id = CV.cv_id
  434. WHERE
  435. CV.cv_id = :cv_id AND
  436. NOT CVT.is_obsolete = 1
  437. ORDER BY CVT.name ASC
  438. ";
  439. $prop_types = chado_query($sql, array(':cv_id' => $details['cv_id']));
  440. while ($prop = $prop_types->fetchObject()) {
  441. $property_options[$prop->cvterm_id] = $prop->name;
  442. }
  443. }
  444. }
  445. // the fieldset of the property elements
  446. $form['properties'] = array(
  447. '#type' => 'fieldset',
  448. '#title' => t($details['fieldset_title']),
  449. '#description' => t('You may add additional properties by selecting a property type
  450. from the dropdown and adding text. You may add as many properties as desired by
  451. clicking the add button on the right. To remove a property, click the remove button.
  452. To add additional properties to the drop down. ' . $details['additional_instructions']),
  453. '#prefix' => "<div id='properties-fieldset'>",
  454. '#suffix' => '</div>'
  455. );
  456. // this form element is a tree, so that we don't puke all of the values into then node variable
  457. // it is set as a tree, and keeps them in the $form_state['values']['property_table'] heading.
  458. $form['properties']['property_table'] = array(
  459. '#type' => 'markup',
  460. '#tree' => TRUE,
  461. '#prefix' => '<div id="tripal-generic-edit-properties-table">',
  462. '#suffix' => '</div>',
  463. '#theme' => 'chado_node_properties_form_table'
  464. );
  465. // Add defaults into form_state to be used elsewhere
  466. $form['properties']['property_table']['details'] = array(
  467. '#type' => 'hidden',
  468. '#value' => serialize($details)
  469. );
  470. /* Properties can come to us in two ways:
  471. *
  472. * 1) In the form state in the $form_state['chado_properties']. Data is in this field
  473. * when an AJAX call updates the form state or a validation error.
  474. *
  475. * 2) Directly from the database if the record already has properties associated. This
  476. * data is only used the first time the form is loaded. On AJAX calls or validation
  477. * errors the fields on the form are populated from the $form_state['chado_properties']
  478. * entry.
  479. */
  480. if (isset($form_state['chado_properties'])) {
  481. $existing_properties = $form_state['chado_properties'];
  482. }
  483. else {
  484. if (isset($details['cv_name'])) {
  485. $existing_properties = chado_query(
  486. "SELECT PP.".$details['property_table']."_id property_id, CVT.cvterm_id as type_id, CVT.name as type_name, CVT.definition, PP.value, PP.rank
  487. FROM {" . $details['property_table'] . "} PP
  488. INNER JOIN {cvterm} CVT ON CVT.cvterm_id = PP.type_id
  489. INNER JOIN {cv} CV ON CVT.cv_id = CV.cv_id
  490. WHERE
  491. PP." . $details['base_foreign_key'] . " = :base_key_value AND
  492. CV.name = '" .$details['cv_name']. "'
  493. ORDER BY CVT.name, PP.rank",
  494. array(':base_key_value' => $details['base_key_value'])
  495. );
  496. } elseif (isset($details['cv_id'])) {
  497. $existing_properties = chado_query(
  498. "SELECT PP.".$details['property_table']."_id property_id, CVT.cvterm_id as type_id, CVT.name as type_name, CVT.definition, PP.value, PP.rank
  499. FROM {" . $details['property_table'] . "} PP
  500. INNER JOIN {cvterm} CVT ON CVT.cvterm_id = PP.type_id
  501. INNER JOIN {cv} CV ON CVT.cv_id = CV.cv_id
  502. WHERE
  503. PP." . $details['base_foreign_key'] . " = :base_key_value AND
  504. CV.cv_id = '" .$details['cv_id']. "'
  505. ORDER BY CVT.name, PP.rank",
  506. array(':base_key_value' => $details['base_key_value'])
  507. );
  508. }
  509. }
  510. /* The format of the $existing_properties array is either:
  511. *
  512. * From the chado_properties array:
  513. * $form_state['chado_properties'] = array(
  514. * '[type_id]-[rank]' => array(
  515. * 'type_id' => [the cvterm.cvterm_id value]
  516. * 'type_name' => [the cvterm.name value]
  517. * 'property_id' => [the property.property_id value, or NULL if it doesn't yet exist],
  518. * 'value' => [the BASEprop.value value],
  519. * 'rank' => [the BASEprop.rank value],
  520. * ),
  521. * );
  522. *
  523. * OR
  524. * Populated from the database:
  525. * $existing_property = array(
  526. * 0 => array(
  527. * 'property_id' => [the property.property_id value, or NULL if it doesn't yet exist],
  528. * 'type_id' => [the cvterm.cvterm_id value]
  529. * 'type_name' => [the cvterm.name value]
  530. * 'value' => [the BASEprop.value value],
  531. * 'rank' => [the BASEprop.rank value],
  532. * ),
  533. * );
  534. *
  535. * NOTE: The main difference is the key
  536. *
  537. * Loop on the array elements of the $existing_properties array and add
  538. * an element to the form for each one as long as it's also in the
  539. * $properties_options array.
  540. */
  541. foreach ($existing_properties as $property) {
  542. if (array_key_exists($property->type_id, $property_options)) {
  543. $form['properties']['property_table'][$property->type_id]['#type'] = 'markup';
  544. $form['properties']['property_table'][$property->type_id]['#value'] = '';
  545. $form['properties']['property_table'][$property->type_id][$property->rank]['#type'] = 'markup';
  546. $form['properties']['property_table'][$property->type_id][$property->rank]['#value'] = '';
  547. $form['properties']['property_table'][$property->type_id][$property->rank]['prop_type_id'] = array(
  548. '#type' => 'hidden',
  549. '#value' => $property->type_id
  550. );
  551. $form['properties']['property_table'][$property->type_id][$property->rank]['prop_value'] = array(
  552. '#type' => 'hidden',
  553. '#value' => $property->value
  554. );
  555. $form['properties']['property_table'][$property->type_id][$property->rank]['property_id'] = array(
  556. '#type' => 'hidden',
  557. '#value' => $property->property_id
  558. );
  559. $form['properties']['property_table'][$property->type_id][$property->rank]['type'] = array(
  560. '#type' => 'markup',
  561. '#markup' => $property->type_name
  562. );
  563. $form['properties']['property_table'][$property->type_id][$property->rank]['value'] = array(
  564. '#type' => 'markup',
  565. '#markup' => $property->value
  566. );
  567. $form['properties']['property_table'][$property->type_id][$property->rank]['rank'] = array(
  568. '#type' => 'markup',
  569. '#markup' => $property->rank
  570. );
  571. // remove button
  572. $form['properties']['property_table'][$property->type_id][$property->rank]['property_action'] = array(
  573. '#type' => 'submit',
  574. '#value' => t('Remove'),
  575. '#name' => "property_remove-".$property->type_id.'-'.$property->rank,
  576. '#ajax' => array(
  577. 'callback' => "chado_node_properties_form_ajax_update",
  578. 'wrapper' => 'tripal-generic-edit-properties-table',
  579. 'effect' => 'fade',
  580. 'method' => 'replace',
  581. 'prevent' => 'click'
  582. ),
  583. // When this button is clicked, the form will be validated and submitted.
  584. // Therefore, we set custom submit and validate functions to override the
  585. // default node form submit. In the validate function we validate only the
  586. // property fields and in the submit we remove the indicated property
  587. // from the chado_properties array. In order to keep validate errors
  588. // from the node form validate and Drupal required errors for non-property fields
  589. // preventing the user from removing properties we set the #limit_validation_errors below
  590. '#validate' => array('chado_node_properties_form_remove_button_validate'),
  591. '#submit' => array('chado_node_properties_form_remove_button_submit'),
  592. // Limit the validation of the form upon clicking this button to the property_table tree
  593. // No other fields will be validated (ie: no fields from the main form or any other api
  594. // added form).
  595. '#limit_validation_errors' => array(
  596. array('property_table') // Validate all fields within $form_state['values']['property_table']
  597. )
  598. );
  599. }
  600. }
  601. // Form elements for adding a new property
  602. //---------------------------------------------
  603. $form['properties']['property_table']['new'] = array(
  604. '#type' => 'markup',
  605. '#prefix' => '<span class="addtl-properties-add-new-property">',
  606. '#suffix' => '</span>'
  607. );
  608. $form['properties']['property_table']['new']['type'] = array(
  609. '#type' => 'select',
  610. '#options' => $property_options, // Set at top of form
  611. );
  612. $form['properties']['property_table']['new']['value'] = array(
  613. '#type' => 'textfield',
  614. );
  615. // add button
  616. $form['properties']['property_table']['new']['property_action'] = array(
  617. '#type' => 'submit',
  618. '#value' => t('Add'),
  619. '#name' => "property-add",
  620. '#ajax' => array(
  621. 'callback' => "chado_node_properties_form_ajax_update",
  622. 'wrapper' => 'tripal-generic-edit-properties-table',
  623. 'effect' => 'fade',
  624. 'method' => 'replace',
  625. 'prevent' => 'click'
  626. ),
  627. // When this button is clicked, the form will be validated and submitted.
  628. // Therefore, we set custom submit and validate functions to override the
  629. // default node form submit. In the validate function we validate only the
  630. // additional property fields and in the submit we add them to the chado_properties
  631. // array. In order to keep validate errors from the node form validate and Drupal
  632. // required errors for non-property fields preventing the user from adding properties we
  633. // set the #limit_validation_errors below
  634. '#validate' => array('chado_node_properties_form_add_button_validate'),
  635. '#submit' => array('chado_node_properties_form_add_button_submit'),
  636. // Limit the validation of the form upon clicking this button to the property_table tree
  637. // No other fields will be validated (ie: no fields from the main form or any other api
  638. // added form).
  639. '#limit_validation_errors' => array(
  640. array('property_table') // Validate all fields within $form_state['values']['property_table']
  641. )
  642. );
  643. }
  644. /**
  645. * Validate the user input for creating a new property
  646. * Called by the add button in chado_node_properties_form
  647. *
  648. * @ingroup tripal_chado_node_api
  649. */
  650. function chado_node_properties_form_add_button_validate($form, &$form_state) {
  651. // Ensure the type_id is supplied & Valid
  652. $cvterm = tripal_core_chado_select(
  653. 'cvterm',
  654. array('cvterm_id', 'name'),
  655. array('cvterm_id' => $form_state['values']['property_table']['new']['type'])
  656. );
  657. if (!isset($cvterm[0])) {
  658. form_set_error('property_table][new][cvterm', 'Please select a property type before attempting to add a new property.');
  659. }
  660. else {
  661. $form_state['values']['property_table']['new']['type_name'] = $cvterm[0]->name;
  662. }
  663. // Ensure value is supplied
  664. if (empty($form_state['values']['property_table']['new']['value'])) {
  665. form_set_error('property_table][new][value','You must enter the property value before attempting to add a new property.');
  666. }
  667. }
  668. /**
  669. * Called by the add button in chado_node_properties_form
  670. *
  671. * Create an array of properties in the form state. This array will then be
  672. * used to rebuild the form in subsequent builds
  673. *
  674. * @ingroup tripal_chado_node_api
  675. */
  676. function chado_node_properties_form_add_button_submit(&$form, &$form_state) {
  677. $details = unserialize($form_state['values']['property_table']['details']);
  678. // if the chado_additional_properties array is not set then this is the first time modifying the
  679. // property table. this means we need to include all the properties from the db
  680. if (!isset($form_state['chado_properties'])) {
  681. chado_node_properties_form_create_property_formstate_array($form, $form_state);
  682. }
  683. // get details for the new property
  684. $property = array(
  685. 'type_id' => $form_state['values']['property_table']['new']['type'],
  686. 'type_name' => $form_state['values']['property_table']['new']['type_name'],
  687. 'property_id' => NULL,
  688. 'value' => $form_state['values']['property_table']['new']['value'],
  689. 'rank' => '0',
  690. );
  691. // get max rank
  692. $rank = tripal_core_get_max_chado_rank(
  693. $details['property_table'],
  694. array(
  695. $details['base_foreign_key'] => $details['base_key_value'],
  696. 'type_id' => $property['type_id']
  697. )
  698. );
  699. $property['rank'] = strval($rank + 1);
  700. $key = $property['type_id'] . '-' . $property['rank'];
  701. $form_state['chado_properties'][$key] = (object) $property;
  702. $form_state['rebuild'] = TRUE;
  703. }
  704. /**
  705. * There is no user input for the remove buttons so there is no need to validate
  706. * However, both a submit & validate need to be specified so this is just a placeholder
  707. *
  708. * Called by the many remove buttons in chado_node_properties_form
  709. *
  710. * @ingroup tripal_chado_node_api
  711. */
  712. function chado_node_properties_form_remove_button_validate($form, $form_state) {
  713. // No Validation needed for remove
  714. }
  715. /**
  716. * Remove the correct property from the form
  717. * Called by the many remove buttons in chado_node_properties_form
  718. *
  719. * @ingroup tripal_chado_node_api
  720. */
  721. function chado_node_properties_form_remove_button_submit(&$form, &$form_state) {
  722. // if the chado_properties array is not set then this is the first time modifying the
  723. // property table. this means we need to include all the properties from the db
  724. if (!isset($form_state['chado_properties'])) {
  725. chado_node_properties_form_create_property_formstate_array($form, $form_state);
  726. }
  727. // remove the specified property from the form property table
  728. if(preg_match('/property_remove-([^-]+-[^-]+)/',$form_state['triggering_element']['#name'],$match)) {
  729. $key = $match[1];
  730. if (array_key_exists($key, $form_state['chado_properties'])) {
  731. unset($form_state['chado_properties'][$key]);
  732. }
  733. }
  734. $form_state['rebuild'] = TRUE;
  735. }
  736. /**
  737. * Ajax function which returns the section of the form to be re-rendered
  738. */
  739. function chado_node_properties_form_ajax_update($form, $form_state) {
  740. return $form['properties']['property_table'];
  741. }
  742. /**
  743. * Creates an array in form_state containing the existing properties. This array is
  744. * then modified by the add/remove buttons and used as a source for rebuilding the form.
  745. * This function get's called at each button (add and remove) button submits the first
  746. * time one of the button's is clicked to instantiates the $form_state['chado_properties'] array
  747. *
  748. * $form_state['chado_properties'] = array(
  749. * '[type_id]-[rank]' => array(
  750. * 'type_id' => [the cvterm.cvterm_id value]
  751. * 'type_name' => [the cvterm.name value]
  752. * 'property_id' => [the property.property_id value, or NULL if it doesn't yet exist],
  753. * 'value' => [the BASEprop.value value],
  754. * 'rank' => [the BASEprop.rank value],
  755. * ),
  756. * );
  757. *
  758. * @ingroup tripal_chado_node_api
  759. */
  760. function chado_node_properties_form_create_property_formstate_array($form, &$form_state) {
  761. $form_state['chado_properties'] = array();
  762. foreach (element_children($form['properties']['property_table']) as $type_id) {
  763. if ($type_id != 'new') {
  764. foreach (element_children($form['properties']['property_table'][$type_id]) as $rank) {
  765. $element = $form['properties']['property_table'][$type_id][$rank];
  766. $property = array(
  767. 'type_id' => $element['prop_type_id']['#value'],
  768. 'type_name' => $element['type']['#markup'],
  769. 'property_id' => $element['property_id']['#value'],
  770. 'value' => $element['value']['#markup'],
  771. 'rank' => $element['rank']['#markup']
  772. );
  773. $key = $property['type_id'] . '-' . $property['rank'];
  774. $form_state['chado_properties'][$key] = (object) $property;
  775. }
  776. }
  777. }
  778. }
  779. /**
  780. * Function to theme the add/remove properties form into a table
  781. *
  782. * @ingroup tripal_chado_node_api
  783. */
  784. function theme_chado_node_properties_form_table($variables) {
  785. $element = $variables['element'];
  786. $header = array(
  787. 'type' => t('Type'),
  788. 'value' => t('Value'),
  789. 'rank' => t('Rank'),
  790. 'property_action' => t('Actions'),
  791. );
  792. $rows = array();
  793. foreach (element_children($element) as $type_id) {
  794. if ($type_id == 'new') {
  795. $row = array();
  796. $row['data'] = array();
  797. foreach ($header as $fieldname => $title) {
  798. $row['data'][] = drupal_render($element[$type_id][$fieldname]);
  799. }
  800. $rows[] = $row;
  801. }
  802. else {
  803. foreach (element_children($element[$type_id]) as $version) {
  804. $row = array();
  805. $row['data'] = array();
  806. foreach ($header as $fieldname => $title) {
  807. $row['data'][] = drupal_render($element[$type_id][$version][$fieldname]);
  808. }
  809. $rows[] = $row;
  810. }
  811. }
  812. }
  813. return theme('table', array(
  814. 'header' => $header,
  815. 'rows' => $rows
  816. ));
  817. }
  818. /**
  819. * This function is used in a hook_insert, hook_update for a node form
  820. * when the chado node properties form has been added to the form. It retrieves all of the properties
  821. * and returns them in an array of the format:
  822. *
  823. * $dbxefs[<type_id>][<rank>] = <value>
  824. *
  825. * This array can then be used for inserting or updating properties
  826. *
  827. * @param $node
  828. *
  829. * @return
  830. * A property array
  831. *
  832. * @ingroup tripal_chado_node_api
  833. */
  834. function chado_node_properties_form_retreive($node) {
  835. $properties = array();
  836. if (isset($node->property_table)) {
  837. foreach ($node->property_table as $type_id => $elements) {
  838. if ($type_id != 'new' AND $type_id != 'details') {
  839. foreach ($elements as $rank => $element) {
  840. $properties[$type_id][$rank] = $element['prop_value'];
  841. }
  842. }
  843. }
  844. }
  845. return $properties;
  846. }
  847. /**
  848. * This function is used in hook_insert or hook_update and handles inserting of any new
  849. * properties
  850. *
  851. * @param $node
  852. * The node passed into hook_insert & hook_update
  853. * @param $details
  854. * - property_table: the name of the _property linking table (ie: feature_property)
  855. * - base_table: the name of the base table (ie: feature)
  856. * - foreignkey_name: the name of the foreign key used to link to the node content (ie: feature_id)
  857. * - foreignkey_value: the value of the foreign key (ie: 445, if there exists a feature where feature_id=445)
  858. * @param $retrieved_properties
  859. * An array of properties from chado_node_properties_form_retreive($node). This can be used if you need
  860. * special handling for some of the properties (See FeatureMap chado_featuremap_insert for an example)
  861. *
  862. * @ingroup tripal_chado_node_api
  863. */
  864. function chado_node_properties_form_update_properties($node, $details, $retrieved_properties = FALSE) {
  865. $details['foreignkey_value'] = (isset($details['foreignkey_value'])) ? $details['foreignkey_value'] : 0;
  866. if (isset($node->property_table) AND ($details['foreignkey_value'] > 0)) {
  867. // First remove existing property links
  868. tripal_core_chado_delete($details['property_table'], array($details['foreignkey_name'] => $details['foreignkey_value']));
  869. // Add back in property links and insert properties as needed
  870. if ($retrieved_properties) {
  871. $properties = $retrieved_properties;
  872. }
  873. else {
  874. $properties = chado_node_properties_form_retreive($node);
  875. }
  876. foreach ($properties as $type_id => $ranks) {
  877. foreach ($ranks as $rank => $value) {
  878. $success = tripal_core_chado_insert(
  879. $details['property_table'],
  880. array(
  881. $details['foreignkey_name'] => $details['foreignkey_value'],
  882. 'type_id' => $type_id,
  883. 'value' => $value,
  884. 'rank' => $rank
  885. )
  886. );
  887. if (!$success) {
  888. watchdog(
  889. 'tripal_' . $details['base_table'],
  890. $details['base_table'] . ' Insert: Unable to insert property type_id %cvterm with value %value.',
  891. array('%cvterm' => $type_id, '%value' => $value),
  892. WATCHDOG_ERROR
  893. );
  894. }
  895. }
  896. }
  897. }
  898. }