mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 12:53:00 +00:00
65 lines
2.1 KiB
Python
65 lines
2.1 KiB
Python
from typing import List
|
|
|
|
import click
|
|
from click import get_current_context
|
|
|
|
from .cmd import KiwiCommandType, KiwiCommand
|
|
from .cmd_build import BuildCommand
|
|
from .cmd_down import DownCommand
|
|
from .cmd_pull import PullCommand
|
|
from .cmd_up import UpCommand
|
|
from .decorators import kiwi_command
|
|
from ..instance import Instance
|
|
from ..project import Project
|
|
from ..services import Services
|
|
|
|
|
|
@click.option(
|
|
"-f/-F",
|
|
"--force/--no-force",
|
|
help=f"skip confirmation",
|
|
)
|
|
@kiwi_command(
|
|
short_help="Update kiwi services",
|
|
)
|
|
class UpdateCommand(KiwiCommand):
|
|
"""Update the whole instance, a project or service(s) inside a project"""
|
|
|
|
type = KiwiCommandType.SERVICES
|
|
enabled_only = True
|
|
|
|
@classmethod
|
|
def run_for_instance(cls, instance: Instance, force: bool = None) -> None:
|
|
if not force:
|
|
if not KiwiCommand.danger_confirm(
|
|
"This will update the entire instance at once.",
|
|
"",
|
|
"This may not be what you intended, because:",
|
|
" - Updates may take a long time",
|
|
" - Updates may break beloved functionality",
|
|
):
|
|
return
|
|
|
|
super().run_for_instance(instance)
|
|
|
|
@classmethod
|
|
def run_for_filtered_services(cls, instance: Instance, project: Project, services: Services,
|
|
new_service_names: List[str], **kwargs) -> None:
|
|
if not services:
|
|
if not click.confirm(
|
|
"Did not find any of those services. \n"
|
|
f"Update the entire project {project.name} instead?",
|
|
default=True
|
|
):
|
|
return
|
|
|
|
ctx = get_current_context()
|
|
assert isinstance(BuildCommand, click.Command)
|
|
ctx.forward(BuildCommand)
|
|
assert isinstance(PullCommand, click.Command)
|
|
ctx.forward(PullCommand)
|
|
services.copy_configs()
|
|
assert isinstance(DownCommand, click.Command)
|
|
ctx.forward(DownCommand)
|
|
assert isinstance(UpCommand, click.Command)
|
|
ctx.forward(UpCommand)
|