blob: ed62b3569665b5bc1f3ce22447ad4a485f134159 (
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
|
from django.utils import timezone
from django.views.generic import TemplateView
from booking.models import Booking
from dashboard.models import Resource
from jenkins import adapter as jenkins
class JenkinsSlavesView(TemplateView):
template_name = "dashboard/jenkins_slaves.html"
def get_context_data(self, **kwargs):
slaves = jenkins.get_all_slaves()
for slave in slaves:
jenkins.parse_slave_data(slave, slave)
context = super(JenkinsSlavesView, self).get_context_data(**kwargs)
context.update({'title': "Jenkins Slaves", 'slaves': slaves})
return context
class CIPodsView(TemplateView):
template_name = "dashboard/ci_pods.html"
def get_context_data(self, **kwargs):
resources = Resource.objects.filter().values() # get resources as a set of dicts
ci_pods = []
for resource in resources:
if not jenkins.is_ci_slave(resource['slavename']):
continue
ci_slave = jenkins.get_slave(resource['slavename'])
jenkins.parse_slave_data(resource, ci_slave)
ci_pods.append(resource)
context = super(CIPodsView, self).get_context_data(**kwargs)
context.update({'title': "CI Pods", 'ci_pods': ci_pods})
return context
class DevelopmentPodsView(TemplateView):
template_name = "dashboard/dev_pods.html"
def get_context_data(self, **kwargs):
resources = Resource.objects.filter().values() # get resources as a set of dicts
dev_pods = []
current_bookings = Booking.objects.filter(start__lte=timezone.now())
current_bookings = current_bookings.filter(end__gt=timezone.now())
for resource in resources:
if not jenkins.is_dev_pod(resource['slavename']):
continue
dev_pod = jenkins.get_slave(resource['slavename'])
jenkins.parse_slave_data(resource, dev_pod)
for booking in current_bookings:
if booking.resource.slavename == resource['slavename']:
resource['current_booking'] = booking
dev_pods.append(resource)
context = super(DevelopmentPodsView, self).get_context_data(**kwargs)
context.update({'title': "Development Pods", 'dev_pods': dev_pods})
return context
|