2016-04-26 10:32:26 +01:00
|
|
|
|
import requests
|
|
|
|
|
|
from flask import render_template, url_for, redirect, flash, current_app, abort
|
2016-12-12 11:31:26 +00:00
|
|
|
|
from flask_login import current_user
|
2016-04-26 10:32:26 +01:00
|
|
|
|
from app.main import main
|
2016-12-12 11:35:23 +00:00
|
|
|
|
from app.main.forms import SupportType, Support
|
2016-04-26 10:32:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
2016-12-12 11:18:25 +00:00
|
|
|
|
@main.route('/support', methods=['GET', 'POST'])
|
|
|
|
|
|
def support():
|
2016-12-12 11:25:43 +00:00
|
|
|
|
form = SupportType()
|
|
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
return redirect(url_for(
|
|
|
|
|
|
'.feedback',
|
|
|
|
|
|
ticket_type=form.support_type.data,
|
|
|
|
|
|
))
|
|
|
|
|
|
return render_template('views/support/index.html', form=form)
|
2016-12-12 11:18:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
2016-12-12 11:25:43 +00:00
|
|
|
|
@main.route('/support/contact/<ticket_type>', methods=['GET', 'POST'])
|
|
|
|
|
|
def feedback(ticket_type):
|
|
|
|
|
|
if ticket_type not in ['problem', 'question']:
|
|
|
|
|
|
abort(404)
|
2016-12-12 11:35:23 +00:00
|
|
|
|
form = Support()
|
2016-04-26 10:32:26 +01:00
|
|
|
|
if form.validate_on_submit():
|
2016-12-12 11:31:26 +00:00
|
|
|
|
if current_user.is_authenticated:
|
|
|
|
|
|
user_email = current_user.email_address
|
|
|
|
|
|
user_name = current_user.name
|
|
|
|
|
|
else:
|
|
|
|
|
|
user_email = form.email_address.data
|
|
|
|
|
|
user_name = form.name.data or None
|
2016-08-04 18:01:08 +01:00
|
|
|
|
feedback_msg = 'Environment: {}\n{}\n{}'.format(
|
|
|
|
|
|
url_for('main.index', _external=True),
|
2016-12-12 11:31:26 +00:00
|
|
|
|
'' if user_email else '{} (no email address supplied)'.format(form.name.data),
|
2016-08-04 18:01:08 +01:00
|
|
|
|
form.feedback.data
|
|
|
|
|
|
)
|
2016-04-26 10:32:26 +01:00
|
|
|
|
data = {
|
2016-12-12 11:31:26 +00:00
|
|
|
|
'person_email': user_email or current_app.config.get('DESKPRO_PERSON_EMAIL'),
|
|
|
|
|
|
'person_name': user_name,
|
2016-05-18 15:03:23 +01:00
|
|
|
|
'department_id': current_app.config.get('DESKPRO_DEPT_ID'),
|
2016-05-20 15:58:20 +01:00
|
|
|
|
'agent_team_id': current_app.config.get('DESKPRO_ASSIGNED_AGENT_TEAM_ID'),
|
2016-04-26 10:32:26 +01:00
|
|
|
|
'subject': 'Notify feedback',
|
2016-12-12 11:25:43 +00:00
|
|
|
|
'message': feedback_msg,
|
|
|
|
|
|
'label': ticket_type,
|
2016-04-26 10:32:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
headers = {
|
|
|
|
|
|
"X-DeskPRO-API-Key": current_app.config.get('DESKPRO_API_KEY'),
|
|
|
|
|
|
'Content-Type': "application/x-www-form-urlencoded"
|
|
|
|
|
|
}
|
|
|
|
|
|
resp = requests.post(
|
|
|
|
|
|
current_app.config.get('DESKPRO_API_HOST') + '/api/tickets',
|
|
|
|
|
|
data=data,
|
|
|
|
|
|
headers=headers)
|
|
|
|
|
|
if resp.status_code != 201:
|
|
|
|
|
|
current_app.logger.error(
|
|
|
|
|
|
"Deskpro create ticket request failed with {} '{}'".format(
|
|
|
|
|
|
resp.status_code,
|
|
|
|
|
|
resp.json())
|
|
|
|
|
|
)
|
|
|
|
|
|
abort(500, "Feedback submission failed")
|
2016-05-20 15:58:20 +01:00
|
|
|
|
flash("Thanks, we’ve received your feedback", 'default_with_tick')
|
2016-12-12 11:25:43 +00:00
|
|
|
|
return redirect(url_for('.support', ticket_type=ticket_type))
|
2016-04-26 10:32:26 +01:00
|
|
|
|
|
2016-12-12 11:25:43 +00:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/support/{}.html'.format(ticket_type),
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
ticket_type=ticket_type
|
|
|
|
|
|
)
|