Add swagger export command for nslcm 73/58873/2
authorfujinhua <fu.jinhua@zte.com.cn>
Fri, 3 Aug 2018 08:25:55 +0000 (16:25 +0800)
committerfujinhua <fu.jinhua@zte.com.cn>
Fri, 3 Aug 2018 08:38:15 +0000 (16:38 +0800)
Change-Id: Ia927961450d18c3f9ff8f123e17fc8e519bcc4d9
Issue-ID: VFC-1011
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
lcm/settings.py
lcm/swagger/management/__init__.py [new file with mode: 0644]
lcm/swagger/management/commands/__init__.py [new file with mode: 0644]
lcm/swagger/management/commands/export_swagger.py [new file with mode: 0644]

index 19c43e7..e0aca0a 100644 (file)
@@ -48,6 +48,7 @@ INSTALLED_APPS = [
     'django.contrib.staticfiles',
     'rest_framework',
     'lcm.pub.database',
+    'lcm.swagger',
     'drf_yasg'
 ]
 
diff --git a/lcm/swagger/management/__init__.py b/lcm/swagger/management/__init__.py
new file mode 100644 (file)
index 0000000..342c2a8
--- /dev/null
@@ -0,0 +1,13 @@
+# Copyright 2018 ZTE Corporation.
+#
+# 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.
diff --git a/lcm/swagger/management/commands/__init__.py b/lcm/swagger/management/commands/__init__.py
new file mode 100644 (file)
index 0000000..342c2a8
--- /dev/null
@@ -0,0 +1,13 @@
+# Copyright 2018 ZTE Corporation.
+#
+# 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.
diff --git a/lcm/swagger/management/commands/export_swagger.py b/lcm/swagger/management/commands/export_swagger.py
new file mode 100644 (file)
index 0000000..6caa7aa
--- /dev/null
@@ -0,0 +1,36 @@
+# Copyright 2018 ZTE Corporation.
+#
+# 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.
+import json
+
+from django.core.management.base import BaseCommand
+from django.test import Client
+
+
+class Command(BaseCommand):
+    def add_arguments(self, parser):
+        parser.add_argument(
+            '-f',
+            '--name',
+            action='store',
+            dest='name',
+            default='swagger.json',
+            help='name of swagger file.',
+        )
+
+    def handle(self, *args, **options):
+        self.client = Client()
+        response = self.client.get("/api/nslcm/v1/swagger.json")
+        with open(options['name'], 'w') as swagger_file:
+            swagger_file.write(json.dumps(response.data))
+        print "swagger api is written to %s" % options['name']