tripal_views_setup.admin.inc 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. <?php
  2. /**
  3. *
  4. * @ingroup tripal_view_search
  5. */
  6. function tripal_views_setup_admin_form(){
  7. $form = array();
  8. $form['#theme'] = 'tripal';
  9. $query_results = db_query('SELECT * FROM public.tripal_views_setup;');
  10. $header = array('Setup ID', 'Name', 'Materialized View ID', 'Base Table Name', 'Description');
  11. $rows = array();
  12. $results = array();
  13. while($result = db_fetch_object($query_results)){
  14. $rows[] = array($result->setup_id, $result->name, $result->mview_id, $result->base_table_name, $result->description,);
  15. $results[] = $result;
  16. }
  17. $options = array();
  18. foreach ($results as $key => $value) {
  19. if(!empty($value))
  20. $options[] = $value->setup_id;// . ' | ' . $value->name . ' | ' . $value->mview_id . ' | ' . $value->base_table_name;
  21. }
  22. $form['existing_rows'] = array(
  23. '#type' => 'select',
  24. '#options' => $options,
  25. '#description' => '<strong>Select a View Setup to delete from the database.</strong>',
  26. '#prefix' => theme('table', $header, $rows),
  27. );
  28. $form['submit'] = array(
  29. '#type' => 'submit',
  30. '#value' => t('Remove'),
  31. );
  32. $form['cancel'] = array(
  33. '#type' => 'markup',
  34. '#value' => l(t('Cancel '), 'admin/tripal/'),
  35. );
  36. $form['new'] = array(
  37. '#type' => 'markup',
  38. '#value' => l(t(' New'), 'admin/tripal/tripal_views_setup_new'),
  39. );
  40. return $form;
  41. }
  42. /**
  43. *
  44. * @ingroup tripal_view_search
  45. */
  46. function tripal_views_setup_admin_form_submit($form, &$form_state){
  47. $value = $form['existing_rows']['#options'][$form_state['values']['existing_rows']];
  48. db_query("DELETE FROM public.tripal_views_setup WHERE setup_id = $value;");
  49. db_query("DELETE FROM public.tripal_views_handlers WHERE setup_id = $value;");
  50. db_query("DELETE FROM public.tripal_mviews_join WHERE setup_id = $value;");
  51. }
  52. /**
  53. *
  54. * @ingroup tripal_view_search
  55. */
  56. function tripal_views_setup_new_search_form(&$form_state){
  57. $form = array();
  58. $form['#cache'] = TRUE;
  59. $form['row_name'] = array(
  60. '#title' => t('Name'),
  61. '#type' => 'textfield',
  62. '#size' => 60,
  63. '#maxlength' => 128,
  64. '#description' => 'Name of the Views Setup',
  65. '#required' => TRUE,
  66. );
  67. $form['row_description'] = array(
  68. '#title' => t('Description'),
  69. '#type' => 'textfield',
  70. '#size' => 60,
  71. '#maxlength' => 255,
  72. '#description' => 'Briefly describe in which view this will be used',
  73. '#required' => TRUE,
  74. );
  75. $mview_query = db_query("SELECT mview_id,name FROM {tripal_mviews} ORDER BY name;");
  76. $mview_options = array();
  77. while ($mview_option = db_fetch_array($mview_query)){
  78. $mview_options[$mview_option['mview_id']] = $mview_option['name'];
  79. }
  80. $form['mview_id'] = array(
  81. '#title' => t('Materialized View'),
  82. '#type' => 'select',
  83. '#options' => $mview_options,
  84. '#description' => 'Which materialized view to use.',
  85. '#required' => TRUE,
  86. '#ahah' => array(
  87. 'path' => 'admin/tripal/tripal_views_setup/ajax/mview_cols',
  88. 'wrapper' => 'table-rows-div',
  89. 'effect' => 'fade',
  90. 'event' => 'change',
  91. 'method' => 'replace',
  92. ),
  93. );
  94. // ignore this for now... we'll come back to it later -- spf
  95. // $form['row_base_table_name'] = array(
  96. // '#title' => t('Base Table Name'),
  97. // '#type' => 'select',
  98. // // '#options' => array('stub'),
  99. // '#options' => tripal_core_get_chado_tables(),
  100. // '#description' => 'Select which chado table to use for this view.',
  101. // '#required' => TRUE,
  102. // );
  103. $form['view_setup_table'] = array(
  104. '#type' => 'item',
  105. '#prefix' => '<div id="table-rows-div">',
  106. '#suffix' => '</div>',
  107. );
  108. dpm($form_state, 'formstate in mainform');
  109. if($form_state['values']['mview_id']){
  110. $mview_id = $form_state['values']['mview_id'];
  111. dpm($mview_id,'mviewidinif');
  112. $form['view_setup_table'] = array(
  113. '#type' => 'fieldset',
  114. '#title' => 'New View Setup',
  115. '#prefix' => '<div id="table-rows-div">',
  116. '#suffix' => '</div>',
  117. );
  118. // get the columns in this materialized view. They are separated by commas
  119. // where the first word is the column name and the rest is the type
  120. $sql = "SELECT mv_specs FROM {tripal_mviews} WHERE mview_id = $mview_id";
  121. $mview = db_fetch_object(db_query($sql));
  122. $columns = explode(",",$mview->mv_specs);
  123. $i=1;
  124. $chado_tables = tripal_core_get_chado_tables();
  125. $chado_tables = array_merge(array('select or leave blank',), $chado_tables);
  126. $handlers = array();
  127. $form['view_setup_table']["fields_headers"] = array(
  128. '#type' => 'markup',
  129. '#value' => "<div class=\"field-headers\">".
  130. "<div class=\"column-id\">Field Name and Type</div>".
  131. "<div class=\"fields-column-join\">Join Table</div>".
  132. "<div class=\"fields-column-join-column\">Join Column</div>".
  133. "<div class=\"fields-column-handler\">Handler</div></div>",
  134. );
  135. foreach ($columns as $column){
  136. $column = trim($column); // trim trailing and leading spaces
  137. preg_match("/^(.*?)\ (.*?)$/",$column,$matches);
  138. $column_name = $matches[1];
  139. $column_type = $matches[2];
  140. // first print the field name
  141. $form['view_setup_table']["fields_start_$i"] = array(
  142. '#type' => 'markup',
  143. '#value' => "<div class=\"fields-new-row\">",
  144. );
  145. $form['view_setup_table']["fields_column_name_$i"] = array(
  146. '#type' => 'markup',
  147. '#attributes' => array('class' => 'fields-column-name'),
  148. '#value' => "<div class=\"column-id\"><span class=\"column-name\">$column_name</span>".
  149. "<br><span class=\"column-type\">$column_type</span></div>",
  150. );
  151. // second print the table join drop down
  152. $form['view_setup_table']["fields_column_join_$i"] = array(
  153. '#type' => 'select',
  154. '#prefix' => "<div class=\"fields-column-join\">",
  155. '#suffix' => "</div>",
  156. '#options' => $chado_tables,
  157. '#required' => FALSE,
  158. '#ahah' => array(
  159. // 'path' => 'admin/tripal/tripal_views_setup/ajax/mview_cols',
  160. // 'wrapper' => 'table-rows-div',
  161. // 'effect' => 'fade',
  162. // 'event' => 'change',
  163. // 'method' => 'replace',
  164. ),
  165. );
  166. $column_join = array();
  167. if($form_state['values']['view_setup_table']["fields_column_join_$i"]){
  168. $column_join = array('hello', 'world');
  169. }
  170. $form['view_setup_table']["fields_column_join_column_$i"] = array(
  171. '#type' => 'select',
  172. '#prefix' => "<div class=\"fields-column-join-column\">",
  173. '#suffix' => "</div>",
  174. '#options' => $column_join,
  175. '#required' => FALSE,
  176. );
  177. $form['view_setup_table']["fields_column_handler_$i"] = array(
  178. '#type' => 'select',
  179. '#prefix' => "<div class=\"fields-column-handler\">",
  180. '#suffix' => "</div>",
  181. '#options' => $handlers,
  182. '#required' => FALSE,
  183. );
  184. $form['view_setup_table']["fields_end_$i"] = array(
  185. '#type' => 'markup',
  186. '#value' => "</div>",
  187. );
  188. $i++;
  189. }
  190. }
  191. $form['row_counter'] = array(
  192. '#type' => 'hidden',
  193. '#value' => $i,
  194. );
  195. $form['submit'] = array(
  196. '#type' => 'submit',
  197. '#value' => 'Create',
  198. );
  199. dpm($form, 'form');
  200. return $form;
  201. }
  202. /**
  203. *
  204. * @ingroup tripal_view_search
  205. */
  206. function tripal_view_search_ajax_mview_cols(){
  207. dpm($_POST, 'post');
  208. // Retrieve the form from the cache
  209. $form_state = array('storage' => NULL);
  210. $form_build_id = $_POST['form_build_id'];
  211. $form = form_get_cache($form_build_id, $form_state);
  212. // Preparing to process the form
  213. $args = $form['#parameters'];
  214. $form_id = array_shift($args);
  215. $form_state['post'] = $form['#post'] = $_POST;
  216. $form['#programmed'] = $form['#redirect'] = FALSE;
  217. // Sets the form_state so that the validate and submit handlers can tell
  218. // when the form is submitted via AHAH
  219. $form_state['ahah_submission'] = TRUE;
  220. // Process the form with drupal_process_form. This function calls the submit
  221. // handlers, which put whatever was worthy of keeping into $form_state.
  222. drupal_process_form($form_id, $form, $form_state);
  223. // You call drupal_rebuild_form which destroys $_POST.
  224. // The form generator function is called and creates the form again but since
  225. // it knows to use $form_state, the form will be different.
  226. // The new form gets cached and processed again, but because $_POST is
  227. // destroyed, the submit handlers will not be called again.
  228. $form = drupal_rebuild_form($form_id, $form_state, $args, $form_build_id);
  229. // $form = drupal_get_form('tripal_views_setup_fields_form',$mview_id);
  230. unset($form['view_setup_table']['#prefix'], $form['view_setup_table']['#suffix']);
  231. $output = theme('status_message') . drupal_render($form['view_setup_table']);
  232. // Final rendering callback.
  233. drupal_json(array('status' => TRUE, 'data' => $output));
  234. }
  235. /**
  236. *
  237. * @ingroup tripal_view_search
  238. */
  239. // function tripal_views_setup_fields(&$form_state=NULL, $mview_id = NULL){
  240. // if(!$mview_id){
  241. // return;
  242. // }
  243. // // get the columns in this materialized view. They are separated by commas
  244. // // where the first word is the column name and the rest is the type
  245. // $sql = "SELECT mv_specs FROM {tripal_mviews} WHERE mview_id = $mview_id";
  246. // $mview = db_fetch_object(db_query($sql));
  247. // $columns = explode(",",$mview->mv_specs);
  248. // $i=1;
  249. // $chado_tables = tripal_core_get_chado_tables();
  250. // $handlers = array();
  251. // $form["fields_headers"] = array(
  252. // '#type' => 'markup',
  253. // '#value' => "<div class=\"field-headers\">".
  254. // "<div class=\"column-id\">Field Name and Type</div>".
  255. // "<div class=\"fields-column-join\">Join Table</div>".
  256. // "<div class=\"fields-column-join-column\">Join Column</div>".
  257. // "<div class=\"fields-column-handler\">Handler</div></div>",
  258. // );
  259. // foreach ($columns as $column){
  260. // $column = trim($column); // trim trailing and leading spaces
  261. // preg_match("/^(.*?)\ (.*?)$/",$column,$matches);
  262. // $column_name = $matches[1];
  263. // $column_type = $matches[2];
  264. // // first print the field name
  265. // $form["fields_start_$i"] = array(
  266. // '#type' => 'markup',
  267. // '#value' => "<div class=\"fields-new-row\">",
  268. // );
  269. // $form["fields_column_name_$i"] = array(
  270. // '#type' => 'markup',
  271. // '#attributes' => array('class' => 'fields-column-name'),
  272. // '#value' => "<div class=\"column-id\"><span class=\"column-name\">$column_name</span>".
  273. // "<br><span class=\"column-type\">$column_type</span></div>",
  274. // );
  275. // // second print the table join drop down
  276. // $chado_tables = array_merge(array(NULL,), $chado_tables);
  277. // $form["fields_column_join_$i"] = array(
  278. // '#type' => 'select',
  279. // '#prefix' => "<div class=\"fields-column-join\">",
  280. // '#suffix' => "</div>",
  281. // '#options' => $chado_tables,
  282. // '#required' => FALSE,
  283. // '#ahah' => array(
  284. // 'path' => 'admin/tripal/tripal_views_setup/ajax/field_col_join',
  285. // 'wrapper' => "fields-column-join-column-$i",
  286. // 'effect' => 'fade',
  287. // 'event' => 'change',
  288. // 'method' => 'replace',
  289. // ),
  290. // );
  291. // $form["fields_column_join_column_$i"] = array(
  292. // '#type' => 'select',
  293. // '#prefix' => "<div id=\"fields-column-join-column-$i\" class=\"fields-column-join-column\">",
  294. // '#suffix' => "</div>",
  295. // '#options' => array(),
  296. // '#required' => FALSE,
  297. // );
  298. // $form["fields_column_handler_$i"] = array(
  299. // '#type' => 'select',
  300. // '#prefix' => "<div class=\"fields-column-handler\">",
  301. // '#suffix' => "</div>",
  302. // '#options' => $handlers,
  303. // '#required' => FALSE,
  304. // );
  305. // $form["fields_end_$i"] = array(
  306. // '#type' => 'markup',
  307. // '#value' => "</div>",
  308. // );
  309. // $i++;
  310. // }
  311. // $form['row_counter'] = array(
  312. // '#type' => 'hidden',
  313. // '#value' => $i,
  314. // );
  315. // $form['submit'] = array(
  316. // '#type' => 'submit',
  317. // '#value' => 'Create',
  318. // );
  319. // return $form;
  320. // }
  321. function tripal_views_setup_fields_form_submit($form, &$form_state){
  322. dpm($form,'formfield');
  323. dpm($form_state, 'formstatefield');
  324. }
  325. /**
  326. *
  327. * @ingroup tripal_view_search
  328. */
  329. function tripal_view_search_ajax_field_col_join(){
  330. dpm($_POST);
  331. dpm($_POST['row_counter'], 'rowcounter');
  332. drupal_json(array('status' => TRUE, 'data' => 'howdy'));
  333. }
  334. /**
  335. *
  336. * @ingroup tripal_view_search
  337. */
  338. function tripal_views_setup_new_search_form_submit($form, &$form_state){
  339. dpm($form,'form');
  340. dpm($form_state, 'formstate');
  341. }