def create(sourceControlDetails):
    """
    This function creates a new sourceControl in the sourceControl list
    based on the passed in sourceControl data

    :param sourceControl:  sourceControl to create in sourceControl structure
    :return:        201 on success, 406 on sourceControl exists
    """
    key = sourceControlDetails.get("key", None)
    value = sourceControlDetails.get("value", None)

    # Does the sourceControl exist already?
    existing_sourceControl = (SourceControl.query.filter(
        SourceControl.key == key).one_or_none())

    if existing_sourceControl is None:
        schema = SourceControlSchema()
        new_sourceControl = schema.load(sourceControlDetails,
                                        session=db.session)
        db.session.add(new_sourceControl)
        db.session.commit()

        # Serialize and return the newly created deployment
        # in the response
        data = schema.dump(new_sourceControl)

        return data, 201

    # Otherwise, it already exists, that's an error
    else:
        abort(406, f"SourceControl already exists")
Example #2
0
def update(id, sourceControlDetails):
    """
    This function updates an existing sourceControl in the sourceControl list

    :param id:    id of the sourceControl to update in the sourceControl list
    :param sourceControl:   sourceControl to update
    :return:       updated sourceControl
    """
    app.logger.debug(pformat(sourceControlDetails))

    if sourceControlDetails["id"] != id:
        abort(400, "Key mismatch in path and body")

    # Does the sourceControl exist in sourceControl list?
    existing_sourceControl = (db.session.query(SourceControl).filter(
        SourceControl.id == id).one_or_none())

    # Does sourceControl exist?

    if existing_sourceControl is not None:
        schema = SourceControlSchema()
        update_sourceControl = schema.load(sourceControlDetails,
                                           session=db.session)
        update_sourceControl.id = sourceControlDetails["id"]

        db.session.merge(update_sourceControl)
        db.session.commit()

        # return the updted sourceControl in the response
        data = schema.dump(update_sourceControl)
        return data, 200

    # otherwise, nope, deployment doesn't exist, so that's an error
    else:
        abort(404, "SourceControl not found")
Example #3
0
def create(sourceControlDetails):
    """
    This function creates a new sourceControl in the sourceControl list
    based on the passed in sourceControl data

    :param sourceControl:  sourceControl to create in sourceControl structure
    :return:        201 on success, 406 on sourceControl exists
    """
    # Remove id as it's created automatically
    if "id" in sourceControlDetails:
        del sourceControlDetails["id"]
    # Does the sourceControl exist already?
    existing_sourceControl = (db.session.query(SourceControl).filter(
        SourceControl.value == sourceControlDetails["value"]).one_or_none())

    if existing_sourceControl is None:
        schema = SourceControlSchema()
        new_sourceControl = schema.load(sourceControlDetails,
                                        session=db.session)
        db.session.add(new_sourceControl)
        db.session.commit()

        # Serialize and return the newly created deployment
        # in the response
        data = schema.dump(new_sourceControl)

        return data, 201

    # Otherwise, it already exists, that's an error
    else:
        abort(406, "SourceControl already exists")
Example #4
0
def update(key, sourceControl):
    """
    This function updates an existing sourceControl in the sourceControl list

    :param key:    key of the sourceControl to update in the sourceControl list
    :param sourceControl:   sourceControl to update
    :return:       updated sourceControl
    """

    app.logger.debug(pformat(sourceControl))

    if sourceControl["key"] != key:
        abort(400, f"Key mismatch in path and body")

    # Does the sourceControl exist in sourceControl list?
    existing_sourceControl = SourceControl.query.filter(
        SourceControl.key == key).one_or_none()

    # Does sourceControl exist?

    if existing_sourceControl is not None:
        schema = SourceControlSchema()
        update_sourceControl = schema.load(sourceControl, session=db.session)
        update_sourceControl.key = sourceControl['key']

        db.session.merge(update_sourceControl)
        db.session.commit()

        # return the updted sourceControl in the response
        data = schema.dump(update_sourceControl)
        return data, 200

    # otherwise, nope, deployment doesn't exist, so that's an error
    else:
        abort(404, f"SourceControl not found")
def read_all():
    """
    This function responds to a request for /api/sourceControl
    with the complete lists of sourceControls

    :return:        json string of list of sourceControls
    """

    # Create the list of sourceControls from our data
    sourceControl = SourceControl.query.order_by(SourceControl.key).all()
    app.logger.debug(pformat(sourceControl))
    # Serialize the data for the response
    sourceControl_schema = SourceControlSchema(many=True)
    data = sourceControl_schema.dump(sourceControl)
    return data
Example #6
0
class ExtendedActivatorSchema(Schema):
    def __init__(self, **kwargs):
        super().__init__(**kwargs)

    id = fields.Int()
    isActive = fields.Boolean()
    lastUpdated = fields.Str()
    isFavourite = fields.Boolean()
    name = fields.Str()
    available = fields.Boolean()
    sensitivity = fields.Str()
    envs = fields.Nested(LZEnvironmentSchema(many=True))
    userCapacity = fields.Int()
    serverCapacity = fields.Int()
    regions = fields.List(fields.Str())
    hosting = fields.List(fields.Str())
    apiManagement = fields.List(fields.Str())
    ciId = fields.Int()
    ci = fields.Nested(CISchema(many=True))
    cdId = fields.Int()
    cd = fields.Nested(CDSchema(many=True))
    sourceControlId = fields.Int()
    sourceControl = fields.Nested(SourceControlSchema(many=False))
    businessUnitId = fields.Int()
    businessUnit = fields.Nested(BusinessUnitSchema(many=False))
    technologyOwner = fields.Str()
    technologyOwnerEmail = fields.Str()
    billing = fields.Str()
    activator = fields.Str()
    status = fields.Str()
    accessRequestedById = fields.Int()
    accessRequestedBy = fields.Nested(ExtendedUserSchema(many=False))
    source = fields.Str()
    gitRepoUrl = fields.Str()
    activatorMetadata = fields.Nested(
        ExtendedActivatorMetadataSchema(many=False))

    @post_load(pass_original=True)
    def deserialize_post_load(self, data, original_data, **kwargs):
        # logger.debug(
        #    "ExtendedActivatorSchema::post_load::serialize_post_load: %s", data
        # )
        if original_data.regions is not None:
            data["regions"] = json.dumps(original_data.regions)
        if original_data.hosting is not None:
            data["hosting"] = json.dumps(original_data.hosting)
        if original_data.apiManagement is not None:
            data["apiManagement"] = json.dumps(original_data.apiManagement)
        return data

    @post_dump(pass_original=True)
    def deserialize_post_dump(self, data, original_data, **kwargs):
        # logger.debug("ExtendedActivatorSchema::post_dump %s", original_data)
        if original_data.regions is not None:
            data["regions"] = json.loads(original_data.regions)
        if original_data.hosting is not None:
            data["hosting"] = json.loads(original_data.hosting)
        if original_data.apiManagement is not None:
            data["apiManagement"] = json.loads(original_data.apiManagement)
        return data
Example #7
0
class ExtendedSolutionSchema(Schema):
    __envelope__ = {"single": "solution", "many": "solutions"}

    id = fields.Int()
    isActive = fields.Boolean()
    lastUpdated = fields.Str()
    isFavourite = fields.Boolean()
    name = fields.Str()
    description = fields.Str()
    businessUnitId = fields.Int()
    costCentre = fields.Str()
    ciId = fields.Int()
    ci = fields.Nested(CISchema(many=False))
    cdId = fields.Int()
    cd = fields.Nested(CDSchema(many=False))
    sourceControlId = fields.Int()
    sourceControl = fields.Nested(SourceControlSchema(many=False))
    environments = fields.Nested(LZEnvironmentSchema(many=True))
    favourite = fields.Boolean()
    teamId = fields.Int()
    applications = fields.Nested(ExtendedApplicationSchema(many=True))
    team = fields.Nested(ExtendedTeamSchema(many=False))
    deploymentFolderId = fields.Str()
    businessUnit = fields.Nested(BusinessUnitSchema(many=False))
    deploymentState = fields.Str()
    isSandbox = fields.Boolean()
Example #8
0
def read_one(id):
    """
    This function responds to a request for /api/sourceControl/{id}
    with one matching sourceControl from sourceControls

    :param application:   id of sourceControl to find
    :return:              sourceControl matching id
    """
    sourceControl = (db.session.query(SourceControl).filter(
        SourceControl.id == id).one_or_none())

    if sourceControl is not None:
        # Serialize the data for the response
        sourceControl_schema = SourceControlSchema()
        data = sourceControl_schema.dump(sourceControl)
        return data
    else:
        abort(404, "SourceControl with id {id} not found".format(id=id))
def read_one(key):
    """
    This function responds to a request for /api/sourceControl/{key}
    with one matching sourceControl from sourceControls

    :param application:   key of sourceControl to find
    :return:              sourceControl matching key
    """

    sourceControl = (SourceControl.query.filter(
        SourceControl.key == key).one_or_none())

    if sourceControl is not None:
        # Serialize the data for the response
        sourceControl_schema = SourceControlSchema()
        data = sourceControl_schema.dump(sourceControl)
        return data
    else:
        abort(404, "SourceControl with key {key} not found".format(key=key))
Example #10
0
def read_keyValues():
    """
    This function responds to a request for /keyValues/sourceControl
    with the complete lists of SourceControls

    :return:        json string of list of SourceControls
    """
    # Create the list of SourceControls from our data
    sourceControl = db.session.query(SourceControl).order_by(
        SourceControl.id).all()
    app.logger.debug(pformat(sourceControl))
    # Serialize the data for the response
    sourceControl_schema = SourceControlSchema(many=True)
    data = sourceControl_schema.dump(sourceControl)
    keyValues = []
    for d in data:
        keyValuePair = {}
        keyValuePair["key"] = d.get("id")
        keyValuePair["value"] = d.get("value")
        keyValues.append(keyValuePair)
    print(keyValues)
    return keyValues