
This change introduces a large section of the API for the next major version of Shipyard - the action api. By interfacing with Airflow, Shipyard will invoke workflows and allow for controlling and querying status of those workflows. Foundationally, this patchset introduces a lot of framework code for other apis, including error handling to a common output format, database interaction for persistence of action information, and use of oslo_config for configuration support. Add GET all actions primary code - db connection not yet impl Update base classes to have more structure Add POST actions framework Add GET action by id Add GET of validations and steps Add control api Add unit tests of action api methods Re-Removed duplicate deps from test reqs Add routes for API Removed a lot of code better handled by falcon directly Cleaned up error flows- handlers and defaults Refactored existing airflow tests to match standard output format Updated json validation to be more specific Added basic start for alembic Added alembic upgrade at startup Added table creation definitions Added base revision for alembic upgrade Bug fixes - DB queries, airflow comm, logic issues, logging issues Bug fixes - date formats and alignment of keys between systems Exclusions to bandit / tox.ini Resolved merge conflicts with integration of auth Update to use oslo config and PBR Update the context middleware to check uuid in a less contentious way Removed routes and resources for regions endpoint - not used Add auth policies for action api Restructure execptions to be consistent class hierarchy and common handler Add generation of config and policy examples Update tests to init configs Update database configs to not use env. vars Removed examples directory, it was no longer accurate Addressed/removed several TODOs - left some behind as well Aligned input to DAGs with action: header Retrieved all sub-steps for dags Expanded step information Refactored auth handling for better logging rename create_actions policy to create_action removed some templated file comments in env.py generated by alembic updated inconsistent exception parameters updated to use ulid instead of uuid for action ids added action control audit code per review suggestion Fixed correlation date betwen dags/actions by more string parsing Change-Id: I2f9ea5250923f45456aa86826e344fc055bba762
255 lines
6.8 KiB
Python
255 lines
6.8 KiB
Python
# Copyright 2017 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.
|
|
"""
|
|
Shipyard database access - see db.py for instances to use
|
|
"""
|
|
import json
|
|
import logging
|
|
import os
|
|
|
|
import sqlalchemy
|
|
from alembic import command as alembic_command
|
|
from alembic.config import Config
|
|
from oslo_config import cfg
|
|
|
|
from shipyard_airflow.db.common_db import DbAccess
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
CONF = cfg.CONF
|
|
|
|
class ShipyardDbAccess(DbAccess):
|
|
"""
|
|
Shipyard database access
|
|
"""
|
|
|
|
SELECT_ALL_ACTIONS = sqlalchemy.sql.text('''
|
|
SELECT
|
|
"id",
|
|
"name",
|
|
"parameters",
|
|
"dag_id",
|
|
"dag_execution_date",
|
|
"user",
|
|
"datetime",
|
|
"context_marker"
|
|
FROM
|
|
actions
|
|
''')
|
|
|
|
SELECT_ACTION_BY_ID = sqlalchemy.sql.text('''
|
|
SELECT
|
|
"id",
|
|
"name",
|
|
"parameters",
|
|
"dag_id",
|
|
"dag_execution_date",
|
|
"user",
|
|
"datetime",
|
|
"context_marker"
|
|
FROM
|
|
actions
|
|
WHERE
|
|
id = :action_id
|
|
''')
|
|
|
|
INSERT_ACTION = sqlalchemy.sql.text('''
|
|
INSERT INTO
|
|
actions (
|
|
"id",
|
|
"name",
|
|
"parameters",
|
|
"dag_id",
|
|
"dag_execution_date",
|
|
"user",
|
|
"datetime",
|
|
"context_marker"
|
|
)
|
|
VALUES (
|
|
:id,
|
|
:name,
|
|
:parameters,
|
|
:dag_id,
|
|
:dag_execution_date,
|
|
:user,
|
|
:timestamp,
|
|
:context_marker )
|
|
''')
|
|
|
|
SELECT_VALIDATIONS = sqlalchemy.sql.text('''
|
|
SELECT
|
|
"id",
|
|
"action_id",
|
|
"validation_name"
|
|
FROM
|
|
preflight_validation_failures
|
|
''')
|
|
|
|
SELECT_VALIDATION_BY_ID = sqlalchemy.sql.text('''
|
|
SELECT
|
|
"id",
|
|
"action_id",
|
|
"validation_name",
|
|
"details"
|
|
FROM
|
|
preflight_validation_failures
|
|
WHERE
|
|
id = :validation_id
|
|
''')
|
|
|
|
SELECT_VALIDATION_BY_ACTION_ID = sqlalchemy.sql.text('''
|
|
SELECT
|
|
"id",
|
|
"action_id",
|
|
"validation_name",
|
|
"details"
|
|
FROM
|
|
preflight_validation_failures
|
|
WHERE
|
|
action_id = :action_id
|
|
''')
|
|
|
|
SELECT_CMD_AUDIT_BY_ACTION_ID = sqlalchemy.sql.text('''
|
|
SELECT
|
|
"id",
|
|
"action_id",
|
|
"command",
|
|
"user",
|
|
"datetime"
|
|
FROM
|
|
action_command_audit
|
|
WHERE
|
|
action_id = :action_id
|
|
''')
|
|
|
|
INSERT_ACTION_COMMAND_AUDIT = sqlalchemy.sql.text('''
|
|
INSERT INTO
|
|
action_command_audit (
|
|
"id",
|
|
"action_id",
|
|
"command",
|
|
"user"
|
|
)
|
|
VALUES (
|
|
:id,
|
|
:action_id,
|
|
:command,
|
|
:user )
|
|
''')
|
|
|
|
def __init__(self):
|
|
DbAccess.__init__(self)
|
|
|
|
def get_connection_string(self):
|
|
"""
|
|
Returns the connection string for this db connection
|
|
"""
|
|
return CONF.base.postgresql_db
|
|
|
|
def update_db(self):
|
|
"""
|
|
Trigger Alembic to upgrade to the latest version of the DB
|
|
"""
|
|
try:
|
|
LOG.info("Checking for shipyard database upgrade")
|
|
cwd = os.getcwd()
|
|
os.chdir(CONF.base.alembic_ini_path)
|
|
config = Config('alembic.ini',
|
|
attributes={'configure_logger': False})
|
|
alembic_command.upgrade(config, 'head')
|
|
os.chdir(cwd)
|
|
except Exception as exception:
|
|
LOG.error('***\n'
|
|
'Failed Alembic DB upgrade. Check the config: %s\n'
|
|
'***',
|
|
exception)
|
|
# don't let things continue...
|
|
raise exception
|
|
|
|
def get_all_submitted_actions(self):
|
|
"""
|
|
Retrieves all actions.
|
|
"""
|
|
return self.get_as_dict_array(ShipyardDbAccess.SELECT_ALL_ACTIONS)
|
|
|
|
def get_action_by_id(self, action_id):
|
|
"""
|
|
Get a single action
|
|
:param action_id: the id of the action to retrieve
|
|
"""
|
|
actions_array = self.get_as_dict_array(
|
|
ShipyardDbAccess.SELECT_ACTION_BY_ID, action_id=action_id)
|
|
if actions_array:
|
|
return actions_array[0]
|
|
else:
|
|
# Not found
|
|
return None
|
|
|
|
def get_preflight_validation_fails(self):
|
|
"""
|
|
Retrieves the summary set of preflight validation failures
|
|
"""
|
|
return self.get_as_dict_array(ShipyardDbAccess.SELECT_VALIDATIONS)
|
|
|
|
def get_validation_by_id(self, validation_id):
|
|
"""
|
|
Retreives a single validation for a given validation id
|
|
"""
|
|
validation_array = self.get_as_dict_array(
|
|
ShipyardDbAccess.SELECT_VALIDATION_BY_ID,
|
|
validation_id=validation_id)
|
|
if validation_array:
|
|
return validation_array[0]
|
|
else:
|
|
return None
|
|
|
|
def get_validation_by_action_id(self, action_id):
|
|
"""
|
|
Retreives the validations for a given action id
|
|
"""
|
|
return self.get_as_dict_array(
|
|
ShipyardDbAccess.SELECT_VALIDATION_BY_ACTION_ID,
|
|
action_id=action_id)
|
|
|
|
def insert_action(self, action):
|
|
"""
|
|
Inserts a single action row
|
|
"""
|
|
self.perform_insert(ShipyardDbAccess.INSERT_ACTION,
|
|
id=action['id'],
|
|
name=action['name'],
|
|
parameters=json.dumps(action['parameters']),
|
|
dag_id=action['dag_id'],
|
|
dag_execution_date=action['dag_execution_date'],
|
|
user=action['user'],
|
|
timestamp=action['timestamp'],
|
|
context_marker=action['context_marker'])
|
|
|
|
def get_command_audit_by_action_id(self, action_id):
|
|
"""
|
|
Retreives the action audit records for a given action id
|
|
"""
|
|
return self.get_as_dict_array(
|
|
ShipyardDbAccess.SELECT_CMD_AUDIT_BY_ACTION_ID,
|
|
action_id=action_id)
|
|
|
|
def insert_action_command_audit(self, ac_audit):
|
|
"""
|
|
Inserts a single action command audit
|
|
"""
|
|
self.perform_insert(ShipyardDbAccess.INSERT_ACTION_COMMAND_AUDIT,
|
|
id=ac_audit['id'],
|
|
action_id=ac_audit['action_id'],
|
|
command=ac_audit['command'],
|
|
user=ac_audit['user'])
|