all files / lib/ client.js

62.07% Statements 18/29
37.5% Branches 3/8
62.5% Functions 5/8
62.96% Lines 17/27
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108                                                                                                                                                                                     
'use strict'
 
/*
 MIT License
 
 Copyright (c) 2016 Ilya Shaisultanov
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 
 The above copyright notice and this permission notice shall be included in all
 copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
 */
 
var SSDP = require('./')
  , util = require('util')
  , c = require('./const')
  , Promise = require('bluebird')
  , SsdpHeader = require('./ssdpHeader')
 
/**
 *
 * @param opts
 * @constructor
 */
function SsdpClient(opts) {
  this._subclass = 'node-ssdp:client'
  SSDP.call(this, opts)
}
 
 
 
util.inherits(SsdpClient, SSDP)
 
 
/**
 * Start the listener for multicast notifications from SSDP devices
 * @param [cb]
 */
SsdpClient.prototype.start = function (cb) {
  var self = this;
  return new Promise(function(success, failure) { 
    function onBind(err) {
      if (cb) cb.apply(self, arguments)
      Iif (err) return failure(err)
      success()
    }
    self._start(onBind)
  })
}
 
 
/**
 *Close UDP socket.
 */
SsdpClient.prototype.stop = function () {
  this._stop()
}
 
 
/**
 *
 * @param {String} serviceType
 * @returns {*}
 */
SsdpClient.prototype.search = function search(serviceType) {
  var self = this
 
  if (!this._started) {
    return this.start(function () {
      self.search(serviceType)
    })
  }
 
  var header = new SsdpHeader(c.M_SEARCH, {
    'HOST': self._ssdpServerHost,
    'ST': serviceType,
    'MAN': '"ssdp:discover"',
    'MX': 3
  })
 
  self._logger('Attempting to send an M-SEARCH request')
 
  self._send(header, function (err, bytes) {
    if (err) {
      self._logger('Error: unable to send M-SEARCH request ID %s: %o', header.id(), err)
    } else {
      self._logger('Sent M-SEARCH request: %o', {'message': header.toString(), id: header.id()})
    }
  })
}
 
 
 
module.exports = SsdpClient