All files BitX.js

100% Statements 127/127
100% Branches 44/44
100% Functions 26/26
100% Lines 127/127
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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255    3x 3x 3x 3x 3x 3x   3x 3x   3x             10x 1x   9x 4x   5x   9x 9x 9x 9x 9x     3x 33x 33x 33x 22x 11x   11x 10x 10x   33x               33x 28x 28x   33x   33x 32x   32x   32x 32x     32x 32x 1x   31x 31x   1x   30x 3x   27x       33x 1x     33x 10x     33x     3x 4x 3x 3x   4x     4x     3x 2x     3x 3x 2x 2x   3x     3x     3x 3x 2x 2x   3x     3x     3x 4x 2x 2x   4x     4x     3x 2x 2x     3x 3x     3x     3x 4x           4x     3x 2x         2x     3x 2x           2x     3x 2x         2x     3x 1x     3x 4x 2x 2x   4x     3x 3x 2x 2x   3x     3x     3x 1x     3x 2x 1x 1x   2x         2x     3x 1x     3x 1x     3x 1x       1x     3x 1x     3x  
'use strict'
 
var https = require('https')
var path = require('path')
var querystring = require('querystring')
var config = require(path.join(__dirname, '..', 'package'))
var url = require('url')
var util = require('util')
 
var basePath = '/api/1/'
var extend = util._extend
 
var defaultHeaders = {
  'Accept': 'application/json',
  'Accept-Charset': 'utf-8',
  'User-Agent': 'node-bitx v' + config.version
}
 
function BitX (keyId, keySecret, options) {
  if (!(this instanceof BitX)) {
    return new BitX(keyId, keySecret, options)
  }
  if (typeof keyId === 'string') {
    this.auth = keyId + ':' + keySecret
  } else {
    options = keyId
  }
  options = options || {}
  this.hostname = options.hostname || 'api.mybitx.com'
  this.port = options.port || 443
  this.ca = options.ca
  this.pair = options.pair || 'XBTZAR'
}
 
BitX.prototype._request = function (method, resourcePath, data, callback) {
  var headers = extend({}, defaultHeaders)
  data = querystring.stringify(data)
  if (method === 'GET') {
    if (data) {
      resourcePath += '?' + data
    }
  } else if (method === 'POST') {
    headers['Content-Type'] = 'application/x-www-form-urlencoded'
    headers['Content-Length'] = Buffer.byteLength(data)
  }
  var options = {
    headers: headers,
    hostname: this.hostname,
    path: url.resolve(basePath, resourcePath),
    port: this.port,
    auth: this.auth,
    method: method
  }
  if (this.ca) {
    options.ca = this.ca
    options.agent = new https.Agent(options)
  }
  var req = https.request(options)
 
  req.on('response', function (res) {
    var response = ''
 
    res.setEncoding('utf8')
 
    res.on('data', function (data) {
      response += data
    })
 
    res.on('end', function () {
      if (res.statusCode !== 200) {
        return callback(new Error('BitX error ' + res.statusCode + ': ' + response))
      }
      try {
        response = JSON.parse(response)
      } catch (err) {
        return callback(err)
      }
      if (response.error) {
        return callback(new Error(response.error))
      }
      return callback(null, response)
    })
  })
 
  req.on('error', function (err) {
    callback(err)
  })
 
  if (method === 'POST' && data) {
    req.write(data)
  }
 
  req.end()
}
 
BitX.prototype.getTicker = function (options, callback) {
  if (typeof options === 'function') {
    callback = options
    options = null
  }
  var defaults = {
    pair: this.pair
  }
  this._request('GET', 'ticker', extend(defaults, options), callback)
}
 
BitX.prototype.getAllTickers = function (callback) {
  this._request('GET', 'tickers', null, callback)
}
 
BitX.prototype.getOrderBook = function (options, callback) {
  if (typeof options === 'function') {
    callback = options
    options = null
  }
  var defaults = {
    pair: this.pair
  }
  this._request('GET', 'orderbook', extend(defaults, options), callback)
}
 
BitX.prototype.getTrades = function (options, callback) {
  if (typeof options === 'function') {
    callback = options
    options = null
  }
  var defaults = {
    pair: this.pair
  }
  this._request('GET', 'trades', extend(defaults, options), callback)
}
 
BitX.prototype.getOrderList = function (options, callback) {
  if (typeof options === 'function') {
    callback = options
    options = null
  }
  var defaults = {
    pair: this.pair
  }
  this._request('GET', 'listorders', extend(defaults, options), callback)
}
 
BitX.prototype.getLimits = function (callback) {
  console.log('node-bitx warning: BitX.getLimits is deprecated. Please use BitX.getBalance instead.')
  this._request('GET', 'BTCZAR/getlimits', null, callback)
}
 
BitX.prototype.stopOrder = function (orderId, callback) {
  var body = {
    order_id: orderId
  }
  this._request('POST', 'stoporder', body, callback)
}
 
BitX.prototype.postBuyOrder = function (volume, price, callback) {
  var body = {
    type: 'BID',
    volume: volume,
    price: price,
    pair: this.pair
  }
  this._request('POST', 'postorder', body, callback)
}
 
BitX.prototype.postMarketBuyOrder = function (volume, callback) {
  var body = {
    type: 'BUY',
    counter_volume: volume,
    pair: this.pair
  }
  this._request('POST', 'marketorder', body, callback)
}
 
BitX.prototype.postSellOrder = function (volume, price, callback) {
  var body = {
    type: 'ASK',
    volume: volume,
    price: price,
    pair: this.pair
  }
  this._request('POST', 'postorder', body, callback)
}
 
BitX.prototype.postMarketSellOrder = function (volume, callback) {
  var body = {
    type: 'SELL',
    base_volume: volume,
    pair: this.pair
  }
  this._request('POST', 'marketorder', body, callback)
}
 
BitX.prototype.getOrder = function (id, callback) {
  this._request('GET', 'orders/' + id, null, callback)
}
 
BitX.prototype.getBalance = function (asset, callback) {
  if (typeof asset === 'function') {
    callback = asset
    asset = null
  }
  this._request('GET', 'balance', asset ? {asset: asset} : null, callback)
}
 
BitX.prototype.getFundingAddress = function (asset, options, callback) {
  if (typeof options === 'function') {
    callback = options
    options = null
  }
  var defaults = {
    asset: asset
  }
  this._request('GET', 'funding_address', extend(defaults, options), callback)
}
 
BitX.prototype.createFundingAddress = function (asset, callback) {
  this._request('POST', 'funding_address', {asset: asset}, callback)
}
 
BitX.prototype.getTransactions = function (asset, options, callback) {
  if (typeof options === 'function') {
    callback = options
    options = null
  }
  var defaults = {
    asset: asset,
    offset: 0,
    limit: 10
  }
  this._request('GET', 'transactions', extend(defaults, options), callback)
}
 
BitX.prototype.getWithdrawals = function (callback) {
  this._request('GET', 'withdrawals/', null, callback)
}
 
BitX.prototype.getWithdrawal = function (id, callback) {
  this._request('GET', 'withdrawals/' + id, null, callback)
}
 
BitX.prototype.requestWithdrawal = function (type, amount, callback) {
  var options = {
    type: type,
    amount: amount
  }
  this._request('POST', 'withdrawals/', options, callback)
}
 
BitX.prototype.cancelWithdrawal = function (id, callback) {
  this._request('DELETE', 'withdrawals/' + id, null, callback)
}
 
module.exports = BitX