Giter VIP home page Giter VIP logo

node-risport70's Introduction

node-risport70

The RisPort70 (Real-Time Information Port) service provides an API for querying the current connection status of phones, devices, and applications connected to Cisco Unified Communications Manager (Unified CM). Details provided by RisPort70 include last known connection and registration state, IP address, and model information. The API provides queries, for example by name, for single device or application instances, and wildcard queries which return the status of multiple devices at once.

The RisPort70 API is SOAP based, node-risport70 project provides an easier way of accessing this API from Node JS applications. The results are converted into JSON objects.

RisPort70 API Reference

Installation

npm install node-risport70

Sample Usage

const RisPort70 =  require('node-risport70');

const serviceOptions = {
    host: '198.18.133.3' || process.env.CUCM,
    user: 'administrator' || process.env.UCUSER,
    pass: 'C1sco12345' || process.env.UCPASS,
    timeout: 8000
};

//Disable SSL Certificate Check  (most are self signed)
process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0;

const RisPort70Service = new RisPort70.RisPort70(serviceOptions);
const testPhone = 'SEPEC1D8B2B6DEC';
const phones = ['SEPEC1D8B2B6DEC', 'SEP70C9C6694624', 'cxout_7167'];

RisPort70Service.getPhoneByName(testPhone)
    .then(phone => {
        console.log('phone =', phone);
    })
    .catch(console.error);


RisPort70Service.getPhonesByName(phones)
    .then(devices => {
        console.log(`returned devices = ${JSON.stringify(devices)} `);
    })
    .catch(console.error);


RisPort70Service.selectCMDevice({
    MaxReturnedDevices: 10000,
    DeviceClass: RisPort70.DeviceClass.Any,
    Model: RisPort70.Models.All,
    Status: RisPort70.Status.Any,
    NodeName: '',
    SelectBy: RisPort70.SelectBy.Name,
    Protocol: RisPort70.Protocol.Any,
    DownloadStatus: RisPort70.DownloadStatus.Any,
    items: phones,
}).then(devices => {
    console.log(`returned devices = ${JSON.stringify(devices)} `);
})
    .catch(console.error);

Project Sponsor

This project has been created thanks to support of: Call Record Analyzer (CRA) https://www.callrecordanalyzer.com/

Disclaimer

Many ideas used in this project came from: https://github.com/levensailor/node-cisco-axl

node-risport70

node-risport70's People

Contributors

dependabot[bot] avatar probert100 avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

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.