tripal_core.custom_tables.api.inc 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  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. $transaction = db_transaction();
  119. try {
  120. // see if the table entry already exists in the tripal_custom_tables table.
  121. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_name = :table_name";
  122. $results = db_query($sql, array(':table_name' => $table));
  123. $centry = $results->fetchObject();
  124. // check to see if the table already exists in the chado schema
  125. $exists = chado_table_exists($table);
  126. // if the table does not exist then create it
  127. if (!$exists) {
  128. $ret = db_create_table('chado.' . $table, $schema);
  129. $created = 1;
  130. }
  131. // if the table exists in Chado and in our custom table and
  132. // skip creation is turned off then drop and re-create the table
  133. if ($exists and is_object($centry) and !$skip_creation) {
  134. // drop the table we'll recreate it with the new schema
  135. chado_query('DROP TABLE {' . $table . '}');
  136. // remove any 'referring_tables' from the array as the db_create_table doesn't use that
  137. $new_schema = $schema;
  138. if (array_key_exists('referring_tables', $new_schema)) {
  139. unset($new_schema['referring_tables']);
  140. }
  141. db_create_table('chado.' . $table, $new_schema);
  142. $recreated = 1;
  143. }
  144. // add an entry in the tripal_custom_table
  145. $record = new stdClass();
  146. $record->table_name = $table;
  147. $record->schema = serialize($schema);
  148. if ($mview_id) {
  149. $record->mview_id = $mview_id;
  150. }
  151. // if an entry already exists then remove it
  152. if ($centry) {
  153. $sql = "DELETE FROM {tripal_custom_tables} WHERE table_name = :table_name";
  154. db_query($sql, array(':table_name' => $table));
  155. }
  156. $success = drupal_write_record('tripal_custom_tables', $record);
  157. // now add any foreign key constraints
  158. if (!$skip_creation and array_key_exists('foreign keys', $schema)) {
  159. // iterate through the foreign keys and add each one
  160. $fkeys = $schema['foreign keys'];
  161. foreach ($fkeys as $fktable => $fkdetails) {
  162. $relations = $fkdetails['columns'];
  163. foreach ($relations as $left => $right) {
  164. $sql = '
  165. ALTER TABLE {' . $table . '}
  166. ADD CONSTRAINT ' . $table . '_' . $left . '_fkey FOREIGN KEY (' . $left . ')
  167. REFERENCES {' . $fktable . '} (' . $right . ')
  168. ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
  169. ';
  170. chado_query($sql);
  171. }
  172. }
  173. }
  174. }
  175. catch (Exception $e) {
  176. $transaction->rollback();
  177. watchdog_exception('tripal_core', $e);
  178. $error = _drupal_decode_exception($e);
  179. drupal_set_message(t("Could not add custom table '%table_name': %message.",
  180. array('%table_name' => $table, '%message' => $error['!message'])), 'error');
  181. return FALSE;
  182. }
  183. if ($created) {
  184. drupal_set_message("Custom table created successfully.", 'status');
  185. }
  186. elseif ($recreated) {
  187. drupal_set_message("Custom table re-created successfully.", 'status');
  188. }
  189. else {
  190. drupal_set_message("Custom table already exists. Table structure not changed, but definition array has been saved.", 'status');
  191. }
  192. return TRUE;
  193. }
  194. /**
  195. * This function is used to validate a Drupal Schema API array prior to
  196. * passing it ot the chado_create_custom_table_schema(). This function
  197. * can be used in a form validate function or whenver a schema is provided by
  198. * a user and needs validation.
  199. *
  200. * @param $schema_array
  201. * the Drupal Schema API compatible array
  202. *
  203. * @return
  204. * An empty string for success or a message string for failure
  205. *
  206. * @ingroup tripal_custom_tables_api
  207. */
  208. function chado_validate_custom_table_schema($schema_array) {
  209. if (is_array($schema_array) and !array_key_exists('table', $schema_array)) {
  210. return "The schema array must have key named 'table'";
  211. }
  212. // check index length
  213. if (array_key_exists('indexes', $schema_array)) {
  214. foreach ($schema_array['indexes'] as $index_name => $details) {
  215. if (strlen($schema_array['table'] . '_' . $index_name) > 60) {
  216. return "One ore more index names appear to be too long. For example: '" . $schema_array['table'] . '_' . $index_name .
  217. ".' Index names are created by concatenating the table name with the index name provided " .
  218. "in the 'indexes' array of the schema. Please alter any indexes that when combined with the table name are " .
  219. "longer than 60 characters.";
  220. }
  221. }
  222. }
  223. // check unique key length
  224. if (array_key_exists('unique keys', $schema_array)) {
  225. foreach ($schema_array['unique keys'] as $index_name => $details) {
  226. if (strlen($schema_array['table'] . '_' . $index_name) > 60) {
  227. return "One ore more unique key names appear to be too long. For example: '" . $schema_array['table'] . '_' . $index_name .
  228. ".' Unique key names are created by concatenating the table name with the key name provided " .
  229. "in the 'unique keys' array of the schema. Please alter any unique keys that when combined with the table name are " .
  230. "longer than 60 characters.";
  231. }
  232. }
  233. }
  234. }
  235. /**
  236. * Retrieve the custom table id given the name
  237. *
  238. * @param $table_name
  239. * The name of the custom table
  240. *
  241. * @return
  242. * The unique identifier for the given table
  243. *
  244. * @ingroup tripal_custom_tables_api
  245. */
  246. function chado_get_custom_table_id($table_name) {
  247. if (db_table_exists('tripal_custom_tables')) {
  248. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_name = :table_name";
  249. $results = db_query($sql, array(':table_name' => $table_name));
  250. $custom_table = $results->fetchObject();
  251. if ($custom_table) {
  252. return $custom_table->table_id;
  253. }
  254. }
  255. return FALSE;
  256. }
  257. /**
  258. * Deletes the specified custom table
  259. *
  260. * @param $table_id
  261. * The unique ID of the custom table for the action to be performed on
  262. *
  263. * @ingroup tripal_custom_tables_api
  264. */
  265. function chado_delete_custom_table($table_id) {
  266. global $user;
  267. $args = array("$table_id");
  268. if (!$table_id) {
  269. return '';
  270. }
  271. // get this table details
  272. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_id = :table_id";
  273. $results = db_query($sql, array(':table_id' => $table_id));
  274. $custom_table = $results->fetchObject();
  275. // if this is a materialized view then don't allow deletion with this function
  276. if ($custom_table->mview_id) {
  277. 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());
  278. 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');
  279. return FALSE;
  280. }
  281. // remove the entry from the tripal_custom tables table
  282. $sql = "DELETE FROM {tripal_custom_tables} WHERE table_id = $table_id";
  283. $success = db_query($sql);
  284. if ($success) {
  285. drupal_set_message(t("Custom Table '%name' removed", array('%name' => $custom_table->table_name)));
  286. }
  287. // drop the table from chado if it exists
  288. if (chado_table_exists($custom_table->table_name)) {
  289. $success = chado_query("DROP TABLE {" . $custom_table->table_name . "}");
  290. if ($success) {
  291. drupal_set_message(t("Custom Table '%name' dropped", array('%name' => $custom_table->table_name)));
  292. }
  293. else {
  294. tripal_report_error('tripal_core', TRIPAL_ERROR, "Cannot drop the custom table: %name", array('%name' => $custom_table->table_name));
  295. drupal_set_message(t("Cannot drop the custom table: '%name'", array('%name' => $custom_table->table_name)));
  296. }
  297. }
  298. }