Merge pull request #894 from wrongecho/locations-api

Add locations read api endpoint
This commit is contained in:
Johnny 2024-02-24 11:19:40 -05:00 committed by GitHub
commit e1b29df0ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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";