-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a "status" management command to display Project status information
#66 Signed-off-by: Thomas Druez <tdruez@nexb.com>
- Loading branch information
Showing
6 changed files
with
95 additions
and
11 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
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,55 @@ | ||
# 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. | ||
|
||
from scanpipe.management.commands import ProjectCommand | ||
from scanpipe.management.commands import RunStatusCommandMixin | ||
from scanpipe.models import CodebaseResource | ||
from scanpipe.models import DiscoveredPackage | ||
from scanpipe.models import ProjectError | ||
|
||
|
||
class Command(ProjectCommand, RunStatusCommandMixin): | ||
help = "Display status information about the provided project." | ||
|
||
def handle(self, *args, **options): | ||
super().handle(*args, **options) | ||
|
||
status = [ | ||
f"Project: {self.project.name}", | ||
f"Create date: {self.project.created_date.strftime('%b %d %Y %H:%M')}", | ||
f"Work directory: {self.project.work_directory}", | ||
"\nDatabase:", | ||
] | ||
|
||
for model_class in [CodebaseResource, DiscoveredPackage, ProjectError]: | ||
object_count = model_class.objects.project(self.project).count() | ||
status.append(f" - {model_class.__name__}: {object_count}") | ||
|
||
runs = self.project.runs.all() | ||
if runs: | ||
status.append("\nPipelines:") | ||
for run in runs: | ||
status_code = self.get_run_status_code(run) | ||
status.append(f" [{status_code}] {run.pipeline}") | ||
|
||
for line in status: | ||
self.stdout.write(line) |
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