/usr/share/pgsnap/lib/views.php is in pgsnap 0.7.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?php
/*
* Copyright (c) 2008-2010 Guillaume Lelarge <guillaume@lelarge.info>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
$buffer = $navigate_dbobjects.'
<div id="pgContentWrap">
<h1>Views</h1>
';
if(!$g_withoutsysobjects) {
add_sys_and_user_checkboxes();
}
$query = "SELECT
relname,
nspname AS schema,
pg_get_userbyid(relowner) AS owner,
relam,
relfilenode,";
if ($g_version > 74) {
$query .= "
(select spcname from pg_tablespace where oid=reltablespace) as tablespace,";
}
$query .= "
relpages,
reltuples,
reltoastrelid,
reltoastidxid,
relhasindex,
relisshared,
relkind,
relnatts,
relchecks,";
if ($g_version < 84) {
$query .= "
reltriggers,
relukeys,
relfkeys,
relrefs,";
}
$query .= "
relhasoids,
relhaspkey,
relhasrules,
relhassubclass,";
if ($g_version >= 82) {
$query .= "
relfrozenxid,";
}
$query .= "
relacl,";
if ($g_version >= 82) {
$query .= "
reloptions,";
}
if ($g_version > 80) {
$query .= '
pg_size_pretty(pg_relation_size(pg_class.oid)) AS size';
} else {
$query .= '
relpages*8192 AS size';
}
$query .= "
FROM pg_class, pg_namespace
WHERE relkind = 'v'
AND relnamespace = pg_namespace.oid";
if ($g_withoutsysobjects) {
$query .= "
AND nspname <> 'pg_catalog'
AND nspname <> 'information_schema'
AND nspname !~ '^pg_toast'";
}
$query .= "
ORDER BY relname";
$rows = pg_query($connection, $query);
if (!$rows) {
echo "An error occured.\n";
exit;
}
$buffer .= '<div class="tblBasic">
<table id="myTable" border="0" cellpadding="0" cellspacing="0" class="tblBasicGrey">
<thead>
<tr>
<th class="colFirst">Table name</th>
<th class="colMid">Schema name</th>
<th class="colMid">Table Owner</th>
<th class="colMid">relam</th>
<th class="colMid">relfilenode</th>';
if ($g_version > 74) {
$buffer .= '
<th class="colMid">Tablespace name</th>';
}
$buffer .= '
<th class="colMid">Pages #</th>
<th class="colMid">Tuples #</th>
<th class="colMid">OID Toast Table</th>
<th class="colMid">OID Toast Index</th>
<th class="colMid">Has index?</th>
<th class="colMid">Is shared?</th>
<th class="colMid">Kind</th>
<th class="colMid">natts</th>
<th class="colMid">Checks</th>';
if ($g_version < 84) {
$buffer .= '
<th class="colMid">Triggers</th>
<th class="colMid">Unique Keys</th>
<th class="colMid">Foreign Keys</th>
<th class="colMid">Refs</th>';
}
$buffer .= '
<th class="colMid">Has OID?</th>
<th class="colMid">Has Primary Key?</th>
<th class="colMid">Has Rules?</th>
<th class="colMid">Has subclass?</th>
';
if ($g_version >= 82) {
$buffer .= '
<th class="colMid">Frozen XID</th>';
}
$buffer .= '
<th class="colMid"><acronym X=\"Access Control List\">ACL</acronym></th>';
if ($g_version >= 82) {
$buffer .= '
<th class="colMid">Options</th>';
}
if ($g_version > 80) {
$buffer .= '
<th class="colLast" width="200">Size</th>';
} else {
$buffer .= '
<th class="colLast" width="200">Estimated Size</th>';
}
$buffer .= '
</tr>
</thead>
<tbody>
';
while ($row = pg_fetch_array($rows)) {
$buffer .= tr($row['schema'])."
<td>".$row['relname']."</td>
<td>".$row['schema']."</td>
<td>".$row['owner']."</td>
<td>".$row['relam']."</td>
<td>".$row['relfilenode']."</td>";
if ($g_version > 74) {
$buffer .= "
<td>".$row['tablespace']."</td>";
}
$buffer .= "
<td>".$row['relpages']."</td>
<td>".$row['reltuples']."</td>
<td>".$row['reltoastrelid']."</td>
<td>".$row['reltoastidxid']."</td>
<td>".$image[$row['relhasindex']]."</td>
<td>".$image[$row['relisshared']]."</td>
<td>".$row['relkind']."</td>
<td>".$row['relnatts']."</td>
<td>".$row['relchecks']."</td>";
if ($g_version < 84) {
$buffer .= "
<td>".$row['reltriggers']."</td>
<td>".$row['relukeys']."</td>
<td>".$row['relfkeys']."</td>
<td>".$row['relrefs']."</td>";
}
$buffer .= "
<td>".$image[$row['relhasoids']]."</td>
<td>".$image[$row['relhaspkey']]."</td>
<td>".$image[$row['relhasrules']]."</td>
<td>".$image[$row['relhassubclass']]."</td>";
if ($g_version >= 82) {
$buffer .= "
<td>".$row['relfrozenxid']."</td>";
}
$buffer .= "
<td><acronym X=\"Access Control List\">".$row['relacl']."</acronym></td>";
if ($g_version >= 82) {
$buffer .= "
<td>".$row['reloptions']."</td>";
}
if ($g_version > 80) {
$buffer .= "
<td>".$row['size']."</td>
</tr>";
} else {
$buffer .= "
<td>".pretty_size($row['size'])."</td>
</tr>";
}
}
$buffer .= '</tbody>
</table>
</div>
';
$buffer .= '<button id="showthesource">Show SQL commands!</button>
<div id="source">
<p>'.$query.'</p>
</div>';
$filename = $outputdir.'/views.html';
include 'lib/fileoperations.php';
?>
|