diff --git a/data/database.py b/data/database.py index d0b7357b9..d4b9efa5b 100644 --- a/data/database.py +++ b/data/database.py @@ -878,6 +878,7 @@ class TorrentInfo(BaseModel): class ServiceKeyApprovalType(Enum): SUPERUSER = 'Super User API' KEY_ROTATION = 'Key Rotation' + AUTOMATIC = 'Automatic' _ServiceKeyApproverProxy = Proxy() diff --git a/endpoints/api/superuser.py b/endpoints/api/superuser.py index fba5c7273..fc7ef8c8e 100644 --- a/endpoints/api/superuser.py +++ b/endpoints/api/superuser.py @@ -142,8 +142,6 @@ def org_view(org): } def user_view(user, password=None): - if user is None: - return None user_data = { 'kind': 'user', 'name': user.username, @@ -493,7 +491,7 @@ def key_view(key): def approval_view(approval): return { - 'approver': user_view(approval.approver), + 'approver': user_view(approval.approver) if approval.approver else None, 'approval_type': approval.approval_type, 'approved_date': approval.approved_date, 'notes': approval.notes, diff --git a/static/css/directives/ui/service-keys-manager.css b/static/css/directives/ui/service-keys-manager.css index f3e7beb45..c7b1e54ae 100644 --- a/static/css/directives/ui/service-keys-manager.css +++ b/static/css/directives/ui/service-keys-manager.css @@ -44,6 +44,11 @@ color: #128E72; } +.service-keys-manager-element .approval-automatic { + font-size: 12px; + color: #777; +} + .service-keys-manager-element i.fa { margin-right: 4px; } diff --git a/static/directives/service-keys-manager.html b/static/directives/service-keys-manager.html index 9f8d7c1b3..964523dab 100644 --- a/static/directives/service-keys-manager.html +++ b/static/directives/service-keys-manager.html @@ -130,10 +130,10 @@ - - Generated on Boot + + Generated Automatically - + Approved by @@ -362,4 +362,4 @@ - \ No newline at end of file + diff --git a/util/generatepresharedkey.py b/util/generatepresharedkey.py index 2b501abf9..25b7576e6 100644 --- a/util/generatepresharedkey.py +++ b/util/generatepresharedkey.py @@ -6,7 +6,7 @@ from timeparse import ParseDatetime import argparse -def generate_key(service, name, approver=None, expiration_date=None, notes=None): +def generate_key(service, name, expiration_date=None, notes=None): metadata = { 'created_by': 'CLI tool', } @@ -16,7 +16,7 @@ def generate_key(service, name, approver=None, expiration_date=None, notes=None) metadata=metadata, name=name) # Auto-approve the service key. - model.service_keys.approve_service_key(key.kid, approver, ServiceKeyApprovalType.SUPERUSER, + model.service_keys.approve_service_key(key.kid, None, ServiceKeyApprovalType.AUTOMATIC, notes=notes or '') # Log the creation and auto-approval of the service key. @@ -36,7 +36,6 @@ def generate_key(service, name, approver=None, expiration_date=None, notes=None) if __name__ == '__main__': parser = argparse.ArgumentParser(description='Generates a preshared key') - parser.add_argument('approver', help='Quay username of the user approving this key') parser.add_argument('service', help='The service name for which the key is being generated') parser.add_argument('name', help='The friendly name for the key') parser.add_argument('--expiration', help='The optional expiration date/time for the key',