edit activity workflow plan for NS INIT
[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 def deploy_workflow_on_startup():
23     try:
24         if WFPlanModel.objects.filter():
25             logger.warn("Workflow is already deployed.")
26             return
27         file_path = "TODO:"
28         deploy_info = activiti.deploy_workflow(file_path)
29         WFPlanModel(
30             deployed_id=deploy_info["deployedId"], 
31             process_id=deploy_info["processId"], 
32             status=deploy_info["status"],
33             message=deploy_info["message"],
34             plan_name="ns_instantiate").save()
35         logger.info("Deploy workflow successfully.")
36     except:
37         logger.error(traceback.format_exc())
38