Merge branch 'feature/pages/all-runs'

This commit is contained in:
Jeroen De Meerleer 2018-08-31 13:38:57 +02:00
commit 0a664a8a76
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
4 changed files with 15 additions and 4 deletions

View File

@ -69,7 +69,7 @@ if (filter_var($jobnameResult[0]["url"], FILTER_VALIDATE_URL)) {
}
}
}
if($nosave !== true && $statuscode != $jobnameResult[0]["expected"]) {
if($nosave !== true) {
$stmt = $db->prepare("INSERT INTO runs(job, statuscode, result, timestamp) VALUES(?, ?, ?, ?)");
$stmt->execute(array($jobID, $statuscode, $body, $timestamp));
}

View File

@ -35,7 +35,13 @@ if ($jobnameResult[0]["user"] != $_SESSION["userID"]) {
}
$jobName = $jobnameResult[0]['name'];
$runsForJob = $db->prepare("SELECT runs.*, jobs.name FROM runs, jobs WHERE runs.job = jobs.jobID AND runs.job = ?");
$runsForJobQry = "SELECT runs.*, jobs.name FROM runs, jobs WHERE runs.job = jobs.jobID AND runs.job = ?";
$allruns = true;
if(!(isset($_GET['allruns']) && $_GET['allruns'] == 1)) {
$runsForJobQry .= " AND runs.statuscode <> jobs.expected";
$allruns = false;
}
$runsForJob = $db->prepare($runsForJobQry);
$runsForJob->execute(array($_GET['jobID']));
$runsForJobResult = $runsForJob->fetchAll(PDO::FETCH_ASSOC);
@ -55,7 +61,7 @@ foreach($runsForJobResult as $key=>$value) {
$count++;
}
$twig_vars = array('runs' => $runsForJobRendered, "title" => $jobName);
$twig_vars = array('jobID' => $_GET['jobID'], 'runs' => $runsForJobRendered, 'allruns' => $allruns, "title" => $jobName);
//echo $twig->render('overview.html.twig', array('the' => 'variables', 'go' => 'here'));
echo $twig->render('runs.html.twig', $twig_vars);

View File

@ -2,6 +2,11 @@
{% block title %}Overview of run for {{ title }}{% endblock %}
{% block content %}
<h2>Overview of runs for {{ title }}</h2>
{% if allruns %}
<p><a href="runs.php?jobID={{ jobID }}&allruns=0">Only show failed runs</a></p>
{% elseif not allruns %}
<p><a href="runs.php?jobID={{ jobID }}&allruns=1">Show all runs</a></p>
{% endif %}
<div id="accordion" class="panel-group">
{% for run in runs %}
<div class="panel panel-default">

View File

@ -92,7 +92,7 @@ foreach ($results as $result) {
}
}
if($nosave !== true && $statuscode != $result["expected"]) {
if($nosave !== true) {
$stmt = $db->prepare("INSERT INTO runs(job, statuscode, result, timestamp) VALUES(?, ?, ?, ?)");
$stmt->execute(array($result['jobID'], $statuscode, $body, time()));
}