diff mbox series

[buildroot-test,2/2] web/index.php: allow filtering by date

Message ID 20190813070822.30230-3-victor.huesca@bootlin.com
State Accepted
Headers show
Series add support to filter build results by date | expand

Commit Message

Victor Huesca Aug. 13, 2019, 7:08 a.m. UTC
This patch provide a way to pass a date as part of the filter. This date
can be either a single date or a couple 'start and end' dates as an
associative array to cover every case:

Example: "date[from]=2019-03-03&date[to]=2019-07-21"

Signed-off-by: Victor Huesca <victor.huesca@bootlin.com>
---
 web/index.php | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/web/index.php b/web/index.php
index 939cac5..0c79aa6 100644
--- a/web/index.php
+++ b/web/index.php
@@ -59,6 +59,9 @@  if (isset($_GET['subarch']) && preg_match("/^[A-Za-z0-9_\+\.\-]*$/", $_GET['suba
 if (isset ($_GET['submitter']))
   $filters["submitter"] = urldecode($_GET['submitter']);
 
+if (isset($_GET['date']))
+  $filters["date"] = $_GET['date'];
+
 bab_header("Buildroot tests");
 
 echo "<table>\n";