Add ability for specific geographic regions to be blocked from pulling images within a namespace
This commit is contained in:
parent
c71a43a06c
commit
c3710a6a5e
20 changed files with 257 additions and 37 deletions
|
@ -15,7 +15,7 @@ from data.database import (User, LoginService, FederatedLogin, RepositoryPermiss
|
|||
UserRegion, ImageStorageLocation,
|
||||
ServiceKeyApproval, OAuthApplication, RepositoryBuildTrigger,
|
||||
UserPromptKind, UserPrompt, UserPromptTypes, DeletedNamespace,
|
||||
RobotAccountMetadata)
|
||||
RobotAccountMetadata, NamespaceGeoRestriction)
|
||||
from data.model import (DataModelException, InvalidPasswordException, InvalidRobotException,
|
||||
InvalidUsernameException, InvalidEmailAddressException,
|
||||
TooManyLoginAttemptsException, db_transaction,
|
||||
|
@ -1060,6 +1060,14 @@ def get_federated_logins(user_ids, service_name):
|
|||
LoginService.name == service_name))
|
||||
|
||||
|
||||
def list_namespace_geo_restrictions(namespace_name):
|
||||
""" Returns all of the defined geographic restrictions for the given namespace. """
|
||||
return (NamespaceGeoRestriction
|
||||
.select()
|
||||
.join(User)
|
||||
.where(User.username == namespace_name))
|
||||
|
||||
|
||||
class LoginWrappedDBUser(UserMixin):
|
||||
def __init__(self, user_uuid, db_user=None):
|
||||
self._uuid = user_uuid
|
||||
|
|
Reference in a new issue