Explorar el Código

Fix assumption in URL generation that data directory is within JBrowse directory.

Lacey Sanderson hace 5 años
padre
commit
27e8dde49b

+ 5 - 1
tripal_jbrowse_mgmt/includes/tripal_jbrowse_mgmt.api.inc

@@ -14,6 +14,7 @@ function tripal_jbrowse_mgmt_get_settings() {
     'bin_path' => '',
     'link' => '',
     'data_dir' => '',
+    'data_path' => '',
     'menu_template' => [],
   ];
 
@@ -405,8 +406,11 @@ function tripal_jbrowse_mgmt_build_http_query($instance) {
     }, $tracks));
   }
 
+  $settings = tripal_jbrowse_mgmt_get_settings();
+  $data_path = (empty($settings['data_path'])) ? 'data' : '/' . $settings['data_path'];
+
   return [
-    'data' => "data/$path/data",
+    'data' => "$data_path/$path/data",
     'tracks' => $tracks_path,
   ];
 }

+ 15 - 3
tripal_jbrowse_mgmt/includes/tripal_jbrowse_mgmt_configure.form.inc

@@ -12,7 +12,7 @@ function tripal_jbrowse_mgmt_configure_form($form, &$form_state) {
     '#type' => 'markup',
     '#prefix' => '<p>',
     '#markup' => t(
-      'This form allows administrators to control 
+      'This form allows administrators to control
       where JBrowse lives on the server.'
     ),
     '#suffix' => '</p>',
@@ -23,7 +23,7 @@ function tripal_jbrowse_mgmt_configure_form($form, &$form_state) {
   $form['data_dir'] = [
     '#title' => t('Data Directory'),
     '#description' => t(
-      'Absolute path to where data directories should live. 
+      'Absolute path to where data directories should live.
        This directory must be accessible by the apache user.'
     ),
     '#type' => 'textfield',
@@ -32,6 +32,17 @@ function tripal_jbrowse_mgmt_configure_form($form, &$form_state) {
     '#required' => TRUE,
   ];
 
+  $form['data_path'] = [
+    '#title' => t('Data Path'),
+    '#description' => t(
+      'Relative path to where data directories lives relative to the web browser root.'
+    ),
+    '#type' => 'textfield',
+    '#maxlength' => 255,
+    '#default_value' => $settings['data_path'],
+    '#required' => TRUE,
+  ];
+
   $form['link'] = [
     '#title' => t('Path to JBrowse\'s Index File'),
     '#description' => t(
@@ -59,7 +70,7 @@ function tripal_jbrowse_mgmt_configure_form($form, &$form_state) {
   $form['menu_template'] = [
     '#title' => t('Default menuTemplate'),
     '#description' => t(
-      'Default menuTemplate in the trackList.json file. See 
+      'Default menuTemplate in the trackList.json file. See
        the JBrowse documentation for more info.'
     ),
     '#type' => 'textarea',
@@ -146,6 +157,7 @@ function tripal_jbrowse_mgmt_configure_form_submit($form, &$form_state) {
 
   $settings = [
     'data_dir' => rtrim($values['data_dir'], '/'),
+    'data_path' => trim($values['data_path'], '/'),
     'bin_path' => $bin_path,
     'link' => $values['link'],
     'menu_template' => $menu_template,