Add last_accessed information to User and expose for robot accounts
Fixes https://jira.coreos.com/browse/QUAY-848
This commit is contained in:
parent
f1da3c452f
commit
2ea13e86a0
13 changed files with 143 additions and 67 deletions
|
@ -527,3 +527,7 @@ class DefaultConfig(ImmutableConfig):
|
||||||
# Defines the number of successive internal errors of a build trigger's build before the
|
# Defines the number of successive internal errors of a build trigger's build before the
|
||||||
# trigger is automatically disabled.
|
# trigger is automatically disabled.
|
||||||
SUCCESSIVE_TRIGGER_INTERNAL_ERROR_DISABLE_THRESHOLD = 5
|
SUCCESSIVE_TRIGGER_INTERNAL_ERROR_DISABLE_THRESHOLD = 5
|
||||||
|
|
||||||
|
# Defines the delay required (in seconds) before the last_accessed field of a user/robot or access
|
||||||
|
# token will be updated after the previous update.
|
||||||
|
LAST_ACCESSED_UPDATE_THRESHOLD_S = 60
|
||||||
|
|
|
@ -440,8 +440,8 @@ class User(BaseModel):
|
||||||
location = CharField(null=True)
|
location = CharField(null=True)
|
||||||
|
|
||||||
maximum_queued_builds_count = IntegerField(null=True)
|
maximum_queued_builds_count = IntegerField(null=True)
|
||||||
|
|
||||||
creation_date = DateTimeField(default=datetime.utcnow, null=True)
|
creation_date = DateTimeField(default=datetime.utcnow, null=True)
|
||||||
|
last_accessed = DateTimeField(null=True, index=True)
|
||||||
|
|
||||||
def delete_instance(self, recursive=False, delete_nullable=False):
|
def delete_instance(self, recursive=False, delete_nullable=False):
|
||||||
# If we are deleting a robot account, only execute the subset of queries necessary.
|
# If we are deleting a robot account, only execute the subset of queries necessary.
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
"""Add last_accessed field to User table
|
||||||
|
|
||||||
|
Revision ID: 224ce4c72c2f
|
||||||
|
Revises: b547bc139ad8
|
||||||
|
Create Date: 2018-03-12 22:44:07.070490
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = '224ce4c72c2f'
|
||||||
|
down_revision = 'b547bc139ad8'
|
||||||
|
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade(tables):
|
||||||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
|
op.add_column('user', sa.Column('last_accessed', sa.DateTime(), nullable=True))
|
||||||
|
op.create_index('user_last_accessed', 'user', ['last_accessed'], unique=False)
|
||||||
|
# ### end Alembic commands ###
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade(tables):
|
||||||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
|
op.drop_index('user_last_accessed', table_name='user')
|
||||||
|
op.drop_column('user', 'last_accessed')
|
||||||
|
# ### end Alembic commands ###
|
|
@ -1,11 +1,17 @@
|
||||||
from peewee import fn
|
import logging
|
||||||
|
|
||||||
|
from peewee import fn, PeeweeException
|
||||||
from cachetools import lru_cache
|
from cachetools import lru_cache
|
||||||
|
|
||||||
from data.model import DataModelException
|
from datetime import datetime, timedelta
|
||||||
|
|
||||||
|
from data.model import DataModelException, config
|
||||||
from data.database import (Repository, User, Team, TeamMember, RepositoryPermission, TeamRole,
|
from data.database import (Repository, User, Team, TeamMember, RepositoryPermission, TeamRole,
|
||||||
Namespace, Visibility, ImageStorage, Image, RepositoryKind,
|
Namespace, Visibility, ImageStorage, Image, RepositoryKind,
|
||||||
db_for_update)
|
db_for_update)
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
def reduce_as_tree(queries_to_reduce):
|
def reduce_as_tree(queries_to_reduce):
|
||||||
""" This method will split a list of queries into halves recursively until we reach individual
|
""" This method will split a list of queries into halves recursively until we reach individual
|
||||||
queries, at which point it will start unioning the queries, or the already unioned subqueries.
|
queries, at which point it will start unioning the queries, or the already unioned subqueries.
|
||||||
|
@ -164,3 +170,36 @@ def calculate_image_aggregate_size(ancestors_str, image_size, parent_image):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
return ancestor_size + image_size
|
return ancestor_size + image_size
|
||||||
|
|
||||||
|
|
||||||
|
def update_last_accessed(token_or_user):
|
||||||
|
""" Updates the `last_accessed` field on the given token or user. If the existing field's value
|
||||||
|
is within the configured threshold, the update is skipped. """
|
||||||
|
threshold = timedelta(seconds=config.app_config.get('LAST_ACCESSED_UPDATE_THRESHOLD_S', 120))
|
||||||
|
if (token_or_user.last_accessed is not None and
|
||||||
|
datetime.utcnow() - token_or_user.last_accessed < threshold):
|
||||||
|
# Skip updating, as we don't want to put undue pressure on the database.
|
||||||
|
return
|
||||||
|
|
||||||
|
model_class = token_or_user.__class__
|
||||||
|
last_accessed = datetime.utcnow()
|
||||||
|
|
||||||
|
try:
|
||||||
|
(model_class
|
||||||
|
.update(last_accessed=last_accessed)
|
||||||
|
.where(model_class.id == token_or_user.id)
|
||||||
|
.execute())
|
||||||
|
token_or_user.last_accessed = last_accessed
|
||||||
|
except PeeweeException as ex:
|
||||||
|
# If there is any form of DB exception, only fail if strict logging is enabled.
|
||||||
|
strict_logging_disabled = config.app_config.get('ALLOW_PULLS_WITHOUT_STRICT_LOGGING')
|
||||||
|
if strict_logging_disabled:
|
||||||
|
data = {
|
||||||
|
'exception': ex,
|
||||||
|
'token_or_user': token_or_user.id,
|
||||||
|
'class': str(model_class),
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.exception('update last_accessed for token/user failed', extra=data)
|
||||||
|
else:
|
||||||
|
raise
|
||||||
|
|
|
@ -3,10 +3,10 @@ import logging
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
from cachetools import lru_cache
|
from cachetools import lru_cache
|
||||||
from peewee import PeeweeException
|
|
||||||
|
|
||||||
from data.database import AppSpecificAuthToken, User, db_transaction
|
from data.database import AppSpecificAuthToken, User, db_transaction
|
||||||
from data.model import config
|
from data.model import config
|
||||||
|
from data.model._basequery import update_last_accessed
|
||||||
from util.timedeltastring import convert_to_timedelta
|
from util.timedeltastring import convert_to_timedelta
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
@ -104,23 +104,7 @@ def access_valid_token(token_code):
|
||||||
((AppSpecificAuthToken.expiration > datetime.now()) |
|
((AppSpecificAuthToken.expiration > datetime.now()) |
|
||||||
(AppSpecificAuthToken.expiration >> None)))
|
(AppSpecificAuthToken.expiration >> None)))
|
||||||
.get())
|
.get())
|
||||||
|
update_last_accessed(token)
|
||||||
|
return token
|
||||||
except AppSpecificAuthToken.DoesNotExist:
|
except AppSpecificAuthToken.DoesNotExist:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
token.last_accessed = datetime.now()
|
|
||||||
|
|
||||||
try:
|
|
||||||
token.save()
|
|
||||||
except PeeweeException as ex:
|
|
||||||
strict_logging_disabled = config.app_config.get('ALLOW_PULLS_WITHOUT_STRICT_LOGGING')
|
|
||||||
if strict_logging_disabled:
|
|
||||||
data = {
|
|
||||||
'exception': ex,
|
|
||||||
'token': token.id,
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.exception('update last_accessed for token failed', extra=data)
|
|
||||||
else:
|
|
||||||
raise
|
|
||||||
|
|
||||||
return token
|
|
||||||
|
|
|
@ -173,7 +173,7 @@ def change_username(user_id, new_username):
|
||||||
user = db_for_update(User.select().where(User.id == user_id)).get()
|
user = db_for_update(User.select().where(User.id == user_id)).get()
|
||||||
|
|
||||||
# Rename the robots
|
# Rename the robots
|
||||||
for robot in db_for_update(_list_entity_robots(user.username)):
|
for robot in db_for_update(_list_entity_robots(user.username, include_metadata=False)):
|
||||||
_, robot_shortname = parse_robot_username(robot.username)
|
_, robot_shortname = parse_robot_username(robot.username)
|
||||||
new_robot_name = format_robot_username(new_username, robot_shortname)
|
new_robot_name = format_robot_username(new_username, robot_shortname)
|
||||||
robot.username = new_robot_name
|
robot.username = new_robot_name
|
||||||
|
@ -264,15 +264,10 @@ def create_robot(robot_shortname, parent, description='', unstructured_metadata=
|
||||||
|
|
||||||
|
|
||||||
def get_or_create_robot_metadata(robot):
|
def get_or_create_robot_metadata(robot):
|
||||||
try:
|
defaults = dict(description='', unstructured_json='{}')
|
||||||
return RobotAccountMetadata.get(robot_account=robot)
|
metadata, _ = RobotAccountMetadata.get_or_create(robot_account=robot, defaults=defaults)
|
||||||
except RobotAccountMetadata.DoesNotExist:
|
return metadata
|
||||||
try:
|
|
||||||
return RobotAccountMetadata.create(robot_account=robot, description='',
|
|
||||||
unstructured_json='{}')
|
|
||||||
except IntegrityError:
|
|
||||||
return RobotAccountMetadata.get(robot_account=robot)
|
|
||||||
|
|
||||||
|
|
||||||
def update_robot_metadata(robot, description='', unstructured_json=None):
|
def update_robot_metadata(robot, description='', unstructured_json=None):
|
||||||
""" Updates the description and user-specified unstructured metadata associated
|
""" Updates the description and user-specified unstructured metadata associated
|
||||||
|
@ -281,13 +276,7 @@ def update_robot_metadata(robot, description='', unstructured_json=None):
|
||||||
metadata.description = description
|
metadata.description = description
|
||||||
metadata.unstructured_json = unstructured_json or metadata.unstructured_json or {}
|
metadata.unstructured_json = unstructured_json or metadata.unstructured_json or {}
|
||||||
metadata.save()
|
metadata.save()
|
||||||
|
|
||||||
|
|
||||||
def get_robot(robot_shortname, parent):
|
|
||||||
robot_username = format_robot_username(parent.username, robot_shortname)
|
|
||||||
robot = lookup_robot(robot_username)
|
|
||||||
return robot, robot.email
|
|
||||||
|
|
||||||
|
|
||||||
def get_robot_and_metadata(robot_shortname, parent):
|
def get_robot_and_metadata(robot_shortname, parent):
|
||||||
robot_username = format_robot_username(parent.username, robot_shortname)
|
robot_username = format_robot_username(parent.username, robot_shortname)
|
||||||
|
@ -360,6 +349,9 @@ def verify_robot(robot_username, password):
|
||||||
if not owner.enabled:
|
if not owner.enabled:
|
||||||
raise InvalidRobotException('This user has been disabled. Please contact your administrator.')
|
raise InvalidRobotException('This user has been disabled. Please contact your administrator.')
|
||||||
|
|
||||||
|
# Mark that the robot was accessed.
|
||||||
|
_basequery.update_last_accessed(robot)
|
||||||
|
|
||||||
return robot
|
return robot
|
||||||
|
|
||||||
def regenerate_robot_token(robot_shortname, parent):
|
def regenerate_robot_token(robot_shortname, parent):
|
||||||
|
@ -394,22 +386,27 @@ def list_namespace_robots(namespace):
|
||||||
return _list_entity_robots(namespace)
|
return _list_entity_robots(namespace)
|
||||||
|
|
||||||
|
|
||||||
def _list_entity_robots(entity_name):
|
def _list_entity_robots(entity_name, include_metadata=True):
|
||||||
""" Return the list of robots for the specified entity. This MUST return a query, not a
|
""" Return the list of robots for the specified entity. This MUST return a query, not a
|
||||||
materialized list so that callers can use db_for_update.
|
materialized list so that callers can use db_for_update.
|
||||||
"""
|
"""
|
||||||
return (User
|
query = (User
|
||||||
.select(User, FederatedLogin, RobotAccountMetadata)
|
.select(User, FederatedLogin)
|
||||||
.join(FederatedLogin)
|
.join(FederatedLogin)
|
||||||
.switch(User)
|
.where(User.robot == True, User.username ** (entity_name + '+%')))
|
||||||
.join(RobotAccountMetadata, JOIN_LEFT_OUTER)
|
|
||||||
.where(User.robot == True, User.username ** (entity_name + '+%')))
|
if include_metadata:
|
||||||
|
query = (query.switch(User)
|
||||||
|
.join(RobotAccountMetadata, JOIN_LEFT_OUTER)
|
||||||
|
.select(User, FederatedLogin, RobotAccountMetadata))
|
||||||
|
|
||||||
|
return query
|
||||||
|
|
||||||
|
|
||||||
def list_entity_robot_permission_teams(entity_name, include_permissions=False):
|
def list_entity_robot_permission_teams(entity_name, include_permissions=False):
|
||||||
query = (_list_entity_robots(entity_name))
|
query = (_list_entity_robots(entity_name))
|
||||||
|
|
||||||
fields = [User.username, User.creation_date, FederatedLogin.service_ident,
|
fields = [User.username, User.creation_date, User.last_accessed, FederatedLogin.service_ident,
|
||||||
RobotAccountMetadata.description, RobotAccountMetadata.unstructured_json]
|
RobotAccountMetadata.description, RobotAccountMetadata.unstructured_json]
|
||||||
if include_permissions:
|
if include_permissions:
|
||||||
query = (query
|
query = (query
|
||||||
|
@ -484,6 +481,10 @@ def verify_federated_login(service_id, service_ident):
|
||||||
.switch(FederatedLogin).join(User)
|
.switch(FederatedLogin).join(User)
|
||||||
.where(FederatedLogin.service_ident == service_ident, LoginService.name == service_id)
|
.where(FederatedLogin.service_ident == service_ident, LoginService.name == service_id)
|
||||||
.get())
|
.get())
|
||||||
|
|
||||||
|
# Mark that the user was accessed.
|
||||||
|
_basequery.update_last_accessed(found.user)
|
||||||
|
|
||||||
return found.user
|
return found.user
|
||||||
except FederatedLogin.DoesNotExist:
|
except FederatedLogin.DoesNotExist:
|
||||||
return None
|
return None
|
||||||
|
@ -749,6 +750,9 @@ def verify_user(username_or_email, password):
|
||||||
.where(User.id == fetched.id)
|
.where(User.id == fetched.id)
|
||||||
.execute())
|
.execute())
|
||||||
|
|
||||||
|
# Mark that the user was accessed.
|
||||||
|
_basequery.update_last_accessed(fetched)
|
||||||
|
|
||||||
# Return the valid user.
|
# Return the valid user.
|
||||||
return fetched
|
return fetched
|
||||||
|
|
||||||
|
@ -990,10 +994,10 @@ def get_pull_credentials(robotname):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'username': robot.username,
|
'username': robot.username,
|
||||||
'password': login_info.service_ident,
|
'password': login_info.service_ident,
|
||||||
'registry': '%s://%s/v1/' % (config.app_config['PREFERRED_URL_SCHEME'],
|
'registry': '%s://%s/v1/' % (config.app_config['PREFERRED_URL_SCHEME'],
|
||||||
config.app_config['SERVER_HOSTNAME']),
|
config.app_config['SERVER_HOSTNAME']),
|
||||||
}
|
}
|
||||||
|
|
||||||
def get_region_locations(user):
|
def get_region_locations(user):
|
||||||
|
|
|
@ -109,7 +109,6 @@ class OrgRobotList(ApiResource):
|
||||||
""" List the organization's robots. """
|
""" List the organization's robots. """
|
||||||
permission = OrganizationMemberPermission(orgname)
|
permission = OrganizationMemberPermission(orgname)
|
||||||
if permission.can():
|
if permission.can():
|
||||||
include_metadata = AdministerOrganizationPermission(orgname).can()
|
|
||||||
return robots_list(orgname, include_permissions=parsed_args.get('permissions', False))
|
return robots_list(orgname, include_permissions=parsed_args.get('permissions', False))
|
||||||
|
|
||||||
raise Unauthorized()
|
raise Unauthorized()
|
||||||
|
|
|
@ -39,6 +39,7 @@ class RobotWithPermissions(
|
||||||
'name',
|
'name',
|
||||||
'password',
|
'password',
|
||||||
'created',
|
'created',
|
||||||
|
'last_accessed',
|
||||||
'teams',
|
'teams',
|
||||||
'repository_names',
|
'repository_names',
|
||||||
'description',
|
'description',
|
||||||
|
@ -48,6 +49,7 @@ class RobotWithPermissions(
|
||||||
:type name: string
|
:type name: string
|
||||||
:type password: string
|
:type password: string
|
||||||
:type created: datetime|None
|
:type created: datetime|None
|
||||||
|
:type last_accessed: datetime|None
|
||||||
:type teams: [Team]
|
:type teams: [Team]
|
||||||
:type repository_names: [string]
|
:type repository_names: [string]
|
||||||
:type description: string
|
:type description: string
|
||||||
|
@ -58,6 +60,7 @@ class RobotWithPermissions(
|
||||||
'name': self.name,
|
'name': self.name,
|
||||||
'token': self.password,
|
'token': self.password,
|
||||||
'created': format_date(self.created) if self.created is not None else None,
|
'created': format_date(self.created) if self.created is not None else None,
|
||||||
|
'last_accessed': format_date(self.last_accessed) if self.last_accessed is not None else None,
|
||||||
'teams': [team.to_dict() for team in self.teams],
|
'teams': [team.to_dict() for team in self.teams],
|
||||||
'repositories': self.repository_names,
|
'repositories': self.repository_names,
|
||||||
'description': self.description,
|
'description': self.description,
|
||||||
|
@ -69,6 +72,7 @@ class Robot(
|
||||||
'name',
|
'name',
|
||||||
'password',
|
'password',
|
||||||
'created',
|
'created',
|
||||||
|
'last_accessed',
|
||||||
'description',
|
'description',
|
||||||
'unstructured_metadata',
|
'unstructured_metadata',
|
||||||
])):
|
])):
|
||||||
|
@ -77,6 +81,7 @@ class Robot(
|
||||||
:type name: string
|
:type name: string
|
||||||
:type password: string
|
:type password: string
|
||||||
:type created: datetime|None
|
:type created: datetime|None
|
||||||
|
:type last_accessed: datetime|None
|
||||||
:type description: string
|
:type description: string
|
||||||
:type unstructured_metadata: dict
|
:type unstructured_metadata: dict
|
||||||
"""
|
"""
|
||||||
|
@ -86,6 +91,7 @@ class Robot(
|
||||||
'name': self.name,
|
'name': self.name,
|
||||||
'token': self.password,
|
'token': self.password,
|
||||||
'created': format_date(self.created) if self.created is not None else None,
|
'created': format_date(self.created) if self.created is not None else None,
|
||||||
|
'last_accessed': format_date(self.last_accessed) if self.last_accessed is not None else None,
|
||||||
'description': self.description,
|
'description': self.description,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,7 @@ class RobotPreOCIModel(RobotInterface):
|
||||||
'name': robot_name,
|
'name': robot_name,
|
||||||
'token': robot_tuple.get(FederatedLogin.service_ident),
|
'token': robot_tuple.get(FederatedLogin.service_ident),
|
||||||
'created': robot_tuple.get(User.creation_date),
|
'created': robot_tuple.get(User.creation_date),
|
||||||
|
'last_accessed': robot_tuple.get(User.last_accessed),
|
||||||
'description': robot_tuple.get(RobotAccountMetadata.description),
|
'description': robot_tuple.get(RobotAccountMetadata.description),
|
||||||
'unstructured_metadata': robot_tuple.get(RobotAccountMetadata.unstructured_json),
|
'unstructured_metadata': robot_tuple.get(RobotAccountMetadata.unstructured_json),
|
||||||
}
|
}
|
||||||
|
@ -35,7 +36,8 @@ class RobotPreOCIModel(RobotInterface):
|
||||||
})
|
})
|
||||||
|
|
||||||
robots[robot_name] = Robot(robot_dict['name'], robot_dict['token'], robot_dict['created'],
|
robots[robot_name] = Robot(robot_dict['name'], robot_dict['token'], robot_dict['created'],
|
||||||
robot_dict['description'], robot_dict['unstructured_metadata'])
|
robot_dict['last_accessed'], robot_dict['description'],
|
||||||
|
robot_dict['unstructured_metadata'])
|
||||||
if include_permissions:
|
if include_permissions:
|
||||||
team_name = robot_tuple.get(TeamTable.name)
|
team_name = robot_tuple.get(TeamTable.name)
|
||||||
repository_name = robot_tuple.get(Repository.name)
|
repository_name = robot_tuple.get(Repository.name)
|
||||||
|
@ -54,7 +56,9 @@ class RobotPreOCIModel(RobotInterface):
|
||||||
if repository_name not in robot_dict['repositories']:
|
if repository_name not in robot_dict['repositories']:
|
||||||
robot_dict['repositories'].append(repository_name)
|
robot_dict['repositories'].append(repository_name)
|
||||||
robots[robot_name] = RobotWithPermissions(robot_dict['name'], robot_dict['token'],
|
robots[robot_name] = RobotWithPermissions(robot_dict['name'], robot_dict['token'],
|
||||||
robot_dict['created'], robot_dict['teams'],
|
robot_dict['created'],
|
||||||
|
robot_dict['last_accessed'],
|
||||||
|
robot_dict['teams'],
|
||||||
robot_dict['repositories'],
|
robot_dict['repositories'],
|
||||||
robot_dict['description'])
|
robot_dict['description'])
|
||||||
|
|
||||||
|
@ -62,14 +66,14 @@ class RobotPreOCIModel(RobotInterface):
|
||||||
|
|
||||||
def regenerate_user_robot_token(self, robot_shortname, owning_user):
|
def regenerate_user_robot_token(self, robot_shortname, owning_user):
|
||||||
robot, password, metadata = model.user.regenerate_robot_token(robot_shortname, owning_user)
|
robot, password, metadata = model.user.regenerate_robot_token(robot_shortname, owning_user)
|
||||||
return Robot(robot.username, password, robot.creation_date, metadata.description,
|
return Robot(robot.username, password, robot.creation_date, robot.last_accessed,
|
||||||
metadata.unstructured_json)
|
metadata.description, metadata.unstructured_json)
|
||||||
|
|
||||||
def regenerate_org_robot_token(self, robot_shortname, orgname):
|
def regenerate_org_robot_token(self, robot_shortname, orgname):
|
||||||
parent = model.organization.get_organization(orgname)
|
parent = model.organization.get_organization(orgname)
|
||||||
robot, password, metadata = model.user.regenerate_robot_token(robot_shortname, parent)
|
robot, password, metadata = model.user.regenerate_robot_token(robot_shortname, parent)
|
||||||
return Robot(robot.username, password, robot.creation_date, metadata.description,
|
return Robot(robot.username, password, robot.creation_date, robot.last_accessed,
|
||||||
metadata.unstructured_json)
|
metadata.description, metadata.unstructured_json)
|
||||||
|
|
||||||
def delete_robot(self, robot_username):
|
def delete_robot(self, robot_username):
|
||||||
model.user.delete_robot(robot_username)
|
model.user.delete_robot(robot_username)
|
||||||
|
@ -77,26 +81,26 @@ class RobotPreOCIModel(RobotInterface):
|
||||||
def create_user_robot(self, robot_shortname, owning_user, description, unstructured_metadata):
|
def create_user_robot(self, robot_shortname, owning_user, description, unstructured_metadata):
|
||||||
robot, password = model.user.create_robot(robot_shortname, owning_user, description or '',
|
robot, password = model.user.create_robot(robot_shortname, owning_user, description or '',
|
||||||
unstructured_metadata)
|
unstructured_metadata)
|
||||||
return Robot(robot.username, password, robot.creation_date, description or '',
|
return Robot(robot.username, password, robot.creation_date, robot.last_accessed,
|
||||||
unstructured_metadata)
|
description or '', unstructured_metadata)
|
||||||
|
|
||||||
def create_org_robot(self, robot_shortname, orgname, description, unstructured_metadata):
|
def create_org_robot(self, robot_shortname, orgname, description, unstructured_metadata):
|
||||||
parent = model.organization.get_organization(orgname)
|
parent = model.organization.get_organization(orgname)
|
||||||
robot, password = model.user.create_robot(robot_shortname, parent, description or '',
|
robot, password = model.user.create_robot(robot_shortname, parent, description or '',
|
||||||
unstructured_metadata)
|
unstructured_metadata)
|
||||||
return Robot(robot.username, password, robot.creation_date, description or '',
|
return Robot(robot.username, password, robot.creation_date, robot.last_accessed,
|
||||||
unstructured_metadata)
|
description or '', unstructured_metadata)
|
||||||
|
|
||||||
def get_org_robot(self, robot_shortname, orgname):
|
def get_org_robot(self, robot_shortname, orgname):
|
||||||
parent = model.organization.get_organization(orgname)
|
parent = model.organization.get_organization(orgname)
|
||||||
robot, password, metadata = model.user.get_robot_and_metadata(robot_shortname, parent)
|
robot, password, metadata = model.user.get_robot_and_metadata(robot_shortname, parent)
|
||||||
return Robot(robot.username, password, robot.creation_date, metadata.description,
|
return Robot(robot.username, password, robot.creation_date, robot.last_accessed,
|
||||||
metadata.unstructured_json)
|
metadata.description, metadata.unstructured_json)
|
||||||
|
|
||||||
def get_user_robot(self, robot_shortname, owning_user):
|
def get_user_robot(self, robot_shortname, owning_user):
|
||||||
robot, password, metadata = model.user.get_robot_and_metadata(robot_shortname, owning_user)
|
robot, password, metadata = model.user.get_robot_and_metadata(robot_shortname, owning_user)
|
||||||
return Robot(robot.username, password, robot.creation_date, metadata.description,
|
return Robot(robot.username, password, robot.creation_date, robot.last_accessed,
|
||||||
metadata.unstructured_json)
|
metadata.description, metadata.unstructured_json)
|
||||||
|
|
||||||
|
|
||||||
pre_oci_model = RobotPreOCIModel()
|
pre_oci_model = RobotPreOCIModel()
|
||||||
|
|
|
@ -44,6 +44,9 @@
|
||||||
<td ng-class="TableService.tablePredicateClass('created_datetime', options.predicate, options.reverse)">
|
<td ng-class="TableService.tablePredicateClass('created_datetime', options.predicate, options.reverse)">
|
||||||
<a ng-click="TableService.orderBy('created_datetime', options)">Created</a>
|
<a ng-click="TableService.orderBy('created_datetime', options)">Created</a>
|
||||||
</td>
|
</td>
|
||||||
|
<td ng-class="TableService.tablePredicateClass('last_accessed_datetime', options.predicate, options.reverse)">
|
||||||
|
<a ng-click="TableService.orderBy('last_accessed_datetime', options)">Last Accessed</a>
|
||||||
|
</td>
|
||||||
<td class="options-col"></td>
|
<td class="options-col"></td>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
|
@ -89,6 +92,9 @@
|
||||||
<td>
|
<td>
|
||||||
<time-ago datetime="robotInfo.created"></time-ago>
|
<time-ago datetime="robotInfo.created"></time-ago>
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
<time-ago datetime="robotInfo.last_accessed"></time-ago>
|
||||||
|
</td>
|
||||||
<td class="options-col">
|
<td class="options-col">
|
||||||
<span class="cor-options-menu">
|
<span class="cor-options-menu">
|
||||||
<span class="cor-option" option-click="showRobot(robotInfo)">
|
<span class="cor-option" option-click="showRobot(robotInfo)">
|
||||||
|
|
|
@ -41,6 +41,7 @@ angular.module('quay').directive('robotsManager', function () {
|
||||||
}).join(',');
|
}).join(',');
|
||||||
|
|
||||||
robot['created_datetime'] = robot.created ? TableService.getReversedTimestamp(robot.created) : null;
|
robot['created_datetime'] = robot.created ? TableService.getReversedTimestamp(robot.created) : null;
|
||||||
|
robot['last_accessed_datetime'] = robot.last_accessed ? TableService.getReversedTimestamp(robot.last_accessed) : null;
|
||||||
});
|
});
|
||||||
|
|
||||||
$scope.orderedRobots = TableService.buildOrderedItems(robots, $scope.options,
|
$scope.orderedRobots = TableService.buildOrderedItems(robots, $scope.options,
|
||||||
|
|
Binary file not shown.
|
@ -66,6 +66,7 @@ INTERNAL_ONLY_PROPERTIES = {
|
||||||
'LOCAL_OAUTH_HANDLER',
|
'LOCAL_OAUTH_HANDLER',
|
||||||
'USE_CDN',
|
'USE_CDN',
|
||||||
'ANALYTICS_TYPE',
|
'ANALYTICS_TYPE',
|
||||||
|
'LAST_ACCESSED_UPDATE_THRESHOLD_S',
|
||||||
|
|
||||||
'EXCEPTION_LOG_TYPE',
|
'EXCEPTION_LOG_TYPE',
|
||||||
'SENTRY_DSN',
|
'SENTRY_DSN',
|
||||||
|
|
Reference in a new issue