2017-09-05 11:48:35 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* PHP API usage example
|
|
|
|
*
|
|
|
|
* contributed by: Art of WiFi
|
2021-01-21 10:59:27 +01:00
|
|
|
* description: example to pull connected user numbers for Access Points from the UniFi controller and output the results
|
|
|
|
* in raw HTML format
|
2017-09-05 11:48:35 +02:00
|
|
|
*/
|
|
|
|
|
2017-09-05 13:04:11 +02:00
|
|
|
/**
|
|
|
|
* using the composer autoloader
|
|
|
|
*/
|
2021-01-21 10:59:27 +01:00
|
|
|
require_once 'vendor/autoload.php';
|
2017-09-05 13:04:11 +02:00
|
|
|
|
2017-09-05 11:48:35 +02:00
|
|
|
/**
|
|
|
|
* include the config file (place your credentials etc there if not already present)
|
|
|
|
* see the config.template.php file for an example
|
|
|
|
*/
|
2021-01-21 10:59:27 +01:00
|
|
|
require_once 'config.php';
|
2017-09-05 11:48:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* the short name of the site which you wish to query
|
|
|
|
*/
|
|
|
|
$site_id = '<enter your site id here>';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* initialize the UniFi API connection class and log in to the controller and pull the requested data
|
|
|
|
*/
|
2023-12-18 11:11:27 +01:00
|
|
|
$unifi_connection = new UniFi_API\Client(
|
|
|
|
$controlleruser,
|
|
|
|
$controllerpassword,
|
|
|
|
$controllerurl,
|
|
|
|
$site_id,
|
|
|
|
$controllerversion
|
|
|
|
);
|
|
|
|
|
|
|
|
$set_debug_mode = $unifi_connection->set_debug($debug);
|
|
|
|
$loginresults = $unifi_connection->login();
|
|
|
|
$aps_array = $unifi_connection->list_aps();
|
2017-09-05 11:48:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* output the results in HTML format
|
|
|
|
*/
|
|
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
|
|
foreach ($aps_array as $ap) {
|
2018-03-24 10:46:42 +01:00
|
|
|
if ($ap->type === 'uap') {
|
|
|
|
echo '<b>AP name:</b>' . $ap->name . ' <b>model:</b>' . $ap->model . ' <b># connected clients:</b>' . $ap->num_sta . '<br>';
|
|
|
|
}
|
2017-09-05 11:48:35 +02:00
|
|
|
}
|