Setup helper classes to handle stroring and formatting data retrieved from the DB, and implemented them in get method of table.php

This commit is contained in:
2023-05-27 14:27:46 -05:00
parent 849d7d27e0
commit 8b5782c5de
2 changed files with 173 additions and 55 deletions

View File

@@ -1,4 +1,6 @@
<?php
require("class.php");
function get_main () {
$db = $GLOBALS["db"];
/*
@@ -18,77 +20,76 @@ function get_main () {
// END: Getting Args if exists
if ($action == "show"){
if ( ! array_key_exists("name", $_GET) ){
echo "A tablename was not provided with the request";
return 1;
} else {
$name=$_GET['name'];
}
if ( array_key_exists("limit", $_GET)){
$limit=$_GET['limit'];
} else {
$limit=0;
}
if ( array_key_exists("columns", $_GET)){
$columns = explode(',', $_GET["columns"]);
}
$query_modifier="";
if (filter_var($limit, FILTER_VALIDATE_INT)){
if ($limit > 0){
$query_modifier="WHERE LIMIT $limit";
}
}else {
$query_modifier="";
switch ($action){
case "show":
// BEGIN: Get show args
if ( ! array_key_exists("name", $_GET) ){
echo "A tablename was not provided with the request";
return 1;
} else {
$name=$_GET['name'];
}
$db = new SQLite3("../../webcron.db");
if ( array_key_exists("limit", $_GET)){
$limit=$_GET['limit'];
} else {
$limit=0;
}
$res = $db->query("SELECT * FROM $name $query_modifier");
echo '<div class="wrapper bordered center_text">';
echo '<div class="log_table bordered">';
echo '<div class="table_row">';
if ( array_key_exists("columns", $_GET)){
$columns = explode(',', $_GET["columns"]);
}
// END: Get show args
if ( !empty($columns) ) {
foreach($columns as $column_name){
echo "<div class=\"table_header\">{$column_name}</div>";
}
} else {
$counter=0;
for ($i = 0; $i < $res->numColumns(); $i++ ){
echo "<div class=\"table_header\">{$res->columnName($i)}</div>";
$counter++;
}
$query_modifier="";
if (filter_var($limit, FILTER_VALIDATE_INT)){
if ($limit > 0){
$query_modifier="WHERE LIMIT $limit";
}
}else {
$query_modifier="";
}
echo '</div>';
while ($row = $res->fetchArray()){
echo "<div class=\"table_row\">";
$res = $db->query("SELECT * FROM $name $query_modifier");
echo '<div class="wrapper bordered center_text">';
echo '<div class="log_table bordered">';
echo '<div class="table_row">';
if ( !empty($columns) ) {
foreach($columns as $column_name){
echo "<div class=\"table_cell\">{$row[$column_name]}</div>";
echo "<div class=\"table_header\">{$column_name}</div>";
}
} else {
for ($i = 0; $i < $counter; $i++){
echo "<div class=\"table_cell\">{$row[$i]}</div>";
$counter=0;
for ($i = 0; $i < $res->numColumns(); $i++ ){
echo "<div class=\"table_header\">{$res->columnName($i)}</div>";
$counter++;
}
}
echo "</div>";
}
echo '</div>';
echo '</div>';
} else if ($action == "list"){
$res = $db->query("SELECT name FROM sqlite_master WHERE type='table';");
echo '</div>';
while ($row = $res->fetchArray()){
echo "<div class=\"table_row\">";
if ( !empty($columns) ) {
foreach($columns as $column_name){
echo "<div class=\"table_cell\">{$row[$column_name]}</div>";
}
} else {
for ($i = 0; $i < $counter; $i++){
echo "<div class=\"table_cell\">{$row[$i]}</div>";
}
}
echo "</div>";
}
echo '</div>';
echo '</div>';
break;
case "list":
$res = $db->query("SELECT name FROM sqlite_master WHERE type='table';");
while ($row = $res->fetchArray()){
echo "<button onclick='getTable(\"{$row['name']}\")'>{$row['name']}</button><br> ";
}
break;
}
}