Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / views.py @ 79b5d61b

History | View | Annotate | Download (18.6 kB)

1
# Copyright 2011 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33
#
34

    
35
import os
36

    
37
from django.conf import settings
38
from django.utils.translation import gettext_lazy as _
39
from django.template import loader
40
from django.http import HttpResponse
41
from django.utils.translation import get_language
42
from django.utils import simplejson as json
43
from django.template.loader import render_to_string
44
from django.core.urlresolvers import reverse
45
from django.template import RequestContext
46

    
47
from synnefo.util.version import get_component_version
48

    
49
from snf_django.lib.astakos import get_user
50

    
51
SYNNEFO_JS_LIB_VERSION = get_component_version('app')
52

    
53
# api configuration
54
COMPUTE_API_URL = getattr(settings, 'COMPUTE_API_URL', '/api/v1.1')
55

    
56
# UI preferences settings
57
TIMEOUT = getattr(settings, "TIMEOUT", 10000)
58
UPDATE_INTERVAL = getattr(settings, "UI_UPDATE_INTERVAL", 5000)
59
CHANGES_SINCE_ALIGNMENT = getattr(settings, "UI_CHANGES_SINCE_ALIGNMENT", 0)
60
UPDATE_INTERVAL_INCREASE = getattr(settings, "UI_UPDATE_INTERVAL_INCREASE", 500)
61
UPDATE_INTERVAL_INCREASE_AFTER_CALLS_COUNT = \
62
    getattr(settings, "UI_UPDATE_INTERVAL_INCREASE_AFTER_CALLS_COUNT", 3)
63
UPDATE_INTERVAL_FAST = getattr(settings, "UI_UPDATE_INTERVAL_FAST", 2500)
64
UPDATE_INTERVAL_MAX = getattr(settings, "UI_UPDATE_INTERVAL_MAX", 10000)
65

    
66
# predefined values settings
67
VM_IMAGE_COMMON_METADATA = \
68
    getattr(settings, "UI_VM_IMAGE_COMMON_METADATA", ["OS", "users"])
69
SUGGESTED_FLAVORS_DEFAULT = {}
70
SUGGESTED_FLAVORS = getattr(settings, "VM_CREATE_SUGGESTED_FLAVORS",
71
                            SUGGESTED_FLAVORS_DEFAULT)
72
SUGGESTED_ROLES_DEFAULT = ["Database server", "File server", "Mail server",
73
                           "Web server", "Proxy"]
74
SUGGESTED_ROLES = getattr(settings, "VM_CREATE_SUGGESTED_ROLES",
75
                          SUGGESTED_ROLES_DEFAULT)
76
IMAGE_ICONS = settings.IMAGE_ICONS
77
IMAGE_DELETED_TITLE = \
78
    getattr(settings, 'UI_IMAGE_DELETED_TITLE', '(deleted)')
79
IMAGE_DELETED_SIZE_TITLE = \
80
    getattr(settings, 'UI_IMAGE_DELETED_SIZE_TITLE', '(none)')
81

    
82
SUPPORT_SSH_OS_LIST = getattr(settings, "UI_SUPPORT_SSH_OS_LIST",)
83
OS_CREATED_USERS = getattr(settings, "UI_OS_DEFAULT_USER_MAP")
84
LOGOUT_URL = getattr(settings, "UI_LOGOUT_URL", '/im/authenticate')
85
LOGIN_URL = getattr(settings, "UI_LOGIN_URL", '/im/login')
86
AUTH_COOKIE_NAME = getattr(settings, "UI_AUTH_COOKIE_NAME", 'synnefo_user')
87

    
88
# UI behaviour settings
89
DELAY_ON_BLUR = getattr(settings, "UI_DELAY_ON_BLUR", True)
90
UPDATE_HIDDEN_VIEWS = getattr(settings, "UI_UPDATE_HIDDEN_VIEWS", False)
91
HANDLE_WINDOW_EXCEPTIONS = \
92
    getattr(settings, "UI_HANDLE_WINDOW_EXCEPTIONS", True)
93
SKIP_TIMEOUTS = getattr(settings, "UI_SKIP_TIMEOUTS", 1)
94

    
95
# Additional settings
96
VM_NAME_TEMPLATE = getattr(settings, "VM_CREATE_NAME_TPL", "My {0} server")
97
VM_HOSTNAME_FORMAT = getattr(settings, "UI_VM_HOSTNAME_FORMAT",
98
                             'snf-%(id)s.vm.okeanos.grnet.gr')
99

    
100
if isinstance(VM_HOSTNAME_FORMAT, basestring):
101
    VM_HOSTNAME_FORMAT = VM_HOSTNAME_FORMAT % {'id': '{0}'}
102

    
103
MAX_SSH_KEYS_PER_USER = getattr(settings, "USERDATA_MAX_SSH_KEYS_PER_USER")
104
FLAVORS_DISK_TEMPLATES_INFO = \
105
    getattr(settings, "UI_FLAVORS_DISK_TEMPLATES_INFO", {})
106
SYSTEM_IMAGES_OWNERS = getattr(settings, "UI_SYSTEM_IMAGES_OWNERS", {})
107
CUSTOM_IMAGE_HELP_URL = getattr(settings, "UI_CUSTOM_IMAGE_HELP_URL", None)
108

    
109
# MEDIA PATHS
110
UI_MEDIA_URL = \
111
    getattr(settings, "UI_MEDIA_URL",
112
            "%ssnf-%s/" % (settings.MEDIA_URL, SYNNEFO_JS_LIB_VERSION))
113
UI_SYNNEFO_IMAGES_URL = \
114
    getattr(settings,
115
            "UI_SYNNEFO_IMAGES_URL", UI_MEDIA_URL + "images/")
116
UI_SYNNEFO_CSS_URL = \
117
    getattr(settings,
118
            "UI_SYNNEFO_CSS_URL", UI_MEDIA_URL + "css/")
119
UI_SYNNEFO_JS_URL = \
120
    getattr(settings,
121
            "UI_SYNNEFO_JS_URL", UI_MEDIA_URL + "js/")
122
UI_SYNNEFO_JS_LIB_URL = \
123
    getattr(settings,
124
            "UI_SYNNEFO_JS_LIB_URL", UI_SYNNEFO_JS_URL + "lib/")
125
UI_SYNNEFO_JS_WEB_URL = \
126
    getattr(settings, "UI_SYNNEFO_JS_WEB_URL", UI_SYNNEFO_JS_URL + "ui/web/")
127

    
128
# extensions
129
ENABLE_GLANCE = getattr(settings, 'UI_ENABLE_GLANCE', True)
130
GLANCE_API_URL = getattr(settings, 'UI_GLANCE_API_URL', '/glance')
131
DIAGNOSTICS_UPDATE_INTERVAL = \
132
    getattr(settings, 'UI_DIAGNOSTICS_UPDATE_INTERVAL', 2000)
133

    
134
# network settings
135
DEFAULT_NETWORK_TYPES = {'MAC_FILTERED': 'mac-filtering',
136
                         'PHYSICAL_VLAN': 'physical-vlan'}
137
NETWORK_TYPES = \
138
    getattr(settings,
139
            'UI_NETWORK_AVAILABLE_NETWORK_TYPES', DEFAULT_NETWORK_TYPES)
140
DEFAULT_NETWORK_SUBNETS = ['10.0.0.0/24', '192.168.1.1/24']
141
NETWORK_SUBNETS = \
142
    getattr(settings,
143
            'UI_NETWORK_AVAILABLE_SUBNETS', DEFAULT_NETWORK_SUBNETS)
144
NETWORK_DUPLICATE_NICS = \
145
    getattr(settings,
146
            'UI_NETWORK_ALLOW_DUPLICATE_VM_NICS', False)
147
NETWORK_STRICT_DESTROY = \
148
    getattr(settings,
149
            'UI_NETWORK_STRICT_DESTROY', False)
150
NETWORK_ALLOW_MULTIPLE_DESTROY = \
151
    getattr(settings,
152
            'UI_NETWORK_ALLOW_MULTIPLE_DESTROY', False)
153
AUTOMATIC_NETWORK_RANGE_FORMAT = getattr(settings,
154
                                         'UI_AUTOMATIC_NETWORK_RANGE_FORMAT',
155
                                         "192.168.%d.0/24").replace("%d", "{0}")
156
GROUP_PUBLIC_NETWORKS = getattr(settings, 'UI_GROUP_PUBLIC_NETWORKS', True)
157
GROUPED_PUBLIC_NETWORK_NAME = \
158
    getattr(settings, 'UI_GROUPED_PUBLIC_NETWORK_NAME', 'Internet')
159

    
160
USER_CATALOG_URL = getattr(settings, 'UI_USER_CATALOG_URL', '/astakos/api/user_catalogs')
161
FEEDBACK_POST_URL = getattr(settings, 'UI_FEEDBACK_POST_URL', '/astakos/api/feedback')
162
TRANSLATE_UUIDS = not getattr(settings, 'TRANSLATE_UUIDS', False)
163
ACCOUNTS_API_URL = getattr(settings, 'UI_ACCOUNTS_API_URL', '/astakos/api')
164

    
165

    
166
def template(name, request, context):
167
    template_path = os.path.join(os.path.dirname(__file__), "templates/")
168
    current_template = template_path + name + '.html'
169
    t = loader.get_template(current_template)
170
    media_context = {
171
        'UI_MEDIA_URL': UI_MEDIA_URL,
172
        'SYNNEFO_JS_URL': UI_SYNNEFO_JS_URL,
173
        'SYNNEFO_JS_LIB_URL': UI_SYNNEFO_JS_LIB_URL,
174
        'SYNNEFO_JS_WEB_URL': UI_SYNNEFO_JS_WEB_URL,
175
        'SYNNEFO_IMAGES_URL': UI_SYNNEFO_IMAGES_URL,
176
        'SYNNEFO_CSS_URL': UI_SYNNEFO_CSS_URL,
177
        'SYNNEFO_JS_LIB_VERSION': SYNNEFO_JS_LIB_VERSION,
178
        'DEBUG': settings.DEBUG
179
    }
180
    context.update(media_context)
181
    return HttpResponse(t.render(RequestContext(request, context)))
182

    
183

    
184
def home(request):
185
    context = {'timeout': TIMEOUT,
186
               'project': '+nefo',
187
               'request': request,
188
               'current_lang': get_language() or 'en',
189
               'compute_api_url': json.dumps(COMPUTE_API_URL),
190
               'user_catalog_url': json.dumps(USER_CATALOG_URL),
191
               'feedback_post_url': json.dumps(FEEDBACK_POST_URL),
192
               'accounts_api_url': json.dumps(ACCOUNTS_API_URL),
193
               'translate_uuids': json.dumps(TRANSLATE_UUIDS),
194
               # update interval settings
195
               'update_interval': UPDATE_INTERVAL,
196
               'update_interval_increase': UPDATE_INTERVAL_INCREASE,
197
               'update_interval_increase_after_calls':
198
                UPDATE_INTERVAL_INCREASE_AFTER_CALLS_COUNT,
199
               'update_interval_fast': UPDATE_INTERVAL_FAST,
200
               'update_interval_max': UPDATE_INTERVAL_MAX,
201
               'changes_since_alignment': CHANGES_SINCE_ALIGNMENT,
202
               'image_icons': IMAGE_ICONS,
203
               'logout_redirect': LOGOUT_URL,
204
               'login_redirect': LOGIN_URL,
205
               'auth_cookie_name': AUTH_COOKIE_NAME,
206
               'suggested_flavors': json.dumps(SUGGESTED_FLAVORS),
207
               'suggested_roles': json.dumps(SUGGESTED_ROLES),
208
               'vm_image_common_metadata': json.dumps(VM_IMAGE_COMMON_METADATA),
209
               'synnefo_version': SYNNEFO_JS_LIB_VERSION,
210
               'delay_on_blur': json.dumps(DELAY_ON_BLUR),
211
               'update_hidden_views': json.dumps(UPDATE_HIDDEN_VIEWS),
212
               'handle_window_exceptions': json.dumps(HANDLE_WINDOW_EXCEPTIONS),
213
               'skip_timeouts': json.dumps(SKIP_TIMEOUTS),
214
               'vm_name_template': json.dumps(VM_NAME_TEMPLATE),
215
               'flavors_disk_templates_info':
216
               json.dumps(FLAVORS_DISK_TEMPLATES_INFO),
217
               'support_ssh_os_list': json.dumps(SUPPORT_SSH_OS_LIST),
218
               'os_created_users': json.dumps(OS_CREATED_USERS),
219
               'userdata_keys_limit': json.dumps(MAX_SSH_KEYS_PER_USER),
220
               'use_glance': json.dumps(ENABLE_GLANCE),
221
               'glance_api_url': json.dumps(GLANCE_API_URL),
222
               'system_images_owners': json.dumps(SYSTEM_IMAGES_OWNERS),
223
               'custom_image_help_url': CUSTOM_IMAGE_HELP_URL,
224
               'image_deleted_title': json.dumps(IMAGE_DELETED_TITLE),
225
               'image_deleted_size_title': json.dumps(IMAGE_DELETED_SIZE_TITLE),
226
               'network_suggested_subnets': json.dumps(NETWORK_SUBNETS),
227
               'network_available_types': json.dumps(NETWORK_TYPES),
228
               'network_allow_duplicate_vm_nics':
229
               json.dumps(NETWORK_DUPLICATE_NICS),
230
               'network_strict_destroy': json.dumps(NETWORK_STRICT_DESTROY),
231
               'network_allow_multiple_destroy':
232
               json.dumps(NETWORK_ALLOW_MULTIPLE_DESTROY),
233
               'automatic_network_range_format':
234
               json.dumps(AUTOMATIC_NETWORK_RANGE_FORMAT),
235
               'grouped_public_network_name':
236
               json.dumps(GROUPED_PUBLIC_NETWORK_NAME),
237
               'group_public_networks': json.dumps(GROUP_PUBLIC_NETWORKS),
238
               'diagnostics_update_interval':
239
               json.dumps(DIAGNOSTICS_UPDATE_INTERVAL),
240
               'vm_hostname_format': json.dumps(VM_HOSTNAME_FORMAT)
241
               }
242
    return template('home', request, context)
243

    
244

    
245
def machines_console(request):
246
    host, port, password = ('', '', '')
247
    host = request.GET.get('host', '')
248
    port = request.GET.get('port', '')
249
    password = request.GET.get('password', '')
250
    machine = request.GET.get('machine', '')
251
    host_ip = request.GET.get('host_ip', '')
252
    host_ip_v6 = request.GET.get('host_ip_v6', '')
253
    context = {'host': host, 'port': port, 'password': password,
254
               'machine': machine, 'host_ip': host_ip, 'host_ip_v6': host_ip_v6}
255
    return template('machines_console', request, context)
256

    
257

    
258
def js_tests(request):
259
    return template('tests', request, {})
260

    
261

    
262
CONNECT_LINUX_LINUX_MESSAGE = \
263
    _("""A direct connection to this machine can be established using the
264
<a target="_blank" href="http://en.wikipedia.org/wiki/Secure_Shell">
265
SSH Protocol</a>.
266
To do so open a terminal and type the following at the prompt to connect
267
to your machine:""")
268
CONNECT_LINUX_WINDOWS_MESSAGE = \
269
    _("""A direct connection to this machine can be established using
270
<a target="_blank"
271
href="http://en.wikipedia.org/wiki/Remote_Desktop_Services">
272
Remote Desktop Service</a>.
273
To do so, open the following file with an appropriate remote desktop client.""")
274
CONNECT_LINUX_WINDOWS_SUBMESSAGE = \
275
    _("""If you don't have a Remote Desktop client already installed,
276
we suggest the use of <a target="_blank"
277
href=
278
"http://sourceforge.net/projects/tsclient/files/latest/download?source=files">
279
tsclient</a>.<br /><span class="important">IMPORTANT: It may take up to 15
280
minutes for your Windows VM to become available
281
after its creation.</span>""")
282
CONNECT_WINDOWS_LINUX_MESSAGE = \
283
    _("""A direct connection to this machine can be established using the
284
<a target="_blank"
285
href="http://en.wikipedia.org/wiki/Secure_Shell">SSH Protocol</a>.
286
Open an ssh client such as PuTTY and type the following:""")
287
CONNECT_WINDOWS_LINUX_SUBMESSAGE = \
288
    _("""If you do not have an ssh client already installed,
289
<a target="_blank"
290
href="http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe">
291
Download PuTTY</a>""")
292

    
293
CONNECT_WINDOWS_WINDOWS_MESSAGE = \
294
    _("""A direct connection to this machine can be
295
established using Remote Desktop. Click on the following link, and if asked
296
open it using "Remote Desktop Connection".
297
<br /><span class="important">
298
IMPORTANT: It may take up to 15 minutes for your Windows VM to become available
299
after its creation.</span>""")
300
CONNECT_WINDOWS_WINDOWS_SUBMESSAGE = \
301
    _("""Save this file to disk for future use.""")
302

    
303
# info/subinfo for all os combinations
304
#
305
# [0] info gets displayed on top of the message box
306
# [1] subinfo gets displayed on the bottom as extra info
307
# provided to the user when needed
308
CONNECT_PROMPT_MESSAGES = {
309
    'linux': {
310
        'linux': [CONNECT_LINUX_LINUX_MESSAGE, ""],
311
        'windows': [CONNECT_LINUX_WINDOWS_MESSAGE,
312
                    CONNECT_LINUX_WINDOWS_SUBMESSAGE],
313
        'ssh_message': "ssh %(user)s@%(hostname)s"
314
    },
315
    'windows': {
316
        'linux': [CONNECT_WINDOWS_LINUX_MESSAGE,
317
                  CONNECT_WINDOWS_LINUX_SUBMESSAGE],
318
        'windows': [CONNECT_WINDOWS_WINDOWS_MESSAGE,
319
                    CONNECT_WINDOWS_WINDOWS_SUBMESSAGE],
320
        'ssh_message': "%(user)s@%(hostname)s"
321
    },
322
}
323

    
324
APPEND_CONNECT_PROMPT_MESSAGES = \
325
    getattr(settings, 'UI_CONNECT_PROMPT_MESSAGES', {})
326
for k, v in APPEND_CONNECT_PROMPT_MESSAGES.iteritems():
327
    CONNECT_PROMPT_MESSAGES[k].update(v)
328

    
329
# retrieve domain prefix from settings
330
DOMAIN_PREFIX = getattr(settings, 'MACHINE_DOMAIN_PREFIX', getattr(settings,
331
                        'BACKEND_PREFIX_ID', ""))
332

    
333
# domain template string
334
DOMAIN_TPL = "%s%%s" % DOMAIN_PREFIX
335

    
336

    
337
def machines_connect(request):
338
    ip_address = request.GET.get('ip_address', '')
339
    hostname = request.GET.get('hostname', '')
340
    operating_system = metadata_os = request.GET.get('os', '')
341
    server_id = request.GET.get('srv', 0)
342
    host_os = request.GET.get('host_os', 'Linux').lower()
343
    username = request.GET.get('username', None)
344
    domain = request.GET.get("domain", DOMAIN_TPL % int(server_id))
345

    
346
    # guess host os
347
    if host_os != "windows":
348
        host_os = 'linux'
349

    
350
    # guess username
351
    if not username:
352
        username = "root"
353

    
354
        if metadata_os.lower() in ['ubuntu', 'kubuntu', 'fedora']:
355
            username = "user"
356

    
357
        if metadata_os.lower() == "windows":
358
            username = "Administrator"
359

    
360
    # operating system provides ssh access
361
    ssh = False
362
    if operating_system != "windows":
363
        operating_system = "linux"
364
        ssh = True
365

    
366
    # rdp param is set, the user requested rdp file
367
    # check if we are on windows
368
    if operating_system == 'windows' and request.GET.get("rdp", False):
369

    
370
        # UI sent domain info (from vm metadata) use this
371
        # otherwise use our default snf-<vm_id> domain
372
        EXTRA_RDP_CONTENT = getattr(settings, 'UI_EXTRA_RDP_CONTENT', '')
373
        if callable(EXTRA_RDP_CONTENT):
374
            extra_rdp_content = EXTRA_RDP_CONTENT(server_id, ip_address,
375
                                                  hostname, username)
376
        else:
377
            extra_rdp_content = EXTRA_RDP_CONTENT % \
378
                {
379
                    'server_id': server_id,
380
                    'ip_address': ip_address,
381
                    'hostname': hostname,
382
                    'user': username
383
                }
384

    
385
        rdp_context = {
386
            'username': username,
387
            'domain': domain,
388
            'ip_address': ip_address,
389
            'hostname': hostname,
390
            'extra_content': extra_rdp_content
391
        }
392

    
393
        rdp_file_data = render_to_string("synnefo-windows.rdp", rdp_context)
394
        response = HttpResponse(rdp_file_data, mimetype='application/x-rdp')
395

    
396
        # proper filename, use server id and ip address
397
        filename = "%d-%s.rdp" % (int(server_id), hostname)
398
        response['Content-Disposition'] = 'attachment; filename=%s' % filename
399
    else:
400
        ssh_message = CONNECT_PROMPT_MESSAGES['linux'].get('ssh_message')
401
        if host_os == 'windows':
402
            ssh_message = CONNECT_PROMPT_MESSAGES['windows'].get('ssh_message')
403
        if callable(ssh_message):
404
            link_title = ssh_message(server_id, ip_address, hostname, username)
405
        else:
406
            link_title = ssh_message % {
407
                'server_id': server_id,
408
                'ip_address': ip_address,
409
                'hostname': hostname,
410
                'user': username
411
            }
412
        if (operating_system != "windows"):
413
            link_url = None
414

    
415
        else:
416
            link_title = _("Remote desktop to %s") % ip_address
417
            link_url = \
418
                "%s?ip_address=%s&os=%s&rdp=1&srv=%d&username=%s&domain=%s" \
419
                "&hostname=%s" % (
420
                    reverse("ui_machines_connect"), ip_address,
421
                    operating_system, int(server_id), username,
422
                    domain, hostname)
423

    
424
        # try to find a specific message
425
        try:
426
            connect_message = \
427
                CONNECT_PROMPT_MESSAGES[host_os][operating_system][0]
428
            subinfo = CONNECT_PROMPT_MESSAGES[host_os][operating_system][1]
429
        except KeyError:
430
            connect_message = \
431
                _("You are trying to connect from a %s "
432
                  "machine to a %s machine") % (host_os, operating_system)
433
            subinfo = ""
434

    
435
        response_object = {
436
            'ip': ip_address,
437
            'os': operating_system,
438
            'ssh': ssh,
439
            'info': unicode(connect_message),
440
            'subinfo': unicode(subinfo),
441
            'link': {'title': unicode(link_title), 'url': link_url}
442
        }
443
        response = \
444
            HttpResponse(json.dumps(response_object),
445
                         mimetype='application/json')  # no windows, no rdp
446

    
447
    return response