def scripts(): scheduling_form = SchedulingForm(request.form) scheduling_form.nodes.choices = Node.choices() scheduling_form.pools.choices = Pool.choices() scheduling_form.scripts.choices = Script.choices() return render_template( 'script_management.html', fields=script_public_properties, type_to_form={t: s(request.form) for t, s in type_to_form.items()}, names=pretty_names, scheduling_form=scheduling_form, scripts=Script.serialize())
def calendar(): scheduling_form = SchedulingForm(request.form) scheduling_form.scripts.choices = Script.choices() tasks = {} for task in ScheduledTask.query.all(): # javascript dates range from 0 to 11, we must account for that by # substracting 1 to the month for the date to be properly displayed in # the calendar if not task.start_date: continue python_month = search(r'.*-(\d{2})-.*', task.start_date).group(1) month = '{:02}'.format((int(python_month) - 1) % 12) js_date = [int(i) for i in sub( r"(\d+)-(\d+)-(\d+) (\d+):(\d+).*", r"\1," + month + r",\3,\4,\5", task.start_date ).split(',')] tasks[task.name] = { 'date': js_date, } return render_template( 'calendar.html', tasks=tasks, scheduling_form=scheduling_form )
def task_management(): scheduling_form = SchedulingForm(request.form) scheduling_form.scripts.choices = Script.choices() return render_template('task_management.html', fields=task_public_properties, tasks=ScheduledTask.serialize(), compare_form=CompareForm(request.form), scheduling_form=scheduling_form)
def workflow_editor(workflow_id=None): workflow_editor_form = WorkflowEditorForm(request.form) workflow_editor_form.workflow.choices = Workflow.choices() workflow = get_obj(Workflow, id=workflow_id).serialized if workflow_id else None scheduling_form = SchedulingForm(request.form) scheduling_form.scripts.choices = Script.choices() scheduling_form.nodes.choices = Node.choices() scheduling_form.pools.choices = Pool.choices() print(workflow) return render_template('workflow_editor.html', workflow_editor_form=workflow_editor_form, scheduling_form=scheduling_form, compare_form=CompareForm(request.form), names=pretty_names, workflow=workflow)
def view(view_type): add_node_form = AddNode(request.form) add_link_form = AddLink(request.form) all_nodes = Node.choices() add_link_form.source.choices = add_link_form.destination.choices = all_nodes view_options_form = ViewOptionsForm(request.form) google_earth_form = GoogleEarthForm(request.form) scheduling_form = SchedulingForm(request.form) scheduling_form.scripts.choices = Script.choices() scheduling_form.nodes.choices = all_nodes scheduling_form.pools.choices = Pool.choices() labels = {'node': 'name', 'link': 'name'} if 'view_options' in request.form: # update labels labels = { 'node': request.form['node_label'], 'link': request.form['link_label'] } # for the sake of better performances, the view defaults to markercluster # if there are more than 2000 nodes view = 'leaflet' if len(Node.query.all()) < 2000 else 'markercluster' if 'view' in request.form: view = request.form['view'] # name to id name_to_id = {node.name: id for id, node in enumerate(Node.query.all())} return render_template('{}_view.html'.format(view_type), pools=Pool.query.all(), parameters=Parameters.query.one().serialized, view=view, scheduling_form=scheduling_form, view_options_form=view_options_form, google_earth_form=google_earth_form, add_node_form=add_node_form, add_link_form=add_link_form, node_fields=node_public_properties, link_fields=link_public_properties, labels=labels, names=pretty_names, subtypes=list(node_class), name_to_id=name_to_id, nodes=Node.serialize(), links=Link.serialize())