tripal_core.chado_nodes.properties.api.inc 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904
  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. 'chado_id_field' => 'example_id', // key to link to the chado content created by this node
  29. 'chado_id' => $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_add_node_form_properties($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. * Provides a form for adding to BASEprop table
  77. *
  78. * @param $form
  79. * The Drupal form array into which the property form elements will be added
  80. * @param $form_state
  81. * The corresponding form_state array for the form
  82. * @param $details
  83. * An array defining details used by this form.
  84. * Required keys that are always required:
  85. * - property_table: the name of the property table (e.g.: featureprop, stockprop, etc.)
  86. * Required keys for forms that update a record.
  87. * - chado_id: the id of the record to which properties will be associated (e.g.: if a
  88. * feature has a feature_id of 999 and we want to associate properties for that feature
  89. * then the chado_id option should be 999)
  90. * Require ONE of the following to identify the controlled vocabulary containing the properties to use:
  91. * - cv_id: the unique key from the cv table
  92. * - cv_name: the cv.name field uniquely identifying the controlled vocabulary
  93. * Optional keys include:
  94. * - chado_id_field: the foreign key field that links properties to the
  95. * chado_id record. If this value is not specified it is determined using the
  96. * traditional Chado naming scheme for property tables.
  97. * - additional_instructions: provides additional instructions to the user
  98. * for dealing with the property elements. These instructions are appended
  99. * to the default instructions
  100. * - fieldset_title: An alternate name for the fieldset in which the properties
  101. * form is placed. By default the title is 'Properties'.
  102. * - default_properties: An array of properties used to initialize the
  103. * properties form. Each property shoudl be represented as an array with
  104. * the following keys and values:
  105. * 'cvterm': The cvterm object for the property type
  106. * 'value': The property value
  107. * - select_options: an array of terms to use for the drop down select box.
  108. * this array will be used rather than populating the drop down with terms
  109. * from the named vocabulary. The array must have keys with the cvterm_id
  110. * and values with the cvterm name.
  111. *
  112. * @ingroup tripal_chado_node_api
  113. */
  114. function chado_add_node_form_properties(&$form, &$form_state, $details) {
  115. // Set defaults for optional fields
  116. if (!array_key_exists('fieldset_title', $details)){
  117. $details['fieldset_title'] = 'Properties';
  118. }
  119. if (!array_key_exists('additional_instructions', $details)){
  120. $details['additional_instructions'] = '';
  121. };
  122. if (!array_key_exists('default_properties', $details)){
  123. $details['default_properties'] = array();
  124. };
  125. if (!is_array($details['default_properties'])) {
  126. drupal_set_message("The 'default_properties' option must be an array", "error");
  127. tripal_report_error('tcprops_form', TRIPAL_ERROR,
  128. "The 'default_properties' option must be an array",
  129. array());
  130. return;
  131. }
  132. // make sure the property table exists before proceeding.
  133. if (!chado_table_exists($details['property_table'])) {
  134. drupal_set_message("Cannot add property elements to the form. The property table, '" .
  135. $details['property_table'] . "', does not exists", "error");
  136. tripal_report_error('tcprops_form', TRIPAL_ERROR,
  137. "Cannot add property elements to the form. The property table, '%name', cannot be found.",
  138. array('%name' => $details['property_table']));
  139. return;
  140. }
  141. // if the chado_id_field is not specified then set it using the
  142. // typical chado naming scheme
  143. if (!array_key_exists('chado_id_field', $details)) {
  144. $chado_id_table = preg_replace('/prop$/', '', $details['property_table']);
  145. $chado_id_field = $chado_id_table . '_id';
  146. $details['chado_id_field'] = $chado_id_field;
  147. }
  148. // make sure the specified cv exists
  149. if (isset($details['cv_name'])) {
  150. // make sure the cv_name is real
  151. $result = chado_select_record('cv',array('cv_id'),array('name' => $details['cv_name']));
  152. if (count($result) == 0) {
  153. drupal_set_message("Cannot add property elements to the form. The CV name, '" .
  154. $details['cv_name'] . "', does not exists", "error");
  155. tripal_report_error('tcprops_form', TRIPAL_ERROR,
  156. "Cannot add property elements to the form. The CV named, '%name', cannot be found.",
  157. array('%name' => $details['cv_name']));
  158. return;
  159. }
  160. // add the cv_id option to the details array
  161. $details['cv_id'] = $result[0]->cv_id;
  162. }
  163. elseif (isset($details['cv_id'])) {
  164. // make sure the cv_id is real
  165. $result = chado_select_record('cv', array('name'), array('cv_id' => $details['cv_id']));
  166. if (count($result) == 0) {
  167. drupal_set_message("Cannot add property elements to the form. The CV ID, '" .
  168. $details['cv_id'] . "', does not exist", "error");
  169. tripal_report_error('tcprops_form', TRIPAL_ERROR,
  170. "Cannot add property elements to the form. The CV ID, '%id', cannot be found.",
  171. array('%id' => $details['cv_id']));
  172. return;
  173. }
  174. // add the cv_name option to the details array
  175. $details['cv_name'] = $result[0]->name;
  176. }
  177. else {
  178. // If we didn't get given a cv identifier, then try retrieving the default one
  179. // using the new cv defaults api
  180. $default_cv = tripal_get_default_cv($details['property_table'], 'type_id');
  181. if (!empty($default_cv)) {
  182. $details['cv_id'] = $default_cv->cv_id;
  183. $details['cv_name'] = $default_cv->name;
  184. }
  185. else {
  186. $default_form_link = l('vocabulary defaults configuration page',
  187. 'admin/tripal/chado/tripal_cv/defaults',
  188. array('attributes' => array('target' => '_blank')));
  189. $message = "There is not a default vocabulary set for Property Types. Please set one using the $default_form_link.";
  190. if (preg_match('/(\w+)_id/',$details['chado_id_field'],$matches)) {
  191. $table = $matches[1];
  192. $table = ucwords(str_replace('_',' ',$table));
  193. $message = "There is not a default vocabulary set for $table Property Types. Please set one using the $default_form_link.";
  194. }
  195. tripal_set_message($message, TRIPAL_WARNING);
  196. tripal_report_error('tcprops_form', TRIPAL_ERROR,
  197. "Please provide either a 'cv_name' or 'cv_id' as an option for adding properties to the form",
  198. array());
  199. }
  200. return;
  201. }
  202. // Get property types for the select list. If the user has provided a set
  203. // then use those, otherwise get them from the cvterm table for specified cv.
  204. if (array_key_exists('select_options', $details) and
  205. is_array($details['select_options'])) {
  206. $property_options = $details['select_options'];
  207. }
  208. // if the select options are not provided then try to get them on our own
  209. else {
  210. // if the vocabulary name is provided in the details then use that to
  211. // get the terms
  212. if (isset($details['cv_name'])) {
  213. $property_options = array();
  214. $property_options[] = 'Select a Property';
  215. $sql = "
  216. SELECT DISTINCT CVT.cvterm_id, CVT.name, CVT.definition, CV.cv_id as cv_id
  217. FROM {cvterm} CVT
  218. INNER JOIN {cv} CV ON CVT.cv_id = CV.cv_id
  219. WHERE
  220. CV.name = :cv_name AND
  221. NOT CVT.is_obsolete = 1
  222. ORDER BY CVT.name ASC
  223. ";
  224. $prop_types = chado_query($sql, array(':cv_name' => $details['cv_name']));
  225. while ($prop = $prop_types->fetchObject()) {
  226. $property_options[$prop->cvterm_id] = $prop->name;
  227. }
  228. }
  229. // if the cv_id is set in the $details array then use that to get the terms
  230. elseif (isset($details['cv_id'])) {
  231. $property_options = array();
  232. $property_options[] = 'Select a Property';
  233. $sql = "
  234. SELECT DISTINCT CVT.cvterm_id, CVT.name, CVT.definition, CV.name as cv_name
  235. FROM {cvterm} CVT
  236. INNER JOIN {cv} CV ON CVT.cv_id = CV.cv_id
  237. WHERE
  238. CV.cv_id = :cv_id AND
  239. NOT CVT.is_obsolete = 1
  240. ORDER BY CVT.name ASC
  241. ";
  242. $prop_types = chado_query($sql, array(':cv_id' => $details['cv_id']));
  243. while ($prop = $prop_types->fetchObject()) {
  244. $property_options[$prop->cvterm_id] = $prop->name;
  245. }
  246. }
  247. }
  248. // Tell tripal administrators how to add terms to the property types drop down.
  249. if (empty($property_options)) {
  250. $tripal_message = tripal_set_message(
  251. t('There are currently no property types! To add properties to the drop
  252. down list, you need to <a href="@cvtermlink">add a controlled vocabulary term</a>
  253. to the %cv_name controlled vocabulary.',
  254. array(
  255. '%cv_name' => $details['cv_name'],
  256. '@cvtermlink' => url('admin/tripal/chado/tripal_cv/cv/' . $details['cv_id'] . '/cvterm/add')
  257. )
  258. ),
  259. TRIPAL_NOTICE,
  260. array('return_html' => TRUE)
  261. );
  262. }
  263. else {
  264. $tripal_message = tripal_set_message(
  265. t('To add additional properties to the drop down list, you need to <a href="@cvtermlink">add
  266. a controlled vocabulary term</a> to the %cv_name controlled vocabulary.',
  267. array(
  268. '%cv_name' => $details['cv_name'],
  269. '@cvtermlink' => url('admin/tripal/chado/tripal_cv/cv/' . $details['cv_id'] . '/cvterm/add')
  270. )
  271. ),
  272. TRIPAL_INFO,
  273. array('return_html' => TRUE)
  274. );
  275. }
  276. // Group all of the chado node api fieldsets into vertical tabs.
  277. $form['chado_node_api'] = array(
  278. '#type' => 'vertical_tabs',
  279. '#attached' => array(
  280. 'css' => array(
  281. 'chado-node-api' => drupal_get_path('module', 'tripal_core') . '/theme/css/chado_node_api.css',
  282. ),
  283. ),
  284. );
  285. // the fieldset of the property elements
  286. $form['properties'] = array(
  287. '#type' => 'fieldset',
  288. '#title' => t($details['fieldset_title']),
  289. '#description' => t('Add properties by selecting a type
  290. from the dropdown, enter a value and click the "Add" button. To
  291. remove a property, click the remove button.' . $details['additional_instructions']),
  292. '#collapsible' => TRUE,
  293. '#collapsed' => TRUE,
  294. '#group' => 'chado_node_api',
  295. '#weight' => 8,
  296. '#attributes' => array('class' => array('chado-node-api','properties')),
  297. '#attached' => array(
  298. 'js' => array(
  299. 'chado-node-api-vertical-tabs' => drupal_get_path('module', 'tripal_core') . '/theme/js/chadoNodeApi_updateVerticalTabSummary.js',
  300. ),
  301. ),
  302. );
  303. $form['properties']['admin_message'] = array(
  304. '#type' => 'markup',
  305. '#markup' => $tripal_message
  306. );
  307. // this form element is a tree, so that we don't puke all of the values into then node variable
  308. // it is set as a tree, and keeps them in the $form_state['values']['property_table'] heading.
  309. $form['properties']['property_table'] = array(
  310. '#type' => 'markup',
  311. '#tree' => TRUE,
  312. '#prefix' => '<div id="tripal-generic-edit-properties-table">',
  313. '#suffix' => '</div>',
  314. '#theme' => 'chado_node_properties_form_table'
  315. );
  316. // Add defaults into form_state to be used elsewhere
  317. $form['properties']['property_table']['details'] = array(
  318. '#type' => 'hidden',
  319. '#value' => serialize($details)
  320. );
  321. /* Properties can come to us in two ways:
  322. * 1) As entries in the $details['default_properties'] option
  323. *
  324. * 2) In the form state in the $form_state['chado_properties']. Data is in this field
  325. * when an AJAX call updates the form state or a validation error.
  326. *
  327. * 3) Directly from the database if the record already has properties associated. This
  328. * data is only used the first time the form is loaded. On AJAX calls or validation
  329. * errors the fields on the form are populated from the $form_state['chado_properties']
  330. * entry.
  331. */
  332. if (isset($form_state['chado_properties'])) {
  333. $existing_properties = $form_state['chado_properties'];
  334. }
  335. else {
  336. // build the SQL for extracting properties already assigned to this record
  337. $sql_args = array();
  338. $sql_args[':chado_id'] = $details['chado_id'];
  339. if (array_key_exists('cv_name', $details)) {
  340. $cv_where = "CV.name = :cvname";
  341. $sql_args[':cvname'] = $details['cv_name'];
  342. }
  343. elseif (array_key_exists('cv_id', $details)) {
  344. $cv_where = "CV.cv_id = :cvid";
  345. $sql_args[':cvid'] = $details['cv_id'];
  346. }
  347. $existing_properties = chado_query(
  348. "SELECT
  349. PP.".$details['property_table']."_id property_id,
  350. CVT.cvterm_id as type_id,
  351. CVT.name as type_name,
  352. CVT.definition,
  353. PP.value,
  354. PP.rank
  355. FROM {" . $details['property_table'] . "} PP
  356. INNER JOIN {cvterm} CVT ON CVT.cvterm_id = PP.type_id
  357. INNER JOIN {cv} CV ON CVT.cv_id = CV.cv_id
  358. WHERE
  359. PP." . $details['chado_id_field'] . " = :chado_id AND
  360. $cv_where
  361. ORDER BY CVT.name, PP.rank", $sql_args)->fetchAll();
  362. // next add in any default properties
  363. if (array_key_exists('default_properties', $details)) {
  364. // next iterate through each of the default properties and create a new
  365. // stdClass array that contains the fields needed.
  366. foreach ($details['default_properties'] as $property) {
  367. $new_prop = new stdClass();
  368. $new_prop->type_id = $property['cvterm']->cvterm_id;
  369. $new_prop->type_name = $property['cvterm']->name;
  370. $new_prop->definition = $property['cvterm']->definition;
  371. $new_prop->value = $property['value'];
  372. $new_prop->property_id = 'TEMP' . uniqid();
  373. $new_prop->rank = 'TEMP' . uniqid();
  374. $existing_properties[] = $new_prop;
  375. }
  376. }
  377. }
  378. /* The format of the $existing_properties array is either:
  379. *
  380. * From the chado_properties array:
  381. * $form_state['chado_properties'] = array(
  382. * '[type_id]-[rank]' => array(
  383. * 'type_id' => [the cvterm.cvterm_id value]
  384. * 'type_name' => [the cvterm.name value]
  385. * 'property_id' => [the property.property_id value, or temporary value if it doesn't yet exist],
  386. * 'value' => [the BASEprop.value value],
  387. * 'rank' => [the BASEprop.rank value or NULL if not saved yet],
  388. * ),
  389. * );
  390. *
  391. * OR
  392. * Populated from the database:
  393. * $existing_property = array(
  394. * 0 => array(
  395. * 'property_id' => [the property.property_id value],
  396. * 'type_id' => [the cvterm.cvterm_id value]
  397. * 'type_name' => [the cvterm.name value]
  398. * 'value' => [the BASEprop.value value],
  399. * 'rank' => [the BASEprop.rank value],
  400. * ),
  401. * );
  402. *
  403. * NOTE: The main difference is the key
  404. *
  405. * Loop on the array elements of the $existing_properties array and add
  406. * an element to the form for each one as long as it's also in the
  407. * $properties_options array.
  408. */
  409. $num_properties = 0;
  410. foreach ($existing_properties as $property) {
  411. if (array_key_exists($property->type_id, $property_options)) {
  412. $num_properties++;
  413. $form['properties']['property_table'][$property->type_id]['#type'] = 'markup';
  414. $form['properties']['property_table'][$property->type_id]['#value'] = '';
  415. $form['properties']['property_table'][$property->type_id][$property->property_id]['#type'] = 'markup';
  416. $form['properties']['property_table'][$property->type_id][$property->property_id]['#value'] = '';
  417. $form['properties']['property_table'][$property->type_id][$property->property_id]['#attributes'] = array(
  418. 'class' => array('property', 'saved')
  419. );
  420. // Determine whether this property is unsaved or not.
  421. // We can tell this by looking at the property_id: if it's not
  422. // saved yet we will have entered a TEMP###.
  423. if (preg_match('/^TEMP/', $property->property_id)) {
  424. $form['properties']['property_table'][$property->type_id][$property->property_id]['#attributes'] = array(
  425. 'class' => array('property', 'unsaved')
  426. );
  427. }
  428. $form['properties']['property_table'][$property->type_id][$property->property_id]['prop_type_id'] = array(
  429. '#type' => 'hidden',
  430. '#value' => $property->type_id
  431. );
  432. $form['properties']['property_table'][$property->type_id][$property->property_id]['prop_value'] = array(
  433. '#type' => 'hidden',
  434. '#value' => $property->value
  435. );
  436. $form['properties']['property_table'][$property->type_id][$property->property_id]['prop_rank'] = array(
  437. '#type' => 'hidden',
  438. '#value' => $property->rank
  439. );
  440. $form['properties']['property_table'][$property->type_id][$property->property_id]['property_id'] = array(
  441. '#type' => 'hidden',
  442. '#value' => $property->property_id
  443. );
  444. $form['properties']['property_table'][$property->type_id][$property->property_id]['type'] = array(
  445. '#type' => 'markup',
  446. '#markup' => $property->type_name
  447. );
  448. // If a definition is available we want to add that to the type column
  449. // to make it easier for users to determine what an added property means.
  450. if (isset($property->definition)) {
  451. $form['properties']['property_table'][$property->type_id][$property->property_id]['type']['#markup'] = $property->type_name . '<br><i>' . $property->definition . '</i>';
  452. }
  453. $form['properties']['property_table'][$property->type_id][$property->property_id]['value'] = array(
  454. '#type' => 'markup',
  455. '#markup' => $property->value,
  456. );
  457. $form['properties']['property_table'][$property->type_id][$property->property_id]['rank'] = array(
  458. '#type' => 'markup',
  459. '#markup' => $property->rank
  460. );
  461. // remove button
  462. $form['properties']['property_table'][$property->type_id][$property->property_id]['property_action'] = array(
  463. '#type' => 'submit',
  464. '#value' => t('Remove'),
  465. '#name' => "properties_remove-".$property->type_id.'-'.$property->property_id,
  466. '#ajax' => array(
  467. 'callback' => "chado_add_node_form_subtable_ajax_update",
  468. 'wrapper' => 'tripal-generic-edit-properties-table',
  469. 'effect' => 'fade',
  470. 'method' => 'replace',
  471. 'prevent' => 'click'
  472. ),
  473. // When this button is clicked, the form will be validated and submitted.
  474. // Therefore, we set custom submit and validate functions to override the
  475. // default node form submit. In the validate function we validate only the
  476. // property fields and in the submit we remove the indicated property
  477. // from the chado_properties array. In order to keep validate errors
  478. // from the node form validate and Drupal required errors for non-property fields
  479. // preventing the user from removing properties we set the #limit_validation_errors below
  480. '#validate' => array('chado_add_node_form_subtables_remove_button_validate'),
  481. '#submit' => array('chado_add_node_form_subtables_remove_button_submit'),
  482. // Limit the validation of the form upon clicking this button to the property_table tree
  483. // No other fields will be validated (ie: no fields from the main form or any other api
  484. // added form).
  485. '#limit_validation_errors' => array(
  486. array('property_table') // Validate all fields within $form_state['values']['property_table']
  487. ),
  488. );
  489. }
  490. }
  491. // Quickly add a hidden field stating how many properties are currently added.
  492. $form['properties']['num_properties'] = array(
  493. '#type' => 'hidden',
  494. '#value' => $num_properties,
  495. '#attributes' => array('class' => 'num-properties')
  496. );
  497. // Form elements for adding a new property
  498. //---------------------------------------------
  499. $form['properties']['property_table']['new'] = array(
  500. '#type' => 'markup',
  501. '#prefix' => '<span class="addtl-properties-add-new-property">',
  502. '#suffix' => '</span>'
  503. );
  504. // get the value selected (only works on AJAX call) and print the
  505. // description
  506. $type_desc = '';
  507. if (isset($form_state['input']['property_table']['new']['type'])) {
  508. $new_type_id = $form_state['input']['property_table']['new']['type'];
  509. $new_term = tripal_get_cvterm(array('cvterm_id' => $new_type_id));
  510. if ($new_term) {
  511. $type_desc = $new_term->definition;
  512. }
  513. }
  514. $form['properties']['property_table']['new']['type'] = array(
  515. '#type' => 'select',
  516. '#options' => $property_options, // Set at top of form
  517. '#prefix' => '<span id="tripal-generic-edit-properties-new-desc">',
  518. '#suffix' => '<i>' . $type_desc . '</i></span>',
  519. '#ajax' => array(
  520. 'callback' => "chado_add_node_form_properties_ajax_desc",
  521. 'wrapper' => 'tripal-generic-edit-properties-new-desc',
  522. 'effect' => 'fade',
  523. 'method' => 'replace',
  524. ),
  525. );
  526. $form['properties']['property_table']['new']['value'] = array(
  527. '#type' => 'textarea',
  528. '#rows' => 2,
  529. );
  530. // add button
  531. $form['properties']['property_table']['new']['property_action'] = array(
  532. '#type' => 'submit',
  533. '#value' => t('Add'),
  534. '#name' => "properties-add",
  535. '#ajax' => array(
  536. 'callback' => "chado_add_node_form_subtable_ajax_update",
  537. 'wrapper' => 'tripal-generic-edit-properties-table',
  538. 'effect' => 'fade',
  539. 'method' => 'replace',
  540. 'prevent' => 'click'
  541. ),
  542. // When this button is clicked, the form will be validated and submitted.
  543. // Therefore, we set custom submit and validate functions to override the
  544. // default node form submit. In the validate function we validate only the
  545. // additional property fields and in the submit we add them to the chado_properties
  546. // array. In order to keep validate errors from the node form validate and Drupal
  547. // required errors for non-property fields preventing the user from adding properties we
  548. // set the #limit_validation_errors below
  549. '#validate' => array('chado_add_node_form_subtables_add_button_validate'),
  550. '#submit' => array('chado_add_node_form_subtables_add_button_submit'),
  551. // Limit the validation of the form upon clicking this button to the property_table tree
  552. // No other fields will be validated (ie: no fields from the main form or any other api
  553. // added form).
  554. '#limit_validation_errors' => array(
  555. array('property_table') // Validate all fields within $form_state['values']['property_table']
  556. )
  557. );
  558. }
  559. /**
  560. * Validate the user input for creating a new property
  561. * Called by the add button in chado_add_node_form_properties
  562. *
  563. * @ingroup tripal_core
  564. */
  565. function chado_add_node_form_properties_add_button_validate($form, &$form_state) {
  566. // Ensure the type_id is supplied & Valid
  567. $cvterm = chado_select_record(
  568. 'cvterm',
  569. array('cvterm_id', 'name', 'definition'),
  570. array('cvterm_id' => $form_state['values']['property_table']['new']['type'])
  571. );
  572. if (!isset($cvterm[0])) {
  573. form_set_error('property_table][new][cvterm', 'Please select a property type before attempting to add a new property.');
  574. }
  575. else {
  576. $form_state['values']['property_table']['new']['type_name'] = $cvterm[0]->name;
  577. $form_state['values']['property_table']['new']['definition'] = $cvterm[0]->definition;
  578. }
  579. // Ensure value is supplied
  580. if (empty($form_state['values']['property_table']['new']['value'])) {
  581. form_set_error('property_table][new][value','You must enter the property value before attempting to add a new property.');
  582. }
  583. }
  584. /**
  585. * Called by the add button in chado_add_node_form_properties
  586. *
  587. * Create an array of properties in the form state. This array will then be
  588. * used to rebuild the form in subsequent builds
  589. *
  590. * @ingroup tripal_core
  591. */
  592. function chado_add_node_form_properties_add_button_submit($form, &$form_state) {
  593. $details = unserialize($form_state['values']['property_table']['details']);
  594. // if the chado_additional_properties array is not set then this is the first time modifying the
  595. // property table. this means we need to include all the properties from the db
  596. if (!isset($form_state['chado_properties'])) {
  597. chado_add_node_form_properties_create_property_formstate_array($form, $form_state);
  598. }
  599. // get details for the new property
  600. $property = array(
  601. 'type_id' => $form_state['values']['property_table']['new']['type'],
  602. 'type_name' => $form_state['values']['property_table']['new']['type_name'],
  603. 'definition' => $form_state['values']['property_table']['new']['definition'],
  604. 'property_id' => 'TEMP' . uniqid(),
  605. 'value' => $form_state['values']['property_table']['new']['value'],
  606. 'rank' => 'TEMP' . uniqid(),
  607. );
  608. $key = $property['type_id'] . '-' . $property['property_id'];
  609. $form_state['chado_properties'][$key] = (object) $property;
  610. // we don't want the new element to pick up the values from the previous element so wipe them out
  611. unset($form_state['input']['property_table']['new']['type']);
  612. unset($form_state['input']['property_table']['new']['type_name']);
  613. unset($form_state['input']['property_table']['new']['definition']);
  614. unset($form_state['input']['property_table']['new']['value']);
  615. }
  616. /**
  617. * Called by the many remove buttons in chado_add_node_form_properties
  618. *
  619. * @ingroup tripal_core
  620. */
  621. function chado_add_node_form_properties_remove_button_validate($form, &$form_state) {
  622. // No validation needed.
  623. }
  624. /**
  625. * Remove the correct property from the form
  626. * Called by the many remove buttons in chado_add_node_form_properties
  627. *
  628. * @ingroup tripal_core
  629. */
  630. function chado_add_node_form_properties_remove_button_submit(&$form, &$form_state) {
  631. // if the chado_properties array is not set then this is the first time modifying the
  632. // property table. this means we need to include all the properties from the db
  633. if (!isset($form_state['chado_properties'])) {
  634. chado_add_node_form_properties_create_property_formstate_array($form, $form_state);
  635. }
  636. // remove the specified property from the form property table
  637. if(preg_match('/properties_remove-([^-]+-[^-]+)/',$form_state['triggering_element']['#name'],$match)) {
  638. $key = $match[1];
  639. if (array_key_exists($key, $form_state['chado_properties'])) {
  640. unset($form_state['chado_properties'][$key]);
  641. }
  642. }
  643. }
  644. function chado_add_node_form_properties_ajax_desc($form, $form_state) {
  645. return $form['properties']['property_table']['new']['type'];
  646. }
  647. /**
  648. * Creates an array in form_state containing the existing properties. This array is
  649. * then modified by the add/remove buttons and used as a source for rebuilding the form.
  650. * This function get's called at each button (add and remove) button submits the first
  651. * time one of the button's is clicked to instantiates the $form_state['chado_properties'] array
  652. *
  653. * $form_state['chado_properties'] = array(
  654. * '[type_id]-[rank]' => array(
  655. * 'type_id' => [the cvterm.cvterm_id value]
  656. * 'type_name' => [the cvterm.name value]
  657. * 'property_id' => [the property.property_id value, or NULL if it doesn't yet exist],
  658. * 'value' => [the BASEprop.value value],
  659. * 'rank' => [the BASEprop.rank value],
  660. * ),
  661. * );
  662. *
  663. * @ingroup tripal_core
  664. */
  665. function chado_add_node_form_properties_create_property_formstate_array($form, &$form_state) {
  666. $form_state['chado_properties'] = array();
  667. foreach (element_children($form['properties']['property_table']) as $type_id) {
  668. if ($type_id != 'new') {
  669. foreach (element_children($form['properties']['property_table'][$type_id]) as $property_id) {
  670. $element = $form['properties']['property_table'][$type_id][$property_id];
  671. $property = array(
  672. 'type_id' => $element['prop_type_id']['#value'],
  673. 'type_name' => $element['type']['#markup'],
  674. 'property_id' => $element['property_id']['#value'],
  675. 'value' => $element['value']['#markup'],
  676. 'rank' => $element['rank']['#markup']
  677. );
  678. $key = $property['type_id'] . '-' . $property['property_id'];
  679. $form_state['chado_properties'][$key] = (object) $property;
  680. }
  681. }
  682. }
  683. }
  684. /**
  685. * Function to theme the add/remove properties form into a table
  686. *
  687. * @ingroup tripal_chado_node_api
  688. */
  689. function theme_chado_add_node_form_properties($variables) {
  690. $element = $variables['element'];
  691. $header = array(
  692. 'type' => array('data' => t('Type'), 'width' => '30%'),
  693. 'value' => array('data' => t('Value'), 'width' => '50%'),
  694. 'property_action' => array('data' => t('Actions'),'width' => '20%'),
  695. );
  696. $rows = array();
  697. foreach (element_children($element) as $type_id) {
  698. if ($type_id == 'new') {
  699. $row = array();
  700. $row['data'] = array();
  701. foreach ($header as $fieldname => $title) {
  702. $row['data'][] = drupal_render($element[$type_id][$fieldname]);
  703. }
  704. $rows[] = $row;
  705. }
  706. else {
  707. foreach (element_children($element[$type_id]) as $version) {
  708. $row = array();
  709. $row['data'] = array();
  710. $row['class'] = $element[$type_id][$version]['#attributes']['class'];
  711. foreach ($header as $fieldname => $title) {
  712. $row['data'][] = drupal_render($element[$type_id][$version][$fieldname]);
  713. }
  714. $rows[] = $row;
  715. }
  716. }
  717. }
  718. return theme('table', array(
  719. 'header' => $header,
  720. 'rows' => $rows
  721. ));
  722. }
  723. /**
  724. * This function is used in a hook_insert, hook_update for a node form
  725. * when the chado node properties form has been added to the form. It retrieves all of the properties
  726. * and returns them in an array of the format:
  727. *
  728. * $dbxefs[<type_id>][<rank>] = <value>
  729. *
  730. * This array can then be used for inserting or updating properties
  731. *
  732. * @param $node
  733. *
  734. * @return
  735. * A property array
  736. *
  737. * @ingroup tripal_chado_node_api
  738. */
  739. function chado_retrieve_node_form_properties($node) {
  740. $properties = array();
  741. if (isset($node->property_table)) {
  742. foreach ($node->property_table as $type_id => $elements) {
  743. if ($type_id != 'new' AND $type_id != 'details') {
  744. foreach ($elements as $property_id => $element) {
  745. $properties[$type_id][$element['prop_rank']] = $element['prop_value'];
  746. }
  747. }
  748. }
  749. }
  750. return $properties;
  751. }
  752. /**
  753. * This function is used in hook_insert or hook_update and handles inserting of any new
  754. * properties
  755. *
  756. * @param $node
  757. * The node passed into hook_insert & hook_update
  758. * @param $details
  759. * - property_table: the name of the _property linking table (ie: feature_property)
  760. * - base_table: the name of the base table (ie: feature)
  761. * - foreignkey_name: the name of the foreign key used to link to the node content (ie: feature_id)
  762. * - foreignkey_value: the value of the foreign key (ie: 445, if there exists a feature where feature_id=445)
  763. * @param $retrieved_properties
  764. * An array of properties from chado_retrieve_node_form_properties($node). This can be used if you need
  765. * special handling for some of the properties (See FeatureMap chado_featuremap_insert for an example)
  766. *
  767. * @ingroup tripal_chado_node_api
  768. */
  769. function chado_update_node_form_properties($node, $details, $retrieved_properties = FALSE) {
  770. $details['foreignkey_value'] = (isset($details['foreignkey_value'])) ? $details['foreignkey_value'] : 0;
  771. if (isset($node->property_table) AND ($details['foreignkey_value'] > 0)) {
  772. // First remove existing property links
  773. chado_delete_record($details['property_table'], array($details['foreignkey_name'] => $details['foreignkey_value']));
  774. // Add back in property links and insert properties as needed
  775. if ($retrieved_properties) {
  776. $properties = $retrieved_properties;
  777. }
  778. else {
  779. $properties = chado_retrieve_node_form_properties($node);
  780. }
  781. foreach ($properties as $type_id => $ranks) {
  782. foreach ($ranks as $rank => $value) {
  783. if (preg_match('/^TEMP/', $rank)) {
  784. $rank = chado_get_table_max_rank(
  785. $details['property_table'],
  786. array(
  787. $details['foreignkey_name'] => $details['foreignkey_value'],
  788. 'type_id' => $type_id
  789. )
  790. );
  791. $rank = strval($rank + 1);
  792. }
  793. $success = chado_insert_record(
  794. $details['property_table'],
  795. array(
  796. $details['foreignkey_name'] => $details['foreignkey_value'],
  797. 'type_id' => $type_id,
  798. 'value' => $value,
  799. 'rank' => $rank
  800. )
  801. );
  802. if (!$success) {
  803. tripal_report_error('tripal_' . $details['base_table'], TRIPAL_ERROR,
  804. $details['base_table'] . ' Insert: Unable to insert property type_id %cvterm with value %value.',
  805. array('%cvterm' => $type_id, '%value' => $value));
  806. }
  807. }
  808. }
  809. }
  810. }