Giter Club home page Giter Club logo

unifi's Introduction

invokatis/unifi

A simple client for UBNT's new controller api to perform some basic tasks.

Latest Version Downloads PHP Version License

SensioLabsInsight

Install

composer require invokatis/unifi

Usage

<?php

$guzzle = new GuzzleHttp\Client([
   'base_uri' => 'https://localhost:8443/',
   'cookies' => true,
]);

/**
 * @desc Create a Unifi\Client and then login to controller.
 */
$client = new Unifi\Client($guzzle);
$client->login('admin_user', 'secret_pass');

/**
 * @desc Get list of connected devices for a site.
 */
$devices = $client->devices('default');

/**
 * @desc Get list of connected guests for a site.
 */
$guests = $client->guests('default');

/**
 * @desc Authorize a guest MAC address for 10 minutes.
 */
$client->authorize('default', '6f:d7:b9:7f:4e:61', 10);

/**
 * @desc Un-authorize a guest MAC address.
 */
$client->unauthorize('default', '6f:d7:b9:7f:4e:61');

/**
 * @desc Update WLAN configuration for a site & a provided WLAN ID.
 */
$client->wlanconf('default', 'dd982884edf68487cb8ff664b3dfdf12', [
    'name' => 'My New SSID',
]);

/**
 * @desc Reboot an access point.
 */
$client->reboot('default', '6f:d7:b9:7f:4e:61');

/**
 * @desc You can logout when you are done.
 */
$client->logout();

License

See LICENSE.md file.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.