Spaces:
Runtime error
Runtime error
File size: 31,881 Bytes
105b369 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 |
from pathlib import Path
from typing import Optional, Dict, List
from phi.api.workspace import log_workspace_event
from phi.api.schemas.workspace import (
WorkspaceSchema,
WorkspaceCreate,
WorkspaceUpdate,
WorkspaceEvent,
UpdatePrimaryWorkspace,
)
from phi.cli.config import PhiCliConfig
from phi.cli.console import (
console,
print_heading,
print_info,
print_subheading,
log_config_not_available_msg,
)
from phi.infra.type import InfraType
from phi.infra.resources import InfraResources
from phi.workspace.config import WorkspaceConfig
from phi.workspace.enums import WorkspaceStarterTemplate
from phi.utils.log import logger
TEMPLATE_TO_NAME_MAP: Dict[WorkspaceStarterTemplate, str] = {
WorkspaceStarterTemplate.ai_app: "ai-app",
WorkspaceStarterTemplate.ai_api: "ai-api",
WorkspaceStarterTemplate.django_app: "django-app",
WorkspaceStarterTemplate.streamlit_app: "streamlit-app",
WorkspaceStarterTemplate.junior_de: "junior-de",
}
TEMPLATE_TO_REPO_MAP: Dict[WorkspaceStarterTemplate, str] = {
WorkspaceStarterTemplate.ai_app: "https://github.com/phidatahq/ai-app.git",
WorkspaceStarterTemplate.ai_api: "https://github.com/phidatahq/ai-api.git",
WorkspaceStarterTemplate.django_app: "https://github.com/phidatahq/django-app.git",
WorkspaceStarterTemplate.streamlit_app: "https://github.com/phidatahq/streamlit-app.git",
WorkspaceStarterTemplate.junior_de: "https://github.com/phidatahq/junior-de.git",
}
def create_workspace(name: Optional[str] = None, template: Optional[str] = None, url: Optional[str] = None) -> bool:
"""Creates a new workspace.
This function clones a template or url on the users machine at the path:
cwd/name
"""
import git
from shutil import copytree
from rich.prompt import Prompt
from phi.cli.operator import initialize_phi
from phi.utils.common import str_to_int
from phi.utils.filesystem import rmdir_recursive
from phi.workspace.helpers import get_workspace_dir_path
from phi.utils.git import GitCloneProgress
current_dir: Path = Path(".").resolve()
# Phi should be initialized before creating a workspace
phi_config: Optional[PhiCliConfig] = PhiCliConfig.from_saved_config()
if not phi_config:
init_success = initialize_phi()
if not init_success:
from phi.cli.console import log_phi_init_failed_msg
log_phi_init_failed_msg()
return False
phi_config = PhiCliConfig.from_saved_config()
# If phi_config is still None, throw an error
if not phi_config:
log_config_not_available_msg()
return False
ws_dir_name: Optional[str] = name
repo_to_clone: Optional[str] = url
ws_template = WorkspaceStarterTemplate.ai_app
templates = list(WorkspaceStarterTemplate.__members__.values())
if repo_to_clone is None:
# Get repo_to_clone from template
if template is None:
# Get starter template from the user if template is not provided
# Display available starter templates and ask user to select one
print_info("Select starter template or press Enter for default (ai-app)")
for template_id, template_name in enumerate(templates, start=1):
print_info(" [b][{}][/b] {}".format(template_id, WorkspaceStarterTemplate(template_name).value))
# Get starter template from the user
template_choices = [str(idx) for idx, _ in enumerate(templates, start=1)]
template_inp_raw = Prompt.ask("Template Number", choices=template_choices, default="1", show_choices=False)
# Convert input to int
template_inp = str_to_int(template_inp_raw)
if template_inp is not None:
template_inp_idx = template_inp - 1
ws_template = WorkspaceStarterTemplate(templates[template_inp_idx])
elif template.lower() in WorkspaceStarterTemplate.__members__.values():
ws_template = WorkspaceStarterTemplate(template)
else:
raise Exception(f"{template} is not a supported template, please choose from: {templates}")
logger.debug(f"Selected Template: {ws_template.value}")
repo_to_clone = TEMPLATE_TO_REPO_MAP.get(ws_template)
if ws_dir_name is None:
default_ws_name = "ai-app"
if url is not None:
# Get default_ws_name from url
default_ws_name = url.split("/")[-1].split(".")[0]
else:
# Get default_ws_name from template
default_ws_name = TEMPLATE_TO_NAME_MAP.get(ws_template, "ai-app")
logger.debug(f"asking for ws name with default: {default_ws_name}")
# Ask user for workspace name if not provided
ws_dir_name = Prompt.ask("Workspace Name", default=default_ws_name, console=console)
if ws_dir_name is None:
logger.error("Workspace name is required")
return False
if repo_to_clone is None:
logger.error("URL or Template is required")
return False
# Check if we can create the workspace in the current dir
ws_root_path: Path = current_dir.joinpath(ws_dir_name)
if ws_root_path.exists():
logger.error(f"Directory {ws_root_path} exists, please delete directory or choose another name for workspace")
return False
print_info(f"Creating {str(ws_root_path)}")
logger.debug("Cloning: {}".format(repo_to_clone))
try:
_cloned_git_repo: git.Repo = git.Repo.clone_from(
repo_to_clone,
str(ws_root_path),
progress=GitCloneProgress(), # type: ignore
)
except Exception as e:
logger.error(e)
return False
# Remove existing .git folder
_dot_git_folder = ws_root_path.joinpath(".git")
_dot_git_exists = _dot_git_folder.exists()
if _dot_git_exists:
logger.debug(f"Deleting {_dot_git_folder}")
try:
_dot_git_exists = not rmdir_recursive(_dot_git_folder)
except Exception as e:
logger.warning(f"Failed to delete {_dot_git_folder}: {e}")
logger.info("Please delete the .git folder manually")
pass
phi_config.add_new_ws_to_config(ws_root_path=ws_root_path)
try:
# workspace_dir_path is the path to the ws_root/workspace dir
workspace_dir_path: Path = get_workspace_dir_path(ws_root_path)
workspace_secrets_dir = workspace_dir_path.joinpath("secrets").resolve()
workspace_example_secrets_dir = workspace_dir_path.joinpath("example_secrets").resolve()
print_info(f"Creating {str(workspace_secrets_dir)}")
copytree(
str(workspace_example_secrets_dir),
str(workspace_secrets_dir),
)
except Exception as e:
logger.warning(f"Could not create workspace/secrets: {e}")
logger.warning("Please manually copy workspace/example_secrets to workspace/secrets")
print_info(f"Your new workspace is available at {str(ws_root_path)}\n")
return setup_workspace(ws_root_path=ws_root_path)
def setup_workspace(ws_root_path: Path) -> bool:
"""Setup a phi workspace at `ws_root_path`.
1. Validate pre-requisites
1.1 Check ws_root_path is available
1.2 Check PhiCliConfig is available
1.3 Validate WorkspaceConfig is available
1.4 Load workspace and set as active
1.5 Check if remote origin is available
1.6 Create anon user if not available
2. Create or Update WorkspaceSchema
If a ws_schema exists for this workspace, this workspace has a record in the backend
2.1 Create WorkspaceSchema for a NEWLY CREATED WORKSPACE
2.2 Set workspace as primary if needed
2.3 Update WorkspaceSchema if git_url has changed
"""
from phi.cli.operator import initialize_phi
from phi.utils.git import get_remote_origin_for_dir
from phi.workspace.helpers import get_workspace_dir_path
print_heading("Running workspace setup\n")
######################################################
## 1. Validate Pre-requisites
######################################################
######################################################
# 1.1 Check ws_root_path is available
######################################################
_ws_is_valid: bool = ws_root_path is not None and ws_root_path.exists() and ws_root_path.is_dir()
if not _ws_is_valid:
logger.error("Invalid directory: {}".format(ws_root_path))
return False
######################################################
# 1.2 Check PhiCliConfig is available
######################################################
phi_config: Optional[PhiCliConfig] = PhiCliConfig.from_saved_config()
if not phi_config:
# Phidata should be initialized before workspace setup
init_success = initialize_phi()
if not init_success:
from phi.cli.console import log_phi_init_failed_msg
log_phi_init_failed_msg()
return False
phi_config = PhiCliConfig.from_saved_config()
# If phi_config is still None, throw an error
if not phi_config:
raise Exception("Failed to initialize phi")
######################################################
# 1.3 Validate WorkspaceConfig is available
######################################################
logger.debug(f"Checking for a workspace at {ws_root_path}")
ws_config: Optional[WorkspaceConfig] = phi_config.get_ws_config_by_path(ws_root_path)
if ws_config is None:
# This happens if
# - The user is setting up a workspace not previously setup on this machine
# - OR the user ran `phi init -r` which erases existing records of workspaces
logger.debug(f"Could not find an existing workspace at: {ws_root_path}")
workspace_dir_path = get_workspace_dir_path(ws_root_path)
if workspace_dir_path is None:
logger.error(f"Could not find a workspace directory in: {ws_root_path}")
return False
# In this case, the local workspace directory exists but PhiCliConfig does not have a record
print_info(f"Adding {str(ws_root_path.stem)} as a workspace")
phi_config.add_new_ws_to_config(ws_root_path=ws_root_path)
ws_config = phi_config.get_ws_config_by_path(ws_root_path)
else:
logger.debug(f"Found workspace at {ws_root_path}")
# If the ws_config is still None it means the workspace is corrupt
if ws_config is None:
logger.error(f"Could not find workspace at: {str(ws_root_path)}")
logger.error("Please try again")
return False
######################################################
# 1.4 Load workspace and set as active
######################################################
# Load and save the workspace config
# ws_config.load()
# Get the workspace dir name
ws_dir_name = ws_config.ws_root_path.stem
# Set the workspace as active if it is not already
# update_primary_ws is a flag to update the primary workspace in the backend
update_primary_ws = False
if phi_config.active_ws_dir is None or phi_config.active_ws_dir != ws_dir_name:
phi_config.set_active_ws_dir(ws_config.ws_root_path)
update_primary_ws = True
######################################################
# 1.5 Check if remote origin is available
######################################################
git_remote_origin_url: Optional[str] = get_remote_origin_for_dir(ws_root_path)
logger.debug("Git origin: {}".format(git_remote_origin_url))
######################################################
# 1.6 Create anon user if not logged in
######################################################
if phi_config.user is None:
from phi.api.user import create_anon_user
logger.debug("Creating anon user")
anon_user = create_anon_user()
if anon_user is not None:
phi_config.user = anon_user
######################################################
## 2. Create or Update WorkspaceSchema
######################################################
# If a ws_schema exists for this workspace, this workspace is synced with the api
ws_schema: Optional[WorkspaceSchema] = ws_config.ws_schema
if phi_config.user is not None:
######################################################
# 2.1 Create WorkspaceSchema for NEW WORKSPACE
######################################################
if ws_schema is None or ws_schema.id_workspace is None:
from phi.api.workspace import create_workspace_for_user
from phi.workspace.helpers import generate_workspace_name
# If ws_schema is None, this is a NEWLY CREATED WORKSPACE.
# We make a call to the api to create a new ws_schema
new_workspace_name = generate_workspace_name(ws_dir_name=ws_dir_name)
logger.debug("Creating ws_schema for new workspace")
logger.debug(f"ws_dir_name: {ws_dir_name}")
logger.debug(f"workspace_name: {new_workspace_name}")
ws_schema = create_workspace_for_user(
user=phi_config.user,
workspace=WorkspaceCreate(
ws_name=new_workspace_name,
git_url=git_remote_origin_url,
is_primary_for_user=True,
),
)
if ws_schema is not None:
ws_config = phi_config.update_ws_config(ws_root_path=ws_root_path, ws_schema=ws_schema)
else:
logger.debug("Failed to sync workspace with api. Please setup again")
######################################################
# 2.2 Set workspace as primary if needed
######################################################
elif update_primary_ws:
from phi.api.workspace import update_primary_workspace_for_user
logger.debug("Setting workspace as primary")
logger.debug(f"ws_dir_name: {ws_dir_name}")
logger.debug(f"workspace_name: {ws_schema.ws_name}")
updated_workspace_schema = update_primary_workspace_for_user(
user=phi_config.user,
workspace=UpdatePrimaryWorkspace(
id_workspace=ws_schema.id_workspace,
ws_name=ws_schema.ws_name,
),
)
if updated_workspace_schema is not None:
# Update the ws_schema for this workspace.
ws_config = phi_config.update_ws_config(ws_root_path=ws_root_path, ws_schema=updated_workspace_schema)
else:
logger.debug("Failed to sync workspace with api. Please setup again")
######################################################
# 2.3 Update WorkspaceSchema if git_url has changed
######################################################
if ws_schema is not None and ws_schema.git_url != git_remote_origin_url:
from phi.api.workspace import update_workspace_for_user
logger.debug("Updating git_url for existing workspace")
logger.debug(f"ws_dir_name: {ws_dir_name}")
logger.debug(f"workspace_name: {ws_schema.ws_name}")
logger.debug(f"Existing git_url: {ws_schema.git_url}")
logger.debug(f"New git_url: {git_remote_origin_url}")
updated_workspace_schema = update_workspace_for_user(
user=phi_config.user,
workspace=WorkspaceUpdate(
id_workspace=ws_schema.id_workspace,
git_url=git_remote_origin_url,
),
)
if updated_workspace_schema is not None:
# Update the ws_schema for this workspace.
ws_config = phi_config.update_ws_config(ws_root_path=ws_root_path, ws_schema=updated_workspace_schema)
else:
logger.debug("Failed to sync workspace with api. Please setup again")
if ws_config is not None:
# logger.debug("Workspace Config: {}".format(ws_config.model_dump_json(indent=2)))
print_subheading("Setup complete! Next steps:")
print_info("1. Start workspace:")
print_info("\tphi ws up")
print_info("2. Stop workspace:")
print_info("\tphi ws down")
if ws_config.workspace_settings is not None:
scripts_dir = ws_config.workspace_settings.scripts_dir
install_ws_file = f"sh {ws_root_path}/{scripts_dir}/install.sh"
print_info("3. Install workspace dependencies:")
print_info(f"\t{install_ws_file}")
if ws_config.ws_schema is not None and phi_config.user is not None:
log_workspace_event(
user=phi_config.user,
workspace_event=WorkspaceEvent(
id_workspace=ws_config.ws_schema.id_workspace,
event_type="setup",
event_status="success",
event_data={"workspace_root_path": str(ws_root_path)},
),
)
return True
else:
print_info("Workspace setup unsuccessful. Please try again.")
return False
######################################################
## End Workspace setup
######################################################
def start_workspace(
phi_config: PhiCliConfig,
ws_config: WorkspaceConfig,
target_env: Optional[str] = None,
target_infra: Optional[InfraType] = None,
target_group: Optional[str] = None,
target_name: Optional[str] = None,
target_type: Optional[str] = None,
dry_run: Optional[bool] = False,
auto_confirm: Optional[bool] = False,
force: Optional[bool] = None,
pull: Optional[bool] = False,
) -> None:
"""Start a Phi Workspace. This is called from `phi ws up`"""
if ws_config is None:
logger.error("WorkspaceConfig invalid")
return
# Set the local environment variables before processing configs
ws_config.set_local_env()
# Get resource groups to deploy
resource_groups_to_create: List[InfraResources] = ws_config.get_resources(
env=target_env,
infra=target_infra,
order="create",
)
# Track number of resource groups created
num_rgs_created = 0
num_rgs_to_create = len(resource_groups_to_create)
# Track number of resources created
num_resources_created = 0
num_resources_to_create = 0
if num_rgs_to_create == 0:
print_info("No resources to create")
return
logger.debug(f"Deploying {num_rgs_to_create} resource groups")
for rg in resource_groups_to_create:
_num_resources_created, _num_resources_to_create = rg.create_resources(
group_filter=target_group,
name_filter=target_name,
type_filter=target_type,
dry_run=dry_run,
auto_confirm=auto_confirm,
force=force,
pull=pull,
)
if _num_resources_created > 0:
num_rgs_created += 1
num_resources_created += _num_resources_created
num_resources_to_create += _num_resources_to_create
logger.debug(f"Deployed {num_resources_created} resources in {num_rgs_created} resource groups")
if dry_run:
return
if num_resources_created == 0:
return
print_heading(f"\n--**-- ResourceGroups deployed: {num_rgs_created}/{num_rgs_to_create}\n")
workspace_event_status = "in_progress"
if num_resources_created == num_resources_to_create:
workspace_event_status = "success"
else:
logger.error("Some resources failed to create, please check logs")
workspace_event_status = "failed"
if phi_config.user is not None and ws_config.ws_schema is not None and ws_config.ws_schema.id_workspace is not None:
# Log workspace start event
log_workspace_event(
user=phi_config.user,
workspace_event=WorkspaceEvent(
id_workspace=ws_config.ws_schema.id_workspace,
event_type="start",
event_status=workspace_event_status,
event_data={
"target_env": target_env,
"target_infra": target_infra,
"target_group": target_group,
"target_name": target_name,
"target_type": target_type,
"dry_run": dry_run,
"auto_confirm": auto_confirm,
"force": force,
},
),
)
def stop_workspace(
phi_config: PhiCliConfig,
ws_config: WorkspaceConfig,
target_env: Optional[str] = None,
target_infra: Optional[InfraType] = None,
target_group: Optional[str] = None,
target_name: Optional[str] = None,
target_type: Optional[str] = None,
dry_run: Optional[bool] = False,
auto_confirm: Optional[bool] = False,
force: Optional[bool] = None,
) -> None:
"""Stop a Phi Workspace. This is called from `phi ws down`"""
if ws_config is None:
logger.error("WorkspaceConfig invalid")
return
# Set the local environment variables before processing configs
ws_config.set_local_env()
# Get resource groups to delete
resource_groups_to_delete: List[InfraResources] = ws_config.get_resources(
env=target_env,
infra=target_infra,
order="delete",
)
# Track number of resource groups deleted
num_rgs_deleted = 0
num_rgs_to_delete = len(resource_groups_to_delete)
# Track number of resources deleted
num_resources_deleted = 0
num_resources_to_delete = 0
if num_rgs_to_delete == 0:
print_info("No resources to delete")
return
logger.debug(f"Deleting {num_rgs_to_delete} resource groups")
for rg in resource_groups_to_delete:
_num_resources_deleted, _num_resources_to_delete = rg.delete_resources(
group_filter=target_group,
name_filter=target_name,
type_filter=target_type,
dry_run=dry_run,
auto_confirm=auto_confirm,
force=force,
)
if _num_resources_deleted > 0:
num_rgs_deleted += 1
num_resources_deleted += _num_resources_deleted
num_resources_to_delete += _num_resources_to_delete
logger.debug(f"Deleted {num_resources_deleted} resources in {num_rgs_deleted} resource groups")
if dry_run:
return
if num_resources_deleted == 0:
return
print_heading(f"\n--**-- ResourceGroups deleted: {num_rgs_deleted}/{num_rgs_to_delete}\n")
workspace_event_status = "in_progress"
if num_resources_to_delete == num_resources_deleted:
workspace_event_status = "success"
else:
logger.error("Some resources failed to delete, please check logs")
workspace_event_status = "failed"
if phi_config.user is not None and ws_config.ws_schema is not None and ws_config.ws_schema.id_workspace is not None:
# Log workspace stop event
log_workspace_event(
user=phi_config.user,
workspace_event=WorkspaceEvent(
id_workspace=ws_config.ws_schema.id_workspace,
event_type="stop",
event_status=workspace_event_status,
event_data={
"target_env": target_env,
"target_infra": target_infra,
"target_group": target_group,
"target_name": target_name,
"target_type": target_type,
"dry_run": dry_run,
"auto_confirm": auto_confirm,
"force": force,
},
),
)
def update_workspace(
phi_config: PhiCliConfig,
ws_config: WorkspaceConfig,
target_env: Optional[str] = None,
target_infra: Optional[InfraType] = None,
target_group: Optional[str] = None,
target_name: Optional[str] = None,
target_type: Optional[str] = None,
dry_run: Optional[bool] = False,
auto_confirm: Optional[bool] = False,
force: Optional[bool] = None,
pull: Optional[bool] = False,
) -> None:
"""Update a Phi Workspace. This is called from `phi ws patch`"""
if ws_config is None:
logger.error("WorkspaceConfig invalid")
return
# Set the local environment variables before processing configs
ws_config.set_local_env()
# Get resource groups to update
resource_groups_to_update: List[InfraResources] = ws_config.get_resources(
env=target_env,
infra=target_infra,
order="create",
)
# Track number of resource groups updated
num_rgs_updated = 0
num_rgs_to_update = len(resource_groups_to_update)
# Track number of resources updated
num_resources_updated = 0
num_resources_to_update = 0
if num_rgs_to_update == 0:
print_info("No resources to update")
return
logger.debug(f"Updating {num_rgs_to_update} resource groups")
for rg in resource_groups_to_update:
_num_resources_updated, _num_resources_to_update = rg.update_resources(
group_filter=target_group,
name_filter=target_name,
type_filter=target_type,
dry_run=dry_run,
auto_confirm=auto_confirm,
force=force,
pull=pull,
)
if _num_resources_updated > 0:
num_rgs_updated += 1
num_resources_updated += _num_resources_updated
num_resources_to_update += _num_resources_to_update
logger.debug(f"Updated {num_resources_updated} resources in {num_rgs_updated} resource groups")
if dry_run:
return
if num_resources_updated == 0:
return
print_heading(f"\n--**-- ResourceGroups updated: {num_rgs_updated}/{num_rgs_to_update}\n")
workspace_event_status = "in_progress"
if num_resources_updated == num_resources_to_update:
workspace_event_status = "success"
else:
logger.error("Some resources failed to update, please check logs")
workspace_event_status = "failed"
if phi_config.user is not None and ws_config.ws_schema is not None and ws_config.ws_schema.id_workspace is not None:
# Log workspace start event
log_workspace_event(
user=phi_config.user,
workspace_event=WorkspaceEvent(
id_workspace=ws_config.ws_schema.id_workspace,
event_type="update",
event_status=workspace_event_status,
event_data={
"target_env": target_env,
"target_infra": target_infra,
"target_group": target_group,
"target_name": target_name,
"target_type": target_type,
"dry_run": dry_run,
"auto_confirm": auto_confirm,
"force": force,
},
),
)
def delete_workspace(phi_config: PhiCliConfig, ws_to_delete: Optional[List[Path]]) -> None:
if ws_to_delete is None or len(ws_to_delete) == 0:
print_heading("No workspaces to delete")
return
for ws_root in ws_to_delete:
phi_config.delete_ws(ws_root_path=ws_root)
def set_workspace_as_active(ws_dir_name: Optional[str]) -> None:
from phi.cli.operator import initialize_phi
######################################################
## 1. Validate Pre-requisites
######################################################
######################################################
# 1.1 Check PhiConf is valid
######################################################
phi_config: Optional[PhiCliConfig] = PhiCliConfig.from_saved_config()
if not phi_config:
# Phidata should be initialized before workspace setup
init_success = initialize_phi()
if not init_success:
from phi.cli.console import log_phi_init_failed_msg
log_phi_init_failed_msg()
return
phi_config = PhiCliConfig.from_saved_config()
# If phi_config is still None, throw an error
if not phi_config:
raise Exception("Failed to initialize phi")
######################################################
# 1.2 Check ws_root_path is valid
######################################################
# By default, we assume this command is run from the workspace directory
ws_root_path: Optional[Path] = None
if ws_dir_name is None:
# If the user does not provide a ws_name, that implies `phi set` is ran from
# the workspace directory.
ws_root_path = Path(".").resolve()
else:
# If the user provides a workspace name manually, we find the dir for that ws
ws_config: Optional[WorkspaceConfig] = phi_config.get_ws_config_by_dir_name(ws_dir_name)
if ws_config is None:
logger.error(f"Could not find workspace {ws_dir_name}")
return
ws_root_path = ws_config.ws_root_path
ws_dir_is_valid: bool = ws_root_path is not None and ws_root_path.exists() and ws_root_path.is_dir()
if not ws_dir_is_valid:
logger.error("Invalid workspace directory: {}".format(ws_root_path))
return
######################################################
# 1.3 Validate PhiWsData is available i.e. a workspace is available at this directory
######################################################
logger.debug(f"Checking for a workspace at path: {ws_root_path}")
active_ws_config: Optional[WorkspaceConfig] = phi_config.get_ws_config_by_path(ws_root_path)
if active_ws_config is None:
# This happens when the workspace is not yet setup
print_info(f"Could not find a workspace at path: {ws_root_path}")
print_info("If this workspace has not been setup, please run `phi ws setup` from the workspace directory")
return
print_heading(f"Setting workspace {active_ws_config.ws_root_path.stem} as active")
# if load:
# try:
# active_ws_config.load()
# except Exception as e:
# logger.error("Could not load workspace config, please fix errors and try again")
# logger.error(e)
# return
######################################################
# 1.4 Make api request if updating active workspace
######################################################
logger.debug("Updating active workspace api")
if phi_config.user is not None:
ws_schema: Optional[WorkspaceSchema] = active_ws_config.ws_schema
if ws_schema is None:
logger.warning(f"Please setup {active_ws_config.ws_root_path.stem} by running `phi ws setup`")
else:
from phi.api.workspace import update_primary_workspace_for_user
updated_workspace_schema = update_primary_workspace_for_user(
user=phi_config.user,
workspace=UpdatePrimaryWorkspace(
id_workspace=ws_schema.id_workspace,
ws_name=ws_schema.ws_name,
),
)
if updated_workspace_schema is not None:
# Update the ws_schema for this workspace.
phi_config.update_ws_config(
ws_root_path=active_ws_config.ws_root_path, ws_schema=updated_workspace_schema
)
######################################################
## 2. Set workspace as active
######################################################
phi_config.set_active_ws_dir(active_ws_config.ws_root_path)
print_info("Active workspace updated")
return
|