Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Commit

Permalink
Merge pull request #95 from sp3c73r2038/master
Browse files Browse the repository at this point in the history
add delete_project and bulk_delete_project
  • Loading branch information
shijl0925 authored Aug 4, 2024
2 parents 3719e34 + f148237 commit 0bc434e
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 36 additions & 1 deletion sonarqube/rest/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# @Author: Jialiang Shi
from sonarqube.utils.rest_client import RestClient
from sonarqube.utils.config import (
API_PROJECTS_BULK_DELETE_ENDPOINT,
API_PROJECTS_DELETE_ENDPOINT,
API_PROJECTS_SEARCH_ENDPOINT,
API_PROJECTS_CREATE_PROJECT_ENDPOINT
)
Expand Down Expand Up @@ -63,6 +65,7 @@ def search_projects(
:return:
"""

@POST(API_PROJECTS_CREATE_PROJECT_ENDPOINT)
def create_project(
self,
Expand All @@ -80,4 +83,36 @@ def create_project(
Possible values
* private
* public
"""
"""

@POST(API_PROJECTS_DELETE_ENDPOINT)
def delete_project(self, key):
"""
SINCE 5.2
Delete a project
:param key: Project key
:return:
"""

@POST(API_PROJECTS_BULK_DELETE_ENDPOINT)
def bulk_delete_project(
self,
analyzedBefore=None,
onProvisionedOnly=False,
projects=None, q=None,
qualifiers=None):
"""
SINCE 5.2
Delete one or several projects.
:param analyzedBefore: Filter the projects for which last analysis of any branch is older than the given date (exclusive).
Either a date (server timezone) or datetime can be provided.
:param onProvisionedOnly: Filter the projects that are provisioned
:param projects: Comma-separated list of project keys
:param q: Limit to:
component names that contain the supplied string
component keys that contain the supplied string
:param qualifiers: Comma-separated list of component qualifiers. Filter the results with the specified qualifiers
:return:
"""
2 changes: 2 additions & 0 deletions sonarqube/utils/config.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
API_COMPONENTS_SHOW_ENDPOINT = "/api/components/show"

API_PROJECTS_BULK_DELETE_ENDPOINT = "/api/projects/bulk_delete"
API_PROJECTS_DELETE_ENDPOINT = "/api/projects/delete"
API_PROJECTS_SEARCH_ENDPOINT = "/api/projects/search"
API_PROJECTS_CREATE_PROJECT_ENDPOINT = "/api/projects/create"

Expand Down

0 comments on commit 0bc434e

Please sign in to comment.