tripal_core.chado_nodes.api.inc 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872
  1. <?php
  2. /**
  3. * @file
  4. * API to handle much of the common functionality implemented when creating a drupal node type.
  5. */
  6. /**
  7. * @defgroup tripal_chado_node_api Chado Node API
  8. * @ingroup tripal_chado_api
  9. * @{
  10. * Many Tripal modules implement Drupal node types as a means of displaying chado
  11. * records individually through Drupal as a single web page. In order to do this, many of
  12. * the same drupal hooks are implemented and the code between modules is actually quite
  13. * similar. This API aims to abstract much of the common functionality in order to make
  14. * it easier for new Tripal modules to implement drupal node types and to centralize the
  15. * maintenance effort as much as possible.
  16. *
  17. * A generic sync form has been created. See chado_node_sync_form() for
  18. * instructions on how to implement this form in your module.
  19. *
  20. * Many of the base chado tables also have associated prop, _dbxref and _relationship
  21. * tables. Generic mini-forms have been created to help you handle these forms. To
  22. * implement this functionality you call the mini-form from your module node form and
  23. * then call the associated update functions from both your hook_insert and hook_update.
  24. * The functions of interest are as follows:
  25. * - chado_add_node_form_properties() and chado_update_node_form_properties()
  26. * to provide an interface for adding/removing properties
  27. * - chado_add_node_form_dbxrefs() and chado_update_node_form_dbxrefs()
  28. * to provide an interface for adding/removing additional database references
  29. * - chado_add_node_form_relationships() and chado_update_node_form_relationships()
  30. * to provide an interface for adding/removing relationships between chado records
  31. * from your base table
  32. * @}
  33. */
  34. /**
  35. * Get chado id for a node. E.g, if you want to get 'analysis_id' from the
  36. * 'analysis' table for a synced 'chado_analysis' node, (the same for
  37. * organisms and features):
  38. * $analysis_id = chado_get_id_from_nid ('analysis', $node->nid)
  39. * $organism_id = chado_get_id_from_nid ('organism', $node->nid)
  40. * $feature_id = chado_get_id_from_nid ('feature', $node->nid)
  41. *
  42. * @param $table
  43. * The chado table the chado record is from
  44. * @param $nid
  45. * The value of the primary key of node
  46. * @param $linking_table
  47. * The Drupal table linking the chado record to it's node.
  48. * This field is optional and defaults to chado_$table
  49. *
  50. * @return
  51. * The chado id of the associated chado record
  52. *
  53. * @ingroup tripal_chado_node_api
  54. */
  55. function chado_get_id_from_nid($table, $nid, $linking_table = NULL) {
  56. if (empty($linking_table)) {
  57. $linking_table = 'chado_' . $table;
  58. }
  59. $sql = "SELECT " . $table . "_id as id FROM {$linking_table} WHERE nid = :nid";
  60. return db_query($sql, array(':nid' => $nid))->fetchField();
  61. }
  62. /**
  63. * Get node id for a chado feature/organism/analysis. E.g, if you want to
  64. * get the node id for an analysis, use:
  65. * $nid = chado_get_nid_from_id ('analysis', $analysis_id)
  66. * Likewise,
  67. * $nid = chado_get_nid_from_id ('organism', $organism_id)
  68. * $nid = chado_get_nid_from_id ('feature', $feature_id)
  69. *
  70. * @param $table
  71. * The chado table the id is from
  72. * @param $id
  73. * The value of the primary key from the $table chado table (ie: feature_id)
  74. * @param $linking_table
  75. * The Drupal table linking the chado record to it's node.
  76. * This field is optional and defaults to chado_$table
  77. *
  78. * @return
  79. * The nid of the associated node
  80. *
  81. * @ingroup tripal_chado_node_api
  82. */
  83. function chado_get_nid_from_id($table, $id, $linking_table = NULL) {
  84. if (empty($linking_table)) {
  85. $linking_table = 'chado_' . $table;
  86. }
  87. $sql = "SELECT nid FROM {" . $linking_table . "} WHERE " . $table . "_id = :" . $table . "_id";
  88. return db_query($sql, array(":" . $table . "_id" => $id))->fetchField();
  89. }
  90. /**
  91. * Determine the chado base table for a given content type
  92. *
  93. * @param $content_type
  94. * The machine name of the content type (node type) you want to
  95. * determine the base chado table of
  96. * @param $module
  97. * (Optional) The machine-name of the module implementing the
  98. * content type
  99. *
  100. * @return
  101. * The name of the chado base table for the specified content type
  102. *
  103. * @ingroup tripal_chado_node_api
  104. */
  105. function chado_node_get_base_table($content_type, $module = FALSE) {
  106. if ($module) {
  107. $node_info = call_user_func($details['module'] . '_node_info');
  108. }
  109. else {
  110. $node_types = module_invoke_all('node_info');
  111. if (isset($node_types[$content_type])) {
  112. $node_info = $node_types[$content_type];
  113. }
  114. else {
  115. return FALSE;
  116. }
  117. }
  118. if (isset($node_info['chado_node_api']['base_table'])) {
  119. return $node_info['chado_node_api']['base_table'];
  120. }
  121. else {
  122. return FALSE;
  123. }
  124. }
  125. /**
  126. * @section
  127. * Sync Form
  128. */
  129. /**
  130. * Generic Sync Form to aid in sync'ing (create drupal nodes linking to chado content)
  131. * any chado node type.
  132. *
  133. * To use this you need to add a call to it from your hook_menu() and
  134. * add some additional information to your hook_node_info(). The Following code gives an
  135. * example of how this might be done:
  136. * @code
  137. function modulename_menu() {
  138. $module_name = 'tripal_example'; // the machine name of your module
  139. $linking_table = 'chado_example'; // the base specified in hook_node_info
  140. // This menu item will be a tab on the admin/tripal/chado/tripal_example page
  141. // that is not selected by default
  142. $items['admin/tripal/chado/tripal_example/sync'] = array(
  143. 'title' => ' Sync',
  144. 'description' => 'Sync examples from Chado with Drupal',
  145. 'page callback' => 'drupal_get_form',
  146. 'page arguments' => array('chado_node_sync_form', $module_name, $linking_table),
  147. 'access arguments' => array('administer tripal examples'),
  148. 'type' => MENU_LOCAL_TASK,
  149. 'weight' => 0
  150. );
  151. return $items;
  152. }
  153. function modulename_node_info() {
  154. return array(
  155. 'chado_example' => array(
  156. 'name' => t('example'),
  157. 'base' => 'chado_example',
  158. 'description' => t('A Chado example is a collection of material that can be sampled and have experiments performed on it.'),
  159. 'has_title' => TRUE,
  160. 'locked' => TRUE,
  161. // this is what differs from the regular Drupal-documented hook_node_info()
  162. 'chado_node_api' => array(
  163. 'base_table' => 'example', // the name of the chado base table
  164. 'hook_prefix' => 'chado_example', // usually the name of the node type
  165. 'record_type_title' => array(
  166. 'singular' => t('Example'), // Singular human-readable title
  167. 'plural' => t('Examples') // Plural human-readable title
  168. ),
  169. 'sync_filters' => array( // filters for syncing
  170. 'type_id' => TRUE, // TRUE if there is an example.type_id field
  171. 'organism_id' => TRUE, // TRUE if there is an example.organism_id field
  172. 'checkboxes' => array('name') // If the 'checkboxes' key is present then the
  173. // value must be an array of column names in
  174. // base table. The values from these columns will
  175. // be retreived, contentated with a space delimeter
  176. // and provided in a list of checkboxes
  177. // for the user to choose which to sync.
  178. ),
  179. )
  180. ),
  181. );
  182. }
  183. * @endcode
  184. *
  185. * For more information on how you can override some of this behaviour while still
  186. * benifiting from as much of the common architecture as possible see the following
  187. * functions: hook_chado_node_sync_create_new_node(), hook_chado_node_sync_form(),
  188. * hook_chado_node_sync_select_query().
  189. *
  190. * @ingroup tripal_chado_node_api
  191. */
  192. function chado_node_sync_form($form, &$form_state) {
  193. $form = array();
  194. if (isset($form_state['build_info']['args'][0])) {
  195. $module = $form_state['build_info']['args'][0];
  196. $linking_table = $form_state['build_info']['args'][1];
  197. $node_info = call_user_func($module . '_node_info');
  198. $args = $node_info[$linking_table]['chado_node_api'];
  199. $form_state['chado_node_api'] = $args;
  200. }
  201. $form['linking_table'] = array(
  202. '#type' => 'hidden',
  203. '#value' => $linking_table
  204. );
  205. // define the fieldsets
  206. $form['sync'] = array(
  207. '#type' => 'fieldset',
  208. '#title' => 'Sync ' . $args['record_type_title']['plural'],
  209. '#descrpition' => '',
  210. );
  211. $form['sync']['description'] = array(
  212. '#type' => 'item',
  213. '#value' => t("%title_plural of the types listed ".
  214. "below in the %title_singular Types box will be synced (leave blank to sync all types). You may limit the ".
  215. "%title_plural to be synced by a specific organism. Depending on the ".
  216. "number of %title_plural in the chado database this may take a long ".
  217. "time to complete. ",
  218. array(
  219. '%title_singular' => $args['record_type_title']['singular'],
  220. '%title_plural' => $args['record_type_title']['plural']
  221. )),
  222. );
  223. if ($args['sync_filters']['type_id']) {
  224. $form['sync']['type_ids'] = array(
  225. '#title' => t('%title_singular Types',
  226. array(
  227. '%title_singular' => $args['record_type_title']['singular'],
  228. '%title_plural' => $args['record_type_title']['plural']
  229. )),
  230. '#type' => 'textarea',
  231. '#description' => t("Enter the names of the %title_singular types to sync. " .
  232. "Leave blank to sync all %title_plural. Separate each type with a comma ".
  233. "or new line. Pages for these %title_singular ".
  234. "types will be created automatically for %title_plural that exist in the ".
  235. "chado database. The names must match ".
  236. "exactly (spelling and case) with terms in the ontologies",
  237. array(
  238. '%title_singular' => strtolower($args['record_type_title']['singular']),
  239. '%title_plural' => strtolower($args['record_type_title']['plural'])
  240. )),
  241. '#default_value' => (isset($form_state['values']['type_id'])) ? $form_state['values']['type_id'] : '',
  242. );
  243. }
  244. // get the list of organisms
  245. if ($args['sync_filters']['organism_id']) {
  246. $sql = "SELECT * FROM {organism} ORDER BY genus, species";
  247. $results = chado_query($sql);
  248. $organisms[] = '';
  249. foreach ($results as $organism) {
  250. $organisms[$organism->organism_id] = "$organism->genus $organism->species ($organism->common_name)";
  251. }
  252. $form['sync']['organism_id'] = array(
  253. '#title' => t('Organism'),
  254. '#type' => t('select'),
  255. '#description' => t("Choose the organism for which %title_plural types set above will be synced.",
  256. array(
  257. '%title_singular' => $args['record_type_title']['singular'],
  258. '%title_plural' => $args['record_type_title']['plural']
  259. )),
  260. '#options' => $organisms,
  261. '#default_value' => (isset($form_state['values']['organism_id'])) ? $form_state['values']['organism_id'] : 0,
  262. );
  263. }
  264. // get the list of organisms
  265. if (array_key_exists('checkboxes', $args['sync_filters'])) {
  266. // get the base schema
  267. $base_table = $args['base_table'];
  268. $table_info = chado_get_schema($base_table);
  269. // if the base table does not have a primary key or has more than one then
  270. // we can't proceed, otherwise, generate the checkboxes
  271. if (array_key_exists('primary key', $table_info) and count($table_info['primary key']) == 1) {
  272. $pkey = $table_info['primary key'][0];
  273. $columns = $args['sync_filters']['checkboxes'];
  274. $select_cols = implode("|| ' ' ||", $columns);
  275. // get non-synced records
  276. $sql = "
  277. SELECT BT.$pkey as id, $select_cols as value
  278. FROM {" . $base_table . "} BT
  279. LEFT JOIN public.$linking_table LT ON LT.$pkey = BT.$pkey
  280. WHERE LT.$pkey IS NULL
  281. ORDER BY value ASC
  282. ";
  283. $results = chado_query($sql);
  284. $values = array();
  285. foreach ($results as $result) {
  286. $values[$result->id] = $result->value;
  287. }
  288. if (count($values) > 0) {
  289. $form['sync']['ids'] = array(
  290. '#title' => 'Avaliable ' . $args['record_type_title']['plural'],
  291. '#type' => 'checkboxes',
  292. '#options' => $values,
  293. '#default_value' => (isset($form_state['values']['ids'])) ? $form_state['values']['ids'] : array(),
  294. '#suffix' => '</div><br>',
  295. '#prefix' => t("The following %title_plural have not been synced. Check those to be synced or leave all unchecked to sync them all.",
  296. array(
  297. '%title_singular' => strtolower($args['record_type_title']['singular']),
  298. '%title_plural' => strtolower($args['record_type_title']['plural'])
  299. )) . '<div style="height: 200px; overflow: scroll">',
  300. );
  301. }
  302. else {
  303. $form['sync']['no_ids'] = array(
  304. '#markup' => "<p>There are no " . strtolower($args['record_type_title']['plural']) . " to sync.</p>",
  305. );
  306. }
  307. }
  308. }
  309. // if we provide a list of checkboxes we shouldn't need a max_sync
  310. else {
  311. $form['sync']['max_sync'] = array(
  312. '#type' => 'textfield',
  313. '#title' => t('Maximum number of records to Sync'),
  314. '#description' => t('Leave this field empty to sync all records, regardless of number'),
  315. '#default_value' => (isset($form_state['values']['max_sync'])) ? $form_state['values']['max_sync'] : '',
  316. );
  317. }
  318. $form['sync']['button'] = array(
  319. '#type' => 'submit',
  320. '#value' => t('Sync ' . $args['record_type_title']['plural']),
  321. '#weight' => 3,
  322. );
  323. $form['cleanup'] = array(
  324. '#type' => 'fieldset',
  325. '#title' => t('Clean Up')
  326. );
  327. $form['cleanup']['description'] = array(
  328. '#markup' => t("<p>With Drupal and chado residing in different databases " .
  329. "it is possible that nodes in Drupal and " . strtolower($args['record_type_title']['plural']) . " in Chado become " .
  330. "\"orphaned\". This can occur if a node in Drupal is " .
  331. "deleted but the corresponding chado records is not and/or vice " .
  332. "versa. Click the button below to resolve these discrepancies.</p>"),
  333. '#weight' => 1,
  334. );
  335. $form['cleanup']['button'] = array(
  336. '#type' => 'submit',
  337. '#value' => 'Clean up orphaned ' . strtolower($args['record_type_title']['plural']),
  338. '#weight' => 2,
  339. );
  340. // Allow each module to alter this form as needed
  341. $hook_form_alter = $args['hook_prefix'] . '_chado_node_sync_form';
  342. if (function_exists($hook_form_alter)) {
  343. $form = call_user_func($hook_form_alter, $form, $form_state);
  344. }
  345. return $form;
  346. }
  347. /**
  348. * Generic Sync Form Submit
  349. *
  350. * @ingroup tripal_core
  351. */
  352. function chado_node_sync_form_submit($form, $form_state) {
  353. global $user;
  354. if (preg_match('/^Sync/', $form_state['values']['op'])) {
  355. // get arguments
  356. $args = $form_state['chado_node_api'];
  357. $module = $form_state['chado_node_api']['hook_prefix'];
  358. $base_table = $form_state['chado_node_api']['base_table'];
  359. $linking_table = $form_state['values']['linking_table'];
  360. // Allow each module to hijack the submit if needed
  361. $hook_form_hijack_submit = $args['hook_prefix'] . '_chado_node_sync_form_submit';
  362. if (function_exists($hook_form_hijack_submit)) {
  363. return call_user_func($hook_form_hijack_submit, $form, $form_state);
  364. }
  365. // Get the types separated into a consistent string
  366. $types = array();
  367. if (isset($form_state['values']['type_ids'])) {
  368. // seperate by new line or comma.
  369. $temp_types = preg_split("/[,\n\r]+/", $form_state['values']['type_ids']);
  370. // remove any extra spacing around the types
  371. for($i = 0; $i < count($temp_types); $i++) {
  372. // skip empty types
  373. if (trim($temp_types[$i]) == '') {
  374. continue;
  375. }
  376. $types[$i] = trim($temp_types[$i]);
  377. }
  378. }
  379. // Get the ids to be synced
  380. $ids = array();
  381. if (array_key_exists('ids', $form_state['values'])){
  382. foreach ($form_state['values']['ids'] as $id => $selected) {
  383. if ($selected) {
  384. $ids[] = $id;
  385. }
  386. }
  387. }
  388. // get the organism to be synced
  389. $organism_id = FALSE;
  390. if (array_key_exists('organism_id', $form_state['values'])) {
  391. $organism_id = $form_state['values']['organism_id'];
  392. }
  393. // Job Arguments
  394. $job_args = array(
  395. 'base_table' => $base_table,
  396. 'max_sync' => (!empty($form_state['values']['max_sync'])) ? $form_state['values']['max_sync'] : FALSE,
  397. 'organism_id' => $organism_id,
  398. 'types' => $types,
  399. 'ids' => $ids,
  400. 'inking_table' => $linking_table
  401. );
  402. $title = "Sync " . $args['record_type_title']['plural'];
  403. tripal_add_job($title, $module, 'chado_node_sync_records', $job_args, $user->uid);
  404. }
  405. if (preg_match('/^Clean up orphaned/', $form_state['values']['op'])) {
  406. $module = $form_state['chado_node_api']['hook_prefix'];
  407. $base_table = $form_state['chado_node_api']['base_table'];
  408. $job_args = array($base_table);
  409. tripal_add_job($form_state['values']['op'], $module, 'chado_cleanup_orphaned_nodes', $job_args, $user->uid);
  410. }
  411. }
  412. /**
  413. * Actual Sync Function. Works on a group of records
  414. *
  415. * @ingroup tripal_chado_node_api
  416. */
  417. function chado_node_sync_records($base_table, $max_sync = FALSE, $organism_id = FALSE,
  418. $types = array(), $ids = array(), $linking_table = FALSE, $job_id = NULL) {
  419. global $user;
  420. $base_table_id = $base_table . '_id';
  421. if (!$linking_table) {
  422. $linking_table = 'chado_' . $base_table;
  423. }
  424. print "\nSync'ing $base_table records. ";
  425. // START BUILDING QUERY TO GET ALL RECORD FROM BASE TABLE THAT MATCH
  426. $select = array("$base_table.*");
  427. $joins = array();
  428. $where_clauses = array();
  429. $where_args = array();
  430. // If types are supplied then handle them
  431. $restrictions = '';
  432. if (count($types) > 0) {
  433. $restrictions .= " Type(s): " . implode(', ',$types) . "\n";
  434. $select[] = 'cvterm.name as cvtname';
  435. $joins[] = "LEFT JOIN {cvterm} cvterm ON $base_table.type_id = cvterm.cvterm_id";
  436. foreach ($types as $type) {
  437. $sanitized_type = str_replace(' ','_',$type);
  438. $where_clauses['type'][] = "cvterm.name = :type_name_$sanitized_type";
  439. $where_args['type'][":type_name_$sanitized_type"] = $type;
  440. }
  441. }
  442. // if IDs have been supplied
  443. if ($ids) {
  444. $restrictions .= " Specific Records: " . count($ids) . " recored(s) specified.\n";
  445. foreach ($ids as $id) {
  446. $where_clauses['id'][] = "$base_table.$base_table_id = :id_$id";
  447. $where_args['id'][":id_$id"] = $id;
  448. }
  449. }
  450. // If Organism is supplied
  451. if ($organism_id) {
  452. $organism = chado_select_record('organism', array('*'), array('organism_id' => $organism_id));
  453. $restrictions .= " Organism: " . $organism[0]->genus . " " . $organism[0]->species . "\n";
  454. $select[] = 'organism.*';
  455. $joins[] = "LEFT JOIN {organism} organism ON organism.organism_id = $base_table.organism_id";
  456. $where_clauses['organism'][] = 'organism.organism_id = :organism_id';
  457. $where_args['organism'][':organism_id'] = $organism_id;
  458. }
  459. // Allow module to add to query
  460. $hook_query_alter = $linking_table . '_chado_node_sync_select_query';
  461. if (function_exists($hook_query_alter)) {
  462. call_user_func($hook_query_alter, $select, $joins, $where_clauses, $where_args);
  463. }
  464. // Build Query, we do a left join on the chado_xxxx table in the Drupal schema
  465. // so that if no criteria are specified we only get those items that have not
  466. // yet been synced.
  467. $query = "
  468. SELECT " . implode(', ',$select) . ' ' .
  469. 'FROM {' . $base_table . '} ' . $base_table . ' ' . implode(' ', $joins) . ' '.
  470. " LEFT JOIN public.$linking_table CT ON CT.$base_table_id = $base_table.$base_table_id " .
  471. "WHERE CT.$base_table_id IS NULL AND";
  472. // extend the where clause if needed
  473. $where = '';
  474. $sql_args = array();
  475. if (count($where_clauses['type']) > 0) {
  476. $where .= '(' . implode(' OR ', $where_clauses['type']) . ') AND';
  477. $sql_args = array_merge($sql_args, $where_args['type']);
  478. }
  479. if (count($where_clauses['organism']) > 0) {
  480. $where .= '(' . implode(' OR ', $where_clauses['organism']) . ') AND';
  481. $sql_args = array_merge($sql_args, $where_args['organism']);
  482. }
  483. if (count($where_clauses['id']) > 0) {
  484. $where .= '(' . implode(' OR ', $where_clauses['id']) . ') AND';
  485. $sql_args = array_merge($sql_args, $where_args['id']);
  486. }
  487. if ($where) {
  488. $query .= $where;
  489. }
  490. $query = substr($query, 0, -4); // remove the trailing 'AND'
  491. $query .- " ORDER BY " . $base_table_id;
  492. print $query."\n";
  493. // If Maximum number to Sync is supplied
  494. if ($max_sync) {
  495. $query .= " LIMIT $max_sync";
  496. $restrictions .= " Limited to $max_sync records.\n";
  497. }
  498. if ($restrictions) {
  499. print "Records matching these criteria will be synced: \n$restrictions";
  500. }
  501. else {
  502. print "\n";
  503. }
  504. // execute the query
  505. $results = chado_query($query, $sql_args);
  506. // Iterate through records that need to be synced
  507. $count = $results->rowCount();
  508. $interval = intval($count * 0.01);
  509. if ($interval < 1) {
  510. $interval = 1;
  511. }
  512. print "\n$count $base_table records found.\n";
  513. $i = 0;
  514. $transaction = db_transaction();
  515. try {
  516. foreach ($results as $record) {
  517. print "\nLoading $base_table " . ($i + 1) . " of $count ($base_table_id=" . $record->{$base_table_id} . ")...";
  518. // update the job status every 1% features
  519. if ($job_id and $i % $interval == 0) {
  520. $percent = sprintf("%.2f", ($i / $count) * 100);
  521. print "Parsing Line $line_num (" . $percent . "%). Memory: " . number_format(memory_get_usage()) . " bytes.\n";
  522. tripal_set_job_progress($job_id, intval(($i/$count)*100));
  523. }
  524. // Check if it is in the chado linking table (ie: check to see if it is already linked to a node)
  525. $result = db_select($linking_table, 'lnk')
  526. ->fields('lnk',array('nid'))
  527. ->condition($base_table_id, $record->{$base_table_id}, '=')
  528. ->execute()
  529. ->fetchObject();
  530. if (!empty($result)) {
  531. print " Previously Sync'd";
  532. }
  533. else {
  534. // Create generic new node
  535. $new_node = new stdClass();
  536. $new_node->type = $linking_table;
  537. $new_node->uid = $user->uid;
  538. $new_node->{$base_table_id} = $record->{$base_table_id};
  539. $new_node->$base_table = $record;
  540. $new_node->language = LANGUAGE_NONE;
  541. // TODO: should we get rid of this hook and use hook_node_presave() instead?
  542. // allow base module to set additional fields as needed
  543. $hook_create_new_node = $linking_table . '_chado_node_sync_create_new_node';
  544. if (function_exists($hook_create_new_node)) {
  545. $new_node = call_user_func($hook_create_new_node, $new_node, $record);
  546. }
  547. // Validate and Save New Node
  548. $form = array();
  549. $form_state = array();
  550. node_validate($new_node, $form, $form_state);
  551. if (!form_get_errors()) {
  552. $node = node_submit($new_node);
  553. node_save($node);
  554. print " Node Created (nid=".$node->nid.")";
  555. }
  556. else {
  557. watchdog('trp-fsync', "Failed to insert $base_table: %title", array('%title' => $new_node->title), WATCHDOG_ERROR);
  558. }
  559. }
  560. $i++;
  561. }
  562. print "\n\nComplete!\n";
  563. }
  564. catch (Exception $e) {
  565. $transaction->rollback();
  566. print "\n"; // make sure we start errors on new line
  567. watchdog_exception('trp-fsync', $e);
  568. print "FAILED: Rolling back database changes...\n";
  569. }
  570. }
  571. /**
  572. * This function will delete Drupal nodes for any sync'ed table (e.g.
  573. * feature, organism, analysis, stock, library) if the chado record has been
  574. * deleted or the entry in the chado_[table] table has been removed.
  575. *
  576. * @param $table
  577. * The name of the table that corresonds to the node type we want to clean up.
  578. * @param $job_id
  579. * This should be the job id from the Tripal jobs system. This function
  580. * will update the job status using the provided job ID.
  581. *
  582. * @ingroup tripal_chado_node_api
  583. */
  584. function chado_cleanup_orphaned_nodes($table, $job_id = NULL) {
  585. $count = 0;
  586. // build the SQL statments needed to check if nodes point to valid analyses
  587. $dsql = "SELECT * FROM {node} WHERE type = 'chado_" . $table . "' order by nid";
  588. $nsql = "SELECT * FROM {node} WHERE nid = :nid";
  589. $csql = "SELECT * FROM {chado_" . $table . "} WHERE nid = :nid ";
  590. $clsql= "SELECT * FROM {chado_" . $table . "}";
  591. $lsql = "SELECT * FROM {" . $table . "} where " . $table . "_id = :" . $table . "_id ";
  592. // load into nodes array
  593. print "Getting nodes\n";
  594. $nodes = array();
  595. $res = db_query($dsql);
  596. foreach ($res as $node) {
  597. $nodes[$count] = $node;
  598. $count++;
  599. }
  600. // load the chado_$table into an array
  601. print "Getting chado_$table\n";
  602. $cnodes = array();
  603. $res = db_query($clsql);
  604. foreach ($res as $node) {
  605. $cnodes[$count] = $node;
  606. $count++;
  607. }
  608. $interval = intval($count * 0.01);
  609. if ($interval < 1) {
  610. $interval = 1;
  611. }
  612. // iterate through all of the chado_$table entries and remove those
  613. // that don't have a node or don't have a $table record in chado.libary
  614. print "Verifying all chado_$table Entries\n";
  615. $deleted = 0;
  616. foreach ($cnodes as $nid) {
  617. // update the job status every 1% analyses
  618. if ($job_id and $i % $interval == 0) {
  619. tripal_set_job_progress($job_id, intval(($i / $count) * 100));
  620. }
  621. // see if the node exits, if not remove the entry from the chado_$table table
  622. $results = db_query($nsql, array(':nid' => $nid->nid));
  623. $node = $results->fetchObject();
  624. if (!$node) {
  625. $deleted++;
  626. db_query("DELETE FROM {chado_" . $table . "} WHERE nid = :nid", array(':nid' => $nid->nid));
  627. $message = "chado_$table missing node.... DELETING: $nid->nid";
  628. watchdog('tripal_core', $message, array(), WATCHDOG_WARNING);
  629. }
  630. // see if the record in chado exist, if not remove the entry from the chado_$table
  631. $table_id = $table . "_id";
  632. $results = chado_query($lsql, array(":" . $table . "_id" => $nid->$table_id));
  633. $record = $results->fetchObject();
  634. if (!$record) {
  635. $deleted++;
  636. $sql = "DELETE FROM {chado_" . $table . "} WHERE " . $table . "_id = :" . $table . "_id";
  637. db_query($sql, array(":" . $table . "_id" => $nid->$table_id));
  638. $message = "chado_$table missing $table.... DELETING entry.";
  639. watchdog('tripal_core', $message, array(), WATCHDOG_WARNING);
  640. }
  641. $i++;
  642. }
  643. print "\t$deleted chado_$table entries missing either a node or chado entry.\n";
  644. // iterate through all of the nodes and delete those that don't
  645. // have a corresponding entry in chado_$table
  646. $deleted = 0;
  647. foreach ($nodes as $node) {
  648. // update the job status every 1% libraries
  649. if ($job_id and $i % $interval == 0) {
  650. tripal_set_job_progress($job_id, intval(($i / $count) * 100));
  651. }
  652. // check to see if the node has a corresponding entry
  653. // in the chado_$table table. If not then delete the node.
  654. $results = db_query($csql, array(":nid" => $node->nid));
  655. $link = $results->fetchObject();
  656. if (!$link) {
  657. if (node_access('delete', $node)) {
  658. $deleted++;
  659. $message = "Node missing in chado_$table table.... DELETING node $node->nid";
  660. watchdog("tripal_core", $message, array(), WATCHDOG_WARNING);
  661. node_delete($node->nid);
  662. }
  663. else {
  664. $message = "Node missing in chado_$table table.... but cannot delete due to improper permissions (node $node->nid)";
  665. watchdog("tripal_core", $message, array(), WATCHDOG_WARNING);
  666. }
  667. }
  668. $i++;
  669. }
  670. print "\t$deleted nodes did not have corresponding chado_$table entries.\n";
  671. return '';
  672. }
  673. /**
  674. * Create New Node
  675. *
  676. * Note: For your own module, replace hook in the function name with the machine-name of
  677. * your chado node type (ie: chado_feature).
  678. *
  679. * @param $new_node:
  680. * a basic new node object
  681. * @param $record:
  682. * the record object from chado specifying the biological data for this node
  683. *
  684. * @return
  685. * A node object containing all the fields necessary to create a new node during sync
  686. *
  687. * @ingroup tripal_chado_node_api
  688. */
  689. function hook_chado_node_sync_create_new_node($new_node, $record) {
  690. // Add relevant chado details to the new node object
  691. // This really only needs to be the fields from the node used during node creation
  692. // including values used to generate the title, etc.
  693. // All additional chado data will be added via nodetype_load when the node is later used
  694. $new_node->uniquename = $record->uniquename;
  695. return $new_node;
  696. }
  697. /**
  698. * Alter the sync form (optional)
  699. *
  700. * This might be necessary if you need additional filtering options for choosing which
  701. * chado records to sync or even if you just want to further customize the help text
  702. * provided by the form.
  703. *
  704. * Note: For your own module, replace hook in the function name with the machine-name of
  705. * your chado node type (ie: chado_feature).
  706. *
  707. * @ingroup tripal_chado_node_api
  708. */
  709. function hook_chado_node_sync_form($form, $form_state) {
  710. // Change or add to the form array as needed
  711. // Any changes should be made in accordance with the Drupal Form API
  712. return $form;
  713. }
  714. /**
  715. * Bypass chado node api sync form submit (optional). Allows you to use this function
  716. * as your own submit.
  717. *
  718. * This might be necessary if you want to add additional arguements to the tripal job or
  719. * to call your own sync'ing function if the generic chado_node_sync_records() is not
  720. * sufficient.
  721. *
  722. * Note: For your own module, replace hook in the function name with the machine-name of
  723. * your chado node type (ie: chado_feature).
  724. *
  725. * @ingroup tripal_chado_node_api
  726. */
  727. function hook_chado_node_sync_form_submit ($form, $form_state) {
  728. global $user;
  729. $job_args = array(
  730. $base_table, // the base chado table (ie: feature)
  731. $max_sync, // the maximum number of records to sync or FALSE for sync all that match
  732. $organism_id, // the organism_id to restrict records to or FALSE if not to restrict by organism_id
  733. $types // A string with the cvterm.name of the types to restrict to separated by |||
  734. );
  735. // You should register a tripal job
  736. tripal_add_job(
  737. $title, // the title of the job -be descriptive
  738. $module, // the name of your module
  739. 'chado_node_sync_records', // the chado node api sync function
  740. $job_args, // an array with the arguments to pass to the above function
  741. $user->uid // the user who submitted the job
  742. );
  743. }
  744. /**
  745. * Alter the query for the chado database which gets the chado records to be sync'd (optional)
  746. *
  747. * This might be necessary if you need fields from other chado tables to create your node
  748. * or if your chado node type only supports a subset of a given table (ie: a germplasm node
  749. * type might only support node creation for cerain types of stock records in which case
  750. * you would need to filter the results to only those types).
  751. *
  752. * Note: For your own module, replace hook in the function name with the machine-name of
  753. * your chado node type (ie: chado_feature).
  754. *
  755. * @param $select:
  756. * An array of select clauses
  757. * @param $joins:
  758. * An array of joins (ie: a single join could be 'LEFT JOIN {chadotable} alias ON base.id=alias.id')
  759. * @param $where_clauses:
  760. * An array of where clauses which will all be AND'ed together. Use :placeholders for values.
  761. * @param $where_args:
  762. * An associative array of arguments to be subbed in to the where clause where the
  763. * key = :placeholder and the value is the actual argument to be subbed in.
  764. *
  765. * @ingroup tripal_chado_node_api
  766. */
  767. function hook_chado_node_sync_select_query (&$select, &$joins, &$where_clauses, &$where_args) {
  768. // You can add fields to be selected
  769. $select[] = 'example.myfavfield';
  770. // Or joins to important tables
  771. $joins[] = 'LEFT JOIN {exampleprop} PROP ON PROP.example_id=EXAMPLE.example_id';
  772. // Or filter the query using where clauses
  773. $where_clauses[] = 'example.myfavfield = :favvalue';
  774. $where_args[':favvalue'] = 'awesome-ness';
  775. }