2013-10-10 03:52:28 +00:00
|
|
|
import logging
|
|
|
|
import string
|
|
|
|
|
|
|
|
from random import SystemRandom
|
|
|
|
from datetime import datetime
|
|
|
|
|
2013-10-01 18:14:39 +00:00
|
|
|
from data.database import initialize_db
|
2013-10-10 03:52:28 +00:00
|
|
|
from data import model
|
|
|
|
from app import app
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
logging.basicConfig(**app.config['LOGGING_CONFIG'])
|
|
|
|
|
|
|
|
|
|
|
|
def __gen_hex_id(length=64):
|
|
|
|
random = SystemRandom()
|
|
|
|
return ''.join([random.choice('abcdef' + string.digits)
|
|
|
|
for x in range(length)])
|
|
|
|
|
|
|
|
|
|
|
|
def __gen_checksum():
|
|
|
|
return 'tarsum+sha256:' + __gen_hex_id(64)
|
|
|
|
|
|
|
|
|
|
|
|
def create_subtree(repo, structure, parent):
|
2013-10-10 04:40:07 +00:00
|
|
|
num_nodes, subtrees, last_node_tags = structure
|
2013-10-10 03:52:28 +00:00
|
|
|
|
|
|
|
# create the nodes
|
|
|
|
for i in range(num_nodes):
|
|
|
|
docker_image_id = __gen_hex_id()
|
|
|
|
checksum = __gen_checksum()
|
|
|
|
|
|
|
|
new_image = model.create_image(docker_image_id, repo)
|
|
|
|
model.set_image_checksum(docker_image_id, repo, checksum)
|
|
|
|
|
|
|
|
new_image = model.set_image_metadata(docker_image_id, repo.namespace,
|
|
|
|
repo.name, str(datetime.now()),
|
|
|
|
'no comment', parent)
|
|
|
|
|
|
|
|
parent = new_image
|
|
|
|
|
2013-10-10 04:40:07 +00:00
|
|
|
if last_node_tags:
|
|
|
|
if not isinstance(last_node_tags, list):
|
|
|
|
last_node_tags = [last_node_tags]
|
|
|
|
|
|
|
|
for tag_name in last_node_tags:
|
|
|
|
model.create_or_update_tag(repo.namespace, repo.name, tag_name,
|
|
|
|
new_image.docker_image_id)
|
2013-10-10 03:52:28 +00:00
|
|
|
|
|
|
|
for subtree in subtrees:
|
|
|
|
create_subtree(repo, subtree, new_image)
|
|
|
|
|
|
|
|
|
2013-10-12 01:28:02 +00:00
|
|
|
def __generate_repository(user, name, description, is_public, permissions, structure):
|
2013-10-10 03:52:28 +00:00
|
|
|
repo = model.create_repository(user.username, name, user)
|
|
|
|
|
|
|
|
if is_public:
|
|
|
|
model.set_repository_visibility(repo, 'public')
|
|
|
|
|
2013-10-12 01:28:02 +00:00
|
|
|
if description:
|
|
|
|
repo.description = description
|
|
|
|
repo.save()
|
|
|
|
|
2013-10-10 03:52:28 +00:00
|
|
|
for delegate, role in permissions:
|
|
|
|
model.set_user_repo_permission(delegate.username, user.username, name,
|
|
|
|
role)
|
|
|
|
|
|
|
|
create_subtree(repo, structure, None)
|
|
|
|
|
2013-10-01 18:14:39 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2013-10-08 15:29:42 +00:00
|
|
|
initialize_db()
|
2013-10-10 03:52:28 +00:00
|
|
|
|
|
|
|
if app.config.get('POPULATE_DB_TEST_DATA', False):
|
|
|
|
logger.debug('Populating the DB with test data.')
|
|
|
|
|
|
|
|
new_user_1 = model.create_user('devtable', 'password',
|
2013-10-10 17:44:07 +00:00
|
|
|
'jschorr@devtable.com')
|
2013-10-10 03:52:28 +00:00
|
|
|
new_user_1.verified = True
|
|
|
|
new_user_1.save()
|
|
|
|
|
|
|
|
new_user_2 = model.create_user('public', 'password',
|
|
|
|
'jacob.moshenko@gmail.com')
|
|
|
|
new_user_2.verified = True
|
|
|
|
new_user_2.save()
|
|
|
|
|
2013-10-12 01:28:02 +00:00
|
|
|
__generate_repository(new_user_1, 'simple', 'Simple repository.', False,
|
|
|
|
[], (4, [], ['latest', 'prod']))
|
2013-10-10 03:52:28 +00:00
|
|
|
|
2013-10-12 01:28:02 +00:00
|
|
|
__generate_repository(new_user_1, 'complex',
|
|
|
|
'Complex repository with many branches and tags.',
|
|
|
|
False, [(new_user_2, 'read')],
|
2013-10-10 03:52:28 +00:00
|
|
|
(2, [(3, [], 'v2.0'),
|
2013-10-10 04:40:07 +00:00
|
|
|
(1, [(1, [(1, [], ['latest', 'prod'])],
|
|
|
|
'staging'),
|
2013-10-10 03:52:28 +00:00
|
|
|
(1, [], None)], None)], None))
|
|
|
|
|
2013-10-12 17:31:05 +00:00
|
|
|
__generate_repository(new_user_1, 'gargantuan', None, False, [],
|
2013-10-11 01:01:25 +00:00
|
|
|
(2, [(3, [], 'v2.0'),
|
|
|
|
(1, [(1, [(1, [], ['latest', 'prod'])],
|
|
|
|
'staging'),
|
|
|
|
(1, [], None)], None),
|
|
|
|
(20, [], 'v3.0'),
|
|
|
|
(5, [], 'v4.0'),
|
|
|
|
(1, [(1, [], 'v5.0'), (1, [], 'v6.0')], None)],
|
|
|
|
None))
|
|
|
|
|
2013-10-12 01:28:02 +00:00
|
|
|
__generate_repository(new_user_2, 'publicrepo',
|
|
|
|
'Public repository pullable by the world.', True,
|
|
|
|
[], (10, [], 'latest'))
|
2013-10-10 03:52:28 +00:00
|
|
|
|
2013-10-12 01:28:02 +00:00
|
|
|
__generate_repository(new_user_1, 'shared',
|
|
|
|
'Shared repository, another user can write.', False,
|
2013-10-10 03:52:28 +00:00
|
|
|
[(new_user_2, 'write')], (5, [], 'latest'))
|