deb-sahara-dashboard/sahara_dashboard/content/data_processing/jobs/job_templates/workflows/create.py

284 lines
10 KiB
Python

# 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
from django.utils.translation import ugettext_lazy as _
from horizon import exceptions
from horizon import forms
from horizon.forms import fields
from horizon import workflows
from sahara_dashboard.content.data_processing \
.utils import helpers
from sahara_dashboard.content.data_processing.utils \
import acl as acl_utils
import sahara_dashboard.content.data_processing \
.utils.workflow_helpers as whelpers
from sahara_dashboard.api import sahara as saharaclient
JOB_BINARY_CREATE_URL = ("horizon:project:data_processing.jobs"
":create-job-binary")
class AdditionalLibsAction(workflows.Action):
lib_binaries = forms.DynamicChoiceField(
label=_("Choose libraries"),
required=False,
add_item_link=JOB_BINARY_CREATE_URL,
widget=forms.Select(
attrs={
'class': 'switched',
'data-switch-on': 'jobtype',
'data-jobtype-pig': _("Choose libraries"),
'data-jobtype-hive': _("Choose libraries"),
'data-jobtype-shell': _("Choose additional files"),
'data-jobtype-spark': _("Choose libraries"),
'data-jobtype-java': _("Choose libraries"),
'data-jobtype-mapreduce': _("Choose libraries"),
'data-jobtype-mapreduce.streaming': _("Choose libraries")
}))
lib_ids = forms.CharField(
required=False,
widget=forms.HiddenInput())
def populate_lib_binaries_choices(self, request, context):
job_binaries = saharaclient.job_binary_list(request)
choices = [(job_binary.id, job_binary.name)
for job_binary in job_binaries]
choices.insert(0, ('', _("-- not selected --")))
return choices
class Meta(object):
name = _("Libs")
help_text_template = "job_templates/_create_job_libs_help.html"
class GeneralConfigAction(workflows.Action):
job_name = forms.CharField(label=_("Name"))
job_type = forms.ChoiceField(label=_("Job Type"),
widget=forms.Select(attrs={
'class': 'switchable',
'data-slug': 'jobtype'
}))
main_binary = forms.DynamicChoiceField(
label=_("Choose a main binary"),
required=False,
help_text=_("Choose the binary which "
"should be used in this Job."),
add_item_link=JOB_BINARY_CREATE_URL,
widget=fields.DynamicSelectWidget(
attrs={
'class': 'switched',
'data-switch-on': 'jobtype',
'data-jobtype-pig': _("Choose a main binary"),
'data-jobtype-hive': _("Choose a main binary"),
'data-jobtype-shell': _("Choose a shell script"),
'data-jobtype-spark': _("Choose a main binary"),
'data-jobtype-storm': _("Choose a main binary"),
'data-jobtype-storm.pyleus': _("Choose a main binary"),
'data-jobtype-mapreduce.streaming': _("Choose a main binary")
}))
job_description = forms.CharField(label=_("Description"),
required=False,
widget=forms.Textarea(attrs={'rows': 4}))
is_public = acl_utils.get_is_public_form(_("job"))
is_protected = acl_utils.get_is_protected_form(_("job"))
def __init__(self, request, context, *args, **kwargs):
super(GeneralConfigAction,
self).__init__(request, context, *args, **kwargs)
req = request.GET or request.POST
if req.get("guide_job_type"):
self.fields["job_type"].initial = (
req.get("guide_job_type").lower())
def populate_job_type_choices(self, request, context):
choices = []
choices_list = saharaclient.job_types_list(request)
for choice in choices_list:
job_type = choice.name.lower()
if job_type in helpers.JOB_TYPE_MAP:
choices.append((job_type, helpers.JOB_TYPE_MAP[job_type][0]))
return choices
def populate_main_binary_choices(self, request, context):
job_binaries = saharaclient.job_binary_list(request)
choices = [(job_binary.id, job_binary.name)
for job_binary in job_binaries]
choices.insert(0, ('', _("-- not selected --")))
return choices
def clean(self):
cleaned_data = super(workflows.Action, self).clean()
job_type = cleaned_data.get("job_type", "")
if job_type in ["Java", "MapReduce"]:
cleaned_data['main_binary'] = None
return cleaned_data
class Meta(object):
name = _("Create Job Template")
help_text_template = "job_templates/_create_job_help.html"
class ConfigureInterfaceArgumentsAction(workflows.Action):
hidden_arguments_field = forms.CharField(
required=False,
widget=forms.HiddenInput(attrs={"class": "hidden_arguments_field"}))
argument_ids = forms.CharField(
required=False,
widget=forms.HiddenInput())
def __init__(self, request, *args, **kwargs):
super(ConfigureInterfaceArgumentsAction, self).__init__(
request, *args, **kwargs)
req = request.GET or request.POST
if 'argument_ids' in req:
self.arguments = []
for id in json.loads(req['argument_ids']):
fields = {
"name": "argument_name_" + str(id),
"description": "argument_description_" + str(id),
"mapping_type": "argument_mapping_type_" + str(id),
"location": "argument_location_" + str(id),
"value_type": "argument_value_type_" + str(id),
"default_value": "argument_default_value_" + str(id)}
argument = {k: req[v]
for k, v in fields.items()}
required_field = "argument_required_" + str(id)
fields.update({"required": required_field})
argument.update(
{"required": required_field in req})
self.arguments.append(argument)
whelpers.build_interface_argument_fields(self, **fields)
def clean(self):
cleaned_data = super(ConfigureInterfaceArgumentsAction, self).clean()
return cleaned_data
class Meta(object):
name = _("Interface Arguments")
class ConfigureArguments(workflows.Step):
action_class = ConfigureInterfaceArgumentsAction
contributes = ("hidden_arguments_field", )
template_name = "job_templates/job_interface_arguments_template.html"
def contribute(self, data, context):
for k, v in data.items():
context[k] = v
return context
class GeneralConfig(workflows.Step):
action_class = GeneralConfigAction
contributes = ("job_name", "job_type", "job_description", "main_binary")
def contribute(self, data, context):
for k, v in data.items():
if k == "job_type":
context[k] = helpers.JOB_TYPE_MAP[v][1]
else:
context[k] = v
return context
class ConfigureLibs(workflows.Step):
action_class = AdditionalLibsAction
template_name = "job_templates/library_template.html"
def contribute(self, data, context):
chosen_libs = json.loads(data.get("lib_ids", '[]'))
for index, library in enumerate(chosen_libs):
context["lib_%s" % index] = library
return context
class CreateJob(workflows.Workflow):
slug = "create_job"
name = _("Create Job Template")
finalize_button_name = _("Create")
success_message = _("Job created")
failure_message = _("Could not create job template")
success_url = "horizon:project:data_processing.jobs:index"
default_steps = (GeneralConfig, ConfigureLibs, ConfigureArguments)
def handle(self, request, context):
main_locations = []
lib_locations = []
for k in context.keys():
if k.startswith('lib_'):
lib_locations.append(context.get(k))
if context.get("main_binary", None):
job_type = context.get("job_type", None)
if job_type not in ["Java", "MapReduce"]:
main_locations.append(context["main_binary"])
argument_ids = json.loads(context['argument_ids'])
interface = [
{
"name": context['argument_name_' + str(arg_id)],
"description": (context['argument_description_' + str(arg_id)]
or None),
"mapping_type": context['argument_mapping_type_'
+ str(arg_id)],
"location": context['argument_location_' + str(arg_id)],
"value_type": context['argument_value_type_' + str(arg_id)],
"required": context['argument_required_' + str(arg_id)],
"default": (context['argument_default_value_' + str(arg_id)]
or None)
} for arg_id in argument_ids
]
try:
job = saharaclient.job_create(
request,
context["job_name"],
context["job_type"],
main_locations,
lib_locations,
context["job_description"],
interface=interface,
is_public=context['is_public'],
is_protected=context['is_protected']
)
hlps = helpers.Helpers(request)
if hlps.is_from_guide():
request.session["guide_job_id"] = job.id
request.session["guide_job_type"] = context["job_type"]
request.session["guide_job_name"] = context["job_name"]
self.success_url = (
"horizon:project:data_processing.wizard:jobex_guide")
return True
except Exception:
exceptions.handle(request)
return False