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.
created basic fetch and availability functions for scorecode pipeline…
… nexB#598 Signed-off-by: 404-geek <pranayd61@gmail.com>
- Loading branch information
Showing
3 changed files
with
122 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# 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.pipelines import Pipeline | ||
from scanpipe.pipes import scorecode | ||
|
||
|
||
class FetchScoreCodeInfo(Pipeline): | ||
""" | ||
Fetch scorecode information for packages and dependencies. | ||
scorecode data is stored on each package and dependency instance. | ||
""" | ||
|
||
download_inputs = False | ||
is_addon = True | ||
|
||
@classmethod | ||
def steps(cls): | ||
return ( | ||
cls.check_scorecode_service_availability, | ||
cls.lookup_packages_scorecode_info, | ||
cls.lookup_dependencies_scorecode_info, | ||
) | ||
|
||
def check_scorecode_service_availability(self): | ||
"""Check if the scorecode service is configured and available.""" | ||
if not scorecode.is_configured(): | ||
raise Exception("scorecode service is not configured.") | ||
|
||
if not scorecode.is_available(): | ||
raise Exception("scorecode service is not available.") | ||
|
||
def lookup_packages_scorecode_info(self): | ||
"""Fetch scorecode information for each of the project's discovered packages.""" | ||
packages = self.project.discoveredpackages.all() | ||
scorecode.fetch_scorecode_info( | ||
packages=packages, | ||
logger=self.log, | ||
) |
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