forked from Kitware/CDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewFiles.php
125 lines (109 loc) · 3.63 KB
/
viewFiles.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
<?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;
require_once("cdash/pdo.php");
include_once('cdash/common.php');
include("cdash/version.php");
include('login.php');
include_once('models/project.php');
include_once('models/build.php');
include_once('models/site.php');
include_once('models/uploadfile.php');
if(!isset($_GET['buildid']))
{
echo "Build id not set";
return;
}
$buildid = pdo_real_escape_numeric($_GET['buildid']);
$Build = new Build();
$Build->Id = $buildid;
$Build->FillFromId($buildid);
$Site = new Site();
$Site->Id = $Build->SiteId;
$build_array = pdo_fetch_array(pdo_query("SELECT projectid FROM build WHERE id='$buildid'"));
if(!isset($build_array["projectid"]))
{
echo "Build does not exist. Maybe it has been deleted.";
return;
}
$projectid = $build_array["projectid"];
checkUserPolicy(@$_SESSION['cdash']['loginid'],$projectid);
@$date = $_GET["date"];
if ($date != NULL)
{
$date = htmlspecialchars(pdo_real_escape_string($date));
}
$xml = begin_XML_for_XSLT();
$xml .= get_cdash_dashboard_xml(get_project_name($projectid),$date);
$db = pdo_connect("$CDASH_DB_HOST", "$CDASH_DB_LOGIN","$CDASH_DB_PASS");
pdo_select_db("$CDASH_DB_NAME",$db);
$xml .= add_XML_value("title","CDash - Uploaded files");
$xml .= add_XML_value("menutitle","CDash");
$xml .= add_XML_value("menusubtitle","Uploaded files");
$xml .= "<hostname>".$_SERVER['SERVER_NAME']."</hostname>";
$xml .= "<date>".date("r")."</date>";
$xml .= "<backurl>index.php</backurl>";
$xml .= "<buildid>$buildid</buildid>";
$xml .= '<buildname>'.$Build->Name.'</buildname>';
$xml .= '<buildstarttime>'.$Build->StartTime.'</buildstarttime>';
$xml .= '<siteid>'.$Site->Id.'</siteid>';
$xml .= '<sitename>'.$Site->GetName().'</sitename>';
$uploadFilesOrURLs = $Build->GetUploadedFilesOrUrls();
foreach($uploadFilesOrURLs as $uploadFileOrURL)
{
if(!$uploadFileOrURL->IsUrl)
{
$xml .= '<uploadfile>';
$xml .= '<id>'.$uploadFileOrURL->Id.'</id>';
$xml .= '<href>'.$CDASH_DOWNLOAD_RELATIVE_URL.'/'.$uploadFileOrURL->Sha1Sum.'/'.$uploadFileOrURL->Filename.'</href>';
$xml .= '<sha1sum>'.$uploadFileOrURL->Sha1Sum.'</sha1sum>';
$xml .= '<filename>'.$uploadFileOrURL->Filename.'</filename>';
$xml .= '<filesize>'.$uploadFileOrURL->Filesize.'</filesize>';
$filesize = $uploadFileOrURL->Filesize;
$ext = "b";
if($filesize>1024)
{
$filesize /= 1024;
$ext = "Kb";
}
if($filesize>1024)
{
$filesize /= 1024;
$ext = "Mb";
}
if($filesize>1024)
{
$filesize /= 1024;
$ext = "Gb";
}
if($filesize>1024)
{
$filesize /= 1024;
$ext = "Tb";
}
$xml .= '<filesizedisplay>'.round($filesize).' '.$ext.'</filesizedisplay>';
$xml .= '<isurl>'.$uploadFileOrURL->IsUrl.'</isurl>';
$xml .= '</uploadfile>';
}
else
{
$xml .= '<uploadurl>';
$xml .= '<id>'.$uploadFileOrURL->Id.'</id>';
$xml .= '<filename>'.htmlspecialchars($uploadFileOrURL->Filename).'</filename>';
$xml .= '</uploadurl>';
}
}
$xml .= "</cdash>";
generate_XSLT($xml, "viewFiles", true);
?>