-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #730 from NASA-IMPACT/688-add-untracked-quality-an…
…d-processing-scripts-to-repo 688 add untracked quality and processing scripts to repo
- Loading branch information
Showing
3 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
""" | ||
adds collections marked as ready for public prod to the public query | ||
after running this code, you will need to merge in the webapp branch | ||
""" | ||
|
||
from sde_collections.models.collection import Collection | ||
from sde_collections.models.collection_choice_fields import WorkflowStatusChoices | ||
|
||
for collection in Collection.objects.filter(workflow_status=WorkflowStatusChoices.READY_FOR_PUBLIC_PROD): | ||
print(collection.config_folder) | ||
collection.add_to_public_query() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
""" | ||
take emily's notes from slack and change the appropriate statuses in the webapp | ||
""" | ||
|
||
from sde_collections.models.collection import Collection | ||
from sde_collections.models.collection_choice_fields import WorkflowStatusChoices | ||
|
||
RESEARCH_IN_PROGRESS = 1, "Research in Progress" | ||
READY_FOR_ENGINEERING = 2, "Ready for Engineering" | ||
ENGINEERING_IN_PROGRESS = 3, "Engineering in Progress" | ||
READY_FOR_CURATION = 4, "Ready for Curation" | ||
CURATION_IN_PROGRESS = 5, "Curation in Progress" | ||
CURATED = 6, "Curated" | ||
QUALITY_FIXED = 7, "Quality Fixed" | ||
SECRET_DEPLOYMENT_STARTED = 8, "Secret Deployment Started" | ||
SECRET_DEPLOYMENT_FAILED = 9, "Secret Deployment Failed" | ||
READY_FOR_LRM_QUALITY_CHECK = 10, "Ready for LRM Quality Check" | ||
READY_FOR_FINAL_QUALITY_CHECK = 11, "Ready for Quality Check" | ||
QUALITY_CHECK_FAILED = 12, "Quality Check Failed" | ||
READY_FOR_PUBLIC_PROD = 13, "Ready for Public Production" | ||
PERFECT_ON_PROD = 14, "Perfect and on Production" | ||
LOW_PRIORITY_PROBLEMS_ON_PROD = 15, "Low Priority Problems on Production" | ||
HIGH_PRIORITY_PROBLEMS_ON_PROD = 16, "High Priority Problems on Production, only for old sources" | ||
MERGE_PENDING = 17, "Code Merge Pending" | ||
|
||
perfect = [ | ||
# "WIND_Spacecraft", | ||
# "gamma_ray_data_tools_core_package", | ||
# "land_processes_distributed_active_archive_center", | ||
# "mdscc_deep_space_network", | ||
# "HelioAnalytics", | ||
# "nasa_infrared_telescope_facility_irtf", | ||
# "gmao_fluid", | ||
# "starchild_a_learning_center_for_young_astronomers", | ||
# "voyager_Cosmic_Ray_Subsystem", | ||
"ldas_land_data_assimilatin_system", | ||
"ppi_node", | ||
] | ||
|
||
low_priority = [ | ||
"nasa_applied_sciences", | ||
"parker_solar_probe", | ||
"virtual_wave_observatory", | ||
"explorer_program_acquisition", | ||
"lisa_consortium", | ||
"astropy", | ||
"fermi_at_gsfc", | ||
"microobservatory_robotic_telescope_network", | ||
] | ||
|
||
for config in perfect: | ||
print(config) | ||
collection = Collection.objects.get(config_folder=config) | ||
collection.workflow_status = WorkflowStatusChoices.PERFECT_ON_PROD | ||
collection.save() | ||
|
||
for config in low_priority: | ||
print(config) | ||
collection = Collection.objects.get(config_folder=config) | ||
collection.workflow_status = WorkflowStatusChoices.LOW_PRIORITY_PROBLEMS_ON_PROD | ||
collection.save() | ||
|
||
# for config in perfect: | ||
# collection = Collection.objects.get(config_folder=config) | ||
# collection.workflow_status = WorkflowStatusChoices.PERFECT_ON_PROD | ||
# collection.save() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
"""you run this in the shell on the server to find sources to index and find any that are missing plugin folders""" | ||
|
||
import os | ||
|
||
from sde_collections.models.collection import Collection | ||
from sde_collections.models.collection_choice_fields import WorkflowStatusChoices | ||
from sde_collections.utils.github_helper import GitHubHandler | ||
|
||
|
||
def get_sources_to_fix(): | ||
return Collection.objects.filter(workflow_status__in=[WorkflowStatusChoices.QUALITY_FIXED]) | ||
|
||
|
||
def get_sources_to_index(): | ||
return Collection.objects.filter(workflow_status__in=[WorkflowStatusChoices.CURATED]) | ||
|
||
|
||
def get_all_relevant_sources(): | ||
return Collection.objects.filter( | ||
workflow_status__in=[WorkflowStatusChoices.QUALITY_FIXED, WorkflowStatusChoices.CURATED] | ||
) | ||
|
||
|
||
def get_missing_folders(collections, base_directory): | ||
gh = GitHubHandler() | ||
missing = [] | ||
for source in collections: | ||
folder_path = os.path.join(base_directory, source.config_folder, "default.xml") | ||
if not gh.check_file_exists(folder_path): | ||
missing.append(source) | ||
return missing | ||
|
||
|
||
def print_configs(queryset): | ||
for source in queryset: | ||
print(source.config_folder) | ||
print("---" * 20) | ||
print() | ||
|
||
|
||
print("sources_to_fix") | ||
sources_to_fix = get_sources_to_fix() | ||
print_configs(sources_to_fix) | ||
|
||
|
||
print("sources_to_index") | ||
sources_to_index = get_sources_to_index() | ||
print_configs(sources_to_index) | ||
|
||
|
||
all_relevant_sources = get_all_relevant_sources() | ||
|
||
print("missing_scraper_folders") | ||
missing_folders = get_missing_folders(all_relevant_sources, "sources/scrapers/") | ||
print_configs(missing_folders) | ||
|
||
|
||
print("missing_plugin_folders") | ||
missing_folders = get_missing_folders(all_relevant_sources, "sources/SDE/") | ||
print_configs(missing_folders) |