mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-25 23:55:24 +00:00
commit
0e51de0d51
1 changed files with 19 additions and 0 deletions
|
@ -104,6 +104,25 @@ def instances(request):
|
||||||
addlogmsg(request.user.username, instance.name, msg)
|
addlogmsg(request.user.username, instance.name, msg)
|
||||||
return HttpResponseRedirect(request.get_full_path())
|
return HttpResponseRedirect(request.get_full_path())
|
||||||
|
|
||||||
|
if 'getvvfile' in request.POST:
|
||||||
|
msg = _("Send console.vv file")
|
||||||
|
addlogmsg(request.user.username, instance.name, msg)
|
||||||
|
response = HttpResponse(content='', content_type='application/x-virt-viewer', status=200, reason=None, charset='utf-8')
|
||||||
|
response.writelines('[virt-viewer]\n')
|
||||||
|
response.writelines('type=' + conn.graphics_type(name) + '\n')
|
||||||
|
response.writelines('host=' + conn.graphics_listen(name) + '\n')
|
||||||
|
response.writelines('port=' + conn.graphics_port(name) + '\n')
|
||||||
|
response.writelines('title=' + conn.domain_name(name) + '\n')
|
||||||
|
response.writelines('password=' + conn.graphics_passwd(name) + '\n')
|
||||||
|
response.writelines('enable-usbredir=1\n')
|
||||||
|
response.writelines('disable-effects=all\n')
|
||||||
|
response.writelines('secure-attention=ctrl+alt+ins\n')
|
||||||
|
response.writelines('release-cursor=ctrl+alt\n')
|
||||||
|
response.writelines('fullscreen=1\n')
|
||||||
|
response.writelines('delete-this-file=1\n')
|
||||||
|
response['Content-Disposition'] = 'attachment; filename="console.vv"'
|
||||||
|
return response
|
||||||
|
|
||||||
if request.user.is_superuser:
|
if request.user.is_superuser:
|
||||||
|
|
||||||
if 'suspend' in request.POST:
|
if 'suspend' in request.POST:
|
||||||
|
|
Loading…
Reference in a new issue