update request url
[modeling/etsicatalog.git] / genericparser / swagger / management / commands / export_swagger.py
1 # Copyright 2018 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 json
15
16 from django.core.management.base import BaseCommand
17 from django.test import Client
18
19
20 class Command(BaseCommand):
21     def add_arguments(self, parser):
22         parser.add_argument(
23             '-f',
24             '--name',
25             action='store',
26             dest='name',
27             default='swagger.json',
28             help='name of swagger file.',
29         )
30
31     def handle(self, *args, **options):
32         self.client = Client()
33         response = self.client.get("/api/parser/v1/swagger.json")
34         with open(options['name'], 'w') as swagger_file:
35             swagger_file.write(json.dumps(response.data))
36         print "swagger api is written to %s" % options['name']