PEAR2_Pyrus_Developer-0.3.0 › PEAR2_Pyrus_Developer-0.3.0/php/PEAR2/Pyrus/Developer/CoverageAnalyzer/Web/Controller.php
- PEAR2_Pyrus_Developer-0.3.0/
- customcommand/
- PEAR2_Pyrus_Developer/
- pear2.php.net/
- PEAR2_Pyrus_Developer/
- data/
- PEAR2_Pyrus_Developer/
- php/
- PEAR2/
- Autoload.php
- Exception.php
- MultiErrors/
- MultiErrors.php
- Pyrus/
- Developer/
- CoverageAnalyzer/
- Creator/
- PackageFile/
- Runphpt/
- Developer/
- PEAR2/
- www/
- customcommand/
- package.xml
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
<?php
namespace PEAR2\Pyrus\Developer\CoverageAnalyzer\Web {
class Controller {
protected $view;
protected $sqlite;
protected $rooturl;
function __construct(View $view, $rooturl)
{
$this->view = $view;
$view->setController($this);
$this->rooturl = $rooturl;
}
function route()
{
if (!isset($_SESSION['fullpath']) || isset($_GET['restart'])) {
unset($_SESSION['fullpath']);
if (isset($_GET['setdatabase'])) {
if (file_exists($_GET['setdatabase'])) {
try {
$this->sqlite = new Aggregator($_GET['setdatabase']);
$_SESSION['fullpath'] = $_GET['setdatabase'];
return $this->view->TOC($this->sqlite);
} catch (\Exception $e) {
echo $e->getMessage() . '<br />';
// fall through
}
}
}
return $this->getDatabase();
} else {
try {
$this->sqlite = new Aggregator($_SESSION['fullpath']);
if (isset($_GET['test'])) {
if ($_GET['test'] === 'TOC') {
return $this->view->testTOC($this->sqlite);
}
if (isset($_GET['file'])) {
return $this->view->fileCoverage($this->sqlite, $_GET['file'], $_GET['test']);
}
return $this->view->testTOC($this->sqlite, $_GET['test']);
}
if (isset($_GET['file'])) {
if (isset($_GET['line'])) {
return $this->view->fileLineTOC($this->sqlite, $_GET['file'], $_GET['line']);
}
return $this->view->fileCoverage($this->sqlite, $_GET['file']);
}
} catch (\Exception $e) {
echo $e->getMessage() . '<br \>';
}
return $this->view->TOC($this->sqlite);
}
}
function getFileLink($file, $test = null, $line = null)
{
if ($line) {
return $this->rooturl . '?file=' . urlencode($file) . '&line=' . $line;
}
if ($test) {
return $this->rooturl . '?file=' . urlencode($file) . '&test=' . $test;
}
return $this->rooturl . '?file=' . urlencode($file);
}
function getTOCLink($test = false)
{
if ($test === true) {
return $this->rooturl . '?test=TOC';
}
if ($test) {
return $this->rooturl . '?test=' . urlencode($test);
}
return $this->rooturl;
}
function getLogoutLink()
{
return $this->rooturl . '?restart=1';
}
function getDatabase()
{
$this->sqlite = $this->view->getDatabase();
}
}
}
?>
EOF
