tripal_core.custom_tables.api.inc 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. <?php
  2. /**
  3. * @file
  4. * Provides an API to manage custom tables in Chado.
  5. */
  6. /**
  7. * @defgroup tripal_custom_tables_api Tripal Custom Tables API
  8. * @ingroup tripal_core_api
  9. * @{
  10. * Provides an API to manage custom tables in Chado.
  11. * @}
  12. */
  13. /**
  14. * Edits a custom table in the chado database. It supports
  15. * using the Drupal Schema API array.
  16. *
  17. * @param $table_id
  18. * The table_id of the table to edit
  19. * @param $table_name
  20. * The name of the custom table
  21. * @param $schema
  22. * Use the Schema API array to define the custom table.
  23. * @param $skip_creation
  24. * Set as TRUE to skip dropping and re-creation of the table. This is
  25. * useful if the table was already created through another means and you
  26. * simply want to make Tripal aware of the table schema.
  27. *
  28. * @ingroup tripal_custom_tables_api
  29. */
  30. function chado_edit_custom_table($table_id, $table_name, $schema, $skip_creation = 1) {
  31. // Create a new record
  32. $record = new stdClass();
  33. $record->table_id = $table_id;
  34. $record->table_name = $table_name;
  35. $record->schema = serialize($schema);
  36. // get the current custom table record
  37. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_id = :table_id";
  38. $results = db_query($sql, array(':table_id' => $table_id));
  39. $custom_table = $results->fetchObject();
  40. // if this is a materialized view then don't allow editing with this function
  41. if ($custom_table->mview_id) {
  42. tripal_report_error('tripal_core', TRIPAL_ERROR, "Please use the tripal_edit_mview() function to edit this custom table as it is a materialized view.", array());
  43. drupal_set_message("This custom table is a materialized view. Please use the " . l('Materialized View', 'admin/tripal/schema/mviews') . " interface to edit it.", 'error');
  44. return FALSE;
  45. }
  46. // if the user changed the table name, we want to drop the old one and force
  47. // creation of the new one.
  48. if ($custom_table->table_name != $table_name) {
  49. chado_query("DROP TABLE %s", $custom_table->table_name);
  50. $skip_creation = 0; // we want to create the table
  51. }
  52. // if skip creation is not set, then drop the table from chado if it exists
  53. if (!$skip_creation) {
  54. if (db_table_exists($custom_table->table_name)) {
  55. chado_query("DROP TABLE %s", $custom_table->table_name);
  56. drupal_set_message(t("Custom Table '%name' dropped", array('%name' => $custom_table->table_name)));
  57. }
  58. }
  59. // update the custom table record and re-create the table in Chado
  60. if (drupal_write_record('tripal_custom_tables', $record, 'table_id')) {
  61. // drop the table from chado if it exists
  62. if (!$skip_creation) {
  63. if (db_table_exists($custom_table->table_name)) {
  64. chado_query("DROP TABLE %s", $custom_table->table_name);
  65. drupal_set_message(t("Custom Table '%name' dropped", array('%name' => $custom_table->table_name)));
  66. }
  67. // re-create the table
  68. if (!chado_create_custom_table ($table_name, $schema)) {
  69. drupal_set_message(t("Could not create the custom table. Check Drupal error report logs."));
  70. }
  71. else {
  72. drupal_set_message(t("Custom table '%name' created", array('%name' => $table_name)));
  73. }
  74. }
  75. }
  76. }
  77. /**
  78. * Add a new table to the Chado schema. This function is simply a wrapper for
  79. * the db_create_table() function of Drupal, but ensures the table is created
  80. * inside the Chado schema rather than the Drupal schema. If the table already
  81. * exists then it will be dropped and recreated using the schema provided.
  82. * However, it will only drop a table if it exsits in the tripal_custom_tables
  83. * table. This way the function cannot be used to accidentally alter existing
  84. * non custom tables. If $skip_creation is set then the table is simply
  85. * added to the tripal_custom_tables and no table is created in Chado.
  86. *
  87. * If you are creating a materialized view do not use this function, but rather
  88. * use the tripal_add_mview(). A materialized view is also considered a custom table
  89. * and an entry for it will be added to both the tripal_mviews and
  90. * tripal_custom_tables tables, but only if the tripal_add_mview() function is
  91. * used. The optional $mview_id parameters in this function is intended
  92. * for use by the tripal_add_mview() function when it calls this function
  93. * to create the table.
  94. *
  95. * @param $table
  96. * The name of the table to create.
  97. * @param $schema
  98. * A Drupal-style Schema API definition of the table
  99. * @param $skip_creation
  100. * Set as TRUE to skip dropping and re-creation of the table if it already
  101. * exists. This is useful if the table was already created through another
  102. * means and you simply want to make Tripal aware of the table schema. If the
  103. * table does not exist it will be created.
  104. * @param $mview_id
  105. * Optional. If this custom table is also a materialized view then provide
  106. * it's mview_id. This paramter is intended only when this function
  107. * is called by the tripal_add_mview() function. When creating a custom
  108. * table you shouldn't need to use this parameter.
  109. * @return
  110. * TRUE on success, FALSE on failure
  111. *
  112. * @ingroup tripal_custom_tables_api
  113. */
  114. function chado_create_custom_table($table, $schema, $skip_creation = 1, $mview_id = NULL) {
  115. global $databases;
  116. $created = 0;
  117. $recreated = 0;
  118. // see if the table entry already exists in the tripal_custom_tables table.
  119. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_name = :table_name";
  120. $results = db_query($sql, array(':table_name' => $table));
  121. $centry = $results->fetchObject();
  122. // check to see if the table already exists in the chado schema
  123. $exists = chado_table_exists($table);
  124. // if the table does not exist then create it
  125. if (!$exists) {
  126. try {
  127. $ret = db_create_table('chado.' . $table, $schema);
  128. $created = 1;
  129. }
  130. catch (Exception $e) {
  131. $error = $e->getMessage();
  132. tripal_report_error('tripal_core', TRIPAL_ERROR,
  133. "Error adding custom table: @message", array('@message' => $error));
  134. drupal_set_message("Could not add custom table. $error.", "error");
  135. return FALSE;
  136. }
  137. }
  138. // if the table exists in Chado and in our custom table and
  139. // skip creation is turned off then drop and re-create the table
  140. if ($exists and is_object($centry) and !$skip_creation) {
  141. // drop the table we'll recreate it with the new schema
  142. try {
  143. chado_query('DROP TABLE {' . $table . '}');
  144. // remove any 'referring_tables' from the array as the db_create_table doesn't use that
  145. $new_schema = $schema;
  146. if (array_key_exists('referring_tables', $new_schema)) {
  147. unset($new_schema['referring_tables']);
  148. }
  149. db_create_table('chado.' . $table, $new_schema);
  150. $recreated = 1;
  151. }
  152. catch (Exception $e) {
  153. $error = $e->getMessage();
  154. tripal_report_error('tripal_core', TRIPAL_ERROR,
  155. "Error adding custom table: @message",
  156. array('@message' => $error));
  157. drupal_set_message("Could not add custom table. $error.", "error");
  158. return FALSE;
  159. }
  160. }
  161. // add an entry in the tripal_custom_table
  162. $record = new stdClass();
  163. $record->table_name = $table;
  164. $record->schema = serialize($schema);
  165. if ($mview_id) {
  166. $record->mview_id = $mview_id;
  167. }
  168. // if an entry already exists then remove it
  169. if ($centry) {
  170. $sql = "DELETE FROM {tripal_custom_tables} WHERE table_name = :table_name";
  171. db_query($sql, array(':table_name' => $table));
  172. }
  173. $success = drupal_write_record('tripal_custom_tables', $record);
  174. if (!$success) {
  175. tripal_report_error('tripal_core', TRIPAL_ERROR, "Error adding custom table %table_name.",
  176. array('%table_name' => $table));
  177. drupal_set_message(t("Could not add custom table %table_name.
  178. Please check the schema array.", array('%table_name' => $table)), 'error');
  179. return FALSE;
  180. }
  181. // now add any foreign key constraints
  182. if (!$skip_creation and array_key_exists('foreign keys', $schema)) {
  183. // iterate through the foreign keys and add each one
  184. $fkeys = $schema['foreign keys'];
  185. foreach ($fkeys as $fktable => $fkdetails) {
  186. $relations = $fkdetails['columns'];
  187. foreach ($relations as $left => $right) {
  188. $sql = '
  189. ALTER TABLE {' . $table . '}
  190. ADD CONSTRAINT ' . $table . '_' . $left . '_fkey FOREIGN KEY (' . $left . ')
  191. REFERENCES {' . $fktable . '} (' . $right . ')
  192. ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
  193. ';
  194. try {
  195. chado_query($sql);
  196. }
  197. catch (Exception $e) {
  198. $error = $e->getMessage();
  199. tripal_report_error('tripal_core', TRIPAL_ERROR, "Error, could not add foreign key contraint to custom table: %error",
  200. array('%error' => $error));
  201. drupal_set_message("Could not add foreign key contraint to table: $error", 'error');
  202. return FALSE;
  203. }
  204. }
  205. }
  206. }
  207. if ($created) {
  208. drupal_set_message("Custom table created successfully.", 'status');
  209. }
  210. elseif ($recreated) {
  211. drupal_set_message("Custom table re-created successfully.", 'status');
  212. }
  213. else {
  214. drupal_set_message("Custom table already exists. Table structure not changed, but definition array has been saved.", 'status');
  215. }
  216. return TRUE;
  217. }
  218. /**
  219. * Retrieve the custom table id given the name
  220. *
  221. * @param $table_name
  222. * The name of the custom table
  223. *
  224. * @return
  225. * The unique identifier for the given table
  226. *
  227. * @ingroup tripal_custom_tables_api
  228. */
  229. function chado_get_custom_table_id($table_name) {
  230. if (db_table_exists('tripal_custom_tables')) {
  231. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_name = :table_name";
  232. $results = db_query($sql, array(':table_name' => $table_name));
  233. $custom_table = $results->fetchObject();
  234. if ($custom_table) {
  235. return $custom_table->table_id;
  236. }
  237. }
  238. return FALSE;
  239. }
  240. /**
  241. * Deletes the specified custom table
  242. *
  243. * @param $table_id
  244. * The unique ID of the custom table for the action to be performed on
  245. *
  246. * @ingroup tripal_custom_tables
  247. */
  248. function tripal_delete_custom_table($table_id) {
  249. global $user;
  250. $args = array("$table_id");
  251. if (!$table_id) {
  252. return '';
  253. }
  254. // get this table details
  255. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_id = :table_id";
  256. $results = db_query($sql, array(':table_id' => $table_id));
  257. $custom_table = $results->fetchObject();
  258. // if this is a materialized view then don't allow deletion with this function
  259. if ($custom_table->mview_id) {
  260. tripal_report_error('tripal_core', TRIPAL_ERROR, "Please use the tripal_delete_mview() function to delete this custom table as it is a materialized view. Table not deleted.", array());
  261. drupal_set_message("This custom table is a materialized view. Please use the " . l('Materialized View', 'admin/tripal/schema/mviews') . " interface to delete it.", 'error');
  262. return FALSE;
  263. }
  264. // remove the entry from the tripal_custom tables table
  265. $sql = "DELETE FROM {tripal_custom_tables} WHERE table_id = $table_id";
  266. $success = db_query($sql);
  267. if ($success) {
  268. drupal_set_message(t("Custom Table '%name' removed", array('%name' => $custom_table->table_name)));
  269. }
  270. // drop the table from chado if it exists
  271. if (db_table_exists($custom_table->table_name)) {
  272. $success = chado_query("DROP TABLE %s", $custom_table->table_name);
  273. if ($success) {
  274. drupal_set_message(t("Custom Table '%name' dropped", array('%name' => $custom_table->table_name)));
  275. }
  276. }
  277. }