Fix vfc-catalog/workflows pep8 issue
[vfc/nfvo/lcm.git] / lcm / workflows / auto_deploy.py
1 # Copyright 2017 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 import logging
15 import traceback
16
17 from lcm.pub.database.models import WFPlanModel
18 from lcm.pub.msapi import activiti
19
20 logger = logging.getLogger(__name__)
21
22
23 def deploy_workflow_on_startup():
24     try:
25         if WFPlanModel.objects.filter():
26             logger.warn("Workflow is already deployed.")
27             return
28         file_path = "TODO:"
29         deploy_info = activiti.deploy_workflow(file_path)
30         WFPlanModel(
31             deployed_id=deploy_info["deployedId"], 
32             process_id=deploy_info["processId"], 
33             status=deploy_info["status"],
34             message=deploy_info["message"],
35             plan_name="ns_instantiate").save()
36         logger.info("Deploy workflow successfully.")
37     except:
38         logger.error(traceback.format_exc())