-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added initial feedback form * Added management command to write csv to bucket. Added tests * Fixed black error * changed parameter to weeks * Fixed references to num_weeks in command * Bumped dependencies * Removed unneeded code * Feedback on feedback code * Ran migration
- Loading branch information
1 parent
bb318f1
commit 9715598
Showing
21 changed files
with
395 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Generated by Django 5.1.2 on 2024-12-03 10:35 | ||
|
||
# Third-party | ||
import django.utils.timezone | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("api", "0047_app_cloud_platform_role_arn"), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name="Feedback", | ||
fields=[ | ||
( | ||
"id", | ||
models.BigAutoField( | ||
auto_created=True, primary_key=True, serialize=False, verbose_name="ID" | ||
), | ||
), | ||
( | ||
"satisfaction_rating", | ||
models.IntegerField( | ||
choices=[ | ||
(5, "Very satisfied"), | ||
(4, "Satisfied"), | ||
(3, "Neither satisfied or dissatisfied"), | ||
(2, "Dissatisfied"), | ||
(1, "Very dissatisfied"), | ||
] | ||
), | ||
), | ||
("suggestions", models.TextField()), | ||
("date_added", models.DateTimeField(default=django.utils.timezone.now)), | ||
], | ||
options={ | ||
"db_table": "control_panel_api_feedback", | ||
}, | ||
), | ||
] |
19 changes: 19 additions & 0 deletions
19
controlpanel/api/migrations/0049_alter_feedback_suggestions.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 5.1.2 on 2024-12-10 15:29 | ||
|
||
# Third-party | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("api", "0048_feedback"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="feedback", | ||
name="suggestions", | ||
field=models.TextField(blank=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Third-party | ||
from django.db import models | ||
from django.utils import timezone | ||
|
||
|
||
class Feedback(models.Model): | ||
SATISFACTION_RATINGS = [ | ||
(5, "Very satisfied"), | ||
(4, "Satisfied"), | ||
(3, "Neither satisfied or dissatisfied"), | ||
(2, "Dissatisfied"), | ||
(1, "Very dissatisfied"), | ||
] | ||
|
||
satisfaction_rating = models.IntegerField( | ||
choices=SATISFACTION_RATINGS, | ||
null=False, | ||
blank=False, | ||
) | ||
|
||
suggestions = models.TextField(blank=True) | ||
date_added = models.DateTimeField(default=timezone.now) | ||
|
||
class Meta: | ||
db_table = "control_panel_api_feedback" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# Standard library | ||
import csv | ||
from datetime import datetime, timedelta | ||
from io import StringIO | ||
|
||
# Third-party | ||
from django.conf import settings | ||
from django.core.management.base import BaseCommand | ||
|
||
# First-party/Local | ||
from controlpanel.api.aws import AWSBucket | ||
from controlpanel.api.models import Feedback | ||
|
||
|
||
class Command(BaseCommand): | ||
help = "Writes a csv file with the feedback data to an S3 Bucket" | ||
csv_headings = ["Satisfaction Rating", "Suggestions", "Date Added"] | ||
|
||
def add_arguments(self, parser): | ||
parser.add_argument( | ||
"--weeks", | ||
"-w", | ||
type=int, | ||
default=2, | ||
help="Get feedback over an x week period from today's date", | ||
) | ||
parser.add_argument("--all", "-a", action="store_true", help="Get all feedback received") | ||
|
||
def handle(self, *args, **options): | ||
today = datetime.today() | ||
|
||
if options["all"]: | ||
feedback_items = Feedback.objects.all() | ||
else: | ||
self.stdout.write(f"weeks: {options['weeks']}") | ||
timeframe = today - timedelta(weeks=options["weeks"]) | ||
feedback_items = Feedback.objects.filter(date_added__gte=timeframe) | ||
|
||
if not feedback_items: | ||
self.stdout.write(f"No feedback found for the past {options['weeks']} weeks") | ||
return | ||
|
||
filename = f"feedback_{today}.csv" | ||
csv_buffer = StringIO() | ||
writer = csv.writer(csv_buffer, delimiter=",", quotechar="|", quoting=csv.QUOTE_MINIMAL) | ||
writer.writerow(self.csv_headings) | ||
for feedback in feedback_items: | ||
row = [ | ||
feedback.get_satisfaction_rating_display(), | ||
feedback.suggestions, | ||
feedback.date_added.date(), | ||
] | ||
writer.writerow(row) | ||
|
||
try: | ||
csv_value = csv_buffer.getvalue() | ||
bucket = AWSBucket() | ||
|
||
if not bucket.exists(settings.FEEDBACK_BUCKET_NAME): | ||
bucket.create(settings.FEEDBACK_BUCKET_NAME) | ||
|
||
bucket.write_to_bucket(settings.FEEDBACK_BUCKET_NAME, filename, csv_value) | ||
self.stdout.write(f"Feedback data written to {settings.FEEDBACK_BUCKET_NAME}") | ||
except Exception as e: | ||
self.stdout.write(f"Failed to write to S3 bucket: {e}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
{% from "error-message/macro.html" import govukErrorMessage %} | ||
{% from "label/macro.html" import govukLabel %} | ||
{% from "radios/macro.html" import govukRadios %} | ||
{% from "includes/auth0-connections-form.html" import auth0_connections_form with context %} | ||
|
||
|
||
{% extends "base.html" %} | ||
|
||
{% set page_title = "Feedback" %} | ||
|
||
{% block content %} | ||
<h1 class="govuk-heading-xl">Give feedback on the Analytical Platform</h1> | ||
|
||
|
||
<form method="post" id="feedback" action="{{ url("feedback-create") }}"> | ||
{{ csrf_input }} | ||
|
||
{{ govukRadios({ | ||
"name": "satisfaction_rating", | ||
"fieldset": { | ||
"legend": { | ||
"text": "Satisfaction survey", | ||
"classes": "govuk-fieldset__legend--l", | ||
}, | ||
}, | ||
"items": [ | ||
{ | ||
"value": 5, | ||
"text": "Very satisfied", | ||
"checked": form.satisfaction_rating.value() == "5" | ||
}, | ||
{ | ||
"value": 4, | ||
"text": "Satisfied", | ||
"checked": form.satisfaction_rating.value() == "4" | ||
}, | ||
{ | ||
"value": 3, | ||
"text": "Neither satisfied or dissatisfied", | ||
"checked": form.satisfaction_rating.value() == "3" | ||
}, | ||
{ | ||
"value": 2, | ||
"text": "Dissatisfied", | ||
"checked": form.satisfaction_rating.value() == "2" | ||
}, | ||
{ | ||
"value": 1, | ||
"text": "Very dissatisfied", | ||
"checked": form.satisfaction_rating.value() == "1" | ||
}, | ||
], | ||
"errorMessage": { "text": form.errors.get("satisfaction_rating") } if form.errors.get("satisfaction_rating") else {} | ||
}) }} | ||
|
||
|
||
|
||
<div class="govuk-form-group {%- if form.errors.get("suggestions") %} govuk-form-group--error{% endif %}"> | ||
<h2 class="govuk-label-wrapper"> | ||
<label class="govuk-label govuk-label--l" for="{{form.suggestions.id_for_label}}"> | ||
How can we improve this service? | ||
</label> | ||
</h2> | ||
<div id="more-detail-hint" class="govuk-hint"> | ||
Do not include personal or financial information, like your National Insurance number or credit card details. | ||
</div> | ||
|
||
{% if form.errors.get("suggestions") %} | ||
{{ govukErrorMessage({"text": form.errors.get("suggestions")}) }} | ||
{% endif %} | ||
|
||
<textarea class="govuk-textarea" id="{{form.suggestions.id_for_label}}" name="{{form.suggestions.html_name}}" rows="5" aria-describedby="more-detail-hint"></textarea> | ||
</div> | ||
|
||
|
||
<div class="govuk-form-group"> | ||
<button class="govuk-button">Send feedback</button> | ||
</div> | ||
</form> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{% from "error-message/macro.html" import govukErrorMessage %} | ||
{% from "includes/auth0-connections-form.html" import auth0_connections_form with context %} | ||
|
||
|
||
{% extends "base.html" %} | ||
|
||
{% set page_title = "Thank you" %} | ||
|
||
{% block content %} | ||
<h1 class="govuk-heading-xl">Thank you for your feedback</h1> | ||
<p class="govuk-body">Your feedback will help us improve the service.</p> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.