123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584 |
- <?php
- function tripal_library_admin() {
- $form = array();
-
-
-
- $active_jobs = FALSE;
- if (tripal_get_module_active_jobs('tripal_library')) {
- $active_jobs = TRUE;
- }
-
- if (!$active_jobs) {
- get_tripal_library_admin_form_sync_set($form);
- get_tripal_library_admin_form_reindex_set($form);
- get_tripal_library_admin_form_taxonomy_set($form);
- get_tripal_library_admin_form_cleanup_set($form);
- }
- else {
- $form['notice'] = array(
- '#type' => 'fieldset',
- '#title' => t('Library Management Temporarily Unavailable')
- );
- $form['notice']['message'] = array(
- '#value' => t('Currently, library management jobs are waiting or are running. . Managemment features have been hidden until these jobs complete. Please check back later once these jobs have finished. You can view the status of pending jobs in the Tripal jobs page.'),
- );
- }
- return system_settings_form($form);
- }
- function get_tripal_library_admin_form_cleanup_set(&$form) {
- $form['cleanup'] = array(
- '#type' => 'fieldset',
- '#title' => t('Clean Up')
- );
- $form['cleanup']['description'] = array(
- '#type' => 'item',
- '#value' => t("With Drupal and chado residing in different databases ".
- "it is possible that nodes in Drupal and libraries in Chado become ".
- "\"orphaned\". This can occur if an library node in Drupal is ".
- "deleted but the corresponding chado library is not and/or vice ".
- "versa. Click the button below to resolve these discrepancies."),
- '#weight' => 1,
- );
- $form['cleanup']['button'] = array(
- '#type' => 'submit',
- '#value' => t('Clean up orphaned libraries'),
- '#weight' => 2,
- );
- }
- function get_tripal_library_admin_form_taxonomy_set(&$form) {
- $form['taxonify'] = array(
- '#type' => 'fieldset',
- '#title' => t('Assign Drupal Taxonomy to Library Features')
- );
-
- $sql = "SELECT * FROM {Library} ORDER BY uniquename";
- $lib_rset = chado_query($sql);
-
- $lib_boxes = array();
- while ($library = db_fetch_object($lib_rset)) {
- $lib_boxes[$library->library_id] = "$library->name";
- }
- $form['taxonify']['description'] = array(
- '#type' => 'item',
- '#value' => t("Drupal allows for assignment of \"taxonomy\" or catagorical terms to " .
- "nodes. These terms allow for advanced filtering during searching. This option allows ".
- "for setting taxonomy only for features that belong to the selected libraries below. All other features will be unaffected. To set taxonomy for all features in the site see the Feature Administration page."),
- '#weight' => 1,
- );
- $form['taxonify']['tx-libraries'] = array(
- '#title' => t('Libraries'),
- '#type' => t('checkboxes'),
- '#description' => t("Check the libraries whose features you want to reset taxonomy. Note: this list contains all libraries, even those that may not be synced."),
- '#required' => FALSE,
- '#prefix' => '<div id="lib_boxes">',
- '#suffix' => '</div>',
- '#options' => $lib_boxes,
- '#weight' => 2
- );
- $form['taxonify']['tx-button'] = array(
- '#type' => 'submit',
- '#value' => t('Set Feature Taxonomy'),
- '#weight' => 3
- );
- }
- function get_tripal_library_admin_form_reindex_set(&$form) {
-
- $form['reindex'] = array(
- '#type' => 'fieldset',
- '#title' => t('Reindex Library Features')
- );
-
- $sql = "SELECT * FROM {Library} ORDER BY uniquename";
- $lib_rset = chado_query($sql);
-
- $lib_boxes = array();
- while ($library = db_fetch_object($lib_rset)) {
- $lib_boxes[$library->library_id] = "$library->name";
- }
- $form['reindex']['description'] = array(
- '#type' => 'item',
- '#value' => t("This option allows for reindexing of only those features that belong to the selected libraries below. All other features will be unaffected. To reindex all features in the site see the Feature Administration page."),
- '#weight' => 1,
- );
- $form['reindex']['re-libraries'] = array(
- '#title' => t('Libraries'),
- '#type' => t('checkboxes'),
- '#description' => t("Check the libraries whoee features you want to reindex. Note: this list contains all libraries, even those that may not be synced."),
- '#required' => FALSE,
- '#prefix' => '<div id="lib_boxes">',
- '#suffix' => '</div>',
- '#options' => $lib_boxes,
- '#weight' => 2,
- );
- $form['reindex']['re-button'] = array(
- '#type' => 'submit',
- '#value' => t('Reindex Features'),
- '#weight' => 3,
- );
- }
- function get_tripal_library_admin_form_sync_set(&$form) {
-
- $form['sync'] = array(
- '#type' => 'fieldset',
- '#title' => t('Sync Libraries')
- );
-
- $sql = "SELECT * FROM {Library} ORDER BY uniquename";
- $lib_rset = chado_query($sql);
-
-
-
-
- $lib_boxes = array();
- $added = 0;
- while ($library = db_fetch_object($lib_rset)) {
-
-
- $sql = "SELECT * FROM {chado_library} WHERE library_id = %d";
- if (!db_fetch_object(db_query($sql, $library->library_id))) {
- $lib_boxes[$library->library_id] = "$library->name";
- $added++;
- }
- }
-
-
- if ($added > 0) {
- $lib_boxes['all'] = "All Libraries";
- $form['reindex']['description'] = array(
- '#type' => 'item',
- '#value' => t("This option allows for the creation of Drupal content for libraries in chado. Only the selected libraries will be synced."),
- '#weight' => 1,
- );
- $form['sync']['libraries'] = array(
- '#title' => t('Available Libraries'),
- '#type' => t('checkboxes'),
- '#description' => t("Check the libraries you want to sync. Drupal content will be created for each of the libraries listed above. Select 'All Libraries' to sync all of them."),
- '#required' => FALSE,
- '#prefix' => '<div id="lib_boxes">',
- '#suffix' => '</div>',
- '#options' => $lib_boxes,
- '#weight' => 2,
- );
- $form['sync']['button'] = array(
- '#type' => 'submit',
- '#value' => t('Sync Libraries'),
- '#weight' => 3,
- );
- }
-
- else {
- $form['sync']['value'] = array(
- '#value' => t('All libraries in Chado are currently synced with Drupal.')
- );
- }
- }
- function tripal_library_admin_validate($form, &$form_state) {
- global $user;
- $job_args = array();
-
- if ($form_state['values']['op'] == t('Sync Libraries')) {
-
-
- $libraries = $form_state['values']['libraries'];
- $do_all = FALSE;
- $to_sync = array();
- foreach ($libraries as $library_id) {
- if (preg_match("/^all$/i", $library_id)) {
- $do_all = TRUE;
- }
- if ($library_id and preg_match("/^\d+$/i", $library_id)) {
-
- $sql = "SELECT * FROM {Library} WHERE library_id = %d";
- $library = db_fetch_object(chado_query($sql, $library_id));
- $to_sync[$library_id] = $library->name;
- }
- }
-
- if ($do_all) {
- tripal_add_job('Sync all libraries', 'tripal_library', 'tripal_library_sync_libraries', $job_args, $user->uid);
- }
- else{
- foreach ($to_sync as $library_id => $name) {
- $job_args[0] = $library_id;
- tripal_add_job("Sync library: $name", 'tripal_library', 'tripal_library_sync_libraries', $job_args, $user->uid);
- }
- }
- }
-
-
- if ($form_state['values']['op'] == t('Reindex Features')) {
- $libraries = $form_state['values']['re-libraries'];
- foreach ($libraries as $library_id) {
- if ($library_id and preg_match("/^\d+$/i", $library_id)) {
-
- $sql = "SELECT * FROM {Library} WHERE library_id = %d";
- $library = db_fetch_object(chado_query($sql, $library_id));
- $job_args[0] = $library_id;
- tripal_add_job("Reindex features for library: $library->name", 'tripal_library',
- 'tripal_library_reindex_features', $job_args, $user->uid);
- }
- }
- }
-
-
- if ($form_state['values']['op'] == t('Set Feature Taxonomy')) {
- $libraries = $form_state['values']['tx-libraries'];
- foreach ($libraries as $library_id) {
- if ($library_id and preg_match("/^\d+$/i", $library_id)) {
-
- $sql = "SELECT * FROM {Library} WHERE library_id = %d";
- $library = db_fetch_object(chado_query($sql, $library_id));
- $job_args[0] = $library_id;
- tripal_add_job("Set taxonomy for features in library: $library->name", 'tripal_library',
- 'tripal_library_taxonify_features', $job_args, $user->uid);
- }
- }
- }
-
-
- if ($form_state['values']['op'] == t('Clean up orphaned libraries')) {
- tripal_add_job('Cleanup orphaned libraries', 'tripal_library',
- 'tripal_library_cleanup', $job_args, $user->uid);
- }
- }
- function tripal_library_add_taxonomy($node, $library_id) {
-
-
-
- module_load_include('inc', 'taxonomy', 'taxonomy.admin');
-
-
- $vocab_form['values']['name'] = 'DNA Libraries';
- $vocab_form['values']['description'] = 'Allows for associating/searching of library features by library name';
- $vocab_form['values']['help'] = '';
- $vocab_form['values']['module'] = 'taxonomy';
- drupal_execute('taxonomy_form_vocabulary', $vocab_form);
- return;
-
-
- if ($vid) {
- $tree = taxonomy_get_tree($vid);
- $found = 0;
- foreach ($tree as $term) {
- if ($term->name == $node->title) {
- $found = 1;
- }
- }
-
- if (!$found) {
- $form_state = array();
- $form_state['values']['name'] = $node->title;
- $form_state['values']['description'] = $library_id;
- drupal_execute('taxonomy_form_term', $form_state, $vid);
- }
- }
- }
- function tripal_library_sync_libraries($library_id = NULL, $job_id = NULL) {
- global $user;
- $page_content = '';
-
- if (!$library_id) {
- $sql = "SELECT * FROM {Library} L";
- $results = chado_query($sql);
- }
- else {
- $sql = "SELECT * FROM {Library} L WHERE library_id = %d";
- $results = chado_query($sql, $library_id);
- }
-
-
- $sql = "SELECT * FROM {chado_library} ".
- "WHERE library_id = %d";
- while ($library = db_fetch_object($results)) {
-
-
- if (!db_fetch_object(db_query($sql, $library->library_id))) {
- $new_node = new stdClass();
- $new_node->type = 'chado_library';
- $new_node->uid = $user->uid;
- $new_node->title = "$library->name";
- $new_node->library_id = $library->library_id;
- $new_node->organism_id = $library->organism_id;
- $new_node->uniquename = $library->uniquename;
- $new_node->type_id = $library->type_id;
- node_validate($new_node);
- $errors = form_get_errors();
- if (!$errors) {
- $node = node_submit($new_node);
- node_save($node);
- if ($node->nid) {
- print "Added " . $library->name . "\n";
- }
- else {
- print "ERROR: Unable to create " . $library->name . "\n";
- }
- }
- else {
- print "ERROR: Unable to create " . $library->name . "\n" . print_r($errors, TRUE) . "\n";
- }
- }
- else {
- print "Skipped " . $library->name . "\n";
- }
- }
- return $page_content;
- }
- function tripal_library_feature_set_taxonomy($library_id = NULL) {
-
-
- $vocabularies = taxonomy_get_vocabularies();
- $vid = NULL;
- foreach ($vocabularies as $vocab) {
- if ($vocab->name == 'Library') {
- $vid = $vocab->vid;
- }
- }
- if (!$vid) {
- return;
- }
-
- if ($library_id) {
- print "Finding features for library with ID: $library_id\n";
- $sql = "SELECT LF.feature_id, L.library_id, L.name as libname ".
- "FROM {library_feature} LF ".
- "INNER JOIN Library L ON LF.library_id = L.library_id ".
- "WHERE L.library_id = $library_id ".
- "ORDER BY LF.feature_id";
- $features = chado_query($sql);
- }
- else {
- print "Finding features for all libraries\n";
- $sql = "SELECT LF.feature_id, L.library_id, L.name as libname ".
- "FROM {library_feature} LF ".
- "INNER JOIN Library L ON LF.library_id = L.library_id ".
- "ORDER BY LF.feature_id";
- $features = chado_query($sql);
- }
- $node_sql = "SELECT * FROM {chado_feature} CF ".
- " INNER JOIN {node} N ON CF.nid = N.nid ".
- "WHERE feature_id = %d";
-
- while ($feature = db_fetch_object($features)) {
- $node = db_fetch_object(db_query($node_sql, $feature->feature_id));
- $tags["$vid"] = $feature->libname;
- $terms['tags'] = $tags;
- taxonomy_node_save($node, $terms);
- print "Updated $feature->feature_id as $feature->libname\n";
- }
- }
- function tripal_library_reindex_features($library_id = NULL, $job_id = NULL) {
- $i = 0;
-
-
-
- if ($library_id) {
- $sql = "SELECT LF.feature_id, L.library_id, L.name as libname ".
- " FROM {library_feature} LF ".
- " INNER JOIN Library L ON LF.library_id = L.library_id ".
- "WHERE L.library_id = $library_id ".
- "ORDER BY LF.feature_id";
- $results = chado_query($sql);
- }
- else {
- $sql = "SELECT LF.feature_id, L.library_id, L.name as libname ".
- " FROM {library_feature} LF ".
- " INNER JOIN Library L ON LF.library_id = L.library_id ".
- "ORDER BY LF.feature_id";
- $results = chado_query($sql);
- }
-
- $count = 0;
- $ids = array();
- while ($id = db_fetch_object($results)) {
- $ids[$count] = $id->feature_id;
- $count++;
- }
- $interval = intval($count * 0.01);
- foreach ($ids as $feature_id) {
-
- if ($job_id and $i % interval == 0) {
- tripal_job_set_progress($job_id, intval(($i/$count)*100));
- }
- tripal_feature_sync_feature($feature_id);
- $i++;
- }
- }
- function tripal_library_taxonify_features($library_id = NULL, $job_id = NULL) {
- $i = 0;
-
-
-
- if ($library_id) {
- $sql = "SELECT LF.feature_id, L.library_id, L.name as libname ".
- " FROM {library_feature} LF ".
- " INNER JOIN Library L ON LF.library_id = L.library_id ".
- "WHERE L.library_id = $library_id ".
- "ORDER BY LF.feature_id";
- $results = chado_query($sql);
- }
- else {
- $sql = "SELECT LF.feature_id, L.library_id, L.name as libname ".
- " FROM {library_feature} LF ".
- " INNER JOIN Library L ON LF.library_id = L.library_id ".
- "ORDER BY LF.feature_id";
- $results = chado_query($sql);
- }
-
- $count = 0;
- $ids = array();
- while ($id = db_fetch_object($results)) {
- $ids[$count] = $id->feature_id;
- $count++;
- }
-
- tripal_feature_set_vocabulary();
-
- $nsql = "SELECT * FROM {chado_feature} CF ".
- " INNER JOIN {node} N ON N.nid = CF.nid ".
- "WHERE feature_id = %d";
-
- $interval = intval($count * 0.01);
- foreach ($ids as $feature_id) {
-
- if ($job_id and $i % interval == 0) {
- tripal_job_set_progress($job_id, intval(($i/$count)*100));
- }
- $node = db_fetch_object(db_query($nsql, $feature_id));
- tripal_feature_set_taxonomy($node, $feature_id);
- $i++;
- }
- }
- function tripal_library_cleanup($dummy = NULL, $job_id = NULL) {
- return tripal_core_clean_orphaned_nodes('library', $job_id);
-
- }
|