Skip to content

Commit

Permalink
Merge pull request #1156 from MrBatschner/action-secrets
Browse files Browse the repository at this point in the history
Add support for GitHub repository/organization secrets
  • Loading branch information
sigmavirus24 committed May 16, 2024
2 parents dd71b98 + 25ca885 commit fc040b9
Show file tree
Hide file tree
Showing 28 changed files with 6,679 additions and 12 deletions.
2 changes: 2 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -223,4 +223,6 @@ Contributors

- Chris R (@offbyone)

- Thomas Buchner (@MrBatschner)

- Chris Cotter (@ccotter)
19 changes: 19 additions & 0 deletions src/github3/actions/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
"""
github3.actions
=============
Module which contains all GitHub Actions related material (only secrets
so far).
See also: http://developer.github.com/v3/actions/
"""

from .secrets import OrganizationSecret
from .secrets import RepositorySecret
from .secrets import SharedOrganizationSecret

__all__ = (
"OrganizationSecret",
"RepositorySecret",
"SharedOrganizationSecret",
)
233 changes: 233 additions & 0 deletions src/github3/actions/secrets.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,233 @@
"""This module contains all the classes relating to GitHub Actions secrets."""

import typing

from .. import models


class PublicKey(models.GitHubCore):
"""Object representing a Public Key for GitHub Actions secrets.
See https://docs.github.com/en/rest/actions/secrets for more details.
.. attribute:: key_id
The ID of the public key
.. attribute:: key
The actual public key as a string
"""

def _update_attributes(self, publickey):
self.key_id = publickey["key_id"]
self.key = publickey["key"]

def _repr(self):
return f"<PublicKey [{self.key_id}]>"

def __str__(self):
return self.key


class _Secret(models.GitHubCore):
"""Base class for all secrets for GitHub Actions.
See https://docs.github.com/en/rest/actions/secrets for more details.
GitHub never reveals the secret value through its API, it is only accessible
from within actions. Therefore, this object represents the secret's metadata
but not its actual value.
"""

class_name = "_Secret"

def _repr(self):
return f"<{self.class_name} [{self.name}]>"

def __str__(self):
return self.name

def _update_attributes(self, secret):
self.name = secret["name"]
self.created_at = self._strptime(secret["created_at"])
self.updated_at = self._strptime(secret["updated_at"])


class RepositorySecret(_Secret):
"""An object representing a repository secret for GitHub Actions.
See https://docs.github.com/en/rest/actions/secrets for more details.
GitHub never reveals the secret value through its API, it is only accessible
from within actions. Therefore, this object represents the secret's metadata
but not its actual value.
.. attribute:: name
The name of the secret
.. attribute:: created_at
The timestamp of when the secret was created
.. attribute:: updated_at
The timestamp of when the secret was last updated
"""

class_name = "RepositorySecret"


class SharedOrganizationSecret(_Secret):
"""An object representing an organization secret for GitHub Actions that is
shared with the repository.
See https://docs.github.com/en/rest/actions/secrets for more details.
GitHub never reveals the secret value through its API, it is only accessible
from within actions. Therefore, this object represents the secret's metadata
but not its actual value.
.. attribute:: name
The name of the secret
.. attribute:: created_at
The timestamp of when the secret was created
.. attribute:: updated_at
The timestamp of when the secret was last updated
"""

class_name = "SharedOrganizationSecret"


class OrganizationSecret(_Secret):
"""An object representing am organization secret for GitHub Actions.
See https://docs.github.com/en/rest/actions/secrets for more details.
GitHub never reveals the secret value through its API, it is only accessible
from within actions. Therefore, this object represents the secret's metadata
but not its actual value.
.. attribute:: name
The name of the secret
.. attribute:: created_at
The timestamp of when the secret was created
.. attribute:: updated_at
The timestamp of when the secret was last updated
.. attribute:: visibility
Specifies which type of organization repositories have access to
the secret. Can be one of all, private, selected.
"""

class_name = "OrganizationSecret"

def _update_attributes(self, secret):
super()._update_attributes(secret)
self.visibility = secret["visibility"]
if self.visibility == "selected":
self.selected_repositories_url = secret[
"selected_repositories_url"
]

def selected_repositories(self, number=-1, etag=""):
"""Iterates over all repositories this secret is visible to.
:param int number:
(optional), number of repositories to return.
Default: -1 returns all selected repositories.
:param str etag:
(optional), ETag from a previous request to the same endpoint
:returns:
Generator of selected repositories or None if the visibility of this
secret is not set to 'selected'.
:rtype:
:class:`~github3.repos.ShortRepository`
"""
from .. import repos

if self.visibility != "selected":
return None

return self._iter(
int(number),
self.selected_repositories_url,
repos.ShortRepository,
etag=etag,
list_key="repositories",
)

def set_selected_repositories(self, repository_ids: typing.Sequence[int]):
"""Sets the selected repositories this secret is visible to.
:param list[int] repository_ids:
A list of repository IDs which this secret should be visible to.
:returns:
A boolean indicating whether the update was successful.
:rtype:
bool
"""
if self.visibility != "selected":
raise ValueError(
"""cannot set a list of selected repositories when visibility
is not 'selected'"""
)

data = {"selected_repository_ids": repository_ids}

return self._boolean(
self._put(self.selected_repositories_url, json=data), 204, 404
)

def add_selected_repository(self, repository_id: int):
"""Adds a repository to the list of repositories this secret is
visible to.
:param int repository_id:
The IDs of a repository this secret should be visible to.
:raises:
A ValueError if the visibility of this secret is not 'selected'.
:returns:
A boolean indicating if the repository was successfully added to
the visible list.
:rtype:
bool
"""
if self.visibility != "selected":
raise ValueError(
"cannot add a repository when visibility is not 'selected'"
)

url = "/".join([self.selected_repositories_url, str(repository_id)])
return self._boolean(self._put(url), 204, 409)

def remove_selected_repository(self, repository_id: int):
"""Deletes a repository from the list of repositories this secret is
visible to.
:param int repository_id:
The IDs of the repository this secret should no longer be
visible to.
:raises:
A ValueError if the visibility of this secret is not 'selected'.
:returns:
A boolean indicating if the repository was successfully removed
from the visible list.
:rtype:
bool
"""
if self.visibility != "selected":
raise ValueError(
"cannot delete a repository when visibility is not 'selected'"
)

url = "/".join([self.selected_repositories_url, str(repository_id)])
return self._boolean(self._delete(url), 204, 409)

0 comments on commit fc040b9

Please sign in to comment.