-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(stats): déplacer la vue StatistiquesPageView (#654)
## Description 🎸 Pour préparer l'ajout de futures pages de statistiques, déplacement de la vue `StatistiquesPageView` dans l'application `forum_stats` ## Type de changement 🚧 technique
- Loading branch information
1 parent
7cc5d14
commit cf9bc6e
Showing
12 changed files
with
197 additions
and
177 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
Empty file.
File renamed without changes.
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,112 @@ | ||
from django.test import TestCase | ||
from django.urls import reverse | ||
from django.utils import timezone | ||
from django.utils.dateformat import format | ||
from django.utils.timezone import localdate | ||
from faker import Faker | ||
from machina.core.loading import get_class | ||
|
||
from lacommunaute.forum_stats.enums import Period | ||
from lacommunaute.forum_stats.factories import StatFactory | ||
from lacommunaute.utils.math import percent | ||
|
||
|
||
faker = Faker() | ||
assign_perm = get_class("forum_permission.shortcuts", "assign_perm") | ||
|
||
|
||
class StatistiquesPageTest(TestCase): | ||
def test_context_data(self): | ||
url = reverse("forum_stats:statistiques") | ||
date = timezone.now() | ||
names = ["nb_uniq_engaged_visitors", "nb_uniq_visitors", "nb_uniq_active_visitors"] | ||
for name in names: | ||
StatFactory(name=name, date=date) | ||
undesired_period_stat = StatFactory( | ||
period=Period.WEEK, date=date - timezone.timedelta(days=7), name="nb_uniq_engaged_visitors" | ||
) | ||
undesired_date_stat = StatFactory( | ||
period=Period.DAY, date=date - timezone.timedelta(days=91), name="nb_uniq_engaged_visitors" | ||
) | ||
|
||
response = self.client.get(url) | ||
self.assertEqual(response.status_code, 200) | ||
self.assertTemplateUsed(response, "forum_stats/statistiques.html") | ||
|
||
# expected values | ||
self.assertIn("stats", response.context) | ||
self.assertIn("date", response.context["stats"]) | ||
self.assertIn("nb_uniq_engaged_visitors", response.context["stats"]) | ||
self.assertIn("nb_uniq_visitors", response.context["stats"]) | ||
self.assertIn("nb_uniq_active_visitors", response.context["stats"]) | ||
self.assertEqual(response.context["stats"]["date"][0], date.strftime("%Y-%m-%d")) | ||
|
||
# undesired values | ||
self.assertNotIn(undesired_period_stat.date.strftime("%Y-%m-%d"), response.context["stats"]["date"]) | ||
self.assertNotIn(undesired_date_stat.date.strftime("%Y-%m-%d"), response.context["stats"]["date"]) | ||
|
||
def test_month_datas_in_context(self): | ||
today = localdate() | ||
url = reverse("forum_stats:statistiques") | ||
|
||
# no data | ||
response = self.client.get(url) | ||
self.assertEqual(response.status_code, 200) | ||
self.assertEqual(response.context["period"], None) | ||
self.assertEqual(response.context["nb_uniq_visitors"], 0) | ||
self.assertEqual(response.context["nb_uniq_active_visitors"], 0) | ||
self.assertEqual(response.context["nb_uniq_engaged_visitors"], 0) | ||
self.assertEqual(response.context["activation_percent"], 0) | ||
self.assertEqual(response.context["engagement_percent"], 0) | ||
|
||
# undesired data | ||
StatFactory(name="nb_uniq_engaged_visitors", period=Period.DAY, date=today) | ||
StatFactory(name=faker.word(), period=Period.MONTH, date=today) | ||
response = self.client.get(url) | ||
self.assertEqual(response.status_code, 200) | ||
self.assertEqual(response.context["period"], None) | ||
self.assertEqual(response.context["nb_uniq_visitors"], 0) | ||
self.assertEqual(response.context["nb_uniq_active_visitors"], 0) | ||
self.assertEqual(response.context["nb_uniq_engaged_visitors"], 0) | ||
self.assertEqual(response.context["activation_percent"], 0) | ||
self.assertEqual(response.context["engagement_percent"], 0) | ||
|
||
uniq_visitors = StatFactory(name="nb_uniq_visitors", period=Period.MONTH, date=today) | ||
uniq_active_visitors = StatFactory(name="nb_uniq_active_visitors", period=Period.MONTH, date=today) | ||
uniq_engaged_visitors = StatFactory(name="nb_uniq_engaged_visitors", period=Period.MONTH, date=today) | ||
response = self.client.get(url) | ||
self.assertEqual(response.status_code, 200) | ||
self.assertEqual(response.context["period"], format(today, "F Y")) | ||
self.assertEqual(response.context["nb_uniq_visitors"], uniq_visitors.value) | ||
self.assertEqual(response.context["nb_uniq_active_visitors"], uniq_active_visitors.value) | ||
self.assertEqual(response.context["nb_uniq_engaged_visitors"], uniq_engaged_visitors.value) | ||
self.assertEqual( | ||
response.context["activation_percent"], percent(uniq_active_visitors.value, uniq_visitors.value) | ||
) | ||
self.assertEqual( | ||
response.context["engagement_percent"], percent(uniq_engaged_visitors.value, uniq_active_visitors.value) | ||
) | ||
|
||
def test_impact_in_context_data(self): | ||
url = reverse("forum_stats:statistiques") | ||
today = localdate() | ||
empty_res = {"date": [], "nb_uniq_visitors_returning": []} | ||
|
||
# no data | ||
response = self.client.get(url) | ||
self.assertEqual(response.status_code, 200) | ||
self.assertEqual(response.context["impact"], empty_res) | ||
|
||
# undesired data | ||
StatFactory(name="nb_uniq_visitors_returning", period=Period.DAY, date=today) | ||
StatFactory(name=faker.word(), period=Period.MONTH, date=today) | ||
response = self.client.get(url) | ||
self.assertEqual(response.status_code, 200) | ||
self.assertEqual(response.context["impact"], empty_res) | ||
|
||
# desired data | ||
StatFactory(name="nb_uniq_visitors_returning", period=Period.MONTH, date=today, value=1) | ||
response = self.client.get(url) | ||
self.assertEqual(response.status_code, 200) | ||
self.assertEqual(response.context["impact"]["date"][0], today.strftime("%Y-%m-%d")) | ||
self.assertEqual(response.context["impact"]["nb_uniq_visitors_returning"][0], 1) |
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,8 @@ | ||
from django.urls import path | ||
|
||
from lacommunaute.forum_stats.views import StatistiquesPageView | ||
|
||
|
||
app_name = "forum_stats" | ||
|
||
urlpatterns = [path("", StatistiquesPageView.as_view(), name="statistiques")] |
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,73 @@ | ||
import logging | ||
|
||
from django.db.models import CharField | ||
from django.db.models.functions import Cast | ||
from django.utils import timezone | ||
from django.utils.dateformat import format | ||
from django.views.generic.base import TemplateView | ||
|
||
from lacommunaute.forum_stats.models import Stat | ||
from lacommunaute.utils.json import extract_values_in_list | ||
from lacommunaute.utils.math import percent | ||
|
||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class StatistiquesPageView(TemplateView): | ||
template_name = "forum_stats/statistiques.html" | ||
|
||
def get_funnel_data(self): | ||
qs = Stat.objects.current_month_datas() | ||
|
||
stats = { | ||
"period": None, | ||
"nb_uniq_visitors": 0, | ||
"nb_uniq_active_visitors": 0, | ||
"nb_uniq_engaged_visitors": 0, | ||
} | ||
|
||
if qs.filter(name="nb_uniq_visitors").exists(): | ||
stats["period"] = format(qs.get(name="nb_uniq_visitors")["date"], "F Y") | ||
stats["nb_uniq_visitors"] = qs.get(name="nb_uniq_visitors")["value"] | ||
|
||
if qs.filter(name="nb_uniq_active_visitors").exists(): | ||
stats["nb_uniq_active_visitors"] = qs.get(name="nb_uniq_active_visitors")["value"] | ||
|
||
if qs.filter(name="nb_uniq_engaged_visitors").exists(): | ||
stats["nb_uniq_engaged_visitors"] = qs.get(name="nb_uniq_engaged_visitors")["value"] | ||
|
||
stats["activation_percent"] = percent(stats["nb_uniq_active_visitors"], stats["nb_uniq_visitors"]) | ||
stats["engagement_percent"] = percent(stats["nb_uniq_engaged_visitors"], stats["nb_uniq_active_visitors"]) | ||
return stats | ||
|
||
def get_daily_stats(self): | ||
indicator_names = [ | ||
"nb_uniq_visitors", | ||
"nb_uniq_active_visitors", | ||
"nb_uniq_engaged_visitors", | ||
] | ||
after_date = timezone.now() - timezone.timedelta(days=90) | ||
datas = ( | ||
Stat.objects.filter(period="day", name__in=indicator_names, date__gte=after_date) | ||
.values("name", "value") | ||
.annotate(date=Cast("date", CharField())) | ||
) | ||
return extract_values_in_list(datas, indicator_names) | ||
|
||
def get_monthly_visitors(self): | ||
indicator_names = ["nb_uniq_visitors_returning"] | ||
datas = ( | ||
Stat.objects.filter(period="month", name__in=indicator_names) | ||
.values("name", "value") | ||
.annotate(date=Cast("date", CharField())) | ||
) | ||
return extract_values_in_list(datas, indicator_names) | ||
|
||
def get_context_data(self, **kwargs): | ||
context = super().get_context_data(**kwargs) | ||
context["stats"] = self.get_daily_stats() | ||
context["impact"] = self.get_monthly_visitors() | ||
context = {**context, **self.get_funnel_data()} | ||
|
||
return context |
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.