Add locations read api endpoint

This commit is contained in:
Marcus Hill 2024-02-24 11:56:18 +00:00
parent da54b125c3
commit 54e015b5a5
1 changed files with 22 additions and 0 deletions

22
api/v1/locations/read.php Normal file
View File

@ -0,0 +1,22 @@
<?php
require_once '../validate_api_key.php';
require_once '../require_get_method.php';
if (isset($_GET['location_id'])) {
// Location via ID (single)
$id = intval($_GET['location_id']);
$sql = mysqli_query($mysqli, "SELECT * FROM locations WHERE location_id = '$id' AND location_client_id LIKE '$client_id'");
} else {
// All locations
$sql = mysqli_query($mysqli, "SELECT * FROM locations WHERE location_client_id LIKE '$client_id' ORDER BY location_id LIMIT $limit OFFSET $offset");
}
// Output
require_once "../read_output.php";