tripal_core.module 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. <?php
  2. /**
  3. * @file
  4. * The Tripal Core module
  5. */
  6. /**
  7. * @defgroup tripal_modules Tripal Modules
  8. * @{
  9. * All documented functions for the various Tripal Modules excluding API functions and Views Integration functions.
  10. * @}
  11. */
  12. /**
  13. * @defgroup tripal_api Tripal API
  14. * @{
  15. * Provides an application programming interface (API) for Tripal
  16. *
  17. * The Tripal API currently provides generic insert/update/select functions for all chado content as
  18. * well as some module specific functions that insert/update/delete/select specific chado content.
  19. *
  20. * This API is currently in its infancy and some necessary functions might be missing. If you find
  21. * a missing function that you think should be included go to the sourceforge feature request
  22. * page and request it's inclusion in the API. Such feature requests with a working function
  23. * definition will be given priority.
  24. * @}
  25. */
  26. /**
  27. * @defgroup tripal_core_api Core Module API
  28. * @ingroup tripal_api
  29. */
  30. /**
  31. * @defgroup tripal_core Tripal Core Module
  32. * @ingroup tripal_modules
  33. */
  34. require_once "api/tripal_core_chado.api.inc";
  35. require_once "api/tripal_core_files.api.inc";
  36. require_once "api/tripal_core_ahah.api.inc";
  37. require_once "api/tripal_core_custom_tables.api.inc";
  38. require_once "api/tripal_core_jobs.api.inc";
  39. require_once "api/tripal_core_mviews.api.inc";
  40. require_once "api/tripal_core_misc.api.inc";
  41. require_once "includes/jobs.inc";
  42. require_once "includes/mviews.inc";
  43. require_once "includes/custom_tables.inc";
  44. require_once "includes/chado_install.inc";
  45. require_once "includes/form_elements.inc";
  46. /**
  47. * Implements hook_init().
  48. * Used to set the search_path, create default content and set default variables.
  49. *
  50. * @ingroup tripal_core
  51. */
  52. function tripal_core_init() {
  53. global $base_url;
  54. // add javascript files
  55. drupal_add_js(drupal_get_path('theme', 'tripal') . '/js/tripal.ahah.js');
  56. // create the 'tripal' controlled volcabulary in chado but only if it doesn't already exist, and
  57. // only if the chado database is present.
  58. if (tripal_core_is_chado_installed()) {
  59. // make sure the current version of chado is set
  60. tripal_core_set_chado_version();
  61. // if the Tripal cv is missing then add
  62. $results = chado_query("SELECT * FROM {cv} WHERE name = 'tripal'");
  63. $tripal_cv = $results->fetchObject();
  64. if (!$tripal_cv) {
  65. $results = chado_query(
  66. "INSERT INTO {cv} (name,definition) " .
  67. "VALUES ('tripal', 'Terms used by Tripal for modules to manage data such as that stored in property tables like featureprop, analysisprop, etc')"
  68. );
  69. }
  70. // if the Tripal db is missing then add it
  71. $results = chado_query("SELECT * FROM {db} WHERE name = 'tripal'");
  72. $tripal_db = $results->fetchObject();
  73. if (!$tripal_db) {
  74. $results = chado_query(
  75. "INSERT INTO {db} (name,description) " .
  76. "VALUES ('tripal', 'Used as a database placeholder for tripal defined objects such as tripal cvterms')"
  77. );
  78. }
  79. }
  80. // add some variables for all javasript to use for building URLs
  81. global $base_url;
  82. $theme_dir = drupal_get_path('theme', 'tripal');
  83. $clean_urls = variable_get('clean_url', 0);
  84. drupal_add_js(
  85. " var baseurl = '$base_url';
  86. var themedir = '$theme_dir';
  87. var isClean = $clean_urls;",
  88. 'inline', 'header');
  89. // make sure the date time settings are the way Tripal will insert them
  90. // otherwise PostgreSQL version that may have a different datestyle setting
  91. // will fail when inserting or updating a date column in a table.
  92. db_query("SET DATESTYLE TO :style", array(':style' => 'MDY'));
  93. // If we want AHAH elements on the node forms (e.g. chado_pub form) then we need to include
  94. // the node.pages file. Otherwise this error message is given:
  95. //
  96. // warning: call_user_func_array() expects parameter 1 to be a valid callback,
  97. // function 'node_form' not found or invalid function name
  98. // in /var/www/includes/form.inc on line 382.
  99. module_load_include('inc', 'node', 'node.pages');
  100. }
  101. /**
  102. * Implements hook_menu().
  103. * Defines all menu items needed by Tripal Core
  104. *
  105. * @ingroup tripal_core
  106. */
  107. function tripal_core_menu() {
  108. $items = array();
  109. // Triapl setting groups
  110. $items['admin/tripal'] = array(
  111. 'title' => 'Tripal Management',
  112. 'description' => "Manage the behavior or Tripal and its various modules.",
  113. 'position' => 'right',
  114. 'weight' => -5,
  115. 'page callback' => 'system_admin_menu_block_page',
  116. 'access arguments' => array('administer site configuration'),
  117. 'file' => 'system.admin.inc',
  118. 'file path' => drupal_get_path('module', 'system'),
  119. );
  120. $items['admin/tripal/customize'] = array(
  121. 'title' => 'Customize Tripal',
  122. 'position' => 'right',
  123. 'page callback' => 'theme',
  124. 'page arguments' => array('tripal_core_customize'),
  125. 'access arguments' => array('administer site configuration'),
  126. );
  127. $items['tripal_toggle_box_menu/%/%/%'] = array(
  128. 'title' => 'Toggle Box',
  129. 'page callback' => 'tripal_toggle_box_menu',
  130. 'page arguments' => array(1, 2, 3),
  131. 'access arguments' => array('access administration pages'),
  132. 'type' => MENU_CALLBACK | MENU_LINKS_TO_PARENT
  133. );
  134. $items['admin/tripal/chado_install'] = array(
  135. 'title' => 'Install Chado Schema',
  136. 'description' => 'Installs the Chado database tables, views, etc., inside the current Drupal database',
  137. 'page callback' => 'drupal_get_form',
  138. 'page arguments' => array('tripal_core_chado_load_form'),
  139. 'access arguments' => array('install chado'),
  140. 'type' => MENU_NORMAL_ITEM,
  141. );
  142. // Jobs Management
  143. $items['admin/tripal/tripal_jobs'] = array(
  144. 'title' => 'Jobs',
  145. 'description' => 'Jobs managed by Tripal',
  146. 'page callback' => 'tripal_jobs_report',
  147. 'access arguments' => array('access administration pages'),
  148. 'type' => MENU_NORMAL_ITEM,
  149. );
  150. $items['admin/tripal/tripal_jobs/cancel/%'] = array(
  151. 'title' => 'Jobs',
  152. 'description' => 'Cancel a pending job',
  153. 'page callback' => 'tripal_jobs_cancel',
  154. 'page arguments' => array(4),
  155. 'access arguments' => array('access administration pages'),
  156. 'type' => MENU_CALLBACK,
  157. );
  158. $items['admin/tripal/tripal_jobs/rerun/%'] = array(
  159. 'title' => 'Jobs',
  160. 'description' => 'Re-run an existing job.',
  161. 'page callback' => 'tripal_jobs_rerun',
  162. 'page arguments' => array(4),
  163. 'access arguments' => array('access administration pages'),
  164. 'type' => MENU_CALLBACK,
  165. );
  166. $items['admin/tripal/tripal_jobs/view/%'] = array(
  167. 'title' => 'Jobs Details',
  168. 'description' => 'View job details.',
  169. 'page callback' => 'tripal_jobs_view',
  170. 'page arguments' => array(4),
  171. 'access arguments' => array('access administration pages'),
  172. 'type' => MENU_CALLBACK,
  173. );
  174. // Materialized Views
  175. $items['admin/tripal/mviews'] = array(
  176. 'title' => 'MViews',
  177. 'description' => 'Materialized views are used to improve speed of large or complex queries.',
  178. 'page callback' => 'tripal_mviews_report',
  179. 'access arguments' => array('access administration pages'),
  180. 'type' => MENU_NORMAL_ITEM,
  181. );
  182. $items['admin/tripal/mviews/report/%'] = array(
  183. 'title' => 'Materialized View',
  184. 'description' => 'Materialized views are used to improve speed of large or complex queries.',
  185. 'page callback' => 'tripal_mview_report',
  186. 'page arguments' => array(4),
  187. 'access arguments' => array('access administration pages'),
  188. 'type' => MENU_NORMAL_ITEM,
  189. );
  190. $items['admin/tripal/mviews/new'] = array(
  191. 'title' => 'Create MView',
  192. 'description' => 'Materialized views are used to improve speed of large or complex queries.',
  193. 'page callback' => 'drupal_get_form',
  194. 'page arguments' => array('tripal_mviews_form'),
  195. 'access arguments' => array('access administration pages'),
  196. 'type' => MENU_CALLBACK,
  197. );
  198. $items['admin/tripal/mviews/edit/%'] = array(
  199. 'title' => 'Edit MView',
  200. 'page callback' => 'drupal_get_form',
  201. 'page arguments' => array('tripal_mviews_form', 4),
  202. 'access arguments' => array('access administration pages'),
  203. 'type' => MENU_NORMAL_ITEM,
  204. );
  205. $items['admin/tripal/mviews/action/%/%'] = array(
  206. 'title' => 'Create MView',
  207. 'description' => 'Materialized views are used to improve speed of large or complex queries.',
  208. 'page callback' => 'tripal_mviews_action',
  209. 'page arguments' => array(4, 5, "1"),
  210. 'access arguments' => array('access administration pages'),
  211. 'type' => MENU_CALLBACK,
  212. );
  213. // Custom Tables
  214. $items['admin/tripal/custom_tables'] = array(
  215. 'title' => 'Custom Tables',
  216. 'description' => 'Custom tables are added to Chado.',
  217. 'page callback' => 'tripal_custom_tables_list',
  218. 'access arguments' => array('access administration pages'),
  219. 'type' => MENU_NORMAL_ITEM,
  220. );
  221. $items['admin/tripal/custom_tables/view/%'] = array(
  222. 'title' => 'Custom Tables',
  223. 'description' => 'Custom tables are added to Chado.',
  224. 'page callback' => 'tripal_custom_table_view',
  225. 'page arguments' => array(4),
  226. 'access arguments' => array('access administration pages'),
  227. 'type' => MENU_NORMAL_ITEM,
  228. );
  229. $items['admin/tripal/custom_tables/new'] = array(
  230. 'title' => 'Create Custom Table',
  231. 'description' => 'Custom tables are added to Chado.',
  232. 'page callback' => 'drupal_get_form',
  233. 'page arguments' => array('tripal_custom_tables_form'),
  234. 'access arguments' => array('access administration pages'),
  235. 'type' => MENU_CALLBACK,
  236. );
  237. $items['admin/tripal/custom_tables/edit/%'] = array(
  238. 'title' => 'Edit Custom Table',
  239. 'page callback' => 'drupal_get_form',
  240. 'page arguments' => array('tripal_custom_tables_form', 4),
  241. 'access arguments' => array('access administration pages'),
  242. 'type' => MENU_NORMAL_ITEM,
  243. );
  244. $items['admin/tripal/custom_tables/action/%/%'] = array(
  245. 'title' => 'Create Custom TAble',
  246. 'description' => 'Custom tables are added to Chado.',
  247. 'page callback' => 'tripal_custom_tables_action',
  248. 'page arguments' => array(4, 5, "1"),
  249. 'access arguments' => array('access administration pages'),
  250. 'type' => MENU_CALLBACK,
  251. );
  252. return $items;
  253. }
  254. /**
  255. * Set the permission types that the chado module uses. Essentially we
  256. * want permissionis that protect creation, editing and deleting of chado
  257. * data objects
  258. *
  259. * @ingroup tripal_core
  260. */
  261. function tripal_core_permission() {
  262. return array(
  263. 'install chado' => array(
  264. 'title' => t('Install Chado'),
  265. 'description' => t('Allow the user to install or upgrade a Chado database in the existing Drupal database.')
  266. ),
  267. );
  268. }
  269. /**
  270. * Implements hook_theme().
  271. * Registers template files/functions used by this module.
  272. *
  273. * @ingroup tripal_core
  274. */
  275. function tripal_core_theme() {
  276. return array(
  277. 'tripal_core_job_view' => array(
  278. 'arguments' => array('job_id' => NULL),
  279. 'template' => 'tripal_core_job_view',
  280. ),
  281. 'tripal_core_customize' => array(
  282. 'arguments' => array('job_id' => NULL),
  283. 'template' => 'tripal_core_customize',
  284. 'path' => drupal_get_path('module', 'tripal_core') . '/theme'
  285. ),
  286. );
  287. }
  288. /**
  289. * Implements hook_job_describe_args().
  290. * Describes the arguements for the tripal_update_mview job to allow for greater
  291. * readability in the jobs details pages.
  292. *
  293. * @param $callback
  294. * The callback of the current tripal job (this is the function that will be executed
  295. * when tripal_launch_jobs.php is run.
  296. * @param $args
  297. * An array of arguments passed in when the job was registered.
  298. *
  299. * @return
  300. * A more readable $args array
  301. *
  302. * @ingroup tripal_core
  303. */
  304. function tripal_core_job_describe_args($callback, $args) {
  305. $new_args = array();
  306. if ($callback == 'tripal_update_mview') {
  307. // get this mview details
  308. $sql = "SELECT * FROM {tripal_mviews} WHERE mview_id = :mview_id ";
  309. $results = db_query($sql, array(':mview_id' => $args[0]));
  310. $mview = $results->fetchObject();
  311. $new_args['View Name'] = $mview->name;
  312. }
  313. elseif ($callback == 'tripal_core_install_chado') {
  314. $new_args['Action'] = $args[0];
  315. }
  316. return $new_args;
  317. }
  318. /**
  319. * this is just a wrapper for backwards compatibility with a naming mistake.
  320. * it can go away in the future as it only is useful for jobs created by v0.3b
  321. *
  322. * @todo remove this function
  323. */
  324. function tripal_core_load_gff3($gff_file, $organism_id, $analysis_id, $add_only = 0,
  325. $update = 0, $refresh = 0, $remove = 0, $job = NULL) {
  326. tripal_feature_load_gff3($gff_file, $organism_id, $analysis_id, $add_only,
  327. $update, $refresh, $remove, $job);
  328. }
  329. /**
  330. * Implements hook_coder_ignore().
  331. * Defines the path to the file (tripal_core.coder_ignores.txt) where ignore rules for coder are stored
  332. */
  333. function tripal_core_coder_ignore() {
  334. return array(
  335. 'path' => drupal_get_path('module', 'tripal_core'),
  336. 'line prefix' => drupal_get_path('module', 'tripal_core'),
  337. );
  338. }