2020-02-29 22:22:38 +00:00
|
|
|
import io
|
|
|
|
import json
|
|
|
|
|
|
|
|
import connexion
|
2020-07-22 15:30:16 +00:00
|
|
|
from SpiffWorkflow.bpmn.PythonScriptEngine import PythonScriptEngine
|
2020-02-29 22:22:38 +00:00
|
|
|
from flask import send_file
|
|
|
|
from jinja2 import Template, UndefinedError
|
|
|
|
|
2020-03-03 20:30:42 +00:00
|
|
|
from crc.api.common import ApiError
|
2020-03-03 18:50:22 +00:00
|
|
|
from crc.scripts.complete_template import CompleteTemplate
|
2020-03-03 20:30:42 +00:00
|
|
|
from crc.scripts.script import Script
|
|
|
|
import crc.scripts
|
2020-06-08 18:15:56 +00:00
|
|
|
from crc.services.mails import send_test_email
|
2020-07-22 15:30:16 +00:00
|
|
|
from crc.services.workflow_processor import WorkflowProcessor
|
2020-06-08 18:15:56 +00:00
|
|
|
|
2020-02-29 22:22:38 +00:00
|
|
|
|
|
|
|
def render_markdown(data, template):
|
|
|
|
"""
|
2020-06-18 18:53:50 +00:00
|
|
|
Provides a quick way to very that a Jinja markdown template will work properly on a given json
|
2020-02-29 22:22:38 +00:00
|
|
|
data structure. Useful for folks that are building these markdown templates.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
template = Template(template)
|
|
|
|
data = json.loads(data)
|
|
|
|
return template.render(**data)
|
|
|
|
except UndefinedError as ue:
|
2020-06-03 19:03:22 +00:00
|
|
|
raise ApiError(code="undefined_field", message=ue.message)
|
2020-02-29 22:22:38 +00:00
|
|
|
except Exception as e:
|
2020-06-03 19:03:22 +00:00
|
|
|
raise ApiError(code="invalid_render", message=str(e))
|
2020-02-29 22:22:38 +00:00
|
|
|
|
|
|
|
|
2020-05-22 19:30:22 +00:00
|
|
|
def render_docx():
|
2020-02-29 22:22:38 +00:00
|
|
|
"""
|
|
|
|
Provides a quick way to verify that a Jinja docx template will work properly on a given json
|
|
|
|
data structure. Useful for folks that are building these templates.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
file = connexion.request.files['file']
|
2020-05-22 19:30:22 +00:00
|
|
|
data = connexion.request.form['data']
|
2020-02-29 22:22:38 +00:00
|
|
|
target_stream = CompleteTemplate().make_template(file, json.loads(data))
|
|
|
|
return send_file(
|
|
|
|
io.BytesIO(target_stream.read()),
|
|
|
|
as_attachment=True,
|
|
|
|
attachment_filename="output.docx",
|
|
|
|
mimetype="application/octet-stream",
|
|
|
|
cache_timeout=-1 # Don't cache these files on the browser.
|
|
|
|
)
|
|
|
|
except ValueError as e:
|
2020-06-03 19:03:22 +00:00
|
|
|
raise ApiError(code="undefined_field", message=str(e))
|
2020-02-29 22:22:38 +00:00
|
|
|
except Exception as e:
|
2020-06-03 19:03:22 +00:00
|
|
|
raise ApiError(code="invalid_render", message=str(e))
|
2020-03-03 20:30:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
def list_scripts():
|
|
|
|
"""Provides a list of scripts that can be called by a script task."""
|
|
|
|
scripts = Script.get_all_subclasses()
|
|
|
|
script_meta = []
|
|
|
|
for script_class in scripts:
|
|
|
|
script_meta.append(
|
|
|
|
{
|
|
|
|
"name": script_class.__name__,
|
|
|
|
"description": script_class().get_description()
|
|
|
|
})
|
|
|
|
return script_meta
|
|
|
|
|
2020-07-21 17:57:33 +00:00
|
|
|
|
2020-06-08 18:15:56 +00:00
|
|
|
def send_email(address):
|
|
|
|
"""Just sends a quick test email to assure the system is working."""
|
|
|
|
if not address:
|
|
|
|
address = "dan@sartography.com"
|
2020-06-25 22:18:42 +00:00
|
|
|
return send_test_email(address, [address])
|
2020-07-21 17:57:33 +00:00
|
|
|
|
|
|
|
|
2020-07-22 15:30:16 +00:00
|
|
|
def evaluate_python_expression(expression, body):
|
2020-07-21 17:57:33 +00:00
|
|
|
"""Evaluate the given python expression, returning it's result. This is useful if the
|
|
|
|
front end application needs to do real-time processing on task data. If for instance
|
|
|
|
there is a hide expression that is based on a previous value in the same form."""
|
|
|
|
try:
|
2020-07-22 15:40:49 +00:00
|
|
|
# fixme: The script engine should be pulled from Workflow Processor,
|
|
|
|
# but the one it returns overwrites the evaluate expression making it uncallable.
|
2020-07-22 15:30:16 +00:00
|
|
|
script_engine = PythonScriptEngine()
|
|
|
|
return script_engine.evaluate(expression, **body)
|
2020-07-21 17:57:33 +00:00
|
|
|
except Exception as e:
|
|
|
|
raise ApiError("expression_error", str(e))
|