Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

* Added Secret Scanning Alert call to Repository #37

Merged
merged 6 commits into from
Apr 27, 2023

Conversation

tbronsonCoveo
Copy link

@tbronsonCoveo tbronsonCoveo commented Apr 25, 2023

Add last missing elements for certifier

First PR was to allowed creation of v1 certifier (in progress), this will complete it.

  • Added Dependabot Alert call to Repository
  • Added missing Code Scan Alert call to Repository pyi
  • Created Secret Scanning Alert Object
  • Created Dependabot Alert Object
  • Created Security Vulnerability Object
  • Created Dependency Object
  • Created Package Object
  • Fixed Code Scanning Alert object to use already existing CodeScanTool class
  • Remove Tool object (redundant)
  • added tests

* Added Dependabot Alert call to Repository
* Added missing Code Scan Alert call to Repository pyi
* Created Secret Scanning Alert Object
* Created Dependabot Alert Object
* Created Security Vulnerability Object
* Created Dependency Object
* Created Package Object
* Fixed Code Scanning Alert object to use already existing CodeScanTool class
* Remove Tool object (redundant)
* Fixed bugs discovered with tests
@tbronsonCoveo tbronsonCoveo marked this pull request as ready for review April 25, 2023 14:41
Copy link

@JPLachance JPLachance left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!!!

Comment on lines 122 to 134
def _initAttributes(self):
self._created_at = github.GithubObject.NotSet
self._dependency = github.GithubObject.NotSet
self._dismissed_at = github.GithubObject.NotSet
self._dismissed_comment = github.GithubObject.NotSet
self._dismissed_reason = github.GithubObject.NotSet
self._fixed_at = github.GithubObject.NotSet
self._html_url = github.GithubObject.NotSet
self._number = github.GithubObject.NotSet
self._security_vulnerability = github.GithubObject.NotSet
self._state = github.GithubObject.NotSet
self._updated_at = github.GithubObject.NotSet
self._url = github.GithubObject.NotSet

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're missing:

  • security_advisory
  • dismissed_by
  • auto_dismissed_at

Not sure if that was intentional

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Security advisory intentionnaly left out since it is a huge object and not needed for our use case.

Fixed missing dismissed_by attributes. It was missing indeed.

I added auto dismissed_at added although not used in our case.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good. My aim here is to increase the likelyhood that this gets merged upstream eventually. But if you don't need them and they slow you down, we can go like this

Comment on lines 146 to 161
self._created_at = github.GithubObject.NotSet
self._html_url = github.GithubObject.NotSet
self._locations_url = github.GithubObject.NotSet
self._number = github.GithubObject.NotSet
self._push_protection_bypassed = github.GithubObject.NotSet
self._push_protection_bypassed_at = github.GithubObject.NotSet
self._push_protection_bypassed_by = github.GithubObject.NotSet
self._resolution = github.GithubObject.NotSet
self._resolution_comment = github.GithubObject.NotSet
self._resolved_at = github.GithubObject.NotSet
self._resolved_by = github.GithubObject.NotSet
self._secret = github.GithubObject.NotSet
self._secret_type = github.GithubObject.NotSet
self._secret_type_display_name = github.GithubObject.NotSet
self._state = github.GithubObject.NotSet
self._url = github.GithubObject.NotSet

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're missing:

  • updated_at

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

corrected in next commit

Comment on lines 41 to 44
def _initAttributes(self):
self._package = github.GithubObject.NotSet
self._severity = github.GithubObject.NotSet
self._vulnerable_version_range = github.GithubObject.NotSet

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're missing:

  • first_patched_version

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

intentionally left out but now that I think of it, I will add it.

* fix missing attributes in SecretScanningAlert, DependabotAlert, SecurityVulnerability
@tbronsonCoveo tbronsonCoveo requested a review from dotboris April 26, 2023 14:51
@JPLachance JPLachance merged commit f290460 into master Apr 27, 2023
@JPLachance JPLachance deleted the feature/add-more-security-calls branch April 27, 2023 13:20
@JPLachance
Copy link

@jonapich, do you have a documentation, so we become autonomous at shipping this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants