tripal_core.module 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <?php
  2. require_once "jobs.php";
  3. require_once "mviews.php";
  4. require_once "cvterms.php";
  5. require_once "chado_install.php";
  6. require_once "privacy.php";
  7. require_once "tripal_core.api.inc";
  8. /**
  9. * @defgroup tripal_modules Tripal Modules
  10. * @{
  11. * All documented functions for the various Tripal Modules
  12. * @}
  13. */
  14. /**
  15. * @defgroup tripal_core Core Tripal Module
  16. * @ingroup tripal_modules
  17. */
  18. /**
  19. *
  20. *
  21. * @ingroup tripal_core
  22. */
  23. function tripal_core_init(){
  24. // the two lines below are necessary to ensure that the search_path
  25. // variable is always set. In the case where a view needs to query the
  26. // chado schema when it is local to the Drupal database. Otherwise the
  27. // search_path isn't set. When tripal_db_set_active is called it
  28. // automatically sets the serach path if chado is local to the
  29. // Drupal database
  30. $previous = tripal_db_set_active('chado');
  31. tripal_db_set_active($previous);
  32. // create the 'tripal' controlled volcabulary in chado but only if it doesn't already exist, and
  33. // only if the chado database is present.
  34. if(tripal_core_is_chado_installed()){
  35. $previous_db = tripal_db_set_active('chado'); // use chado database
  36. if(!db_fetch_object(db_query("SELECT * FROM {cv} WHERE name = 'tripal'"))){
  37. $results = db_query("INSERT INTO {cv} (name,definition) ".
  38. "VALUES ('tripal','Terms used by Tripal for modules to manage data such as that stored in property tables like featureprop, analysisprop, etc')");
  39. }
  40. if(!db_fetch_object(db_query("SELECT * FROM {db} WHERE name = 'tripal'"))){
  41. $results = db_query("INSERT INTO {db} (name,description) ".
  42. "VALUES ('tripal','Used as a database placeholder for tripal defined objects such as tripal cvterms')");
  43. }
  44. tripal_db_set_active($previous_db); // now use drupal database
  45. }
  46. // add some variables for all javasript to use for building URLs
  47. global $base_url;
  48. $theme_dir = drupal_get_path('theme', 'tripal');
  49. $clean_urls = variable_get('clean_url', 0);
  50. drupal_add_js("
  51. var baseurl = '$base_url';
  52. var themedir = '$theme_dir';
  53. var isClean = $clean_urls;",'inline');
  54. // make sure the date time settings are the way Tripal will insert them
  55. // otherwise PostgreSQL version that may have a different datestyle setting
  56. // will fail when inserting or updating a date column in a table.
  57. db_query("SET DATESTYLE TO '%s'",'MDY');
  58. }
  59. /**
  60. *
  61. *
  62. * @ingroup tripal_core
  63. */
  64. function tripal_core_menu() {
  65. $items = array();
  66. // Triapl setting groups
  67. $items['admin/tripal'] = array(
  68. 'title' => 'Tripal Management',
  69. 'description' => "Manage the behavior or Tripal and its various modules.",
  70. 'position' => 'right',
  71. 'weight' => -5,
  72. 'page callback' => 'system_admin_menu_block_page',
  73. 'access arguments' => array('administer site configuration'),
  74. 'file' => 'system.admin.inc',
  75. 'file path' => drupal_get_path('module', 'system'),
  76. );
  77. $items['admin/tripal/tripal_jobs'] = array(
  78. 'title' => 'Jobs',
  79. 'description' => 'Jobs managed by Tripal',
  80. 'page callback' => 'tripal_jobs_report',
  81. 'access arguments' => array('access administration pages'),
  82. 'type' => MENU_NORMAL_ITEM,
  83. );
  84. $items['admin/tripal/tripal_jobs/cancel/%'] = array(
  85. 'title' => 'Jobs',
  86. 'description' => 'Cancel a pending job',
  87. 'page callback' => 'tripal_jobs_cancel',
  88. 'page arguments' => array(4),
  89. 'access arguments' => array('access administration pages'),
  90. 'type' => MENU_CALLBACK,
  91. );
  92. $items['admin/tripal/tripal_jobs/rerun/%'] = array(
  93. 'title' => 'Jobs',
  94. 'description' => 'Re-run an existing job.',
  95. 'page callback' => 'tripal_jobs_rerun',
  96. 'page arguments' => array(4),
  97. 'access arguments' => array('access administration pages'),
  98. 'type' => MENU_CALLBACK,
  99. );
  100. $items['admin/tripal/tripal_jobs/view/%'] = array(
  101. 'title' => 'Jobs Details',
  102. 'description' => 'View job details.',
  103. 'page callback' => 'tripal_jobs_view',
  104. 'page arguments' => array(4),
  105. 'access arguments' => array('access administration pages'),
  106. 'type' => MENU_CALLBACK,
  107. );
  108. $items['admin/tripal/tripal_mview/%'] = array(
  109. 'title' => 'Materialized View',
  110. 'description' => 'Materialized views are used to improve speed of large or complex queries.',
  111. 'page callback' => 'tripal_mview_report',
  112. 'page arguments' => array(3),
  113. 'access arguments' => array('access administration pages'),
  114. 'type' => MENU_NORMAL_ITEM,
  115. );
  116. $items['admin/tripal/tripal_mviews'] = array(
  117. 'title' => 'Materialized Views',
  118. 'description' => 'Materialized views are used to improve speed of large or complex queries.',
  119. 'page callback' => 'tripal_mviews_report',
  120. 'access arguments' => array('access administration pages'),
  121. 'type' => MENU_NORMAL_ITEM,
  122. );
  123. $items['admin/tripal/tripal_mviews/new'] = array(
  124. 'title' => 'Create View',
  125. 'description' => 'Materialized views are used to improve speed of large or complex queries.',
  126. 'page callback' => 'drupal_get_form',
  127. 'page arguments' => array('tripal_mviews_form'),
  128. 'access arguments' => array('access administration pages'),
  129. 'type' => MENU_NORMAL_ITEM,
  130. );
  131. $items['admin/tripal/tripal_mviews/edit/%'] = array(
  132. 'title' => 'Edit View',
  133. 'page callback' => 'drupal_get_form',
  134. 'page arguments' => array('tripal_mviews_form',4),
  135. 'access arguments' => array('access administration pages'),
  136. 'type' => MENU_NORMAL_ITEM,
  137. );
  138. $items['admin/tripal/tripal_mviews/action/%/%'] = array(
  139. 'title' => 'Create View',
  140. 'description' => 'Materialized views are used to improve speed of large or complex queries.',
  141. 'page callback' => 'tripal_mviews_action',
  142. 'page arguments' => array(4,5),
  143. 'access arguments' => array('access administration pages'),
  144. 'type' => MENU_CALLBACK,
  145. );
  146. $items['tripal_toggle_box_menu/%/%/%'] = array(
  147. 'title' => t('Libraries'),
  148. 'page callback' => 'tripal_toggle_box_menu',
  149. 'page arguments' => array(1,2,3),
  150. 'access arguments' => array('access administration pages'),
  151. 'type' => MENU_CALLBACK | MENU_LINKS_TO_PARENT
  152. );
  153. $items['admin/tripal/chado_1_11_install'] = array(
  154. 'title' => 'Install Chado v1.11',
  155. 'description' => 'Installs Chado version 1.11 inside the current Drupal database',
  156. 'page callback' => 'drupal_get_form',
  157. 'page arguments' => array('tripal_core_chado_v1_11_load_form'),
  158. 'access arguments' => array('access administration pages'),
  159. 'type' => MENU_NORMAL_ITEM,
  160. );
  161. return $items;
  162. }
  163. /**
  164. *
  165. *
  166. * @param $dbname
  167. * The name of the database to switch to as indicated in settings.php
  168. * Should be either default or chado
  169. *
  170. * @return
  171. * The name of the previously set database
  172. *
  173. * @ingroup tripal_chado_api
  174. */
  175. function tripal_core_is_chado_installed(){
  176. global $db_url, $db_type;
  177. // first check if chado is in the db_url of the
  178. // settings.php file
  179. if(is_array($db_url)){
  180. if(isset($db_url['chado'])){
  181. return true;
  182. }
  183. }
  184. // check to make sure the chado schema exists
  185. $sql = "select nspname from pg_catalog.pg_namespace where nspname = 'chado'";
  186. if(db_fetch_object(db_query($sql))){
  187. return true;
  188. }
  189. return false;
  190. }
  191. /**
  192. * Implements hook_views_api()
  193. *
  194. * Purpose: Essentially this hook tells drupal that there is views support for
  195. * for this module which then includes tripal_core.views.inc where all the
  196. * views integration code is
  197. *
  198. * @ingroup tripal_core
  199. */
  200. function tripal_core_views_api() {
  201. return array(
  202. 'api' => 2.0,
  203. );
  204. }
  205. /**
  206. *
  207. * @ingroup tripal_core
  208. */
  209. function tripal_core_theme () {
  210. return array(
  211. 'tripal_core_job_view' => array (
  212. 'arguments' => array('job_id'=> null),
  213. 'template' => 'tripal_core_job_view',
  214. ),
  215. );
  216. }
  217. /**
  218. *
  219. * @ingroup tripal_core
  220. */
  221. function tripal_core_job_describe_args($callback,$args){
  222. $new_args = array();
  223. if($callback == 'tripal_update_mview'){
  224. // get this mview details
  225. $sql = "SELECT * FROM {tripal_mviews} WHERE mview_id = %d ";
  226. $mview = db_fetch_object(db_query($sql,$args[0]));
  227. $new_args['View Name'] = $mview->name;
  228. }
  229. return $new_args;
  230. }
  231. // this is just a wrapper for backwards compatibility with a naming mistake.
  232. // it can go away in the future as it only is useful for jobs created by v0.3b
  233. function tripal_core_load_gff3($gff_file, $organism_id,$analysis_id,$add_only =0,
  234. $update = 0, $refresh = 0, $remove = 0, $job = NULL)
  235. {
  236. tripal_feature_load_gff3($gff_file, $organism_id,$analysis_id,$add_only,
  237. $update, $refresh, $remove, $job);
  238. }