tripal_core.chado_nodes.api.inc 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302
  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. * Common Functionality for Properties, Dbxrefs and relationships chado node API
  128. */
  129. /**
  130. * Validate the Triggering element from a node form.
  131. *
  132. * We are going to inspect the post to determine what PHP knows is the triggering
  133. * element and if it doesn't agree with Drupal then we are actually going to
  134. * change it in Drupal.
  135. *
  136. * This fixes an obscure bug triggered when a property is added and then
  137. * a relationship removed, Drupal thinks the first property remove button was
  138. * clicked and instead removes a property (not a relationship) and renders the new
  139. * property table in the relationship table page space.
  140. *
  141. * NOTE: Many Drupal issues state that this problem is solved if the #name
  142. * of the button is unique (which it is in our case) but we are still experiencing
  143. * incorrectly determined triggering elements so we need to handle it ourselves.
  144. */
  145. function chado_validate_node_form_triggering_element($form, &$form_state) {
  146. // We are going to inspect the post to determine what PHP knows is the triggering
  147. // element and if it doesn't agree with Drupal then we are actually going to
  148. // change it in Drupal.
  149. if ($_POST['_triggering_element_name'] != $form_state['triggering_element']['#name']) {
  150. $form_state['triggering_element']['#name'] = $_POST['_triggering_element_name'];
  151. }
  152. }
  153. /**
  154. * Validate Adding Subtables entries from the node forms.
  155. * Supported subtables: Properties, Relationships, Additional DBxrefs.
  156. *
  157. * @param array $form
  158. * @param array $form_state
  159. */
  160. function chado_add_node_form_subtables_add_button_validate($form, &$form_state) {
  161. // Based on triggering element call the correct validation function
  162. // ASUMPTION #1: each of the buttons must have property, dbxref or relationship
  163. // as the first part of the #name to uniquely identify the subsection.
  164. if (preg_match('/^([a-z]+).*/', $form_state['triggering_element']['#name'], $matches)) {
  165. $subsection = $matches[1];
  166. switch($subsection) {
  167. case 'properties':
  168. chado_add_node_form_properties_add_button_validate($form, $form_state);
  169. break;
  170. case 'dbxrefs':
  171. chado_add_node_form_dbxrefs_add_button_validate($form, $form_state);
  172. break;
  173. case 'relationships':
  174. chado_add_node_form_relationships_add_button_validate($form, $form_state);
  175. break;
  176. }
  177. }
  178. }
  179. /**
  180. * Add subtable entries to the node forms.
  181. * Supported subtables: Properties, Relationships, Additional DBxrefs.
  182. *
  183. * @param array $form
  184. * @param array $form_state
  185. */
  186. function chado_add_node_form_subtables_add_button_submit($form, &$form_state) {
  187. // Based on triggering element call the correct submit function
  188. // ASUMPTION #1: each of the buttons must have properties, dbxrefs or relationships
  189. // as the first part of the #name to uniquely identify the subsection.
  190. if (preg_match('/^([a-z]+).*/', $form_state['triggering_element']['#name'], $matches)) {
  191. $subsection = $matches[1];
  192. switch($subsection) {
  193. case 'properties':
  194. chado_add_node_form_properties_add_button_submit($form, $form_state);
  195. break;
  196. case 'dbxrefs':
  197. chado_add_node_form_dbxrefs_add_button_submit($form, $form_state);
  198. break;
  199. case 'relationships':
  200. chado_add_node_form_relationships_add_button_submit($form, $form_state);
  201. break;
  202. }
  203. }
  204. // This is needed to ensure the form builder function is called for the node
  205. // form in order for any of these changes to be seen.
  206. $form_state['rebuild'] = TRUE;
  207. }
  208. /**
  209. * Validate Removing Subtables entries from the node forms.
  210. * Supported subtables: Properties, Relationships, Additional DBxrefs.
  211. *
  212. * Since Removing isn't associated with any user input the only thing we
  213. * need to validate is that Drupal has determined the triggering element correctly.
  214. * That said, we will call each subtables associated validate function just incase
  215. * there is some case-specific validation we do not know of or have not anticipated.
  216. *
  217. * @param array $form
  218. * @param array $form_state
  219. */
  220. function chado_add_node_form_subtables_remove_button_validate($form, &$form_state) {
  221. // We need to validate the trigerring element since Drupal has known
  222. // issues determining this correctly when there are multiple buttons
  223. // with the same label.
  224. chado_validate_node_form_triggering_element($form, $form_state);
  225. // Based on triggering element call the correct validation function
  226. // ASUMPTION #1: each of the buttons must have property, dbxref or relationship
  227. // as the first part of the #name to uniquely identify the subsection.
  228. if (preg_match('/^([a-z]+).*/', $form_state['triggering_element']['#name'], $matches)) {
  229. $subsection = $matches[1];
  230. switch($subsection) {
  231. case 'properties':
  232. chado_add_node_form_properties_remove_button_validate($form, $form_state);
  233. break;
  234. case 'dbxrefs':
  235. chado_add_node_form_dbxrefs_remove_button_validate($form, $form_state);
  236. break;
  237. case 'relationships':
  238. chado_add_node_form_relationships_remove_button_validate($form, $form_state);
  239. break;
  240. }
  241. }
  242. }
  243. /**
  244. * Remove subtable entries to the node forms.
  245. * Supported subtables: Properties, Relationships, Additional DBxrefs.
  246. *
  247. * @param array $form
  248. * @param array $form_state
  249. */
  250. function chado_add_node_form_subtables_remove_button_submit($form, &$form_state) {
  251. // Based on triggering element call the correct submit function
  252. // ASUMPTION #1: each of the buttons must have properties, dbxrefs or relationships
  253. // as the first part of the #name to uniquely identify the subsection.
  254. if (preg_match('/^([a-z]+).*/', $form_state['triggering_element']['#name'], $matches)) {
  255. $subsection = $matches[1];
  256. switch($subsection) {
  257. case 'properties':
  258. chado_add_node_form_properties_remove_button_submit($form, $form_state);
  259. break;
  260. case 'dbxrefs':
  261. chado_add_node_form_dbxrefs_remove_button_submit($form, $form_state);
  262. break;
  263. case 'relationships':
  264. chado_add_node_form_relationships_remove_button_submit($form, $form_state);
  265. break;
  266. }
  267. }
  268. // This is needed to ensure the form builder function is called for the node
  269. // form in order for any of these changes to be seen.
  270. $form_state['rebuild'] = TRUE;
  271. }
  272. /**
  273. * Ajax function which returns the section of the form to be re-rendered
  274. * for either the properties, dbxref or relationship sub-sections.
  275. *
  276. * @ingroup tripal_core
  277. */
  278. function chado_add_node_form_subtable_ajax_update($form, &$form_state) {
  279. // We need to validate the trigerring element since Drupal has known
  280. // issues determining this correctly when there are multiple buttons
  281. // with the same label.
  282. chado_validate_node_form_triggering_element($form, $form_state);
  283. // Based on triggering element render the correct part of the form.
  284. // ASUMPTION: each of the buttons must have property, dbxref or relationship
  285. // as the first part of the #name to uniquely identify the subsection.
  286. if (preg_match('/^([a-z]+).*/', $form_state['triggering_element']['#name'], $matches)) {
  287. $subsection = $matches[1];
  288. switch($subsection) {
  289. case 'properties':
  290. return $form['properties']['property_table'];
  291. break;
  292. case 'dbxrefs':
  293. return $form['addtl_dbxrefs']['dbxref_table'];
  294. break;
  295. case 'relationships':
  296. return $form['relationships']['relationship_table'];
  297. break;
  298. }
  299. }
  300. }
  301. /**
  302. * @section
  303. * Sync Form
  304. */
  305. /**
  306. * Generic Sync Form to aid in sync'ing (create drupal nodes linking to chado content)
  307. * any chado node type.
  308. *
  309. * To use this you need to add a call to it from your hook_menu() and
  310. * add some additional information to your hook_node_info(). The Following code gives an
  311. * example of how this might be done:
  312. * @code
  313. function modulename_menu() {
  314. // the machine name of your module
  315. $module_name = 'tripal_example';
  316. // the base specified in hook_node_info
  317. $node_type = 'chado_example';
  318. // This menu item will be a tab on the admin/tripal/chado/tripal_example page
  319. // that is not selected by default
  320. $items['admin/tripal/chado/tripal_example/sync'] = array(
  321. 'title' => ' Sync',
  322. 'description' => 'Sync examples from Chado with Drupal',
  323. 'page callback' => 'drupal_get_form',
  324. 'page arguments' => array('chado_node_sync_form', $module_name, $node_type),
  325. 'access arguments' => array('administer tripal examples'),
  326. 'type' => MENU_LOCAL_TASK,
  327. 'weight' => 0
  328. );
  329. return $items;
  330. }
  331. function modulename_node_info() {
  332. return array(
  333. 'chado_example' => array(
  334. 'name' => t('example'),
  335. 'base' => 'chado_example',
  336. 'description' => t('A Chado example is a collection of material that can be sampled and have experiments performed on it.'),
  337. 'has_title' => TRUE,
  338. 'locked' => TRUE,
  339. // this is what differs from the regular Drupal-documented hook_node_info()
  340. 'chado_node_api' => array(
  341. 'base_table' => 'example', // The name of the chado base table
  342. 'hook_prefix' => 'chado_example', // Usually the name of the node type
  343. 'linking_table' => 'chado_example', // Specifies the linking table used
  344. // to map records to Drupal nodes.
  345. // if 'linking_table' is not specified
  346. // it defaults to the node_type name.
  347. 'record_type_title' => array(
  348. 'singular' => t('Example'), // Singular human-readable title
  349. 'plural' => t('Examples') // Plural human-readable title
  350. ),
  351. 'sync_filters' => array( // filters for syncing
  352. 'type_id' => TRUE, // TRUE if there is an example.type_id field
  353. 'organism_id' => TRUE, // TRUE if there is an example.organism_id field
  354. 'checkboxes' => array('name') // If the 'checkboxes' key is present then the
  355. // value must be an array of column names in
  356. // base table. The values from these columns will
  357. // be retreived, contentated with a space delimeter
  358. // and provided in a list of checkboxes
  359. // for the user to choose which to sync.
  360. ),
  361. )
  362. ),
  363. );
  364. }
  365. * @endcode
  366. *
  367. * For more information on how you can override some of this behaviour while still
  368. * benifiting from as much of the common architecture as possible see the following
  369. * functions: hook_chado_node_sync_create_new_node(), hook_chado_node_sync_form(),
  370. * hook_chado_node_sync_select_query().
  371. *
  372. * @ingroup tripal_chado_node_api
  373. */
  374. function chado_node_sync_form($form, &$form_state) {
  375. $form = array();
  376. if (isset($form_state['build_info']['args'][0])) {
  377. $module = $form_state['build_info']['args'][0];
  378. $node_type = $form_state['build_info']['args'][1];
  379. $node_info = call_user_func($module . '_node_info');
  380. // If a linking table is set in the node_info array then use that,
  381. // otherwise ues the node_type as the linking table.
  382. if (array_key_exists('linking_table', $node_info[$node_type]['chado_node_api'])) {
  383. $linking_table = $node_info[$node_type]['chado_node_api']['linking_table'];
  384. }
  385. else {
  386. $linking_table = 'chado_' . $node_info[$node_type]['chado_node_api']['base_table'];
  387. }
  388. $args = $node_info[$node_type]['chado_node_api'];
  389. $form_state['chado_node_api'] = $args;
  390. }
  391. $form['linking_table'] = array(
  392. '#type' => 'hidden',
  393. '#value' => $linking_table
  394. );
  395. $form['node_type'] = array(
  396. '#type' => 'hidden',
  397. '#value' => $node_type
  398. );
  399. // define the fieldsets
  400. $form['sync'] = array(
  401. '#type' => 'fieldset',
  402. '#title' => 'Sync ' . $args['record_type_title']['plural'],
  403. '#descrpition' => '',
  404. );
  405. $form['sync']['description'] = array(
  406. '#type' => 'item',
  407. '#value' => t("%title_plural of the types listed ".
  408. "below in the %title_singular Types box will be synced (leave blank to sync all types). You may limit the ".
  409. "%title_plural to be synced by a specific organism. Depending on the ".
  410. "number of %title_plural in the chado database this may take a long ".
  411. "time to complete. ",
  412. array(
  413. '%title_singular' => $args['record_type_title']['singular'],
  414. '%title_plural' => $args['record_type_title']['plural']
  415. )),
  416. );
  417. if ($args['sync_filters']['type_id']) {
  418. $form['sync']['type_ids'] = array(
  419. '#title' => t('%title_singular Types',
  420. array(
  421. '%title_singular' => $args['record_type_title']['singular'],
  422. '%title_plural' => $args['record_type_title']['plural']
  423. )),
  424. '#type' => 'textarea',
  425. '#description' => t("Enter the names of the %title_singular types to sync. " .
  426. "Leave blank to sync all %title_plural. Separate each type with a comma ".
  427. "or new line. Pages for these %title_singular ".
  428. "types will be created automatically for %title_plural that exist in the ".
  429. "chado database. The names must match ".
  430. "exactly (spelling and case) with terms in the ontologies",
  431. array(
  432. '%title_singular' => strtolower($args['record_type_title']['singular']),
  433. '%title_plural' => strtolower($args['record_type_title']['plural'])
  434. )),
  435. '#default_value' => (isset($form_state['values']['type_id'])) ? $form_state['values']['type_id'] : '',
  436. );
  437. }
  438. // get the list of organisms
  439. if ($args['sync_filters']['organism_id']) {
  440. $sql = "SELECT * FROM {organism} ORDER BY genus, species";
  441. $results = chado_query($sql);
  442. $organisms[] = '';
  443. foreach ($results as $organism) {
  444. $organisms[$organism->organism_id] = "$organism->genus $organism->species ($organism->common_name)";
  445. }
  446. $form['sync']['organism_id'] = array(
  447. '#title' => t('Organism'),
  448. '#type' => t('select'),
  449. '#description' => t("Choose the organism for which %title_plural types set above will be synced.",
  450. array(
  451. '%title_singular' => $args['record_type_title']['singular'],
  452. '%title_plural' => $args['record_type_title']['plural']
  453. )),
  454. '#options' => $organisms,
  455. '#default_value' => (isset($form_state['values']['organism_id'])) ? $form_state['values']['organism_id'] : 0,
  456. );
  457. }
  458. // get the list of organisms
  459. if (array_key_exists('checkboxes', $args['sync_filters'])) {
  460. // get the base schema
  461. $base_table = $args['base_table'];
  462. $table_info = chado_get_schema($base_table);
  463. // if the base table does not have a primary key or has more than one then
  464. // we can't proceed, otherwise, generate the checkboxes
  465. if (array_key_exists('primary key', $table_info) and count($table_info['primary key']) == 1) {
  466. $pkey = $table_info['primary key'][0];
  467. $columns = $args['sync_filters']['checkboxes'];
  468. $select_cols = '';
  469. foreach ($columns as $column) {
  470. $select_cols .= $base_table . '.' . $column . "|| ' ' ||";
  471. }
  472. // Remove trailing || ' ' ||
  473. $select_cols = substr($select_cols, 0, -9);
  474. $base_table_id = $base_table . '_id';
  475. $select = array($base_table . '.' . $pkey, $select_cols . ' as value');
  476. $joins = array();
  477. $where_clauses = array();
  478. $where_args = array();
  479. // Allow module to update the query.
  480. $hook_query_alter = $node_type . '_chado_node_sync_select_query';
  481. if (function_exists($hook_query_alter)) {
  482. $update = call_user_func($hook_query_alter, array(
  483. 'select' => $select,
  484. 'joins' => $joins,
  485. 'where_clauses' => $where_clauses,
  486. 'where_args' => $where_args,
  487. ));
  488. // Now add in any new changes
  489. if ($update and is_array($update)) {
  490. $select = $update['select'];
  491. $joins = $update['joins'];
  492. $where_clauses = $update['where_clauses'];
  493. $where_args = $update['where_args'];
  494. }
  495. }
  496. // Build Query, we do a left join on the chado_xxxx table in the Drupal schema
  497. // so that if no criteria are specified we only get those items that have not
  498. // yet been synced.
  499. $query = "SELECT " . implode(', ', $select) . ' ' .
  500. 'FROM {' . $base_table . '} ' . $base_table . ' ' . implode(' ', $joins) . ' '.
  501. " LEFT JOIN public.$linking_table CT ON CT.$base_table_id = $base_table.$base_table_id " .
  502. "WHERE CT.$base_table_id IS NULL";
  503. // extend the where clause if needed
  504. $where = '';
  505. $sql_args = array();
  506. foreach ($where_clauses as $category => $items) {
  507. $where .= ' AND (';
  508. foreach ($items as $item) {
  509. $where .= $item . ' OR ';
  510. }
  511. $where = substr($where, 0, -4); // remove the trailing 'OR'
  512. $where .= ') ';
  513. $sql_args = array_merge($sql_args, $where_args[$category]);
  514. }
  515. if ($where) {
  516. $query .= $where;
  517. }
  518. $query .= " ORDER BY $base_table." . implode(", $base_table.", $columns);
  519. $results = chado_query($query, $sql_args);
  520. $values = array();
  521. foreach ($results as $result) {
  522. $values[$result->$pkey] = $result->value;
  523. }
  524. if (count($values) > 0) {
  525. $form['sync']['ids'] = array(
  526. '#title' => 'Avaliable ' . $args['record_type_title']['plural'],
  527. '#type' => 'checkboxes',
  528. '#options' => $values,
  529. '#default_value' => (isset($form_state['values']['ids'])) ? $form_state['values']['ids'] : array(),
  530. '#suffix' => '</div><br>',
  531. '#prefix' => t("The following %title_plural have not been synced. Check those to be synced or leave all unchecked to sync them all.",
  532. array(
  533. '%title_singular' => strtolower($args['record_type_title']['singular']),
  534. '%title_plural' => strtolower($args['record_type_title']['plural'])
  535. )) . '<div style="height: 200px; overflow: scroll">',
  536. );
  537. }
  538. else {
  539. $form['sync']['no_ids'] = array(
  540. '#markup' => "<p>There are no " . strtolower($args['record_type_title']['plural']) . " to sync.</p>",
  541. );
  542. }
  543. }
  544. }
  545. // if we provide a list of checkboxes we shouldn't need a max_sync
  546. else {
  547. $form['sync']['max_sync'] = array(
  548. '#type' => 'textfield',
  549. '#title' => t('Maximum number of records to Sync'),
  550. '#description' => t('Leave this field empty to sync all records, regardless of number'),
  551. '#default_value' => (isset($form_state['values']['max_sync'])) ? $form_state['values']['max_sync'] : '',
  552. );
  553. }
  554. $form['sync']['button'] = array(
  555. '#type' => 'submit',
  556. '#value' => t('Sync ' . $args['record_type_title']['plural']),
  557. '#weight' => 3,
  558. );
  559. $form['cleanup'] = array(
  560. '#type' => 'fieldset',
  561. '#title' => t('Clean Up')
  562. );
  563. $form['cleanup']['description'] = array(
  564. '#markup' => t("<p>With Drupal and chado residing in different databases " .
  565. "it is possible that nodes in Drupal and " . strtolower($args['record_type_title']['plural']) . " in Chado become " .
  566. "\"orphaned\". This can occur if a node in Drupal is " .
  567. "deleted but the corresponding chado records is not and/or vice " .
  568. "versa. Click the button below to resolve these discrepancies.</p>"),
  569. '#weight' => -10,
  570. );
  571. $form['cleanup']['cleanup_batch_size'] = array(
  572. '#type' => 'textfield',
  573. '#title' => t('Batch Size'),
  574. '#description' => t('The number of records to analyze together in a batch. If you are having memory issues you might want to decrease this number.'),
  575. '#default_value' => variable_get('chado_node_api_cleanup_batch_size', 25000),
  576. );
  577. $form['cleanup']['button'] = array(
  578. '#type' => 'submit',
  579. '#value' => 'Clean up orphaned ' . strtolower($args['record_type_title']['plural']),
  580. '#weight' => 2,
  581. );
  582. // Allow each module to alter this form as needed
  583. $hook_form_alter = $args['hook_prefix'] . '_chado_node_sync_form';
  584. if (function_exists($hook_form_alter)) {
  585. $form = call_user_func($hook_form_alter, $form, $form_state);
  586. }
  587. return $form;
  588. }
  589. /**
  590. * Generic Sync Form Validate
  591. *
  592. * @ingroup tripal_core
  593. */
  594. function chado_node_sync_form_validate($form, &$form_state) {
  595. if (empty($form_state['values']['cleanup_batch_size'])) {
  596. $form_state['values']['cleanup_batch_size'] = 25000;
  597. drupal_set_message('You entered a Batch Size of 0 for Cleaning-up orphaned nodes. Since this is not valid, we reset it to the default of 25,000.', 'warning');
  598. }
  599. elseif (!is_numeric($form_state['values']['cleanup_batch_size'])) {
  600. form_set_error('cleanup_batch_size', 'The batch size must be a postitive whole number.');
  601. }
  602. else {
  603. // Round the value just to make sure.
  604. $form_state['values']['cleanup_batch_size'] = abs(round($form_state['values']['cleanup_batch_size']));
  605. }
  606. }
  607. /**
  608. * Generic Sync Form Submit
  609. *
  610. * @ingroup tripal_core
  611. */
  612. function chado_node_sync_form_submit($form, $form_state) {
  613. global $user;
  614. if (preg_match('/^Sync/', $form_state['values']['op'])) {
  615. // get arguments
  616. $args = $form_state['chado_node_api'];
  617. $module = $form_state['chado_node_api']['hook_prefix'];
  618. $base_table = $form_state['chado_node_api']['base_table'];
  619. $linking_table = $form_state['values']['linking_table'];
  620. $node_type = $form_state['values']['node_type'];
  621. // Allow each module to hijack the submit if needed
  622. $hook_form_hijack_submit = $args['hook_prefix'] . '_chado_node_sync_form_submit';
  623. if (function_exists($hook_form_hijack_submit)) {
  624. return call_user_func($hook_form_hijack_submit, $form, $form_state);
  625. }
  626. // Get the types separated into a consistent string
  627. $types = array();
  628. if (isset($form_state['values']['type_ids'])) {
  629. // seperate by new line or comma.
  630. $temp_types = preg_split("/[,\n\r]+/", $form_state['values']['type_ids']);
  631. // remove any extra spacing around the types
  632. for($i = 0; $i < count($temp_types); $i++) {
  633. // skip empty types
  634. if (trim($temp_types[$i]) == '') {
  635. continue;
  636. }
  637. $types[$i] = trim($temp_types[$i]);
  638. }
  639. }
  640. // Get the ids to be synced
  641. $ids = array();
  642. if (array_key_exists('ids', $form_state['values'])){
  643. foreach ($form_state['values']['ids'] as $id => $selected) {
  644. if ($selected) {
  645. $ids[] = $id;
  646. }
  647. }
  648. }
  649. // get the organism to be synced
  650. $organism_id = FALSE;
  651. if (array_key_exists('organism_id', $form_state['values'])) {
  652. $organism_id = $form_state['values']['organism_id'];
  653. }
  654. // Job Arguments
  655. $job_args = array(
  656. 'base_table' => $base_table,
  657. 'max_sync' => (!empty($form_state['values']['max_sync'])) ? $form_state['values']['max_sync'] : FALSE,
  658. 'organism_id' => $organism_id,
  659. 'types' => $types,
  660. 'ids' => $ids,
  661. 'linking_table' => $linking_table,
  662. 'node_type' => $node_type
  663. );
  664. $title = "Sync " . $args['record_type_title']['plural'];
  665. tripal_add_job($title, $module, 'chado_node_sync_records', $job_args, $user->uid);
  666. }
  667. if (preg_match('/^Clean up orphaned/', $form_state['values']['op'])) {
  668. $module = $form_state['chado_node_api']['hook_prefix'];
  669. $base_table = $form_state['chado_node_api']['base_table'];
  670. $linking_table = $form_state['values']['linking_table'];
  671. $node_type = $form_state['values']['node_type'];
  672. $job_args = array($base_table, $form_state['values']['cleanup_batch_size'], $linking_table, $node_type);
  673. variable_set('chado_node_api_cleanup_batch_size', $form_state['values']['cleanup_batch_size']);
  674. tripal_add_job($form_state['values']['op'], $module, 'chado_cleanup_orphaned_nodes', $job_args, $user->uid);
  675. }
  676. }
  677. /**
  678. * Generic function for syncing records in Chado with Drupal nodes.
  679. *
  680. * @param $base_table
  681. * The name of the Chado table containing the record that should be synced
  682. * @param $max_sync
  683. * Optional: A numeric value to indicate the maximum number of records to sync.
  684. * @param $organism_id
  685. * Optional: Limit the list of records to be synced to only those that
  686. * are associated with this organism_id. If the record is not assocaited
  687. * with an organism then this field is not needed.
  688. * @param $types
  689. * Optional: Limit the list of records to be synced to only those that
  690. * match the types listed in this array.
  691. * @param $ids
  692. * Optional: Limit the list of records to bye synced to only those whose
  693. * primary key value matches the ID provided in this array.
  694. * @param $linking_table
  695. * Optional: Tripal maintains "linking" tables in the Drupal schema
  696. * to link Drupal nodes with Chado records. By default these tables
  697. * are named as 'chado_' . $base_table. But if for some reason the
  698. * linking table is not named in this way then it can be provided by this
  699. * argument.
  700. * @param $job_id
  701. * Optional. Used by the Trpial Jobs system when running this function
  702. * as a job. It is not needed othewise.
  703. *
  704. * @ingroup tripal_chado_node_api
  705. */
  706. function chado_node_sync_records($base_table, $max_sync = FALSE,
  707. $organism_id = FALSE, $types = array(), $ids = array(),
  708. $linking_table = FALSE, $node_type = FALSE, $job_id = NULL) {
  709. global $user;
  710. $base_table_id = $base_table . '_id';
  711. if (!$linking_table) {
  712. $linking_table = 'chado_' . $base_table;
  713. }
  714. print "\nSync'ing $base_table records. ";
  715. // START BUILDING QUERY TO GET ALL RECORD FROM BASE TABLE THAT MATCH
  716. $select = array("$base_table.*");
  717. $joins = array();
  718. $where_clauses = array();
  719. $where_args = array();
  720. // If types are supplied then handle them
  721. $restrictions = '';
  722. if (count($types) > 0) {
  723. $restrictions .= " Type(s): " . implode(', ',$types) . "\n";
  724. $select[] = 'cvterm.name as cvtname';
  725. $joins[] = "LEFT JOIN {cvterm} cvterm ON $base_table.type_id = cvterm.cvterm_id";
  726. foreach ($types as $type) {
  727. $sanitized_type = str_replace(' ','_',$type);
  728. $where_clauses['type'][] = "cvterm.name = :type_name_$sanitized_type";
  729. $where_args['type'][":type_name_$sanitized_type"] = $type;
  730. }
  731. }
  732. // if IDs have been supplied
  733. if ($ids) {
  734. $restrictions .= " Specific Records: " . count($ids) . " recored(s) specified.\n";
  735. foreach ($ids as $id) {
  736. $where_clauses['id'][] = "$base_table.$base_table_id = :id_$id";
  737. $where_args['id'][":id_$id"] = $id;
  738. }
  739. }
  740. // If Organism is supplied
  741. if ($organism_id) {
  742. $organism = chado_select_record('organism', array('*'), array('organism_id' => $organism_id));
  743. $restrictions .= " Organism: " . $organism[0]->genus . " " . $organism[0]->species . "\n";
  744. $select[] = 'organism.*';
  745. $joins[] = "LEFT JOIN {organism} organism ON organism.organism_id = $base_table.organism_id";
  746. $where_clauses['organism'][] = 'organism.organism_id = :organism_id';
  747. $where_args['organism'][':organism_id'] = $organism_id;
  748. }
  749. // Allow module to add to query
  750. $hook_query_alter = $node_type . '_chado_node_sync_select_query';
  751. if (function_exists($hook_query_alter)) {
  752. $update = call_user_func($hook_query_alter, array(
  753. 'select' => $select,
  754. 'joins' => $joins,
  755. 'where_clauses' => $where_clauses,
  756. 'where_args' => $where_args,
  757. ));
  758. // Now add in any new changes
  759. if ($update and is_array($update)) {
  760. $select = $update['select'];
  761. $joins = $update['joins'];
  762. $where_clauses = $update['where_clauses'];
  763. $where_args = $update['where_args'];
  764. }
  765. }
  766. // Build Query, we do a left join on the chado_xxxx table in the Drupal schema
  767. // so that if no criteria are specified we only get those items that have not
  768. // yet been synced.
  769. $query = "
  770. SELECT " . implode(', ', $select) . ' ' .
  771. 'FROM {' . $base_table . '} ' . $base_table . ' ' . implode(' ', $joins) . ' '.
  772. " LEFT JOIN public.$linking_table CT ON CT.$base_table_id = $base_table.$base_table_id " .
  773. "WHERE CT.$base_table_id IS NULL ";
  774. // extend the where clause if needed
  775. $where = '';
  776. $sql_args = array();
  777. foreach ($where_clauses as $category => $items) {
  778. $where .= ' AND (';
  779. foreach ($items as $item) {
  780. $where .= $item . ' OR ';
  781. }
  782. $where = substr($where, 0, -4); // remove the trailing 'OR'
  783. $where .= ') ';
  784. $sql_args = array_merge($sql_args, $where_args[$category]);
  785. }
  786. if ($where) {
  787. $query .= $where;
  788. }
  789. $query .- " ORDER BY " . $base_table_id;
  790. // If Maximum number to Sync is supplied
  791. if ($max_sync) {
  792. $query .= " LIMIT $max_sync";
  793. $restrictions .= " Limited to $max_sync records.\n";
  794. }
  795. if ($restrictions) {
  796. print "Records matching these criteria will be synced: \n$restrictions";
  797. }
  798. else {
  799. print "\n";
  800. }
  801. // execute the query
  802. $results = chado_query($query, $sql_args);
  803. // Iterate through records that need to be synced
  804. $count = $results->rowCount();
  805. $interval = intval($count * 0.01);
  806. if ($interval < 1) {
  807. $interval = 1;
  808. }
  809. print "\n$count $base_table records found.\n";
  810. $i = 0;
  811. $transaction = db_transaction();
  812. print "\nNOTE: Syncing is performed using a database transaction. \n" .
  813. "If the sync fails or is terminated prematurely then the entire set of \n" .
  814. "synced items is rolled back and will not be found in the database\n\n";
  815. try {
  816. $percent = 0;
  817. foreach ($results as $record) {
  818. //print "\nLoading $base_table " . ($i + 1) . " of $count ($base_table_id=" . $record->{$base_table_id} . ")...";
  819. // update the job status every 1% features
  820. if ($job_id and $i % $interval == 0) {
  821. $percent = sprintf("%.2f", (($i + 1) / $count) * 100);
  822. print "Syncing $base_table " . ($i + 1) . " of $count (" . $percent . "%). Memory: " . number_format(memory_get_usage()) . " bytes.\r";
  823. tripal_set_job_progress($job_id, intval(($i/$count)*100));
  824. }
  825. // Check if it is in the chado linking table (ie: check to see if it is already linked to a node)
  826. $result = db_select($linking_table, 'lnk')
  827. ->fields('lnk',array('nid'))
  828. ->condition($base_table_id, $record->{$base_table_id}, '=')
  829. ->execute()
  830. ->fetchObject();
  831. if (!empty($result)) {
  832. //print " Previously Sync'd";
  833. }
  834. else {
  835. // Create generic new node
  836. $new_node = new stdClass();
  837. $new_node->type = $node_type;
  838. $new_node->uid = $user->uid;
  839. $new_node->{$base_table_id} = $record->{$base_table_id};
  840. $new_node->$base_table = $record;
  841. $new_node->language = LANGUAGE_NONE;
  842. // TODO: should we get rid of this hook and use hook_node_presave() instead?
  843. // allow base module to set additional fields as needed
  844. $hook_create_new_node = $node_type . '_chado_node_sync_create_new_node';
  845. if (function_exists($hook_create_new_node)) {
  846. $new_node = call_user_func($hook_create_new_node, $new_node, $record);
  847. }
  848. // Validate and Save New Node
  849. $form = array();
  850. $form_state = array();
  851. node_validate($new_node, $form, $form_state);
  852. if (!form_get_errors()) {
  853. $node = node_submit($new_node);
  854. node_save($node);
  855. //print " Node Created (nid=".$node->nid.")";
  856. }
  857. else {
  858. watchdog('trp-fsync', "Failed to insert $base_table: %title", array('%title' => $new_node->title), WATCHDOG_ERROR);
  859. }
  860. }
  861. $i++;
  862. }
  863. print "\n\nComplete!\n";
  864. }
  865. catch (Exception $e) {
  866. $transaction->rollback();
  867. print "\n"; // make sure we start errors on new line
  868. watchdog_exception('trp-fsync', $e);
  869. print "FAILED: Rolling back database changes...\n";
  870. }
  871. }
  872. /**
  873. * This function is a wrapper for the chado_cleanup_orphaned_nodes function.
  874. * It breaks up the work of chado_cleanup_orphaned_nodes into smaller pieces
  875. * that are more managable for servers that may have low php memory settings.
  876. *
  877. * @param $table
  878. * The name of the table that corresonds to the node type we want to clean up.
  879. * @param $nentries
  880. * The number of entries to parse at one time (ie: the batch size).
  881. * @param $job_id
  882. * This should be the job id from the Tripal jobs system. This function
  883. * will update the job status using the provided job ID.
  884. *
  885. * @ingroup tripal_chado_node_api
  886. */
  887. function chado_cleanup_orphaned_nodes($table, $nentries = 25000, $linking_table, $node_type, $job_id = NULL) {
  888. $count = 0;
  889. // Find the total number of entries in the table.
  890. $dsql = "SELECT COUNT(*) FROM {node} WHERE type = :node_type";
  891. $clsql= "SELECT COUNT(*) FROM {$linking_table}";
  892. // Find the number nodes of type chado_$table and find the number of entries
  893. // in chado_$table; keep the larger of the two numbers.
  894. $ndat = db_query($dsql, array(':node_type' => $node_type));
  895. $temp = $ndat->fetchObject();
  896. $count = $temp->count;
  897. $cdat = db_query($clsql);
  898. $temp = $cdat->fetchObject();
  899. if (count < $temp->count) {
  900. $count = $temp->count;
  901. }
  902. $m = ceil($count / $nentries);
  903. for ($i = 0; $i < $m; $i++) {
  904. $offset = ($nentries * $i);
  905. chado_cleanup_orphaned_nodes_part($table, $job_id, $nentries, $offset, $linking_table, $node_type);
  906. }
  907. return '';
  908. }
  909. /**
  910. * This function will delete Drupal nodes for any sync'ed table (e.g.
  911. * feature, organism, analysis, stock, library) if the chado record has been
  912. * deleted or the entry in the chado_[table] table has been removed.
  913. *
  914. * @param $table
  915. * The name of the table that corresonds to the node type we want to clean up.
  916. * @param $job_id
  917. * This should be the job id from the Tripal jobs system. This function
  918. * will update the job status using the provided job ID.
  919. *
  920. * @ingroup tripal_chado_node_api
  921. */
  922. function chado_cleanup_orphaned_nodes_part($table, $job_id = NULL, $nentries, $offset, $linking_table, $node_type) {
  923. $count = 0;
  924. // Retrieve all of the entries in the linker table for a given node type
  925. // and place into an array.
  926. print "Verifying $linking_table records...\n";
  927. $cnodes = array();
  928. $clsql= "
  929. SELECT *
  930. FROM {" . $linking_table . "} LT
  931. INNER JOIN {node} N ON N.nid = LT.nid
  932. WHERE N.type = :node_type
  933. ORDER BY LT.nid LIMIT $nentries OFFSET $offset";
  934. $res = db_query($clsql, array(':node_type' => $node_type));
  935. foreach ($res as $node) {
  936. $cnodes[$count] = $node;
  937. $count++;
  938. }
  939. // Iterate through all of the $linking_table entries and remove those
  940. // that don't have a node or don't have a $table record.
  941. $deleted = 0;
  942. if ($count > 0) {
  943. $i = 0;
  944. $interval = intval($count * 0.01);
  945. if ($interval < 1) {
  946. $interval = 1;
  947. }
  948. foreach ($cnodes as $nid) {
  949. // Update the job status every 1% analyses
  950. if ($job_id and $i % $interval == 0) {
  951. $percent = sprintf("%.2f", ($i / $count) * 100);
  952. tripal_set_job_progress($job_id, intval($percent));
  953. print "Percent complete: $percent%. Memory: " . number_format(memory_get_usage()) . " bytes.\r";
  954. }
  955. // See if the node exits, if not remove the entry from linking table table.
  956. $nsql = "SELECT * FROM {node} WHERE nid = :nid";
  957. $results = db_query($nsql, array(':nid' => $nid->nid));
  958. $node = $results->fetchObject();
  959. if (!$node) {
  960. $deleted++;
  961. db_query("DELETE FROM {" . $linking_table . "} WHERE nid = :nid", array(':nid' => $nid->nid));
  962. //print "$linking_table missing node.... DELETING: $nid->nid\n";
  963. }
  964. // Does record in chado exists, if not remove entry from $linking_table.
  965. $table_id = $table . "_id";
  966. $lsql = "SELECT * FROM {" . $table . "} where " . $table . "_id = :" . $table . "_id";
  967. $results = chado_query($lsql, array(":" . $table . "_id" => $nid->$table_id));
  968. $record = $results->fetchObject();
  969. if (!$record) {
  970. $deleted++;
  971. $sql = "DELETE FROM {" . $linking_table . "} WHERE " . $table . "_id = :" . $table . "_id";
  972. db_query($sql, array(":" . $table . "_id" => $nid->$table_id));
  973. //print "$linking_table missing $table.... DELETING entry.\n";
  974. }
  975. $i++;
  976. }
  977. $percent = sprintf("%.2f", ($i / $count) * 100);
  978. tripal_set_job_progress($job_id, intval($percent));
  979. print "Percent complete: $percent%. Memory: " . number_format(memory_get_usage()) . " bytes.\r";
  980. }
  981. print "\nDeleted $deleted record(s) from $linking_table missing either a node or chado entry.\n";
  982. // Build the SQL statements needed to check if nodes point to valid record.
  983. print "Verifying nodes...\n";
  984. $dsql = "
  985. SELECT *
  986. FROM {node}
  987. WHERE type = :node_type
  988. ORDER BY nid
  989. LIMIT $nentries OFFSET $offset
  990. ";
  991. $dsql_args = array(':node_type' => $node_type);
  992. $nodes = array();
  993. $res = db_query($dsql, $dsql_args);
  994. $count = 0;
  995. foreach ($res as $node) {
  996. $nodes[$count] = $node;
  997. $count++;
  998. }
  999. // Iterate through all of the nodes and delete those that don't
  1000. // have a corresponding entry in the linking table.
  1001. $deleted = 0;
  1002. if ($count > 0) {
  1003. $i = 0;
  1004. $interval = intval($count * 0.01);
  1005. if ($interval < 1) {
  1006. $interval = 1;
  1007. }
  1008. foreach ($nodes as $node) {
  1009. // update the job status every 1%
  1010. if ($job_id and $i % $interval == 0) {
  1011. $percent = sprintf("%.2f", ($i / $count) * 100);
  1012. tripal_set_job_progress($job_id, intval($percent));
  1013. print "Percent complete: $percent%. Memory: " . number_format(memory_get_usage()) . " bytes.\r";
  1014. }
  1015. // check to see if the node has a corresponding entry
  1016. // in the $linking_table table. If not then delete the node.
  1017. $csql = "SELECT * FROM {" . $linking_table . "} WHERE nid = :nid ";
  1018. $results = db_query($csql, array(':nid' => $node->nid));
  1019. $link = $results->fetchObject();
  1020. if (!$link) {
  1021. if (node_access('delete', $node)) {
  1022. $deleted++;
  1023. //print "Node missing in $linking_table table.... DELETING node $node->nid\n";
  1024. node_delete($node->nid);
  1025. }
  1026. else {
  1027. print "\nNode missing in $linking_table table.... but cannot delete due to improper permissions (node $node->nid)\n";
  1028. }
  1029. }
  1030. $i++;
  1031. }
  1032. $percent = sprintf("%.2f", ($i / $count) * 100);
  1033. tripal_set_job_progress($job_id, intval($percent));
  1034. print "Percent complete: $percent%. Memory: " . number_format(memory_get_usage()) . " bytes.\r";
  1035. print "\nDeleted $deleted node(s) that did not have corresponding $linking_table entries.\n";
  1036. }
  1037. return '';
  1038. }
  1039. /**
  1040. * Create New Node
  1041. *
  1042. * Note: For your own module, replace hook in the function name with the
  1043. * machine-name of your chado node type (ie: chado_feature).
  1044. *
  1045. * @param $new_node:
  1046. * a basic new node object
  1047. * @param $record:
  1048. * the record object from chado specifying the biological data for this node
  1049. *
  1050. * @return
  1051. * A node object containing all the fields necessary to create a new node
  1052. * during sync
  1053. *
  1054. * @ingroup tripal_chado_node_api
  1055. */
  1056. function hook_chado_node_sync_create_new_node($new_node, $record) {
  1057. // Add relevant chado details to the new node object. This really only
  1058. // needs to be the fields from the node used during node creation
  1059. // including values used to generate the title, etc. All additional chado
  1060. // data will be added via nodetype_load when the node is later used
  1061. $new_node->uniquename = $record->uniquename;
  1062. return $new_node;
  1063. }
  1064. /**
  1065. * Alter the Chado node sync form.
  1066. *
  1067. * This might be necessary if you need additional filtering options for
  1068. * choosing which chado records to sync or even if you just want to further
  1069. * customize the help text provided by the form.
  1070. *
  1071. * Note: For your own module, replace hook in the function name with the
  1072. * machine-name of your chado node type (ie: chado_feature).
  1073. *
  1074. * @ingroup tripal_chado_node_api
  1075. */
  1076. function hook_chado_node_sync_form($form, &$form_state) {
  1077. // Change or add to the form array as needed.
  1078. // Any changes should be made in accordance with the Drupal Form API.
  1079. return $form;
  1080. }
  1081. /**
  1082. * Bypass chado node api sync form submit.
  1083. *
  1084. * Allows you to use this function as your own submit.
  1085. *
  1086. * This might be necessary if you want to add additional arguements to the
  1087. * tripal job or to call your own sync'ing function if the generic
  1088. * chado_node_sync_records() is not sufficient.
  1089. *
  1090. * Note: For your own module, replace hook in the function name with the
  1091. * machine-name of your chado node type (ie: chado_feature).
  1092. *
  1093. * @ingroup tripal_chado_node_api
  1094. */
  1095. function hook_chado_node_sync_form_submit ($form, $form_state) {
  1096. global $user;
  1097. $job_args = array(
  1098. // The base chado table (ie: feature).
  1099. $base_table,
  1100. // The maximum number of records to sync or FALSE for sync all that match.
  1101. $max_sync,
  1102. // The organism_id to restrict records to or FALSE if not to restrict by organism_id.
  1103. $organism_id,
  1104. // A string with the cvterm.name of the types to restrict to separated by |||
  1105. $types
  1106. );
  1107. // You should register a tripal job
  1108. tripal_add_job(
  1109. // The title of the job -be descriptive.
  1110. $title,
  1111. // The name of your module.
  1112. $module,
  1113. // The chado node api sync function.
  1114. 'chado_node_sync_records',
  1115. // An array with the arguments to pass to the above function.
  1116. $job_args,
  1117. // The user who submitted the job.
  1118. $user->uid
  1119. );
  1120. }
  1121. /**
  1122. * Alter the query that retrieves records to be sync'd (optional)
  1123. *
  1124. * This might be necessary if you need fields from other chado tables to
  1125. * create your node or if your chado node type only supports a subset of a
  1126. * given table (ie: a germplasm node type might only support node creation for
  1127. * cerain types of stock records in which case you would need to filter the
  1128. * results to only those types).
  1129. *
  1130. * Note: For your own module, replace hook in the function name with the
  1131. * machine-name of your chado node type (ie: chado_feature).
  1132. *
  1133. * @param $query
  1134. * An array containing the following:
  1135. * 'select': An array of select clauses
  1136. * 'joins: An array of joins (ie: a single join could be
  1137. * 'LEFT JOIN {chadotable} alias ON base.id=alias.id')
  1138. * 'where_clauses: An array of where clauses which will all be AND'ed
  1139. * together. Use :placeholders for values.
  1140. * 'where_args: An associative array of arguments to be subbed in to the
  1141. * where clause where the
  1142. *
  1143. * @ingroup tripal_chado_node_api
  1144. */
  1145. function hook_chado_node_sync_select_query($query) {
  1146. // You can add fields to be selected. Be sure to prefix each field with the
  1147. // tale name.
  1148. $query['select'][] = 'example.myfavfield';
  1149. // Provide any join you may need to the joins array. Be sure to wrap the
  1150. // table name in curly brackets.
  1151. $query['joins'][] = 'LEFT JOIN {exampleprop} PROP ON PROP.example_id=EXAMPLE.example_id';
  1152. // The category should be a unique id for a group of items that will be
  1153. // concatenated together via an SQL 'OR'. By default the $where_clases
  1154. // variable will come with categories of 'id', 'organism' and 'type'.
  1155. // you can add your own unique category or alter the contents of the existing
  1156. // categories. Be sure to make sure the category doesn't already exist
  1157. // in the $query['where_clauses']
  1158. $category = 'my_category';
  1159. // Provide any aditionall where clauses and their necessary arguments.
  1160. // Be sure to prefix the field with the table name. Be sure that the
  1161. // placeholder is unique across all categories (perhaps add a unique
  1162. // prefix/suffix).
  1163. $query['where_clauses'][$category][] = 'example.myfavfield = :favvalue';
  1164. $query['where_args'][$category][':favvalue'] = 'awesome-ness';
  1165. // Must return the updated query
  1166. return $query;
  1167. }