update link to upper-constraints.txt
[vfc/nfvo/lcm.git] / lcm / urls.py
1 # Copyright 2016 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
15 from django.conf.urls import include, url
16 from django.contrib import admin
17
18 from lcm.pub.config.config import DEPLOY_WORKFLOW_WHEN_START
19 from lcm.pub.config.config import REG_TO_MSB_WHEN_START, REG_TO_MSB_REG_URL, REG_TO_MSB_REG_PARAM, MSB_SVC_URL
20
21
22 urlpatterns = [
23     url(r'^api/nslcm/v1/admin', admin.site.urls),
24     url(r'^', include('lcm.samples.urls')),
25     url(r'^', include('lcm.ns_vnfs.urls')),
26     url(r'^', include('lcm.ns_pnfs.urls')),
27     url(r'^', include('lcm.ns_vls.urls')),
28     url(r'^', include('lcm.ns_sfcs.urls')),
29     url(r'^', include('lcm.ns.urls')),
30     url(r'^', include('lcm.jobs.urls')),
31     url(r'^', include('lcm.workflows.urls')),
32     url(r'^', include('lcm.swagger.urls')),
33 ]
34
35 # regist to MSB when startup
36 if REG_TO_MSB_WHEN_START == "true":
37     import json
38     from lcm.pub.utils.restcall import req_by_msb
39     req_by_msb(MSB_SVC_URL % "v1", "DELETE")
40     req_by_msb(REG_TO_MSB_REG_URL, "POST", json.JSONEncoder().encode(REG_TO_MSB_REG_PARAM))
41
42     req_by_msb(MSB_SVC_URL % "v2", "DELETE")
43     v2_param = REG_TO_MSB_REG_PARAM.copy()
44     v2_param["version"] = "v2"
45     v2_param["url"] = v2_param["url"].replace("v1", "v2")
46     req_by_msb(REG_TO_MSB_REG_URL, "POST", json.JSONEncoder().encode(v2_param))
47
48 # deploy workflow when startup
49 if DEPLOY_WORKFLOW_WHEN_START:
50     from lcm.workflows import auto_deploy
51     auto_deploy.deploy_workflow_on_startup()