This file is indexed.

/usr/lib/python2.7/dist-packages/maasserver/views/nodecommissionresult.py is in python-django-maas 1.5.4+bzr2294-0ubuntu1.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
# Copyright 2014 Canonical Ltd.  This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).

"""Views for node commissioning results."""

from __future__ import (
    absolute_import,
    print_function,
    unicode_literals,
    )

str = None

__metaclass__ = type
__all__ = [
    'NodeCommissionResultListView',
    ]

from django.shortcuts import get_object_or_404
from django.views.generic import DetailView
from maasserver.models import Node
from maasserver.views import PaginatedListView
from metadataserver.models import NodeCommissionResult


class NodeCommissionResultListView(PaginatedListView):

    template_name = 'maasserver/nodecommissionresult-list.html'
    context_object_name = 'results_list'

    def get_filter_system_ids(self):
        """Return the list of nodes that were selected for filtering."""
        return self.request.GET.getlist('node')

    def get_context_data(self, **kwargs):
        context = super(NodeCommissionResultListView, self).get_context_data(
            **kwargs)
        system_ids = self.get_filter_system_ids()
        if system_ids is not None and len(system_ids) > 0:
            nodes = Node.objects.filter(system_id__in=system_ids)
            context['nodes_filter'] = ', '.join(
                sorted(node.hostname for node in nodes))
        return context

    def get_queryset(self):
        results = NodeCommissionResult.objects.all()
        system_ids = self.get_filter_system_ids()
        if system_ids is not None and len(system_ids) > 0:
            results = results.filter(node__system_id__in=system_ids)
        return results.order_by('node', '-created', 'name')


class NodeCommissionResultView(DetailView):

    template_name = 'metadataserver/nodecommissionresult.html'

    def get_object(self):
        result_id = self.kwargs.get('id')
        return get_object_or_404(NodeCommissionResult, id=result_id)