forked from QuantConnect/lean-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
delete_project.py
64 lines (50 loc) · 2.35 KB
/
delete_project.py
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
# QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
# Lean CLI v1.0. Copyright 2021 QuantConnect Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from pathlib import Path
from click import argument
from lean.click import LeanCommand
from lean.commands import lean
from lean.container import container
@lean.command(cls=LeanCommand, name="project-delete", aliases=["delete-project"])
@argument("project", type=str)
def delete_project(project: str) -> None:
"""Delete a project locally and in the cloud if it exists.
The project is selected by name or cloud id.
"""
organization_id = container.organization_manager.try_get_working_organization_id()
# Remove project from cloud
api_client = container.api_client
all_projects = api_client.projects.get_all(organization_id)
project_manager = container.project_manager
logger = container.logger
project_id = None
try:
project_id = int(project)
except ValueError:
pass
projects = []
try:
projects = project_manager.get_projects_by_name_or_id(all_projects, project_id or project)
except RuntimeError:
# If searching by id, we cannot try lo locate the project locally
if project_id is not None:
raise RuntimeError(f"The project with ID {project_id} was not found in the cloud.")
# The project might only be local, look for the path
logger.info(f"The project {project} was not found in the cloud. It will be removed locally if it exists.")
full_project = next(iter(projects), None)
if full_project is not None:
api_client.projects.delete(full_project.projectId)
# Remove project locally
project_path = full_project.name if full_project is not None else project
project_manager.delete_project(Path(project_path))
logger.info(f"Successfully deleted project '{project_path}'")