mistral/mistral/workbook/workbook.py
Renat Akhmerov b2a072f35c BP mistral-actions-design (switch to new design)
* Refactored action_factory.py (adhoc actions into a separate method)
* Fixed task db model (service_spec -> action_spec)
* Fixed workbook model (tasks, actions, Service -> Namespace)
* Fixed all tests related to DSL syntax changes

TODO:
* Fix all samples in mistral-extra
* Action plugin architecture

Change-Id: Iac6317dde894f17c81332a8c9a2397b70448f6b2
2014-04-14 19:24:37 +07:00

64 lines
2.1 KiB
Python

# -*- coding: utf-8 -*-
#
# Copyright 2013 - Mirantis, Inc.
#
# 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 mistral.workbook import base
from mistral.workbook import namespaces
from mistral.workbook import workflow
class WorkbookSpec(base.BaseSpec):
_required_keys = ['Namespaces', 'Workflow']
def __init__(self, doc):
super(WorkbookSpec, self).__init__(doc)
if self.validate():
self.namespaces =\
namespaces.NamespaceSpecList(self._data['Namespaces'])
self.workflow = workflow.WorkflowSpec(self._data['Workflow'])
self.tasks = self.workflow.tasks
def get_triggers(self):
triggers_from_data = self._data.get("triggers", None)
if not triggers_from_data:
return []
triggers = []
for name in triggers_from_data:
trigger_dict = {'name': name}
trigger_dict.update(triggers_from_data[name])
triggers.append(trigger_dict)
return triggers
def get_action(self, task_action_name):
if task_action_name.find(":") == -1:
return {}
namespace_name = task_action_name.split(':')[0]
action_name = task_action_name.split(':')[1]
action = self.namespaces.get(namespace_name).actions.get(action_name)
return action
def get_actions(self, namespace_name):
return self.namespaces.get(namespace_name).actions
def get_trigger_task_name(self, trigger_name):
trigger = self._data["triggers"].get(trigger_name)
return trigger.get('tasks') if trigger else ""