diff mbox series

[v3,5/5] views: Add support for boolean 'series' parameters

Message ID 20180921175105.18000-6-stephen@that.guru
State Changes Requested
Headers show
Series Convert Series-Patch relationship to 1:N | expand

Commit Message

Stephen Finucane Sept. 21, 2018, 5:51 p.m. UTC
Previously, we allowed users to download patch mboxes with dependencies
included using a 'series' parameter. This accepted either a numeric ID,
corresponding to the ID of the patch series that dependencies should be
included from, or a wildcard value ('*').

    /patch/{patchID}/mbox/?series=123
    /patch/{patchID}/mbox/?series=*

With switch to a 1:N series-patch relationship, this is clearly
unnecessary now but must be retained to avoid breaking users. However,
that doesn't mean we can't things a little clearer. Add support for
boolean parameters, which make more sense for this kind of relationship:

  /patch/{patchID}/mbox/?series=true
  /patch/{patchID}/mbox/?series=1
  /patch/{patchID}/mbox/?series=false
  /patch/{patchID}/mbox/?series=0

Signed-off-by: Stephen Finucane <stephen@that.guru>
---
TODO: I'm not sure if I should do this or introduce a new parameter
(maybe 'dependencies'?). Thoughts?
---
 patchwork/tests/test_mboxviews.py | 17 +++++++++++++++++
 patchwork/views/patch.py          |  2 +-
 patchwork/views/utils.py          |  2 +-
 3 files changed, 19 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/patchwork/tests/test_mboxviews.py b/patchwork/tests/test_mboxviews.py
index 5c29226b..8f6a51f2 100644
--- a/patchwork/tests/test_mboxviews.py
+++ b/patchwork/tests/test_mboxviews.py
@@ -223,6 +223,23 @@  class MboxSeriesDependencies(TestCase):
         self.assertContains(response, patch_a.content)
         self.assertContains(response, patch_b.content)
 
+    def test_patch_with_boolean_series(self):
+        _, patch_a, patch_b = self._create_patches()
+
+        for value in ('true', '1'):
+            response = self.client.get('%s?series=%s' % (
+                reverse('patch-mbox', args=[patch_b.id]), value))
+
+            self.assertContains(response, patch_a.content)
+            self.assertContains(response, patch_b.content)
+
+        for value in ('false', '0'):
+            response = self.client.get('%s?series=%s' % (
+                reverse('patch-mbox', args=[patch_b.id]), value))
+
+            self.assertNotContains(response, patch_a.content)
+            self.assertContains(response, patch_b.content)
+
     def test_patch_with_invalid_series(self):
         series, patch_a, patch_b = self._create_patches()
 
diff --git a/patchwork/views/patch.py b/patchwork/views/patch.py
index 277b2816..446a0c4b 100644
--- a/patchwork/views/patch.py
+++ b/patchwork/views/patch.py
@@ -130,7 +130,7 @@  def patch_mbox(request, patch_id):
     series_id = request.GET.get('series')
 
     response = HttpResponse(content_type='text/plain')
-    if series_id:
+    if series_id and series_id.lower() not in ('false', '0'):
         if not patch.series:
             raise Http404('Patch does not have an associated series. This is '
                           'because the patch was processed with an older '
diff --git a/patchwork/views/utils.py b/patchwork/views/utils.py
index 3c5d2982..d6f54ea6 100644
--- a/patchwork/views/utils.py
+++ b/patchwork/views/utils.py
@@ -127,7 +127,7 @@  def series_patch_to_mbox(patch, series_id):
     Returns:
         A string for the mbox file.
     """
-    if series_id != '*':
+    if series_id.lower() not in ('*', 'true', '1'):
         try:
             series_id = int(series_id)
         except ValueError: