summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/project/instances/tabs.py
blob: f6d8d4686f0a52f3aa22ce560cdd6cc18baa63a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# vim: tabstop=4 shiftwidth=4 softtabstop=4

# Copyright 2012 Nebula, Inc.
#
#    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.

from django.conf import settings
from django.utils.translation import ugettext_lazy as _

from horizon import exceptions
from horizon import tabs

from openstack_dashboard import api


class OverviewTab(tabs.Tab):
    name = _("Overview")
    slug = "overview"
    template_name = ("project/instances/"
                     "_detail_overview.html")

    def get_context_data(self, request):
        return {"instance": self.tab_group.kwargs['instance']}


class LogTab(tabs.Tab):
    name = _("Log")
    slug = "log"
    template_name = "project/instances/_detail_log.html"
    preload = False

    def get_context_data(self, request):
        instance = self.tab_group.kwargs['instance']
        try:
            data = api.nova.server_console_output(request,
                                                  instance.id,
                                                  tail_length=35)
        except Exception:
            data = _('Unable to get log for instance "%s".') % instance.id
            exceptions.handle(request, ignore=True)
        return {"instance": instance,
                "console_log": data}


class ConsoleTab(tabs.Tab):
    name = _("Console")
    slug = "console"
    template_name = "project/instances/_detail_console.html"
    preload = False

    def get_context_data(self, request):
        instance = self.tab_group.kwargs['instance']
        # Currently prefer VNC over SPICE, since noVNC has had much more
        # testing than spice-html5
        console_type = getattr(settings, 'CONSOLE_TYPE', 'AUTO')
        if console_type == 'AUTO':
            try:
                console = api.nova.server_vnc_console(request, instance.id)
                console_url = "%s&title=%s(%s)" % (
                    console.url,
                    getattr(instance, "name", ""),
                    instance.id)
            except Exception:
                try:
                    console = api.nova.server_spice_console(request,
                                                            instance.id)
                    console_url = "%s&title=%s(%s)" % (
                        console.url,
                        getattr(instance, "name", ""),
                        instance.id)
                except Exception:
                    try:
                        console = api.nova.server_rdp_console(request,
                                                              instance.id)
                        console_url = "%s&title=%s(%s)" % (
                            console.url,
                            getattr(instance, "name", ""),
                            instance.id)
                    except Exception:
                        console_url = None
        elif console_type == 'VNC':
            try:
                console = api.nova.server_vnc_console(request, instance.id)
                console_url = "%s&title=%s(%s)" % (
                    console.url,
                    getattr(instance, "name", ""),
                    instance.id)
            except Exception:
                console_url = None
        elif console_type == 'SPICE':
            try:
                console = api.nova.server_spice_console(request, instance.id)
                console_url = "%s&title=%s(%s)" % (
                    console.url,
                    getattr(instance, "name", ""),
                    instance.id)
            except Exception:
                console_url = None
        elif console_type == 'RDP':
            try:
                console = api.nova.server_rdp_console(request, instance.id)
                console_url = "%s&title=%s(%s)" % (
                    console.url,
                    getattr(instance, "name", ""),
                    instance.id)
            except Exception:
                console_url = None
        else:
            console_url = None

        return {'console_url': console_url, 'instance_id': instance.id}


class InstanceDetailTabs(tabs.TabGroup):
    slug = "instance_details"
    tabs = (OverviewTab, LogTab, ConsoleTab)
    sticky = True