1
|
<?php
|
2
|
/**
|
3
|
* Class to manage reports. Note how this class is designed to use
|
4
|
* the functions provided by the database driver exclusively, and hence
|
5
|
* will work with any database without modification.
|
6
|
*
|
7
|
* $Id: Reports.php,v 1.15 2005/11/04 04:19:41 chriskl Exp $
|
8
|
*/
|
9
|
|
10
|
class Reports {
|
11
|
|
12
|
// A database driver
|
13
|
var $driver;
|
14
|
var $reports_db = 'phppgadmin';
|
15
|
|
16
|
/* Constructor */
|
17
|
function Reports(&$status) {
|
18
|
global $misc, $data;
|
19
|
|
20
|
// Check to see if the reports database exists
|
21
|
$rs = $data->getDatabase($this->reports_db);
|
22
|
if ($rs->recordCount() != 1) $status = -1;
|
23
|
else {
|
24
|
// Create a new database access object.
|
25
|
$this->driver = $misc->getDatabaseAccessor($this->reports_db);
|
26
|
// Reports database should have been created in public schema
|
27
|
if ($this->driver->hasSchemas()) $this->driver->setSchema('public');
|
28
|
$status = 0;
|
29
|
}
|
30
|
}
|
31
|
|
32
|
/**
|
33
|
* Finds all reports
|
34
|
* @return A recordset
|
35
|
*/
|
36
|
function getReports() {
|
37
|
global $conf, $misc;
|
38
|
// Filter for owned reports if necessary
|
39
|
if ($conf['owned_reports_only']) {
|
40
|
$server_info = $misc->getServerInfo();
|
41
|
$filter['created_by'] = $server_info['username'];
|
42
|
$ops = array('created_by' => '=');
|
43
|
}
|
44
|
else $filter = $ops = array();
|
45
|
|
46
|
$sql = $this->driver->getSelectSQL('ppa_reports',
|
47
|
array('report_id', 'report_name', 'db_name', 'date_created', 'created_by', 'descr', 'report_sql'),
|
48
|
$filter, $ops, array('db_name' => 'asc', 'report_name' => 'asc'));
|
49
|
|
50
|
return $this->driver->selectSet($sql);
|
51
|
}
|
52
|
|
53
|
/**
|
54
|
* Finds a particular report
|
55
|
* @param $report_id The ID of the report to find
|
56
|
* @return A recordset
|
57
|
*/
|
58
|
function getReport($report_id) {
|
59
|
$sql = $this->driver->getSelectSQL('ppa_reports',
|
60
|
array('report_id', 'report_name', 'db_name', 'date_created', 'created_by', 'descr', 'report_sql'),
|
61
|
array('report_id' => $report_id), array('report_id' => '='), array());
|
62
|
|
63
|
return $this->driver->selectSet($sql);
|
64
|
}
|
65
|
|
66
|
/**
|
67
|
* Creates a report
|
68
|
* @param $report_name The name of the report
|
69
|
* @param $db_name The name of the database
|
70
|
* @param $descr The comment on the report
|
71
|
* @param $report_sql The SQL for the report
|
72
|
* @return 0 success
|
73
|
*/
|
74
|
function createReport($report_name, $db_name, $descr, $report_sql) {
|
75
|
global $misc;
|
76
|
$server_info = $misc->getServerInfo();
|
77
|
$temp = array(
|
78
|
'report_name' => $report_name,
|
79
|
'db_name' => $db_name,
|
80
|
'created_by' => $server_info['username'],
|
81
|
'report_sql' => $report_sql
|
82
|
);
|
83
|
if ($descr != '') $temp['descr'] = $descr;
|
84
|
|
85
|
return $this->driver->insert('ppa_reports', $temp);
|
86
|
}
|
87
|
|
88
|
/**
|
89
|
* Alters a report
|
90
|
* @param $report_id The ID of the report
|
91
|
* @param $report_name The name of the report
|
92
|
* @param $db_name The name of the database
|
93
|
* @param $descr The comment on the report
|
94
|
* @param $report_sql The SQL for the report
|
95
|
* @return 0 success
|
96
|
*/
|
97
|
function alterReport($report_id, $report_name, $db_name, $descr, $report_sql) {
|
98
|
global $misc;
|
99
|
$server_info = $misc->getServerInfo();
|
100
|
$temp = array(
|
101
|
'report_name' => $report_name,
|
102
|
'db_name' => $db_name,
|
103
|
'created_by' => $server_info['username'],
|
104
|
'report_sql' => $report_sql
|
105
|
);
|
106
|
if ($descr != '') $temp['descr'] = $descr;
|
107
|
|
108
|
return $this->driver->update('ppa_reports', $temp,
|
109
|
array('report_id' => $report_id));
|
110
|
}
|
111
|
|
112
|
/**
|
113
|
* Drops a report
|
114
|
* @param $report_id The ID of the report to drop
|
115
|
* @return 0 success
|
116
|
*/
|
117
|
function dropReport($report_id) {
|
118
|
return $this->driver->delete('ppa_reports', array('report_id' => $report_id));
|
119
|
}
|
120
|
|
121
|
}
|
122
|
?>
|