UNPKG

@yawetse/pkgcloud

Version:

An infrastructure-as-a-service agnostic cloud library for node.js

68 lines (58 loc) 1.69 kB
/* * server.js: Joyent Cloud Machine * * (C) 2012 Charlie Robbins, Ken Perkins, Ross Kukulinski & the Contributors. * */ var util = require('util'), compute = require('../../core/compute'), base = require('../../core/compute/server'); var Server = exports.Server = function Server(client, details) { base.Server.call(this, client, details); }; util.inherits(Server, base.Server); Server.prototype._setProperties = function (details) { this.id = details.id; this.name = details.name; if (details.state) { switch (details.state.toUpperCase()) { case 'PROVISIONING': this.status = this.STATUS.provisioning; break; case 'RUNNING': this.status = this.STATUS.running; break; case 'STOPPING': case 'STOPPED': this.status = this.STATUS.stopped; break; default: this.status = this.STATUS.unknown; break; } } var addresses = details.ips.reduce(function (all, addr) { if (compute.isPrivate(addr)) { all['private'].push(addr); } else { all['public'].push(addr); } return all; }, { 'private': [], 'public': [] }); // // Joyent specific // this.ips = details.ips; this.imageId = details.dataset; this.addresses = details.addresses = addresses; this.created = details.created; this.updated = details.updated; this.type = details.type; this.ram = details.memory; this.disk = details.disk; this.metadata = details.metadata; this.original = this.joyent = details; this.adminPass = details.metadata && details.metadata.credentials && details.metadata.credentials.admin; };