One of the well-known issues of Python is that dictionaries do not maintain order in their keys once created. This causes YAML data dumps to output in a seemingly random order or alphabetically. As these output files are often kept in their own repositories, they must go through review or comparison in VCS. If the order of keys is switching for these files every time Pegleg is ran, it makes it difficult for a user to compare newly generated files with the old. To fix this issue, we can change all dictionaries used to template YAML files into OrderedDict objects. The OrderedDict objects will maintain order through their dumping to YAML. Change-Id: I0c1ee3f3f37ed8598d2ba81528d5c61447cbd0d0
79 lines
2.8 KiB
Python
79 lines
2.8 KiB
Python
# Copyright 2018 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from abc import ABC
|
|
from collections import OrderedDict
|
|
import logging
|
|
import os
|
|
|
|
from pegleg.engine import util
|
|
|
|
__all__ = ['BaseGenerator']
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class BaseGenerator(ABC):
|
|
"""
|
|
Abstract Base Class, providing the common data and methods for all
|
|
generator classes
|
|
"""
|
|
def __init__(self, sitename, save_location, author=None):
|
|
"""Constructor for ``BaseGenerator``.
|
|
|
|
:param str sitename: Name of the environment.
|
|
:param str save_location: The destination directory to store the
|
|
generated documents.
|
|
:param str author: Identifier for the individual or the application,
|
|
who requests to generate a document.
|
|
"""
|
|
|
|
self._sitename = sitename
|
|
self._documents = util.definition.documents_for_site(sitename)
|
|
self._save_location = save_location
|
|
self._author = author
|
|
|
|
@staticmethod
|
|
def generate_doc(kind, name, storage_policy, secret_data):
|
|
"""
|
|
Generate a document of the specified ``kind``, with the
|
|
specified ``storage_policy`` for the ``secret_data``.
|
|
|
|
:param str kind: Kind of the secret document.
|
|
:param str name: Name of the secret document
|
|
:param str storage_policy: Storage policy for the secret data
|
|
:param str secret_data: The data to be stored in this document.
|
|
"""
|
|
layering_definition = OrderedDict(
|
|
[('abstract', False), ('layer', 'site')])
|
|
metadata = OrderedDict(
|
|
[
|
|
('schema', 'metadata/Document/v1'), ('name', name),
|
|
('layeringDefinition', layering_definition),
|
|
('storagePolicy', storage_policy)
|
|
])
|
|
data = OrderedDict(
|
|
[
|
|
('schema', 'deckhand/{}/v1'.format(kind)),
|
|
('metadata', metadata), ('data', secret_data)
|
|
])
|
|
return data
|
|
|
|
def get_save_path(self, passphrase_name):
|
|
"""Calculate and return the save path of the ``passphrase_name``."""
|
|
return os.path.abspath(
|
|
os.path.join(
|
|
self._save_location, 'site', self._sitename, 'secrets',
|
|
self.kind_path, '{}.yaml'.format(passphrase_name)))
|