rearranged project. Added libraries.
This commit is contained in:
parent
01a2b35fdb
commit
849d7d27e0
95
Libraries/table/get.php
Normal file
95
Libraries/table/get.php
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
<?php
|
||||||
|
function get_main () {
|
||||||
|
$db = $GLOBALS["db"];
|
||||||
|
/*
|
||||||
|
Args will be:
|
||||||
|
name: Table Name
|
||||||
|
limit: number of entries to return (default all)
|
||||||
|
columns: This will be a comma delimited list of column names (in the order that it needs to be displayed)
|
||||||
|
*/
|
||||||
|
|
||||||
|
// BEGIN: Getting Args if exists
|
||||||
|
|
||||||
|
if ( array_key_exists('action', $_GET)){
|
||||||
|
$action=$_GET['action'];
|
||||||
|
} else {
|
||||||
|
$action="show";
|
||||||
|
}
|
||||||
|
|
||||||
|
// 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="";
|
||||||
|
}
|
||||||
|
|
||||||
|
$db = new SQLite3("../../webcron.db");
|
||||||
|
|
||||||
|
$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_header\">{$column_name}</div>";
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$counter=0;
|
||||||
|
for ($i = 0; $i < $res->numColumns(); $i++ ){
|
||||||
|
echo "<div class=\"table_header\">{$res->columnName($i)}</div>";
|
||||||
|
$counter++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
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>';
|
||||||
|
} else if ($action == "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> ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
?>
|
5
Libraries/test.php
Normal file
5
Libraries/test.php
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?php
|
||||||
|
function test_func () {
|
||||||
|
echo "This was a test";
|
||||||
|
}
|
||||||
|
?>
|
104
api/table.php
104
api/table.php
@ -1,94 +1,28 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
This endpoint will get specific tables from the db
|
This endpoint will get & edit specific tables from the db
|
||||||
|
<REQUEST METHOD>:
|
||||||
|
- <action>
|
||||||
|
|
||||||
|
GET:
|
||||||
|
- show (show individual tables)
|
||||||
|
- list (list table names)
|
||||||
|
|
||||||
Args will be:
|
|
||||||
action:
|
|
||||||
list: list table names
|
|
||||||
name: Table Name
|
|
||||||
limit: number of entries to return (default all)
|
|
||||||
columns: This will be a comma delimited list of column names (in the order that it needs to be displayed)
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$db = new SQLite3("../../webcron.db");
|
require('../Libraries/table/get.php');
|
||||||
|
|
||||||
if ( array_key_exists('action', $_GET)){
|
|
||||||
$action=$_GET['action'];
|
# Setting up DB connection
|
||||||
} else {
|
$GLOBALS['db'] = new SQLite3("../../webcron.db");
|
||||||
$action="show";
|
|
||||||
|
switch ($_SERVER['REQUEST_METHOD']) {
|
||||||
|
case 'GET':
|
||||||
|
get_main();
|
||||||
|
break;
|
||||||
|
case 'POST':
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
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="";
|
|
||||||
}
|
|
||||||
|
|
||||||
$db = new SQLite3("../../webcron.db");
|
|
||||||
|
|
||||||
$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_header\">{$column_name}</div>";
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$counter=0;
|
|
||||||
for ($i = 0; $i < $res->numColumns(); $i++ ){
|
|
||||||
echo "<div class=\"table_header\">{$res->columnName($i)}</div>";
|
|
||||||
$counter++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
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>';
|
|
||||||
} else if ($action == "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> ";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
@ -1,5 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
include("../../Libraries/test.php");
|
||||||
|
|
||||||
echo shell_exec("../../Scripts/count-crontabs.sh");
|
test_func();
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user