2018-02-01 16:56:17 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* PHP API usage example
|
|
|
|
*
|
|
|
|
* contributed by: Art of WiFi
|
2021-01-21 10:59:27 +01:00
|
|
|
* description: example basic PHP script to delete a site, returns true upon success
|
2018-02-01 16:56:17 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* using the composer autoloader
|
|
|
|
*/
|
2021-01-21 10:59:27 +01:00
|
|
|
require_once 'vendor/autoload.php';
|
2018-02-01 16:56:17 +01: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';
|
2018-02-01 16:56:17 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* the site to use to log in to the controller
|
|
|
|
*/
|
|
|
|
$site_id = '<short site name of a site the credentials used have access to>';
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-02-01 17:11:05 +01:00
|
|
|
* the site to delete, must not be the same site as referenced by $site_id
|
2018-02-01 16:56:17 +01:00
|
|
|
*/
|
|
|
|
$site_to_delete = '<_id value of the site>';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* initialize the UniFi API connection class and log in to the controller and do our thing
|
|
|
|
*/
|
2023-12-18 11:11:27 +01:00
|
|
|
$unifi_connection = new UniFi_API\Client(
|
|
|
|
$controlleruser,
|
|
|
|
$controllerpassword,
|
|
|
|
$controllerurl,
|
|
|
|
$site_id,
|
|
|
|
$controllerversion
|
|
|
|
);
|
|
|
|
|
|
|
|
$loginresults = $unifi_connection->login();
|
|
|
|
$results = $unifi_connection->delete_site($site_to_delete);
|
2018-02-01 16:56:17 +01:00
|
|
|
|
|
|
|
/**
|
2018-02-01 17:11:05 +01:00
|
|
|
* provide feedback in json format
|
2018-02-01 16:56:17 +01:00
|
|
|
*/
|
2018-02-01 17:11:05 +01:00
|
|
|
echo json_encode($results, JSON_PRETTY_PRINT);
|