2017-10-18 10:09:55 +02:00
## UniFi Controller API client class
2017-09-05 11:48:35 +02:00
2017-10-26 17:06:59 +02:00
A PHP class which provides access to Ubiquiti's **UniFi Controller API** , versions 4.x.x and 5.x.x of the UniFi Controller software are supported (version 5.6.18 has been confirmed to work). It's a standalone version of the class which is used in our API browser tool which can be found [here ](https://github.com/Art-of-WiFi/UniFi-API-browser ).
2017-10-06 12:46:07 +02:00
2017-10-18 10:09:55 +02:00
This class can be installed using composer/[packagist](https://packagist.org/packages/art-of-wifi/unifi-api-client) for easy inclusion in your projects.
2017-09-05 11:48:35 +02:00
### Donations
2017-09-07 12:27:20 +02:00
2017-10-18 10:09:55 +02:00
If you find this PHP API client class useful and wish to support it's further development, please use the PayPal donate button below. All donations go to the project maintainer.
2017-09-05 11:48:35 +02:00
2017-09-11 16:50:24 +02:00
[![Donate ](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif )](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick& hosted_button_id=M7TVNVX3Z44VN)
2017-09-05 11:48:35 +02:00
2017-09-07 12:27:20 +02:00
## Methods and functions supported
2017-09-05 11:48:35 +02:00
2017-10-18 10:09:55 +02:00
The class currently supports the following functions/methods to get/post/put/delete data through the UniFi Controller API:
2017-09-05 11:48:35 +02:00
- login()
- logout()
- adopt_device()
2017-10-19 11:24:24 +02:00
- archive_alarm()
2017-09-05 11:48:35 +02:00
- authorize_guest()
- block_sta()
2017-09-08 12:36:12 +02:00
- count_alarms()
2017-09-05 11:48:35 +02:00
- create_hotspotop()
2017-09-08 12:36:12 +02:00
- create_network()
- create_radius_account()
- create_site()
- create_usergroup()
2017-09-05 11:48:35 +02:00
- create_voucher()
2017-09-08 12:36:12 +02:00
- create_wlan()
- delete_network()
- delete_radius_account()
2017-09-05 11:48:35 +02:00
- delete_site()
2017-09-08 12:36:12 +02:00
- delete_usergroup()
- delete_wlan()
2017-09-05 11:48:35 +02:00
- disable_ap()
2017-09-08 12:36:12 +02:00
- edit_usergroup()
- extend_guest_validity()
2017-09-05 11:48:35 +02:00
- led_override()
- list_admins()
- list_alarms()
- list_aps() (deprecated but still available as alias)
- list_clients()
2017-09-08 12:36:12 +02:00
- list_current_channels()
2017-09-05 11:48:35 +02:00
- list_dashboard()
2017-09-08 12:36:12 +02:00
- list_devices()
- list_dpi_stats()
2017-09-05 11:48:35 +02:00
- list_dynamicdns()
- list_events()
- list_extension()
- list_guests()
- list_health()
- list_hotspotop()
2017-10-18 08:25:48 +02:00
- list_known_rogueaps()
2017-09-05 11:48:35 +02:00
- list_networkconf()
- list_portconf()
- list_portforward_stats()
- list_portforwarding()
- list_radius_accounts() (supported on controller version 5.5.19 and higher)
2017-09-08 12:36:12 +02:00
- list_radius_profiles()
2017-09-05 11:48:35 +02:00
- list_rogueaps()
- list_self()
- list_settings()
- list_sites()
- list_tags() (supported on controller version 5.5.19 and higher)
- list_usergroups()
- list_users()
- list_wlan_groups()
- list_wlanconf()
2017-09-08 12:36:12 +02:00
- locate_ap()
2017-10-18 08:25:48 +02:00
- power_cycle_switch_port()
2017-09-05 11:48:35 +02:00
- reconnect_sta()
- rename_ap()
- restart_ap()
- revoke_voucher()
- set_ap_radiosettings()
2017-10-18 08:25:48 +02:00
- set_device_settings_base()
2017-09-05 11:48:35 +02:00
- set_guestlogin_settings()
- set_locate_ap() (deprecated but still available as alias)
2017-09-08 12:36:12 +02:00
- set_networksettings_base()
- set_radius_account_base()
2017-09-05 11:48:35 +02:00
- set_sta_name()
- set_sta_note()
- set_usergroup()
2017-09-06 17:16:32 +02:00
- set_wlan_mac_filter()
2017-09-08 12:36:12 +02:00
- set_wlansettings()
- set_wlansettings_base()
2017-09-05 11:48:35 +02:00
- site_leds()
- site_ledsoff() (deprecated but still available as alias)
- site_ledson() (deprecated but still available as alias)
2017-09-08 12:36:12 +02:00
- spectrum_scan()
- spectrum_scan_state()
2017-09-05 11:48:35 +02:00
- stat_allusers()
- stat_auths()
- stat_client()
2017-10-10 09:37:29 +02:00
- stat_5minutes_aps() (supported on controller version 5.5.* and higher)
2017-09-05 11:48:35 +02:00
- stat_hourly_aps()
2017-10-10 09:37:29 +02:00
- stat_daily_aps()
- stat_5minutes_site() (supported on controller version 5.5.* and higher)
2017-09-05 11:48:35 +02:00
- stat_hourly_site()
2017-10-10 09:37:29 +02:00
- stat_daily_site()
2017-09-05 11:48:35 +02:00
- stat_payment()
- stat_sessions()
- stat_sites()
- stat_sta_sessions_latest()
2017-10-18 08:25:48 +02:00
- stat_status()
2017-09-05 11:48:35 +02:00
- stat_sysinfo()
- stat_voucher()
2017-09-08 12:36:12 +02:00
- unauthorize_guest()
- unblock_sta()
- unset_locate_ap() (deprecated but still available as alias)
- upgrade_device()
- upgrade_device_external()
2017-09-05 11:48:35 +02:00
2017-09-06 17:12:17 +02:00
Internal functions, getters/setters:
2017-09-05 11:48:35 +02:00
- set_debug()
2017-09-06 17:12:17 +02:00
- set_site()
2017-09-08 12:36:12 +02:00
- set_site()
2017-09-06 17:12:17 +02:00
- get_site()
- get_cookie() (renamed from getcookie())
2017-09-05 11:48:35 +02:00
- get_last_results_raw()
- get_last_error_message()
2017-10-18 10:09:55 +02:00
Please refer to the source code for more details on the functions/methods and their parameters.
2017-09-05 11:48:35 +02:00
2017-09-07 12:27:20 +02:00
## Requirements
2017-09-05 17:22:06 +02:00
- a web server with PHP and cURL modules installed (tested on apache2 with PHP Version 5.6.1 and cURL 7.42.1)
2017-10-18 10:09:55 +02:00
- network connectivity between this web server and the server and port (normally TCP port 8443) where the UniFi Controller is running
2017-09-05 17:22:06 +02:00
2017-09-07 12:27:20 +02:00
## Installation ##
2017-10-26 17:06:59 +02:00
You can use [Composer ](#composer ), [Git ](#git ) or simply [Download the Release ](#download-the-release ) to install the API client class.
2017-09-07 12:27:20 +02:00
### Composer
The preferred method is via [composer ](https://getcomposer.org ). Follow the [installation instructions ](https://getcomposer.org/doc/00-intro.md ) if you do not already have composer installed.
2017-09-05 17:22:06 +02:00
2017-09-14 12:15:21 +02:00
Once composer is installed, simply execute this command from the shell in your project directory:
2017-09-07 12:27:20 +02:00
```sh
composer require art-of-wifi/unifi-api-client
2017-10-18 10:09:55 +02:00
```
Or you can manually add the package to your composer.json file:
```javascript
{
"require": {
"art-of-wifi/unifi-api-client": "^1.1"
}
}
2017-09-07 12:27:20 +02:00
```
Finally, be sure to include the autoloader in your code:
```php
2017-09-07 12:31:47 +02:00
require_once('vendor/autoload.php');
2017-09-05 17:22:06 +02:00
```
2017-09-07 12:27:20 +02:00
2017-09-07 12:48:14 +02:00
### Git
Execute the following `git` command from the shell in your project directory:
```sh
git clone https://github.com/Art-of-WiFi/UniFi-API-client.git
```
When git is done cloning, include the file containing the class like so in your code:
```php
require_once('path/to/src/Client.php');
```
2017-09-07 12:27:20 +02:00
### Download the Release
2017-09-07 17:46:22 +02:00
If you prefer not to use composer or git, you can simply [download the package ](https://github.com/Art-of-WiFi/UniFi-API-client/archive/master.zip ), uncompress the zip file, then include the file containing the class in your code like so:
2017-09-07 12:27:20 +02:00
```php
require_once('path/to/src/Client.php');
2017-09-05 17:22:06 +02:00
```
2017-09-07 12:27:20 +02:00
## Example usage
2017-09-05 11:48:35 +02:00
A basic example how to use the class:
```php
2017-09-05 13:04:11 +02:00
/**
* load the class using the composer autoloader
*/
2017-09-07 12:31:47 +02:00
require_once('vendor/autoload.php');
2017-09-05 13:04:11 +02:00
2017-09-05 11:48:35 +02:00
/**
* initialize the Unifi API connection class, log in to the controller and request the alarms collection
* (this example assumes you have already assigned the correct values to the variables used)
*/
2017-10-06 12:46:07 +02:00
$unifi_connection = new UniFi_API\Client($controller_user, $controller_password, $controller_url, $site_id, $controller_version, true);
2017-09-05 11:48:35 +02:00
$login = $unifi_connection->login();
2017-09-14 12:15:21 +02:00
$results = $unifi_connection->list_alarms(); // returns a PHP array containing alarm objects
2017-09-05 11:48:35 +02:00
```
2017-09-07 12:34:31 +02:00
Please refer to the `examples/` directory for some more detailed examples which you can use as a starting point for your own PHP code.
2017-09-05 17:52:20 +02:00
2017-10-26 17:06:59 +02:00
#### IMPORTANT NOTES:
2017-10-06 12:46:07 +02:00
2017-10-26 17:06:59 +02:00
1. The last parameter (`true`) that is passed to the constructor, enables validation of the controller's SSL certificate which is otherwise **disabled** by default. It is highly recommended to enable this feature in production environments where you have a valid SSL cert installed on the UniFi Controller, and which is associated with the FQDN of the server as used in the `controller_url` parameter. This option was added with API client version 1.1.16.
2017-10-06 12:46:07 +02:00
2017-10-26 17:06:59 +02:00
2. In the example above, `$site_id` is the 8 character short site "name" which is visible in the URL when managing the site in the UniFi Controller:
2017-09-07 12:27:20 +02:00
2017-10-26 17:06:59 +02:00
...`https://< controller IP address or FQDN > :8443/manage/site/jl3z2shm/dashboard`
2017-09-07 12:27:20 +02:00
2017-10-26 17:06:59 +02:00
...In this case, `jl3z2shm` is the value required for $site_id.
2017-09-07 12:27:20 +02:00
## Need help or have suggestions?
2017-09-11 16:50:24 +02:00
There is still work to be done to add functionality and improve the usability of this class, so all suggestions/comments are welcome. Please use the github [issue ](https://github.com/Art-of-WiFi/UniFi-API-client/issues ) list or the Ubiquiti Community forums (https://community.ubnt.com/t5/UniFi-Wireless/PHP-class-to-access-the-UniFi-controller-API-updates-and/td-p/1512870) to share your ideas/questions.
2017-09-07 12:27:20 +02:00
## Contribute
If you would like to contribute code (improvements), please open an issue and include your code there or else create a pull request.
2017-09-05 11:48:35 +02:00
2017-09-11 16:50:24 +02:00
## Credits
This class is largely based on the work done by the following developers:
- domwo: http://community.ubnt.com/t5/UniFi-Wireless/little-php-class-for-unifi-api/m-p/603051
- fbagnol: https://github.com/fbagnol/class.unifi.php
2017-10-10 09:37:29 +02:00
- and the API as published by Ubiquiti: https://dl.ubnt.com/unifi/5.6.18-8261dc5066/unifi_sh_api
2017-09-11 16:50:24 +02:00
2017-09-05 11:48:35 +02:00
## Important Disclaimer
2017-09-07 12:27:20 +02:00
2017-10-18 10:09:55 +02:00
Many of the functions in this API client class are not officially supported by UBNT and as such, may not be supported in future versions of the UniFi Controller API.