Source code for openstack_dashboard.contrib.sahara.content.data_processing.jobs.views

# 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.

import json
import logging

from django import http
from django.utils.translation import ugettext_lazy as _

from horizon import exceptions
from horizon import tables
from horizon import tabs
from horizon.utils import memoized
from horizon.utils.urlresolvers import reverse  # noqa
from horizon import workflows

from openstack_dashboard.contrib.sahara.api import sahara as saharaclient

import openstack_dashboard.contrib.sahara.content.data_processing.jobs.tables \
    as _tables
import openstack_dashboard.contrib.sahara.content.data_processing.jobs.tabs \
    as _tabs
import openstack_dashboard.contrib.sahara.content.data_processing.jobs. \
    workflows.create as create_flow
import openstack_dashboard.contrib.sahara.content.data_processing.jobs. \
    workflows.launch as launch_flow

LOG = logging.getLogger(__name__)


[docs]class JobsView(tables.DataTableView): table_class = _tables.JobsTable template_name = 'project/data_processing.jobs/jobs.html' page_title = _("Job Templates")
[docs] def get_data(self): try: search_opts = {} filter = self.get_server_filter_info(self.request) if filter['value'] and filter['field']: search_opts = {filter['field']: filter['value']} jobs = saharaclient.job_list(self.request, search_opts) except Exception: jobs = [] exceptions.handle(self.request, _("Unable to fetch jobs.")) jobs = sorted(jobs, key=lambda job: job.created_at) return jobs
[docs]class CreateJobView(workflows.WorkflowView): workflow_class = create_flow.CreateJob success_url = "horizon:project:data_processing.jobs:create-job" classes = ("ajax-modal",) template_name = "project/data_processing.jobs/create.html" page_title = _("Create Job Template")
[docs]class JobDetailsView(tabs.TabView): tab_group_class = _tabs.JobDetailsTabs template_name = 'project/data_processing.jobs/details.html' page_title = _("Job Template Details") @memoized.memoized_method
[docs] def get_object(self): j_id = self.kwargs["job_id"] try: return saharaclient.job_get(self.request, j_id) except Exception: msg = _('Unable to retrieve details for job template "%s".') % j_id redirect = reverse( "horizon:project:data_processing.jobs:jobs") exceptions.handle(self.request, msg, redirect=redirect)
[docs] def get_context_data(self, **kwargs): context = super(JobDetailsView, self).get_context_data(**kwargs) context['job'] = self.get_object() return context
[docs]class LaunchJobView(workflows.WorkflowView): workflow_class = launch_flow.LaunchJob success_url = "horizon:project:data_processing.jobs" classes = ("ajax-modal",) template_name = "project/data_processing.jobs/launch.html" page_title = _("Launch Job")
[docs] def get(self, request, *args, **kwargs): if request.is_ajax(): if request.REQUEST.get("json", None): job_id = request.REQUEST.get("job_id") job_type = saharaclient.job_get(request, job_id).type return http.HttpResponse(json.dumps({"job_type": job_type}), content_type='application/json') return super(LaunchJobView, self).get(request, args, kwargs)
[docs] def get_context_data(self, **kwargs): context = super(LaunchJobView, self).get_context_data(**kwargs) return context
[docs]class LaunchJobNewClusterView(workflows.WorkflowView): workflow_class = launch_flow.LaunchJobNewCluster success_url = "horizon:project:data_processing.jobs" classes = ("ajax-modal",) template_name = "project/data_processing.jobs/launch.html" page_title = _("Launch Job")
[docs] def get_context_data(self, **kwargs): context = super(LaunchJobNewClusterView, self).\ get_context_data(**kwargs) return context
[docs]class ChoosePluginView(workflows.WorkflowView): workflow_class = launch_flow.ChosePluginVersion success_url = "horizon:project:data_processing.jobs" classes = ("ajax-modal",) template_name = "project/data_processing.jobs/launch.html" page_title = _("Launch Job")
[docs] def get_context_data(self, **kwargs): context = super(ChoosePluginView, self).get_context_data(**kwargs) return context

Project Source