Statistics
| Branch: | Tag: | Revision:

root / ui / views.py @ afedad4d

History | View | Annotate | Download (4.5 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
import os
35
from django.conf import settings
36
from django.utils.translation import gettext_lazy as _
37
from django.template import Context, loader
38
from django.http import HttpResponse
39
from django.utils.translation import get_language
40
from django.utils import simplejson as json
41
from django.shortcuts import render_to_response
42

    
43
TIMEOUT = settings.TIMEOUT
44
UPDATE_INTERVAL = settings.UPDATE_INTERVAL
45
IMAGE_ICONS = settings.IMAGE_ICONS
46

    
47
def template(name, context):
48
    template_path = os.path.join(os.path.dirname(__file__), "templates/")
49
    current_template = template_path + name + '.html'
50
    t = loader.get_template(current_template)
51
    return HttpResponse(t.render(Context(context)))
52

    
53
def home(request):
54
    context = {'timeout': TIMEOUT,
55
               'project': '+nefo',
56
               'request': request,
57
               'current_lang': get_language() or 'en',
58
               'update_interval': UPDATE_INTERVAL,
59
               'image_icons': IMAGE_ICONS,}
60
    return template('home', context)
61

    
62
def machines(request):
63
    context = {'default_keywords': settings.DEFAULT_KEYWORDS}
64
    return template('machines', context)
65

    
66
def machines_icon(request):
67
    context = {'default_keywords': settings.DEFAULT_KEYWORDS}
68
    return template('machines_icon', context)
69

    
70
def machines_list(request):
71
    context = {'default_keywords': settings.DEFAULT_KEYWORDS}
72
    return template('machines_list', context)
73

    
74
def machines_single(request):
75
    context = {'default_keywords': settings.DEFAULT_KEYWORDS}
76
    return template('machines_single', context)
77

    
78
def machines_console(request):
79
    host, port, password = ('','','')
80
    host = request.GET.get('host','')
81
    port = request.GET.get('port','')
82
    password = request.GET.get('password','')
83
    machine = request.GET.get('machine','')
84
    host_ip = request.GET.get('host_ip','')
85
    context = {'host': host, 'port': port, 'password': password, 'machine': machine, 'host_ip': host_ip}
86
    return template('machines_console', context)
87

    
88
def machines_connect(request):
89
    ip_address = request.GET.get('ip_address','')
90
    operating_system = request.GET.get('os','')
91
    if operating_system == 'windows': #check if we are on windows
92
        rdp_file = os.path.join(os.path.dirname(__file__), "static/") + 'synnefo-windows.rdp'
93
        connect_data = open(rdp_file, 'r').read()
94
        connect_data = connect_data + 'full address:s:' + ip_address + '\n'
95
        response = HttpResponse(connect_data, mimetype='application/x-rdp')
96
        response['Content-Disposition'] = 'attachment; filename=synnefo-windows.rdp'
97
    else:
98
        response = HttpResponse("Try ssh maybe")  #no windows, no rdp
99
    return response
100

    
101

    
102
def images(request):
103
    context = {}
104
    return template('images', context)
105

    
106
def disks(request):
107
    context = {}
108
    return template('disks', context)
109

    
110
def networks(request):
111
    context = {}
112
    return template('networks', context)
113

    
114
def files(request):
115
    context = {}
116
    return template('files', context)
117

    
118
def desktops(request):
119
    context = {}
120
    return template('desktops', context)
121

    
122
def apps(request):
123
    context = {}
124
    return template('apps', context)