forked from Kitware/CDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewUpdate.php
331 lines (289 loc) · 10.8 KB
/
viewUpdate.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<?php
/*=========================================================================
Program: CDash - Cross-Platform Dashboard System
Module: $Id$
Language: PHP
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
$noforcelogin = 1;
include("cdash/config.php");
require_once("cdash/pdo.php");
include('login.php');
include_once("cdash/common.php");
include_once("cdash/repository.php");
include("cdash/version.php");
require_once("cdash/bugurl.php");
@$buildid = $_GET["buildid"];
if ($buildid != NULL)
{
$buildid = pdo_real_escape_numeric($buildid);
}
@$date = $_GET["date"];
if ($date != NULL)
{
$date = htmlspecialchars(pdo_real_escape_string($date));
}
// Checks
if(!isset($buildid) || !is_numeric($buildid))
{
echo "Not a valid buildid!";
return;
}
$db = pdo_connect("$CDASH_DB_HOST", "$CDASH_DB_LOGIN","$CDASH_DB_PASS");
pdo_select_db("$CDASH_DB_NAME",$db);
$build_array = pdo_fetch_array(pdo_query("SELECT * FROM build WHERE id='$buildid'"));
$projectid = $build_array["projectid"];
checkUserPolicy(@$_SESSION['cdash']['loginid'],$projectid);
$project = pdo_query("SELECT cvsurl,name,nightlytime,bugtrackerfileurl,bugtrackerurl
FROM project WHERE id='$projectid'");
if(pdo_num_rows($project)>0)
{
$project_array = pdo_fetch_array($project);
$svnurl = $project_array["cvsurl"];
$projectname = $project_array["name"];
}
else
{
echo "This build doesn't exist. Maybe it has been deleted.";
return;
}
$xml = begin_XML_for_XSLT();
$xml .= "<title>CDash : ".$projectname."</title>";
$siteid = $build_array["siteid"];
$buildtype = $build_array["type"];
$buildname = $build_array["name"];
$starttime = $build_array["starttime"];
$date = get_dashboard_date_from_build_starttime($build_array["starttime"],$project_array["nightlytime"]);
// Menu
$xml .= "<menu>";
$xml .= add_XML_value("back","index.php?project=".urlencode($projectname)."&date=".$date);
$previousbuildid = get_previous_buildid($projectid,$siteid,$buildtype,$buildname,$starttime);
if($previousbuildid>0)
{
$xml .= add_XML_value("previous","viewUpdate.php?buildid=".$previousbuildid);
}
else
{
$xml .= add_XML_value("noprevious","1");
}
$xml .= add_XML_value("current","viewUpdate.php?buildid=".get_last_buildid($projectid,$siteid,$buildtype,$buildname,$starttime));
$nextbuildid = get_next_buildid($projectid,$siteid,$buildtype,$buildname,$starttime);
if($nextbuildid>0)
{
$xml .= add_XML_value("next","viewUpdate.php?buildid=".$nextbuildid);
}
else
{
$xml .= add_XML_value("nonext","1");
}
$xml .= "</menu>";
$xml .= get_cdash_dashboard_xml_by_name($projectname,$date);
// Build
$xml .= "<build>";
$site_array = pdo_fetch_array(pdo_query("SELECT name FROM site WHERE id='$siteid'"));
$xml .= add_XML_value("site",$site_array["name"]);
$xml .= add_XML_value("siteid",$siteid);
$xml .= add_XML_value("buildname",$build_array["name"]);
$xml .= add_XML_value("buildid",$build_array["id"]);
$xml .= add_XML_value("buildtime",date("D, d M Y H:i:s T",strtotime($build_array["starttime"]." UTC")));
$xml .= "</build>";
$xml .= "<updates>";
// Return the status
$status_array = pdo_fetch_array(pdo_query("SELECT status,revision,priorrevision,path
FROM buildupdate,build2update AS b2u WHERE buildupdate.id=b2u.updateid AND b2u.buildid='$buildid'"));
if(strlen($status_array["status"]) > 0 && $status_array["status"]!="0")
{
$xml .= add_XML_value("status",$status_array["status"]);
}
else
{
$xml .= add_XML_value("status",""); // empty status
}
$xml .= add_XML_value("revision",$status_array["revision"]);
$xml .= add_XML_value("priorrevision",$status_array["priorrevision"]);
$xml .= add_XML_value("path",$status_array["path"]);
$xml .= add_XML_value("revisionurl",
get_revision_url($projectid, $status_array["revision"], $status_array["priorrevision"]));
$xml .= add_XML_value("revisiondiff",
get_revision_url($projectid, $status_array["priorrevision"], '')); // no prior prior revision...
$xml .= "<javascript>";
$updatedfiles = pdo_query("SELECT * FROM updatefile AS uf,build2update AS b2u WHERE uf.updateid=b2u.updateid AND b2u.buildid=".$buildid."
ORDER BY REVERSE(RIGHT(REVERSE(filename),LOCATE('/',REVERSE(filename)))) ");
function sort_array_by_directory($a,$b)
{
return $a>$b ? 1:0;
}
function sort_array_by_filename($a,$b)
{
// Extract directory
$filenamea = $a['filename'];
$filenameb = $b['filename'];
return $filenamea>$filenameb ? 1:0;
}
$directoryarray = array();
$updatearray1 = array();
// Create an array so we can sort it
while($file_array = pdo_fetch_array($updatedfiles))
{
$file = array();
$file['filename'] = $file_array["filename"];
$file['author'] = $file_array["author"];
$file['status'] = $file_array["status"];
// Only display email if the user is logged in
if(isset($_SESSION['cdash']))
{
if($file_array['email'] == '')
{
$file['email'] = get_author_email($projectname, $file['author']);
}
else
{
$file['email'] = $file_array['email'];
}
}
else
{
$file['email'] = "";
}
$file['log'] = $file_array["log"];
$file['revision'] = $file_array["revision"];
$updatearray1[] = $file;
$directoryarray[] = substr($file_array["filename"],0,strrpos($file_array["filename"],"/"));
}
$directoryarray = array_unique($directoryarray);
usort($directoryarray, "sort_array_by_directory");
usort($updatearray1, "sort_array_by_filename");
$updatearray = array();
foreach($directoryarray as $directory)
{
foreach($updatearray1 as $update)
{
$filename = $update['filename'];
if(substr($filename,0,strrpos($filename,"/")) == $directory)
{
$updatearray[] = $update;
}
}
}
$projecturl = $svnurl;
$locallymodified = array();
$conflictingfiles = array();
$updatedfiles = array();
// locally cached query result same as get_project_property($projectname, "cvsurl");
foreach($updatearray as $file)
{
$filename = $file['filename'];
$filename = str_replace("\\", "/", $filename);
$directory = substr($filename,0,strrpos($filename,"/"));
$pos = strrpos($filename,"/");
if($pos !== FALSE)
{
$filename = substr($filename,$pos+1);
}
$baseurl = $project_array["bugtrackerfileurl"];
if(empty($baseurl))
{
$baseurl = $project_array["bugtrackerurl"];
}
$author = $file['author'];
$email = $file['email'];
$log = $file['log'];
$status = $file['status'];
$revision = $file['revision'];
$log = str_replace("\r"," ",$log);
$log = str_replace("\n", " ", $log);
// Do this twice so that <something> ends up as
// &lt;something&gt; because it gets sent to a
// java script function not just displayed as html
$log = XMLStrFormat($log); // Apparently no need to do this twice anymore
$log = XMLStrFormat($log);
$log = trim($log);
$file['directory'] = $directory;
$file['author'] = $author;
$file['email'] = $email;
$file['log'] = $log;
$file['revision'] = $revision;
$file['filename'] = $filename;
$file['bugurl'] = "";
$file['bugid'] = "0";
$file['bugpos'] = "0";
$bug = get_bug_from_log($log, $baseurl);
if ($bug !== FALSE)
{
$file['bugurl'] = $bug[0];
$file['bugid'] = $bug[1];
$file['bugpos'] = $bug[2];
}
if($status == "UPDATED")
{
$diff_url = get_diff_url($projectid,$projecturl, $directory, $filename, $revision);
$diff_url = XMLStrFormat($diff_url);
$file['diff_url'] = $diff_url;
$updatedfiles[] = $file;
}
else if($status == "MODIFIED")
{
$diff_url = get_diff_url($projectid,$projecturl, $directory, $filename);
$diff_url = XMLStrFormat($diff_url);
$file['diff_url'] = $diff_url;
$locallymodified[] = $file;
}
else //CONFLICTED
{
$diff_url = get_diff_url($projectid,$projecturl, $directory, $filename);
$diff_url = XMLStrFormat($diff_url);
$file['diff_url'] = $diff_url;
$conflictingfiles[] = $file;
}
}
// Updated files
$xml .= "dbAdd (true, \"".$projectname." Updated files (".count($updatedfiles).")\", \"\", 0, \"\", \"1\", \"\", \"\", \"\", \"\", \"\", \"\")\n";
$previousdir = "";
foreach($updatedfiles as $file)
{
$directory = $file['directory'];
if($previousdir=="" || $directory != $previousdir)
{
$xml .= " dbAdd (true, \"".$directory."\", \"\", 1, \"\", \"1\", \"\", \"\", \"\", \"\", \"\", \"\")\n";
$previousdir = $directory;
}
$xml .= " dbAdd ( false, \"".$file['filename']." Revision: ".$file['revision']."\",\"".$file['diff_url']."\",2,\"\",\"1\",\"".$file['author']."\",\"".$file['email']."\",\"".$file['log']."\",\"".$file['bugurl']."\",\"".$file['bugid']."\",\"".$file['bugpos']."\")\n";
}
// Modified files
$xml .= "dbAdd (true, \"Modified files (".count($locallymodified).")\", \"\", 0, \"\", \"1\", \"\", \"\", \"\", \"\", \"\", \"\")\n";
$previousdir = "";
foreach($locallymodified as $file)
{
$directory = $file['directory'];
if($previousdir=="" || $directory != $previousdir)
{
$xml .= " dbAdd (true, \"".$directory."\", \"\", 1, \"\", \"1\", \"\", \"\", \"\", \"\", \"\", \"\")\n";
$previousdir = $directory;
}
$xml .= " dbAdd ( false, \"".$file['filename']."\",\"".$file['diff_url']."\",2,\"\",\"1\",\"".$file['author']."\",\"".$file['email']."\",\"".$file['log']."\",\"".$file['bugurl']."\",\"".$file['bugid']."\",\"".$file['bugpos']."\")\n";
}
// Conflicting files
$xml .= "dbAdd (true, \"Conflicting files (".count($conflictingfiles).")\", \"\", 0, \"\", \"1\", \"\", \"\", \"\", \"\", \"\", \"\")\n";
$previousdir = "";
foreach($conflictingfiles as $file)
{
$directory = $file['directory'];
if($previousdir=="" || $directory != $previousdir)
{
$xml .= " dbAdd (true, \"".$directory."\", \"\", 1, \"\", \"1\", \"\", \"\", \"\", \"\", \"\")\n";
$previousdir = $directory;
}
$xml .= " dbAdd ( false, \"".$file['filename']." Revision: ".$file['revision']."\",\"".$file['diff_url']."\",2,\"\",\"1\",\"".$file['author']."\",\"".$file['email']."\",\"".$file['log']."\",\"".$file['bugurl']."\",\"".$file['bugid']."\",\"".$file['bugpos']."\")\n";
}
$xml .= "</javascript>";
$xml .= "</updates>";
$xml .= "</cdash>";
// Now doing the xslt transition
generate_XSLT($xml,"viewUpdate");
?>