2014-02-07 23:21:24 +02:00
|
|
|
/*
|
2015-09-04 21:12:20 +03:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2015 Joyent, Inc.
|
2014-02-07 23:21:24 +02:00
|
|
|
*
|
2015-09-04 21:04:45 +03:00
|
|
|
* Core TritonApi client driver class.
|
2014-02-07 23:21:24 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
var assert = require('assert-plus');
|
2014-02-20 05:52:58 +02:00
|
|
|
var auth = require('smartdc-auth');
|
2014-02-08 10:15:26 +02:00
|
|
|
var EventEmitter = require('events').EventEmitter;
|
2014-02-07 23:21:24 +02:00
|
|
|
var fs = require('fs');
|
2015-08-26 20:02:01 +03:00
|
|
|
var format = require('util').format;
|
2015-09-04 01:12:08 +03:00
|
|
|
var mkdirp = require('mkdirp');
|
2015-07-26 08:45:20 +03:00
|
|
|
var once = require('once');
|
2014-02-07 23:21:24 +02:00
|
|
|
var path = require('path');
|
2015-08-25 23:11:40 +03:00
|
|
|
var restifyClients = require('restify-clients');
|
2015-09-02 20:47:06 +03:00
|
|
|
// We are cheating here. restify-clients should export its 'bunyan'.
|
|
|
|
var restifyBunyanSerializers =
|
|
|
|
require('restify-clients/lib/helpers/bunyan').serializers;
|
2015-08-26 06:53:48 +03:00
|
|
|
var tabula = require('tabula');
|
2015-08-27 03:21:27 +03:00
|
|
|
var vasync = require('vasync');
|
2014-02-07 23:21:24 +02:00
|
|
|
|
2014-02-20 05:52:58 +02:00
|
|
|
var cloudapi = require('./cloudapi2');
|
2014-02-07 23:21:24 +02:00
|
|
|
var common = require('./common');
|
2015-07-26 08:45:20 +03:00
|
|
|
var errors = require('./errors');
|
2014-02-07 23:21:24 +02:00
|
|
|
var loadConfigSync = require('./config').loadConfigSync;
|
|
|
|
|
|
|
|
|
2015-11-25 21:04:44 +02:00
|
|
|
// ---- globals
|
|
|
|
|
|
|
|
var CLOUDAPI_ACCEPT_VERSION = '~8||~7';
|
|
|
|
|
|
|
|
|
2014-02-07 23:21:24 +02:00
|
|
|
|
2015-11-13 02:04:12 +02:00
|
|
|
// ---- internal support stuff
|
|
|
|
|
|
|
|
function _assertRoleTagResourceType(resourceType, errName) {
|
|
|
|
assert.string(resourceType, errName);
|
|
|
|
var knownResourceTypes = ['resource', 'instance', 'image',
|
|
|
|
'package', 'network'];
|
|
|
|
assert.ok(knownResourceTypes.indexOf(resourceType) !== -1,
|
|
|
|
'unknown resource type: ' + resourceType);
|
|
|
|
}
|
|
|
|
|
|
|
|
function _roleTagResourceUrl(account, type, id) {
|
|
|
|
var ns = {
|
|
|
|
instance: 'machines',
|
|
|
|
image: 'images',
|
|
|
|
'package': 'packages',
|
|
|
|
network: 'networks'
|
|
|
|
}[type];
|
|
|
|
assert.ok(ns, 'unknown resource type: ' + type);
|
|
|
|
|
|
|
|
return format('/%s/%s/%s', account, ns, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-09-04 21:04:45 +03:00
|
|
|
//---- TritonApi class
|
2014-02-07 23:21:24 +02:00
|
|
|
|
|
|
|
/**
|
2015-09-04 21:04:45 +03:00
|
|
|
* Create a TritonApi client.
|
2014-02-07 23:21:24 +02:00
|
|
|
*
|
2015-09-08 19:55:48 +03:00
|
|
|
* @param opts {Object}
|
2014-02-07 23:21:24 +02:00
|
|
|
* - log {Bunyan Logger}
|
2015-08-27 03:21:27 +03:00
|
|
|
* ...
|
2014-02-07 23:21:24 +02:00
|
|
|
*/
|
2015-09-08 19:55:48 +03:00
|
|
|
function TritonApi(opts) {
|
|
|
|
assert.object(opts, 'opts');
|
|
|
|
assert.object(opts.log, 'opts.log');
|
|
|
|
assert.object(opts.profile, 'opts.profile');
|
|
|
|
assert.object(opts.config, 'opts.config');
|
|
|
|
|
|
|
|
this.profile = opts.profile;
|
|
|
|
this.config = opts.config;
|
2014-02-07 23:21:24 +02:00
|
|
|
|
2014-02-20 05:52:58 +02:00
|
|
|
// Make sure a given bunyan logger has reasonable client_re[qs] serializers.
|
|
|
|
// Note: This was fixed in restify, then broken again in
|
|
|
|
// https://github.com/mcavage/node-restify/pull/501
|
2015-09-08 19:55:48 +03:00
|
|
|
if (opts.log.serializers &&
|
|
|
|
(!opts.log.serializers.client_req ||
|
|
|
|
!opts.log.serializers.client_req)) {
|
|
|
|
this.log = opts.log.child({
|
2015-09-02 20:47:06 +03:00
|
|
|
serializers: restifyBunyanSerializers
|
2014-02-20 05:52:58 +02:00
|
|
|
});
|
|
|
|
} else {
|
2015-09-08 19:55:48 +03:00
|
|
|
this.log = opts.log;
|
2014-02-20 05:52:58 +02:00
|
|
|
}
|
2015-09-08 19:55:48 +03:00
|
|
|
|
2015-12-08 21:59:45 +02:00
|
|
|
if (this.config._configDir) {
|
2015-09-08 19:55:48 +03:00
|
|
|
this.cacheDir = path.resolve(this.config._configDir,
|
|
|
|
this.config.cacheDir,
|
2015-11-13 02:04:12 +02:00
|
|
|
common.profileSlug(this.profile));
|
2015-09-03 06:48:14 +03:00
|
|
|
this.log.trace({cacheDir: this.cacheDir}, 'cache dir');
|
2015-09-08 19:55:48 +03:00
|
|
|
// TODO perhaps move this to an async .init()
|
|
|
|
if (!fs.existsSync(this.cacheDir)) {
|
|
|
|
try {
|
|
|
|
mkdirp.sync(this.cacheDir);
|
|
|
|
} catch (e) {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
2015-09-03 06:48:14 +03:00
|
|
|
}
|
2015-08-25 23:11:40 +03:00
|
|
|
|
|
|
|
this.cloudapi = this._cloudapiFromProfile(this.profile);
|
2014-02-07 23:21:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-08 21:59:45 +02:00
|
|
|
TritonApi.prototype.close = function close() {
|
|
|
|
this.cloudapi.close();
|
|
|
|
delete this.cloudapi;
|
|
|
|
};
|
|
|
|
|
2014-02-07 23:21:24 +02:00
|
|
|
|
2015-09-04 21:04:45 +03:00
|
|
|
TritonApi.prototype._cloudapiFromProfile =
|
2015-09-08 19:55:48 +03:00
|
|
|
function _cloudapiFromProfile(profile)
|
|
|
|
{
|
2015-08-25 23:11:40 +03:00
|
|
|
assert.object(profile, 'profile');
|
|
|
|
assert.string(profile.account, 'profile.account');
|
2015-12-02 20:52:47 +02:00
|
|
|
assert.optionalString(profile.actAsAccount, 'profile.actAsAccount');
|
2015-08-25 23:11:40 +03:00
|
|
|
assert.string(profile.keyId, 'profile.keyId');
|
|
|
|
assert.string(profile.url, 'profile.url');
|
2015-11-04 01:40:59 +02:00
|
|
|
assert.optionalString(profile.user, 'profile.user');
|
2015-08-25 23:11:40 +03:00
|
|
|
assert.optionalString(profile.privKey, 'profile.privKey');
|
|
|
|
assert.optionalBool(profile.insecure, 'profile.insecure');
|
2015-11-25 21:04:44 +02:00
|
|
|
assert.optionalString(profile.acceptVersion, 'profile.acceptVersion');
|
|
|
|
|
2015-08-25 23:11:40 +03:00
|
|
|
var rejectUnauthorized = (profile.insecure === undefined
|
|
|
|
? true : !profile.insecure);
|
2015-11-25 21:04:44 +02:00
|
|
|
var acceptVersion = profile.acceptVersion || CLOUDAPI_ACCEPT_VERSION;
|
2015-08-25 23:11:40 +03:00
|
|
|
|
|
|
|
var sign;
|
|
|
|
if (profile.privKey) {
|
|
|
|
sign = auth.privateKeySigner({
|
|
|
|
user: profile.account,
|
2015-11-04 01:40:59 +02:00
|
|
|
subuser: profile.user,
|
2015-08-25 23:11:40 +03:00
|
|
|
keyId: profile.keyId,
|
|
|
|
key: profile.privKey
|
2014-02-07 23:21:24 +02:00
|
|
|
});
|
2015-08-25 23:11:40 +03:00
|
|
|
} else {
|
|
|
|
sign = auth.cliSigner({
|
|
|
|
keyId: profile.keyId,
|
2015-11-04 01:40:59 +02:00
|
|
|
user: profile.account,
|
|
|
|
subuser: profile.user
|
2015-07-26 08:45:20 +03:00
|
|
|
});
|
2015-08-25 23:11:40 +03:00
|
|
|
}
|
|
|
|
var client = cloudapi.createClient({
|
|
|
|
url: profile.url,
|
2015-12-02 20:52:47 +02:00
|
|
|
account: profile.actAsAccount || profile.account,
|
2015-11-04 01:40:59 +02:00
|
|
|
user: profile.user,
|
2015-11-25 21:04:44 +02:00
|
|
|
version: acceptVersion,
|
2015-08-25 23:11:40 +03:00
|
|
|
rejectUnauthorized: rejectUnauthorized,
|
|
|
|
sign: sign,
|
|
|
|
log: this.log
|
2015-07-26 08:45:20 +03:00
|
|
|
});
|
2015-08-25 23:11:40 +03:00
|
|
|
return client;
|
2015-07-26 08:45:20 +03:00
|
|
|
};
|
|
|
|
|
2015-09-08 19:55:48 +03:00
|
|
|
|
|
|
|
TritonApi.prototype._cachePutJson = function _cachePutJson(key, obj, cb) {
|
|
|
|
var self = this;
|
|
|
|
assert.string(this.cacheDir, 'this.cacheDir');
|
|
|
|
assert.string(key, 'key');
|
|
|
|
assert.object(obj, 'obj');
|
|
|
|
assert.func(cb, 'cb');
|
|
|
|
|
|
|
|
var keyPath = path.resolve(this.cacheDir, key);
|
|
|
|
var data = JSON.stringify(obj);
|
|
|
|
fs.writeFile(keyPath, data, {encoding: 'utf8'}, function (err) {
|
|
|
|
if (err) {
|
|
|
|
self.log.info({err: err, keyPath: keyPath}, 'error caching');
|
|
|
|
}
|
|
|
|
cb();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
TritonApi.prototype._cacheGetJson = function _cacheGetJson(key, cb) {
|
|
|
|
var self = this;
|
|
|
|
assert.string(this.cacheDir, 'this.cacheDir');
|
|
|
|
assert.string(key, 'key');
|
|
|
|
assert.func(cb, 'cb');
|
|
|
|
|
|
|
|
var keyPath = path.resolve(this.cacheDir, key);
|
2015-09-22 00:00:58 +03:00
|
|
|
fs.readFile(keyPath, 'utf8', function (err, data) {
|
|
|
|
if (err && err.code === 'ENOENT') {
|
|
|
|
self.log.trace({keyPath: keyPath},
|
|
|
|
'cache file does not exist');
|
|
|
|
return cb();
|
|
|
|
} else if (err) {
|
|
|
|
self.log.warn({err: err, keyPath: keyPath},
|
|
|
|
'error reading cache file');
|
2015-09-08 19:55:48 +03:00
|
|
|
return cb();
|
|
|
|
}
|
2015-09-22 00:00:58 +03:00
|
|
|
var obj;
|
|
|
|
try {
|
|
|
|
obj = JSON.parse(data);
|
|
|
|
} catch (dataErr) {
|
|
|
|
self.log.trace({err: dataErr, keyPath: keyPath},
|
|
|
|
'error parsing JSON cache file, removing');
|
|
|
|
fs.unlink(keyPath, function (err2) {
|
|
|
|
if (err2) {
|
|
|
|
self.log.warn({err: err2},
|
|
|
|
'failed to remove JSON cache file');
|
|
|
|
}
|
|
|
|
cb(err2);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cb(null, obj);
|
2015-09-08 19:55:48 +03:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-08-26 19:59:12 +03:00
|
|
|
/**
|
2015-09-21 20:41:13 +03:00
|
|
|
* CloudAPI listImages wrapper with optional caching.
|
|
|
|
*
|
|
|
|
* @param opts {Object} Optional.
|
2015-12-30 00:53:49 +02:00
|
|
|
* - useCache {Boolean} Default false. Whether to use Triton's local cache.
|
|
|
|
* Note that the *currently* implementation will only use the cache
|
|
|
|
* when there are no filter options.
|
|
|
|
* - ... all other cloudapi ListImages options per
|
|
|
|
* <https://apidocs.joyent.com/cloudapi/#ListImages>
|
2015-09-21 20:41:13 +03:00
|
|
|
* @param {Function} callback `function (err, imgs)`
|
2015-08-26 19:59:12 +03:00
|
|
|
*/
|
2015-09-04 21:04:45 +03:00
|
|
|
TritonApi.prototype.listImages = function listImages(opts, cb) {
|
2015-08-26 19:59:12 +03:00
|
|
|
var self = this;
|
|
|
|
if (cb === undefined) {
|
|
|
|
cb = opts;
|
|
|
|
opts = {};
|
|
|
|
}
|
|
|
|
assert.object(opts, 'opts');
|
2015-08-27 03:21:27 +03:00
|
|
|
assert.optionalBool(opts.useCache, 'opts.useCache');
|
2015-08-26 19:59:12 +03:00
|
|
|
assert.func(cb, 'cb');
|
|
|
|
|
2015-09-21 20:41:13 +03:00
|
|
|
var listOpts = common.objCopy(opts);
|
|
|
|
delete listOpts.useCache;
|
|
|
|
|
2015-12-30 00:53:49 +02:00
|
|
|
// For now at least, we only cache full results (no filtering).
|
|
|
|
var useCache = Boolean(opts.useCache);
|
|
|
|
var cacheKey;
|
|
|
|
if (Object.keys(listOpts).length > 0) {
|
|
|
|
useCache = false;
|
|
|
|
} else {
|
|
|
|
cacheKey = 'images.json';
|
|
|
|
}
|
2015-09-08 19:55:48 +03:00
|
|
|
var cached;
|
|
|
|
var fetched;
|
|
|
|
var res;
|
2015-08-26 19:59:12 +03:00
|
|
|
|
2015-09-08 19:55:48 +03:00
|
|
|
vasync.pipeline({funcs: [
|
|
|
|
function tryCache(_, next) {
|
2015-12-30 00:53:49 +02:00
|
|
|
if (!useCache) {
|
2015-09-08 19:55:48 +03:00
|
|
|
return next();
|
2015-08-26 19:59:12 +03:00
|
|
|
}
|
2015-09-08 19:55:48 +03:00
|
|
|
self._cacheGetJson(cacheKey, function (err, cached_) {
|
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
cached = cached_;
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
function listImgs(_, next) {
|
|
|
|
if (cached) {
|
|
|
|
return next();
|
2015-08-26 19:59:12 +03:00
|
|
|
}
|
|
|
|
|
2015-09-21 20:41:13 +03:00
|
|
|
self.cloudapi.listImages(listOpts, function (err, imgs, res_) {
|
2015-09-08 19:55:48 +03:00
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
fetched = imgs;
|
|
|
|
res = res_;
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
function cacheFetched(_, next) {
|
2015-12-30 00:53:49 +02:00
|
|
|
if (cacheKey && fetched) {
|
|
|
|
self._cachePutJson(cacheKey, fetched, next);
|
|
|
|
} else {
|
|
|
|
next();
|
2015-08-26 19:59:12 +03:00
|
|
|
}
|
2015-09-08 19:55:48 +03:00
|
|
|
}
|
2015-08-26 19:59:12 +03:00
|
|
|
|
2015-09-08 19:55:48 +03:00
|
|
|
]}, function (err) {
|
|
|
|
if (err) {
|
|
|
|
cb(err, null, res);
|
|
|
|
} else {
|
|
|
|
cb(null, fetched || cached, res);
|
|
|
|
}
|
|
|
|
});
|
2015-08-26 19:59:12 +03:00
|
|
|
};
|
2015-07-26 08:45:20 +03:00
|
|
|
|
2015-09-08 19:55:48 +03:00
|
|
|
|
2015-07-26 08:45:20 +03:00
|
|
|
/**
|
2015-08-26 19:15:17 +03:00
|
|
|
* Get an image by ID, exact name, or short ID, in that order.
|
|
|
|
*
|
|
|
|
* If there is more than one image with that name, then the latest
|
|
|
|
* (by published_at) is returned.
|
2015-07-26 08:45:20 +03:00
|
|
|
*/
|
2015-10-05 23:34:24 +03:00
|
|
|
TritonApi.prototype.getImage = function getImage(opts, cb) {
|
|
|
|
var self = this;
|
|
|
|
if (typeof (opts) === 'string')
|
|
|
|
opts = {name: opts};
|
|
|
|
assert.object(opts, 'opts');
|
|
|
|
assert.string(opts.name, 'opts.name');
|
|
|
|
assert.optionalBool(opts.useCache, 'opts.useCache');
|
2015-08-26 06:53:48 +03:00
|
|
|
assert.func(cb, 'cb');
|
|
|
|
|
2015-10-05 23:34:24 +03:00
|
|
|
var img;
|
|
|
|
if (common.isUUID(opts.name)) {
|
|
|
|
vasync.pipeline({funcs: [
|
|
|
|
function tryCache(_, next) {
|
|
|
|
if (!opts.useCache) {
|
|
|
|
next();
|
|
|
|
return;
|
|
|
|
}
|
2015-12-30 00:53:49 +02:00
|
|
|
var cacheKey = 'images.json';
|
|
|
|
self._cacheGetJson(cacheKey, function (err, images) {
|
2015-10-05 23:34:24 +03:00
|
|
|
if (err) {
|
|
|
|
next(err);
|
|
|
|
return;
|
|
|
|
}
|
2015-10-07 09:33:18 +03:00
|
|
|
for (var i = 0; i < images.length; i++) {
|
|
|
|
if (images[i].id === opts.name) {
|
|
|
|
img = images[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-10-05 23:34:24 +03:00
|
|
|
next();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function cloudApiGetImage(_, next) {
|
|
|
|
if (img !== undefined) {
|
|
|
|
next();
|
|
|
|
return;
|
|
|
|
}
|
2015-10-07 09:28:25 +03:00
|
|
|
self.cloudapi.getImage({id: opts.name}, function (err, img_) {
|
|
|
|
img = img_;
|
2015-10-07 09:09:52 +03:00
|
|
|
if (err && err.restCode === 'ResourceNotFound') {
|
2015-10-07 09:33:18 +03:00
|
|
|
err = new errors.ResourceNotFoundError(err, format(
|
|
|
|
'image with id %s was not found', opts.name));
|
2015-10-07 09:09:52 +03:00
|
|
|
}
|
2015-10-05 23:34:24 +03:00
|
|
|
next(err);
|
|
|
|
});
|
2015-08-26 06:53:48 +03:00
|
|
|
}
|
2015-10-07 09:28:25 +03:00
|
|
|
]}, function done(err) {
|
|
|
|
if (err) {
|
|
|
|
cb(err);
|
|
|
|
} else if (img.state !== 'active') {
|
|
|
|
cb(new errors.TritonError(
|
|
|
|
format('image %s is not active', opts.name)));
|
|
|
|
} else {
|
|
|
|
cb(null, img);
|
2015-10-05 23:34:24 +03:00
|
|
|
}
|
2015-10-07 09:28:25 +03:00
|
|
|
});
|
2015-08-26 06:53:48 +03:00
|
|
|
} else {
|
2015-10-05 23:34:24 +03:00
|
|
|
var s = opts.name.split('@');
|
|
|
|
var name = s[0];
|
2015-09-21 23:37:26 +03:00
|
|
|
var version = s[1];
|
2015-09-22 00:16:47 +03:00
|
|
|
|
2015-10-07 09:28:25 +03:00
|
|
|
var listOpts = {};
|
2015-09-22 01:57:53 +03:00
|
|
|
if (version) {
|
2015-10-07 09:28:25 +03:00
|
|
|
listOpts.name = name;
|
|
|
|
listOpts.version = version;
|
|
|
|
listOpts.useCache = opts.useCache;
|
2015-09-22 01:57:53 +03:00
|
|
|
}
|
2015-10-07 09:28:25 +03:00
|
|
|
this.cloudapi.listImages(listOpts, function (err, imgs) {
|
2015-08-26 06:53:48 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
2015-08-26 20:02:01 +03:00
|
|
|
|
2015-08-26 06:53:48 +03:00
|
|
|
var nameMatches = [];
|
2015-08-26 19:15:17 +03:00
|
|
|
var shortIdMatches = [];
|
2015-08-26 06:53:48 +03:00
|
|
|
for (var i = 0; i < imgs.length; i++) {
|
2015-10-05 23:34:24 +03:00
|
|
|
img = imgs[i];
|
2015-08-26 19:15:17 +03:00
|
|
|
if (img.name === name) {
|
|
|
|
nameMatches.push(img);
|
|
|
|
}
|
2015-09-21 23:37:26 +03:00
|
|
|
if (common.uuidToShortId(img.id) === name) {
|
2015-08-26 19:15:17 +03:00
|
|
|
shortIdMatches.push(img);
|
2015-07-26 08:45:20 +03:00
|
|
|
}
|
2015-08-26 06:53:48 +03:00
|
|
|
}
|
2015-08-26 20:02:01 +03:00
|
|
|
|
2015-08-26 19:15:17 +03:00
|
|
|
if (nameMatches.length === 1) {
|
2015-08-26 06:53:48 +03:00
|
|
|
cb(null, nameMatches[0]);
|
2015-08-26 19:15:17 +03:00
|
|
|
} else if (nameMatches.length > 1) {
|
2015-08-26 06:53:48 +03:00
|
|
|
tabula.sortArrayOfObjects(nameMatches, 'published_at');
|
|
|
|
cb(null, nameMatches[nameMatches.length - 1]);
|
2015-08-26 19:15:17 +03:00
|
|
|
} else if (shortIdMatches.length === 1) {
|
|
|
|
cb(null, shortIdMatches[0]);
|
|
|
|
} else if (shortIdMatches.length === 0) {
|
2015-10-07 09:09:52 +03:00
|
|
|
cb(new errors.ResourceNotFoundError(format(
|
2015-09-02 10:03:17 +03:00
|
|
|
'no image with name or short id "%s" was found', name)));
|
2015-08-26 19:15:17 +03:00
|
|
|
} else {
|
2015-10-07 09:09:52 +03:00
|
|
|
cb(new errors.ResourceNotFoundError(
|
|
|
|
format('no image with name "%s" was found '
|
2015-09-02 10:03:17 +03:00
|
|
|
+ 'and "%s" is an ambiguous short id', name)));
|
2015-07-26 08:45:20 +03:00
|
|
|
}
|
2015-08-26 06:53:48 +03:00
|
|
|
});
|
2014-02-07 23:21:24 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-07-26 08:45:20 +03:00
|
|
|
/**
|
2015-08-26 20:02:01 +03:00
|
|
|
* Get an active package by ID, exact name, or short ID, in that order.
|
|
|
|
*
|
|
|
|
* If there is more than one package with that name, then this errors out.
|
2015-07-26 08:45:20 +03:00
|
|
|
*/
|
2015-09-04 21:04:45 +03:00
|
|
|
TritonApi.prototype.getPackage = function getPackage(name, cb) {
|
2015-08-26 06:53:48 +03:00
|
|
|
assert.string(name, 'name');
|
|
|
|
assert.func(cb, 'cb');
|
|
|
|
|
2015-09-22 00:00:58 +03:00
|
|
|
if (common.isUUID(name)) {
|
2015-08-26 06:53:48 +03:00
|
|
|
this.cloudapi.getPackage({id: name}, function (err, pkg) {
|
|
|
|
if (err) {
|
2015-10-07 09:09:52 +03:00
|
|
|
if (err.restCode === 'ResourceNotFound') {
|
|
|
|
err = new errors.ResourceNotFoundError(err,
|
|
|
|
format('package with id %s was not found', name));
|
|
|
|
}
|
2015-08-26 06:53:48 +03:00
|
|
|
cb(err);
|
|
|
|
} else if (!pkg.active) {
|
2015-10-07 09:09:52 +03:00
|
|
|
cb(new errors.TritonError(
|
|
|
|
format('package %s is not active', name)));
|
2015-08-26 06:53:48 +03:00
|
|
|
} else {
|
|
|
|
cb(null, pkg);
|
|
|
|
}
|
2015-07-26 08:45:20 +03:00
|
|
|
});
|
2015-08-26 06:53:48 +03:00
|
|
|
} else {
|
|
|
|
this.cloudapi.listPackages(function (err, pkgs) {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
2015-08-26 20:02:01 +03:00
|
|
|
|
2015-08-26 06:53:48 +03:00
|
|
|
var nameMatches = [];
|
2015-08-26 20:02:01 +03:00
|
|
|
var shortIdMatches = [];
|
2015-08-26 06:53:48 +03:00
|
|
|
for (var i = 0; i < pkgs.length; i++) {
|
2015-08-26 20:02:01 +03:00
|
|
|
var pkg = pkgs[i];
|
|
|
|
if (pkg.name === name) {
|
|
|
|
nameMatches.push(pkg);
|
|
|
|
}
|
|
|
|
if (pkg.id.slice(0, 8) === name) {
|
|
|
|
shortIdMatches.push(pkg);
|
2015-08-26 06:53:48 +03:00
|
|
|
}
|
|
|
|
}
|
2015-08-26 20:02:01 +03:00
|
|
|
|
|
|
|
if (nameMatches.length === 1) {
|
2015-08-26 06:53:48 +03:00
|
|
|
cb(null, nameMatches[0]);
|
2015-08-26 20:02:01 +03:00
|
|
|
} else if (nameMatches.length > 1) {
|
2015-10-07 09:09:52 +03:00
|
|
|
cb(new errors.TritonError(format(
|
2015-08-26 06:53:48 +03:00
|
|
|
'package name "%s" is ambiguous: matches %d packages',
|
|
|
|
name, nameMatches.length)));
|
2015-08-26 20:02:01 +03:00
|
|
|
} else if (shortIdMatches.length === 1) {
|
|
|
|
cb(null, shortIdMatches[0]);
|
|
|
|
} else if (shortIdMatches.length === 0) {
|
2015-10-07 09:09:52 +03:00
|
|
|
cb(new errors.ResourceNotFoundError(format(
|
2015-09-02 10:03:17 +03:00
|
|
|
'no package with name or short id "%s" was found', name)));
|
2015-08-26 20:02:01 +03:00
|
|
|
} else {
|
2015-10-07 09:09:52 +03:00
|
|
|
cb(new errors.ResourceNotFoundError(
|
|
|
|
format('no package with name "%s" was found '
|
2015-09-02 10:03:17 +03:00
|
|
|
+ 'and "%s" is an ambiguous short id', name)));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get an network by ID, exact name, or short ID, in that order.
|
|
|
|
*
|
|
|
|
* If the name is ambiguous, then this errors out.
|
|
|
|
*/
|
2015-09-04 21:04:45 +03:00
|
|
|
TritonApi.prototype.getNetwork = function getNetwork(name, cb) {
|
2015-09-02 10:03:17 +03:00
|
|
|
assert.string(name, 'name');
|
|
|
|
assert.func(cb, 'cb');
|
|
|
|
|
|
|
|
if (common.isUUID(name)) {
|
|
|
|
this.cloudapi.getNetwork(name, function (err, net) {
|
|
|
|
if (err) {
|
2015-10-07 09:09:52 +03:00
|
|
|
if (err.restCode === 'ResourceNotFound') {
|
|
|
|
// Wrap with *our* ResourceNotFound for exitStatus=3.
|
|
|
|
err = new errors.ResourceNotFoundError(err,
|
|
|
|
format('network with id %s was not found', name));
|
|
|
|
}
|
2015-09-02 10:03:17 +03:00
|
|
|
cb(err);
|
|
|
|
} else {
|
|
|
|
cb(null, net);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.cloudapi.listNetworks(function (err, nets) {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
var nameMatches = [];
|
|
|
|
var shortIdMatches = [];
|
|
|
|
for (var i = 0; i < nets.length; i++) {
|
|
|
|
var net = nets[i];
|
|
|
|
if (net.name === name) {
|
|
|
|
nameMatches.push(net);
|
|
|
|
}
|
|
|
|
if (net.id.slice(0, 8) === name) {
|
|
|
|
shortIdMatches.push(net);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nameMatches.length === 1) {
|
|
|
|
cb(null, nameMatches[0]);
|
|
|
|
} else if (nameMatches.length > 1) {
|
2015-10-07 09:09:52 +03:00
|
|
|
cb(new errors.TritonError(format(
|
2015-09-02 10:03:17 +03:00
|
|
|
'network name "%s" is ambiguous: matches %d networks',
|
|
|
|
name, nameMatches.length)));
|
|
|
|
} else if (shortIdMatches.length === 1) {
|
|
|
|
cb(null, shortIdMatches[0]);
|
|
|
|
} else if (shortIdMatches.length === 0) {
|
2015-10-07 09:09:52 +03:00
|
|
|
cb(new errors.ResourceNotFoundError(format(
|
2015-09-02 10:03:17 +03:00
|
|
|
'no network with name or short id "%s" was found', name)));
|
|
|
|
} else {
|
2015-10-07 09:09:52 +03:00
|
|
|
cb(new errors.ResourceNotFoundError(format(
|
|
|
|
'no network with name "%s" was found '
|
2015-09-02 10:03:17 +03:00
|
|
|
+ 'and "%s" is an ambiguous short id', name)));
|
2015-08-26 06:53:48 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2015-07-26 08:45:20 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-08-26 03:27:46 +03:00
|
|
|
/**
|
2015-08-27 03:21:27 +03:00
|
|
|
* Get an instance by ID, exact name, or short ID, in that order.
|
2015-08-26 03:27:46 +03:00
|
|
|
*
|
2015-08-27 03:21:27 +03:00
|
|
|
* @param {String} name
|
2015-11-10 01:09:37 +02:00
|
|
|
* @param {Function} callback `function (err, inst, res)`
|
|
|
|
* Where, on success, `res` is the response object from a `GetMachine` call
|
|
|
|
* if one was made.
|
2015-08-26 03:27:46 +03:00
|
|
|
*/
|
2015-09-04 21:04:45 +03:00
|
|
|
TritonApi.prototype.getInstance = function getInstance(name, cb) {
|
2015-08-27 03:21:27 +03:00
|
|
|
var self = this;
|
|
|
|
assert.string(name, 'name');
|
|
|
|
assert.func(cb, 'cb');
|
|
|
|
|
2015-11-10 01:09:37 +02:00
|
|
|
var res;
|
2015-08-27 03:21:27 +03:00
|
|
|
var shortId;
|
|
|
|
var inst;
|
|
|
|
|
|
|
|
vasync.pipeline({funcs: [
|
|
|
|
function tryUuid(_, next) {
|
|
|
|
var uuid;
|
|
|
|
if (common.isUUID(name)) {
|
|
|
|
uuid = name;
|
|
|
|
} else {
|
|
|
|
shortId = common.normShortId(name);
|
|
|
|
if (shortId && common.isUUID(shortId)) {
|
|
|
|
// E.g. a >32-char docker container ID normalized to a UUID.
|
|
|
|
uuid = shortId;
|
|
|
|
} else {
|
|
|
|
return next();
|
|
|
|
}
|
2015-08-26 03:27:46 +03:00
|
|
|
}
|
2015-11-10 01:09:37 +02:00
|
|
|
self.cloudapi.getMachine(uuid, function (err, inst_, res_) {
|
|
|
|
res = res_;
|
2015-08-31 21:14:14 +03:00
|
|
|
inst = inst_;
|
2015-10-07 09:09:52 +03:00
|
|
|
if (err && err.restCode === 'ResourceNotFound') {
|
|
|
|
// The CloudApi 404 error message sucks: "VM not found".
|
|
|
|
err = new errors.ResourceNotFoundError(err,
|
|
|
|
format('instance with id %s was not found', name));
|
|
|
|
}
|
2015-08-27 03:21:27 +03:00
|
|
|
next(err);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
function tryName(_, next) {
|
|
|
|
if (inst) {
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
|
|
|
|
self.cloudapi.listMachines({name: name}, function (err, insts) {
|
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
for (var i = 0; i < insts.length; i++) {
|
|
|
|
if (insts[i].name === name) {
|
|
|
|
inst = insts[i];
|
|
|
|
// Relying on rule that instance name is unique
|
|
|
|
// for a user and DC.
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
function tryShortId(_, next) {
|
|
|
|
if (inst || !shortId) {
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
var nextOnce = once(next);
|
|
|
|
|
|
|
|
var match;
|
|
|
|
var s = self.cloudapi.createListMachinesStream();
|
|
|
|
s.on('error', function (err) {
|
|
|
|
nextOnce(err);
|
|
|
|
});
|
|
|
|
s.on('readable', function () {
|
2015-09-01 02:56:26 +03:00
|
|
|
var candidate;
|
|
|
|
while ((candidate = s.read()) !== null) {
|
|
|
|
if (candidate.id.slice(0, shortId.length) === shortId) {
|
2015-08-27 03:21:27 +03:00
|
|
|
if (match) {
|
2015-10-07 09:09:52 +03:00
|
|
|
return nextOnce(new errors.TritonError(
|
2015-08-27 03:21:27 +03:00
|
|
|
'instance short id "%s" is ambiguous',
|
|
|
|
shortId));
|
|
|
|
} else {
|
2015-09-01 02:56:26 +03:00
|
|
|
match = candidate;
|
2015-08-27 03:21:27 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
s.on('end', function () {
|
|
|
|
if (match) {
|
|
|
|
inst = match;
|
|
|
|
}
|
|
|
|
nextOnce();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
]}, function (err) {
|
|
|
|
if (err) {
|
|
|
|
cb(err);
|
|
|
|
} else if (inst) {
|
2015-11-10 01:09:37 +02:00
|
|
|
cb(null, inst, res);
|
2015-08-27 03:21:27 +03:00
|
|
|
} else {
|
2015-10-07 09:09:52 +03:00
|
|
|
cb(new errors.ResourceNotFoundError(format(
|
2015-09-02 10:03:17 +03:00
|
|
|
'no instance with name or short id "%s" was found', name)));
|
2015-08-26 03:27:46 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2014-02-07 23:21:24 +02:00
|
|
|
|
2015-11-10 01:09:37 +02:00
|
|
|
/**
|
2015-11-13 02:04:12 +02:00
|
|
|
* Get role tags for a resource.
|
2015-11-10 01:09:37 +02:00
|
|
|
*
|
2015-11-13 02:04:12 +02:00
|
|
|
* @param {Object} opts
|
|
|
|
* - resourceType {String} One of:
|
|
|
|
* resource (a raw RBAC resource URL)
|
|
|
|
* instance
|
|
|
|
* image
|
|
|
|
* package
|
|
|
|
* network
|
|
|
|
* - id {String} The resource identifier. E.g. for an instance this can be
|
|
|
|
* the ID (a UUID), login or short id. Whatever `triton` typically allows
|
|
|
|
* for identification.
|
|
|
|
* @param {Function} callback `function (err, roleTags, resource)`
|
2015-11-10 01:09:37 +02:00
|
|
|
*/
|
2015-11-13 02:04:12 +02:00
|
|
|
TritonApi.prototype.getRoleTags = function getRoleTags(opts, cb) {
|
2015-11-10 01:09:37 +02:00
|
|
|
var self = this;
|
2015-11-13 02:04:12 +02:00
|
|
|
assert.object(opts, 'opts');
|
|
|
|
_assertRoleTagResourceType(opts.resourceType, 'opts.resourceType');
|
|
|
|
assert.string(opts.id, 'opts.id');
|
2015-11-10 01:09:37 +02:00
|
|
|
assert.func(cb, 'cb');
|
|
|
|
|
2015-11-13 02:04:12 +02:00
|
|
|
function roleTagsFromRes(res) {
|
|
|
|
return (
|
|
|
|
(res.headers['role-tag'] || '')
|
|
|
|
/* JSSTYLED */
|
|
|
|
.split(/\s*,\s*/)
|
|
|
|
.filter(function (r) { return r.trim(); })
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-10 01:09:37 +02:00
|
|
|
var roleTags;
|
2015-11-13 02:04:12 +02:00
|
|
|
var resource;
|
2015-11-10 01:09:37 +02:00
|
|
|
|
|
|
|
vasync.pipeline({arg: {}, funcs: [
|
2015-11-13 02:04:12 +02:00
|
|
|
function resolveResourceId(ctx, next) {
|
|
|
|
if (opts.resourceType === 'resource') {
|
|
|
|
next();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var getFuncName = {
|
|
|
|
instance: 'getInstance',
|
|
|
|
image: 'getImage',
|
|
|
|
'package': 'getPackage',
|
|
|
|
network: 'getNetwork'
|
|
|
|
}[opts.resourceType];
|
|
|
|
self[getFuncName](opts.id, function (err, resource_, res) {
|
2015-11-10 01:09:37 +02:00
|
|
|
if (err) {
|
|
|
|
next(err);
|
|
|
|
return;
|
|
|
|
}
|
2015-11-13 02:04:12 +02:00
|
|
|
resource = resource_;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sometimes `getInstance` et al return a CloudAPI `GetMachine`
|
|
|
|
* res on which there is a 'role-tag' header that we want.
|
|
|
|
*/
|
|
|
|
if (res) {
|
|
|
|
roleTags = roleTagsFromRes(res);
|
|
|
|
}
|
2015-11-10 01:09:37 +02:00
|
|
|
next();
|
|
|
|
});
|
|
|
|
},
|
2015-11-13 02:04:12 +02:00
|
|
|
function getResourceIfNecessary(ctx, next) {
|
|
|
|
if (roleTags) {
|
2015-11-10 01:09:37 +02:00
|
|
|
next();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-13 02:04:12 +02:00
|
|
|
var resourceUrl = (opts.resourceType === 'resource'
|
|
|
|
? opts.id
|
|
|
|
: _roleTagResourceUrl(self.profile.account,
|
|
|
|
opts.resourceType, resource.id));
|
|
|
|
self.cloudapi.getRoleTags({resource: resourceUrl},
|
|
|
|
function (err, roleTags_, resource_) {
|
2015-11-10 01:09:37 +02:00
|
|
|
if (err) {
|
|
|
|
next(err);
|
|
|
|
return;
|
|
|
|
}
|
2015-11-13 02:04:12 +02:00
|
|
|
roleTags = roleTags_;
|
|
|
|
resource = resource_;
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
]}, function (err) {
|
|
|
|
cb(err, roleTags, resource);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set role tags for a resource.
|
|
|
|
*
|
|
|
|
* @param {Object} opts
|
|
|
|
* - resourceType {String} One of:
|
|
|
|
* resource (a raw RBAC resource URL)
|
|
|
|
* instance
|
|
|
|
* image
|
|
|
|
* package
|
|
|
|
* network
|
|
|
|
* - id {String} The resource identifier. E.g. for an instance this can be
|
|
|
|
* the ID (a UUID), login or short id. Whatever `triton` typically allows
|
|
|
|
* for identification.
|
|
|
|
* - roleTags {Array}
|
|
|
|
* @param {Function} callback `function (err)`
|
|
|
|
*/
|
|
|
|
TritonApi.prototype.setRoleTags = function setRoleTags(opts, cb) {
|
|
|
|
var self = this;
|
|
|
|
assert.object(opts, 'opts');
|
|
|
|
_assertRoleTagResourceType(opts.resourceType, 'opts.resourceType');
|
|
|
|
assert.string(opts.id, 'opts.id');
|
|
|
|
assert.arrayOfString(opts.roleTags, 'opts.roleTags');
|
|
|
|
assert.func(cb, 'cb');
|
|
|
|
|
|
|
|
vasync.pipeline({arg: {}, funcs: [
|
|
|
|
function resolveResourceId(ctx, next) {
|
|
|
|
if (opts.resourceType === 'resource') {
|
|
|
|
next();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var getFuncName = {
|
|
|
|
instance: 'getInstance',
|
|
|
|
image: 'getImage',
|
|
|
|
'package': 'getPackage',
|
|
|
|
network: 'getNetwork'
|
|
|
|
}[opts.resourceType];
|
|
|
|
self[getFuncName](opts.id, function (err, resource, res) {
|
|
|
|
if (err) {
|
|
|
|
next(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ctx.resource = resource;
|
2015-11-10 01:09:37 +02:00
|
|
|
next();
|
|
|
|
});
|
|
|
|
},
|
2015-11-13 02:04:12 +02:00
|
|
|
|
|
|
|
function setTheRoleTags(ctx, next) {
|
|
|
|
var resourceUrl = (opts.resourceType === 'resource'
|
|
|
|
? opts.id
|
|
|
|
: _roleTagResourceUrl(self.profile.account,
|
|
|
|
opts.resourceType, ctx.resource.id));
|
|
|
|
self.cloudapi.setRoleTags({
|
|
|
|
resource: resourceUrl,
|
|
|
|
roleTags: opts.roleTags
|
|
|
|
}, function (err) {
|
|
|
|
if (err) {
|
|
|
|
next(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
next();
|
|
|
|
});
|
2015-11-10 01:09:37 +02:00
|
|
|
}
|
|
|
|
]}, function (err) {
|
2015-11-13 02:04:12 +02:00
|
|
|
cb(err);
|
2015-11-10 01:09:37 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2015-11-04 01:40:59 +02:00
|
|
|
|
|
|
|
/**
|
2015-11-21 22:41:16 +02:00
|
|
|
* Get an RBAC user by ID or login.
|
2015-11-04 01:40:59 +02:00
|
|
|
*
|
|
|
|
* @param {Object} opts
|
2015-11-21 22:41:16 +02:00
|
|
|
* - id {UUID|String} The user ID (a UUID) or login.
|
2015-11-04 01:40:59 +02:00
|
|
|
* - roles {Boolean} Optional. Whether to includes roles of which this
|
|
|
|
* user is a member. Default false.
|
2015-11-06 01:13:14 +02:00
|
|
|
* - keys {Boolean} Optional. Set to `true` to also (with a separate
|
|
|
|
* request) retrieve the `keys` for this user. Default is false.
|
2015-11-04 01:40:59 +02:00
|
|
|
* @param {Function} callback of the form `function (err, user)`
|
|
|
|
*/
|
|
|
|
TritonApi.prototype.getUser = function getUser(opts, cb) {
|
|
|
|
var self = this;
|
|
|
|
assert.object(opts, 'opts');
|
|
|
|
assert.string(opts.id, 'opts.id');
|
|
|
|
assert.optionalBool(opts.roles, 'opts.roles');
|
2015-11-06 01:13:14 +02:00
|
|
|
assert.optionalBool(opts.keys, 'opts.keys');
|
2015-11-04 01:40:59 +02:00
|
|
|
assert.func(cb, 'cb');
|
|
|
|
|
|
|
|
var context = {};
|
|
|
|
vasync.pipeline({arg: context, funcs: [
|
|
|
|
function tryGetUser(ctx, next) {
|
|
|
|
var getOpts = {
|
|
|
|
id: opts.id,
|
|
|
|
membership: opts.roles
|
|
|
|
};
|
|
|
|
self.cloudapi.getUser(getOpts, function (err, user) {
|
|
|
|
if (err) {
|
|
|
|
if (err.restCode === 'ResourceNotFound') {
|
2015-11-21 22:41:16 +02:00
|
|
|
// TODO: feels like overkill to wrap this, ensure
|
|
|
|
// decent cloudapi error for this, then don't wrap.
|
|
|
|
next(new errors.ResourceNotFoundError(err,
|
|
|
|
format('user with login or id "%s" was not found',
|
|
|
|
opts.id)));
|
2015-11-04 01:40:59 +02:00
|
|
|
} else {
|
|
|
|
next(err);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx.user = user;
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
});
|
2015-11-06 01:13:14 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
function getKeys(ctx, next) {
|
|
|
|
if (!opts.keys) {
|
|
|
|
next();
|
|
|
|
return;
|
|
|
|
}
|
2015-11-10 01:09:37 +02:00
|
|
|
self.cloudapi.listUserKeys({userId: ctx.user.id},
|
|
|
|
function (err, keys) {
|
2015-11-06 01:13:14 +02:00
|
|
|
if (err) {
|
|
|
|
next(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ctx.user.keys = keys;
|
|
|
|
next();
|
|
|
|
});
|
2015-11-04 01:40:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
]}, function (err) {
|
|
|
|
cb(err, context.user);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-11-05 01:38:38 +02:00
|
|
|
/**
|
2015-11-21 22:41:16 +02:00
|
|
|
* Delete an RBAC role by ID or name.
|
2015-11-05 01:38:38 +02:00
|
|
|
*
|
|
|
|
* @param {Object} opts
|
2015-11-21 22:41:16 +02:00
|
|
|
* - id {UUID|String} The role id (a UUID) or name.
|
2015-11-05 22:30:06 +02:00
|
|
|
* @param {Function} callback of the form `function (err)`
|
2015-11-05 01:38:38 +02:00
|
|
|
*/
|
|
|
|
TritonApi.prototype.deleteRole = function deleteRole(opts, cb) {
|
|
|
|
var self = this;
|
|
|
|
assert.object(opts, 'opts');
|
|
|
|
assert.string(opts.id, 'opts.id');
|
|
|
|
assert.func(cb, 'cb');
|
|
|
|
|
|
|
|
/*
|
|
|
|
* CloudAPI DeleteRole only accepts a role id (UUID).
|
|
|
|
*/
|
|
|
|
var context = {};
|
|
|
|
vasync.pipeline({arg: context, funcs: [
|
|
|
|
function getId(ctx, next) {
|
|
|
|
if (common.isUUID(opts.id)) {
|
|
|
|
ctx.id = opts.id;
|
|
|
|
next();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-21 22:41:16 +02:00
|
|
|
self.cloudapi.getRole({id: opts.id}, function (err, role) {
|
2015-11-05 22:30:06 +02:00
|
|
|
if (err) {
|
|
|
|
next(err);
|
|
|
|
return;
|
|
|
|
}
|
2015-11-05 01:38:38 +02:00
|
|
|
ctx.id = role.id;
|
2015-11-05 22:30:06 +02:00
|
|
|
next();
|
2015-11-05 01:38:38 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
function deleteIt(ctx, next) {
|
|
|
|
self.cloudapi.deleteRole({id: ctx.id}, next);
|
|
|
|
}
|
|
|
|
]}, function (err) {
|
|
|
|
cb(err);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2015-11-04 01:40:59 +02:00
|
|
|
|
2015-11-05 22:30:06 +02:00
|
|
|
/**
|
2015-11-21 22:41:16 +02:00
|
|
|
* Delete an RBAC policy by ID or name.
|
2015-11-05 22:30:06 +02:00
|
|
|
*
|
|
|
|
* @param {Object} opts
|
2015-11-21 22:41:16 +02:00
|
|
|
* - id {UUID|String} The policy id (a UUID) or name.
|
2015-11-05 22:30:06 +02:00
|
|
|
* @param {Function} callback of the form `function (err)`
|
|
|
|
*/
|
|
|
|
TritonApi.prototype.deletePolicy = function deletePolicy(opts, cb) {
|
|
|
|
var self = this;
|
|
|
|
assert.object(opts, 'opts');
|
|
|
|
assert.string(opts.id, 'opts.id');
|
|
|
|
assert.func(cb, 'cb');
|
|
|
|
|
|
|
|
/*
|
|
|
|
* CloudAPI DeletePolicy only accepts a policy id (UUID).
|
|
|
|
*/
|
|
|
|
var context = {};
|
|
|
|
vasync.pipeline({arg: context, funcs: [
|
|
|
|
function getId(ctx, next) {
|
|
|
|
if (common.isUUID(opts.id)) {
|
|
|
|
ctx.id = opts.id;
|
|
|
|
next();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-21 22:41:16 +02:00
|
|
|
self.cloudapi.getPolicy({id: opts.id}, function (err, policy) {
|
2015-11-05 22:30:06 +02:00
|
|
|
if (err) {
|
|
|
|
next(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ctx.id = policy.id;
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
function deleteIt(ctx, next) {
|
|
|
|
self.cloudapi.deletePolicy({id: ctx.id}, next);
|
|
|
|
}
|
|
|
|
]}, function (err) {
|
|
|
|
cb(err);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-02-07 23:21:24 +02:00
|
|
|
//---- exports
|
|
|
|
|
2015-11-25 21:04:44 +02:00
|
|
|
module.exports = {
|
|
|
|
CLOUDAPI_ACCEPT_VERSION: CLOUDAPI_ACCEPT_VERSION,
|
|
|
|
createClient: function createClient(opts) {
|
|
|
|
return new TritonApi(opts);
|
|
|
|
}
|
2015-09-30 01:13:34 +03:00
|
|
|
};
|