forked from aboutcode-org/scancode.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a flush-projects management command for bulk deletion aboutcode-o…
…rg#1289 (aboutcode-org#1291) Signed-off-by: tdruez <tdruez@nexb.com>
- Loading branch information
Showing
5 changed files
with
173 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
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
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
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,97 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# http://nexb.com and https://github.com/nexB/scancode.io | ||
# The ScanCode.io software is licensed under the Apache License version 2.0. | ||
# Data generated with ScanCode.io is provided as-is without warranties. | ||
# ScanCode is a trademark of nexB Inc. | ||
# | ||
# You may not use this software except in compliance with the License. | ||
# You may obtain a copy of the License at: http://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. | ||
# | ||
# Data Generated with ScanCode.io is provided on an "AS IS" BASIS, WITHOUT WARRANTIES | ||
# OR CONDITIONS OF ANY KIND, either express or implied. No content created from | ||
# ScanCode.io should be considered or used as legal advice. Consult an Attorney | ||
# for any legal advice. | ||
# | ||
# ScanCode.io is a free software code scanning tool from nexB Inc. and others. | ||
# Visit https://github.com/nexB/scancode.io for support and download. | ||
|
||
import datetime | ||
import sys | ||
|
||
from django.core.management.base import BaseCommand | ||
from django.template.defaultfilters import pluralize | ||
from django.utils import timezone | ||
|
||
from scanpipe.models import Project | ||
|
||
|
||
class Command(BaseCommand): | ||
help = ( | ||
"Delete all project data and their related work directories created more than " | ||
"a specified number of days ago." | ||
) | ||
|
||
def add_arguments(self, parser): | ||
super().add_arguments(parser) | ||
parser.add_argument( | ||
"--retain-days", | ||
type=int, | ||
help=( | ||
"Optional. Specify the number of days to retain data. " | ||
"All data older than this number of days will be deleted. " | ||
"Defaults to 0 (delete all data)." | ||
), | ||
default=0, | ||
) | ||
parser.add_argument( | ||
"--no-input", | ||
action="store_false", | ||
dest="interactive", | ||
help="Do not prompt the user for input of any kind.", | ||
) | ||
|
||
def handle(self, *inputs, **options): | ||
verbosity = options["verbosity"] | ||
retain_days = options["retain_days"] | ||
projects = Project.objects.all() | ||
|
||
if retain_days: | ||
cutoff_date = timezone.now() - datetime.timedelta(days=retain_days) | ||
projects = projects.filter(created_date__lt=cutoff_date) | ||
|
||
projects_count = projects.count() | ||
if projects_count == 0: | ||
if verbosity > 0: | ||
self.stdout.write("No projects to remove.") | ||
sys.exit(0) | ||
|
||
if options["interactive"]: | ||
confirm = input( | ||
f"You have requested the deletion of {projects_count} " | ||
f"project{pluralize(projects_count)}.\n" | ||
"This will IRREVERSIBLY DESTROY all data related to those projects.\n" | ||
"Are you sure you want to do this?\n" | ||
"Type 'yes' to continue, or 'no' to cancel: " | ||
) | ||
if confirm != "yes": | ||
if verbosity > 0: | ||
self.stdout.write("Flush cancelled.") | ||
sys.exit(0) | ||
|
||
deletion_count = 0 | ||
for project in projects: | ||
project.delete() | ||
deletion_count += 1 | ||
|
||
if verbosity > 0: | ||
msg = ( | ||
f"{deletion_count} project{pluralize(deletion_count)} and " | ||
f"{pluralize(deletion_count, 'its,their')} related data have been " | ||
f"removed." | ||
) | ||
self.stdout.write(msg, self.style.SUCCESS) |
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