tripal_core.custom_tables.api.inc 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <?php
  2. /**
  3. * @file
  4. * Contains functions for the Custom Tables API
  5. * @defgroup tripal_custom_tables_api Custom Tables API
  6. * @ingroup tripal_core_api
  7. * @{
  8. * Provides an API to manage custom tables in Chado.
  9. * @}
  10. */
  11. /**
  12. * Edits a custom table in the chado database. It supports
  13. * using the Drupal Schema API array.
  14. *
  15. * @param $table_id
  16. * The table_id of the table to edit
  17. * @param $table_name
  18. * The name of the custom table
  19. * @param $schema
  20. * Use the Schema API array to define the custom table.
  21. * @param $skip_creation
  22. * Set as TRUE to skip dropping and re-creation of the table. This is
  23. * useful if the table was already created through another means and you
  24. * simply want to make Tripal aware of the table schema.
  25. *
  26. * @ingroup tripal_custom_tables_api
  27. */
  28. function tripal_core_edit_custom_table($table_id, $table_name, $schema, $skip_creation = 1) {
  29. // Create a new record
  30. $record = new stdClass();
  31. $record->table_id = $table_id;
  32. $record->table_name = $table_name;
  33. $record->schema = serialize($schema);
  34. // get the current custom table record
  35. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_id = :table_id";
  36. $results = db_query($sql, array(':table_id' => $table_id));
  37. $custom_table = $results->fetchObject();
  38. // if the user changed the table name, we want to drop the old one and force
  39. // creation of the new one.
  40. if ($custom_table->table_name != $table_name) {
  41. chado_query("DROP TABLE %s", $custom_table->table_name);
  42. $skip_creation = 0; // we want to create the table
  43. }
  44. // if skip creation is not set, then drop the table from chado if it exists
  45. if (!$skip_creation) {
  46. if (db_table_exists($custom_table->table_name)) {
  47. chado_query("DROP TABLE %s", $custom_table->table_name);
  48. drupal_set_message(t("Custom Table '%name' dropped", array('%name' => $custom_table->table_name)));
  49. }
  50. }
  51. // update the custom table record and re-create the table in Chado
  52. if (drupal_write_record('tripal_custom_tables', $record, 'table_id')) {
  53. // drop the table from chado if it exists
  54. if (!$skip_creation) {
  55. if (db_table_exists($custom_table->table_name)) {
  56. chado_query("DROP TABLE %s", $custom_table->table_name);
  57. drupal_set_message(t("Custom Table '%name' dropped", array('%name' => $custom_table->table_name)));
  58. }
  59. // re-create the table
  60. if (!tripal_core_create_custom_table ($table_name, $schema)) {
  61. drupal_set_message(t("Could not create the custom table. Check Drupal error report logs."));
  62. }
  63. else {
  64. drupal_set_message(t("Custom table '%name' created", array('%name' => $table_name)));
  65. }
  66. }
  67. // TODO: add FK constraints
  68. }
  69. }
  70. /**
  71. * Add a new table to the Chado schema. This function is simply a wrapper for
  72. * the db_create_table() function of Drupal, but ensures the table is created
  73. * inside the Chado schema rather than the Drupal schema. If the table already
  74. * exists then it will be dropped and recreated using the schema provided.
  75. * However, it will only drop a table if it exsits in the tripal_custom_tables
  76. * table. This way the function cannot be used to accidentally alter existing
  77. * non custom tables. If $skip_creation is set then the table is simply
  78. * added to the tripal_custom_tables and no table is created in Chado.
  79. *
  80. * @param $table
  81. * The name of the table to create.
  82. * @param $schema
  83. * A Drupal-style Schema API definition of the table
  84. * @param $skip_creation
  85. * Set as TRUE to skip dropping and re-creation of the table if it already
  86. * exists. This is useful if the table was already created through another
  87. * means and you simply want to make Tripal aware of the table schema. If the
  88. * table does not exist it will be created.
  89. *
  90. * @return
  91. * TRUE on success, FALSE on failure
  92. *
  93. * @ingroup tripal_custom_tables_api
  94. */
  95. function tripal_core_create_custom_table($table, $schema, $skip_creation = 1) {
  96. global $databases;
  97. $created = 0;
  98. $recreated = 0;
  99. // see if the table entry already exists in the tripal_custom_tables table.
  100. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_name = :table_name";
  101. $results = db_query($sql, array(':table_name' => $table));
  102. $centry = $results->fetchObject();
  103. // check to see if the table already exists in the chado schema
  104. $exists = chado_table_exists($table);
  105. // if the table does not exist then create it
  106. if (!$exists) {
  107. try {
  108. $ret = db_create_table('chado.' . $table, $schema);
  109. $created = 1;
  110. }
  111. catch (Exception $e) {
  112. $error = $e->getMessage();
  113. watchdog('tripal_core', "Error adding custom table: @message", array('@message' => $error), WATCHDOG_ERROR);
  114. drupal_set_message("Could not add custom table. $error.", "error");
  115. return FALSE;
  116. }
  117. }
  118. // if the table exists in Chado and in our custom table and
  119. // skip creation is turned off then drop and re-create the table
  120. if ($exists and is_object($centry) and !$skip_creation) {
  121. // drop the table we'll recreate it with the new schema
  122. try {
  123. chado_query('DROP TABLE {' . $table . '}');
  124. db_create_table('chado.' . $table, $schema);
  125. $recreated = 1;
  126. }
  127. catch (Exception $e) {
  128. $error = $e->getMessage();
  129. watchdog('tripal_core', "Error adding custom table: @message",
  130. array('@message' => $error), WATCHDOG_ERROR);
  131. drupal_set_message("Could not add custom table. $error.", "error");
  132. return FALSE;
  133. }
  134. }
  135. // add an entry in the tripal_custom_table
  136. $record = new stdClass();
  137. $record->table_name = $table;
  138. $record->schema = serialize($schema);
  139. // if an entry already exists then remove it
  140. if ($centry) {
  141. $sql = "DELETE FROM {tripal_custom_tables} WHERE table_name = :table_name";
  142. db_query($sql, array(':table_name' => $table));
  143. }
  144. $success = drupal_write_record('tripal_custom_tables', $record);
  145. if (!$success) {
  146. watchdog('tripal_core', "Error adding custom table %table_name.",
  147. array('%table_name' => $table), WATCHDOG_ERROR);
  148. drupal_set_message(t("Could not add custom table %table_name.
  149. Please check the schema array.", array('%table_name' => $table)), 'error');
  150. return FALSE;
  151. }
  152. // now add any foreign key constraints
  153. if (!$skip_creation and array_key_exists('foreign keys', $schema)) {
  154. // iterate through the foreign keys and add each one
  155. $fkeys = $schema['foreign keys'];
  156. foreach ($fkeys as $fktable => $fkdetails) {
  157. $relations = $fkdetails['columns'];
  158. foreach ($relations as $left => $right) {
  159. $sql = '
  160. ALTER TABLE {' . $table . '}
  161. ADD CONSTRAINT ' . $table . '_' . $left . '_fkey FOREIGN KEY (' . $left . ')
  162. REFERENCES {' . $fktable . '} (' . $right . ')
  163. ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
  164. ';
  165. try {
  166. chado_query($sql);
  167. }
  168. catch (Exception $e) {
  169. $error = $e->getMessage();
  170. watchdog('tripal_core', "Error, could not add foreign key contraint to custom table: %error",
  171. array('%error' => $error), WATCHDOG_ERROR);
  172. drupal_set_message("Could not add foreign key contraint to table: $error", 'error');
  173. return FALSE;
  174. }
  175. }
  176. }
  177. }
  178. if ($created) {
  179. drupal_set_message("Custom table created successfully.", 'status');
  180. }
  181. elseif ($recreated) {
  182. drupal_set_message("Custom table re-created successfully.", 'status');
  183. }
  184. else {
  185. drupal_set_message("Custom table already exists. Table structure not changed, but definition array has been saved.", 'status');
  186. }
  187. return TRUE;
  188. }
  189. /**
  190. * Retrieve the custom table id given the name
  191. *
  192. * @param $table_name
  193. * The name of the custom table
  194. *
  195. * @return
  196. * The unique identifier for the given table
  197. *
  198. * @ingroup tripal_custom_tables_api
  199. */
  200. function tripal_custom_tables_get_table_id($table_name) {
  201. if (db_table_exists('tripal_custom_tables')) {
  202. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_name = :table_name";
  203. $results = db_query($sql, array(':table_name' => $table_name));
  204. $custom_table = $results->fetchObject();
  205. if ($custom_table) {
  206. return $custom_table->table_id;
  207. }
  208. }
  209. return FALSE;
  210. }