Add clients/read.php API endpoint.

Adjust asset create/update so that they function without all attributes being provided. Update will default to using the value currently in the database, rather than overwriting blank.
This commit is contained in:
Marcus Hill
2022-04-18 15:59:09 +01:00
parent 6ff6cb7c19
commit 2d6e7dbb37
5 changed files with 235 additions and 30 deletions

24
api/v1/clients/read.php Normal file
View File

@@ -0,0 +1,24 @@
<?php
require('../validate_api_key.php');
require('../require_get_method.php');
// Specific client via ID (single)
if(isset($_GET['client_id'])){
$id = intval($_GET['client_id']);
$sql = mysqli_query($mysqli, "SELECT * FROM clients WHERE client_id = '$id' AND client_id LIKE '$client_id' AND company_id = '$company_id'");
}
// Specific client via name (single)
elseif(isset($_GET['client_name'])){
$name = trim(strip_tags(mysqli_real_escape_string($mysqli,$_GET['client_name'])));
$sql = mysqli_query($mysqli, "SELECT * FROM clients WHERE client_name = '$name' AND client_id LIKE '$client_id' AND company_id = '$company_id'");
}
// All clients
else{
$sql = mysqli_query($mysqli, "SELECT * FROM clients WHERE client_id LIKE '$client_id' AND company_id = '$company_id' ORDER BY client_id LIMIT $limit OFFSET $offset");
}
// Output
include("../read_output.php");