conjur-asset-ui-api 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.git-hooks/pre_commit/ensure_livescript_compiled.rb +31 -0
- data/.git-hooks/pre_commit/trailing_whitespace.rb +26 -0
- data/.gitignore +20 -0
- data/.overcommit.yml +5 -0
- data/.project +18 -0
- data/Gemfile +8 -0
- data/LICENSE.txt +22 -0
- data/README.md +41 -0
- data/Rakefile +1 -0
- data/compile_ls +2 -0
- data/conjur-asset-ui.gemspec +36 -0
- data/lib/conjur-asset-ui-version.rb +7 -0
- data/lib/conjur-asset-ui.rb +7 -0
- data/lib/conjur/audit/follower.rb +63 -0
- data/lib/conjur/audit/humanizer.rb +53 -0
- data/lib/conjur/audit/tableizer.rb +55 -0
- data/lib/conjur/command/ui.rb +38 -0
- data/lib/conjur/webserver/api_proxy.rb +94 -0
- data/lib/conjur/webserver/audit_stream.rb +92 -0
- data/lib/conjur/webserver/authorize.rb +28 -0
- data/lib/conjur/webserver/conjur_info.rb +33 -0
- data/lib/conjur/webserver/home.rb +36 -0
- data/lib/conjur/webserver/login.rb +50 -0
- data/lib/conjur/webserver/server.rb +111 -0
- data/livescript/views/audit.ls +124 -0
- data/public/css/bootstrap.css +7 -0
- data/public/css/styles.less +400 -0
- data/public/fonts/glyphicons-halflings-regular.eot +0 -0
- data/public/fonts/glyphicons-halflings-regular.svg +229 -0
- data/public/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/public/fonts/glyphicons-halflings-regular.woff +0 -0
- data/public/images/conjur-logo.svg +26 -0
- data/public/images/icon-client-pc.svg +12 -0
- data/public/images/icon-environment.png +0 -0
- data/public/images/icon-person.svg +12 -0
- data/public/images/icon-service-dots.svg +13 -0
- data/public/images/icon-variable.png +0 -0
- data/public/index.html +121 -0
- data/public/js/lib/JSXTransformer.js +10862 -0
- data/public/js/lib/async.js +958 -0
- data/public/js/lib/backbone.js +2 -0
- data/public/js/lib/bootstrap.js +6 -0
- data/public/js/lib/date.extensions.js +141 -0
- data/public/js/lib/less.js +16 -0
- data/public/js/lib/moment.js +7768 -0
- data/public/js/lib/pace.js +2 -0
- data/public/js/lib/prelude-browser-min.js +1 -0
- data/public/js/lib/react-with-addons.js +15505 -0
- data/public/js/lib/react.js +14469 -0
- data/public/js/lib/sorted-set.no-require.js +1170 -0
- data/public/js/lib/sorted-set.no-require.js.txt +6 -0
- data/public/js/lib/underscore-min.js +6 -0
- data/public/js/lib/underscore.string.min.js +1 -0
- data/public/js/main.js +353 -0
- data/public/js/models/namespace.js +6 -0
- data/public/js/models/policyList.js +10 -0
- data/public/js/models/record.js +26 -0
- data/public/js/models/resourceList.js +61 -0
- data/public/js/models/userList.js +16 -0
- data/public/js/models/variableList.js +12 -0
- data/public/js/views/audit.js +191 -0
- data/public/js/views/dashboard.js +35 -0
- data/public/js/views/generic.js +42 -0
- data/public/js/views/group.js +32 -0
- data/public/js/views/groups.js +18 -0
- data/public/js/views/host.js +40 -0
- data/public/js/views/hosts.js +18 -0
- data/public/js/views/layer.js +63 -0
- data/public/js/views/layers.js +18 -0
- data/public/js/views/mixins/search.js +9 -0
- data/public/js/views/namespaces.js +40 -0
- data/public/js/views/navSearch.js +16 -0
- data/public/js/views/permissions.js +91 -0
- data/public/js/views/policies.js +17 -0
- data/public/js/views/policy.js +23 -0
- data/public/js/views/resource.js +23 -0
- data/public/js/views/role.js +18 -0
- data/public/js/views/searchResults.js +146 -0
- data/public/js/views/time.js +14 -0
- data/public/js/views/user.js +22 -0
- data/public/js/views/users.js +18 -0
- data/public/js/views/variable.js +41 -0
- data/public/js/views/variables.js +18 -0
- data/vendor/prelude-ls/.gitignore +2 -0
- data/vendor/prelude-ls/.travis.yml +3 -0
- data/vendor/prelude-ls/CHANGELOG.md +81 -0
- data/vendor/prelude-ls/LICENSE +22 -0
- data/vendor/prelude-ls/Makefile +50 -0
- data/vendor/prelude-ls/README.md +15 -0
- data/vendor/prelude-ls/browser/prelude-browser-min.js +1 -0
- data/vendor/prelude-ls/browser/prelude-browser.js +1172 -0
- data/vendor/prelude-ls/lib/Func.js +40 -0
- data/vendor/prelude-ls/lib/List.js +602 -0
- data/vendor/prelude-ls/lib/Num.js +129 -0
- data/vendor/prelude-ls/lib/Obj.js +153 -0
- data/vendor/prelude-ls/lib/Str.js +68 -0
- data/vendor/prelude-ls/lib/index.js +164 -0
- data/vendor/prelude-ls/package.json +50 -0
- data/vendor/prelude-ls/package.ls +46 -0
- data/vendor/prelude-ls/src/Func.ls +17 -0
- data/vendor/prelude-ls/src/List.ls +299 -0
- data/vendor/prelude-ls/src/Num.ls +83 -0
- data/vendor/prelude-ls/src/Obj.ls +61 -0
- data/vendor/prelude-ls/src/Str.ls +32 -0
- data/vendor/prelude-ls/src/index.ls +56 -0
- data/vendor/prelude-ls/test/Func.ls +36 -0
- data/vendor/prelude-ls/test/List.ls +751 -0
- data/vendor/prelude-ls/test/Num.ls +258 -0
- data/vendor/prelude-ls/test/Obj.ls +145 -0
- data/vendor/prelude-ls/test/Prelude.ls +49 -0
- data/vendor/prelude-ls/test/Str.ls +208 -0
- data/vendor/prelude-ls/test/browser.html +5 -0
- metadata +328 -0
@@ -0,0 +1,6 @@
|
|
1
|
+
// Underscore.js 1.5.2
|
2
|
+
// http://underscorejs.org
|
3
|
+
// (c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
4
|
+
// Underscore may be freely distributed under the MIT license.
|
5
|
+
(function(){var n=this,t=n._,r={},e=Array.prototype,u=Object.prototype,i=Function.prototype,a=e.push,o=e.slice,c=e.concat,l=u.toString,f=u.hasOwnProperty,s=e.forEach,p=e.map,h=e.reduce,v=e.reduceRight,g=e.filter,d=e.every,m=e.some,y=e.indexOf,b=e.lastIndexOf,x=Array.isArray,w=Object.keys,_=i.bind,j=function(n){return n instanceof j?n:this instanceof j?(this._wrapped=n,void 0):new j(n)};"undefined"!=typeof exports?("undefined"!=typeof module&&module.exports&&(exports=module.exports=j),exports._=j):n._=j,j.VERSION="1.5.2";var A=j.each=j.forEach=function(n,t,e){if(null!=n)if(s&&n.forEach===s)n.forEach(t,e);else if(n.length===+n.length){for(var u=0,i=n.length;i>u;u++)if(t.call(e,n[u],u,n)===r)return}else for(var a=j.keys(n),u=0,i=a.length;i>u;u++)if(t.call(e,n[a[u]],a[u],n)===r)return};j.map=j.collect=function(n,t,r){var e=[];return null==n?e:p&&n.map===p?n.map(t,r):(A(n,function(n,u,i){e.push(t.call(r,n,u,i))}),e)};var E="Reduce of empty array with no initial value";j.reduce=j.foldl=j.inject=function(n,t,r,e){var u=arguments.length>2;if(null==n&&(n=[]),h&&n.reduce===h)return e&&(t=j.bind(t,e)),u?n.reduce(t,r):n.reduce(t);if(A(n,function(n,i,a){u?r=t.call(e,r,n,i,a):(r=n,u=!0)}),!u)throw new TypeError(E);return r},j.reduceRight=j.foldr=function(n,t,r,e){var u=arguments.length>2;if(null==n&&(n=[]),v&&n.reduceRight===v)return e&&(t=j.bind(t,e)),u?n.reduceRight(t,r):n.reduceRight(t);var i=n.length;if(i!==+i){var a=j.keys(n);i=a.length}if(A(n,function(o,c,l){c=a?a[--i]:--i,u?r=t.call(e,r,n[c],c,l):(r=n[c],u=!0)}),!u)throw new TypeError(E);return r},j.find=j.detect=function(n,t,r){var e;return O(n,function(n,u,i){return t.call(r,n,u,i)?(e=n,!0):void 0}),e},j.filter=j.select=function(n,t,r){var e=[];return null==n?e:g&&n.filter===g?n.filter(t,r):(A(n,function(n,u,i){t.call(r,n,u,i)&&e.push(n)}),e)},j.reject=function(n,t,r){return j.filter(n,function(n,e,u){return!t.call(r,n,e,u)},r)},j.every=j.all=function(n,t,e){t||(t=j.identity);var u=!0;return null==n?u:d&&n.every===d?n.every(t,e):(A(n,function(n,i,a){return(u=u&&t.call(e,n,i,a))?void 0:r}),!!u)};var O=j.some=j.any=function(n,t,e){t||(t=j.identity);var u=!1;return null==n?u:m&&n.some===m?n.some(t,e):(A(n,function(n,i,a){return u||(u=t.call(e,n,i,a))?r:void 0}),!!u)};j.contains=j.include=function(n,t){return null==n?!1:y&&n.indexOf===y?n.indexOf(t)!=-1:O(n,function(n){return n===t})},j.invoke=function(n,t){var r=o.call(arguments,2),e=j.isFunction(t);return j.map(n,function(n){return(e?t:n[t]).apply(n,r)})},j.pluck=function(n,t){return j.map(n,function(n){return n[t]})},j.where=function(n,t,r){return j.isEmpty(t)?r?void 0:[]:j[r?"find":"filter"](n,function(n){for(var r in t)if(t[r]!==n[r])return!1;return!0})},j.findWhere=function(n,t){return j.where(n,t,!0)},j.max=function(n,t,r){if(!t&&j.isArray(n)&&n[0]===+n[0]&&n.length<65535)return Math.max.apply(Math,n);if(!t&&j.isEmpty(n))return-1/0;var e={computed:-1/0,value:-1/0};return A(n,function(n,u,i){var a=t?t.call(r,n,u,i):n;a>e.computed&&(e={value:n,computed:a})}),e.value},j.min=function(n,t,r){if(!t&&j.isArray(n)&&n[0]===+n[0]&&n.length<65535)return Math.min.apply(Math,n);if(!t&&j.isEmpty(n))return 1/0;var e={computed:1/0,value:1/0};return A(n,function(n,u,i){var a=t?t.call(r,n,u,i):n;a<e.computed&&(e={value:n,computed:a})}),e.value},j.shuffle=function(n){var t,r=0,e=[];return A(n,function(n){t=j.random(r++),e[r-1]=e[t],e[t]=n}),e},j.sample=function(n,t,r){return arguments.length<2||r?n[j.random(n.length-1)]:j.shuffle(n).slice(0,Math.max(0,t))};var k=function(n){return j.isFunction(n)?n:function(t){return t[n]}};j.sortBy=function(n,t,r){var e=k(t);return j.pluck(j.map(n,function(n,t,u){return{value:n,index:t,criteria:e.call(r,n,t,u)}}).sort(function(n,t){var r=n.criteria,e=t.criteria;if(r!==e){if(r>e||r===void 0)return 1;if(e>r||e===void 0)return-1}return n.index-t.index}),"value")};var F=function(n){return function(t,r,e){var u={},i=null==r?j.identity:k(r);return A(t,function(r,a){var o=i.call(e,r,a,t);n(u,o,r)}),u}};j.groupBy=F(function(n,t,r){(j.has(n,t)?n[t]:n[t]=[]).push(r)}),j.indexBy=F(function(n,t,r){n[t]=r}),j.countBy=F(function(n,t){j.has(n,t)?n[t]++:n[t]=1}),j.sortedIndex=function(n,t,r,e){r=null==r?j.identity:k(r);for(var u=r.call(e,t),i=0,a=n.length;a>i;){var o=i+a>>>1;r.call(e,n[o])<u?i=o+1:a=o}return i},j.toArray=function(n){return n?j.isArray(n)?o.call(n):n.length===+n.length?j.map(n,j.identity):j.values(n):[]},j.size=function(n){return null==n?0:n.length===+n.length?n.length:j.keys(n).length},j.first=j.head=j.take=function(n,t,r){return null==n?void 0:null==t||r?n[0]:o.call(n,0,t)},j.initial=function(n,t,r){return o.call(n,0,n.length-(null==t||r?1:t))},j.last=function(n,t,r){return null==n?void 0:null==t||r?n[n.length-1]:o.call(n,Math.max(n.length-t,0))},j.rest=j.tail=j.drop=function(n,t,r){return o.call(n,null==t||r?1:t)},j.compact=function(n){return j.filter(n,j.identity)};var M=function(n,t,r){return t&&j.every(n,j.isArray)?c.apply(r,n):(A(n,function(n){j.isArray(n)||j.isArguments(n)?t?a.apply(r,n):M(n,t,r):r.push(n)}),r)};j.flatten=function(n,t){return M(n,t,[])},j.without=function(n){return j.difference(n,o.call(arguments,1))},j.uniq=j.unique=function(n,t,r,e){j.isFunction(t)&&(e=r,r=t,t=!1);var u=r?j.map(n,r,e):n,i=[],a=[];return A(u,function(r,e){(t?e&&a[a.length-1]===r:j.contains(a,r))||(a.push(r),i.push(n[e]))}),i},j.union=function(){return j.uniq(j.flatten(arguments,!0))},j.intersection=function(n){var t=o.call(arguments,1);return j.filter(j.uniq(n),function(n){return j.every(t,function(t){return j.indexOf(t,n)>=0})})},j.difference=function(n){var t=c.apply(e,o.call(arguments,1));return j.filter(n,function(n){return!j.contains(t,n)})},j.zip=function(){for(var n=j.max(j.pluck(arguments,"length").concat(0)),t=new Array(n),r=0;n>r;r++)t[r]=j.pluck(arguments,""+r);return t},j.object=function(n,t){if(null==n)return{};for(var r={},e=0,u=n.length;u>e;e++)t?r[n[e]]=t[e]:r[n[e][0]]=n[e][1];return r},j.indexOf=function(n,t,r){if(null==n)return-1;var e=0,u=n.length;if(r){if("number"!=typeof r)return e=j.sortedIndex(n,t),n[e]===t?e:-1;e=0>r?Math.max(0,u+r):r}if(y&&n.indexOf===y)return n.indexOf(t,r);for(;u>e;e++)if(n[e]===t)return e;return-1},j.lastIndexOf=function(n,t,r){if(null==n)return-1;var e=null!=r;if(b&&n.lastIndexOf===b)return e?n.lastIndexOf(t,r):n.lastIndexOf(t);for(var u=e?r:n.length;u--;)if(n[u]===t)return u;return-1},j.range=function(n,t,r){arguments.length<=1&&(t=n||0,n=0),r=arguments[2]||1;for(var e=Math.max(Math.ceil((t-n)/r),0),u=0,i=new Array(e);e>u;)i[u++]=n,n+=r;return i};var R=function(){};j.bind=function(n,t){var r,e;if(_&&n.bind===_)return _.apply(n,o.call(arguments,1));if(!j.isFunction(n))throw new TypeError;return r=o.call(arguments,2),e=function(){if(!(this instanceof e))return n.apply(t,r.concat(o.call(arguments)));R.prototype=n.prototype;var u=new R;R.prototype=null;var i=n.apply(u,r.concat(o.call(arguments)));return Object(i)===i?i:u}},j.partial=function(n){var t=o.call(arguments,1);return function(){return n.apply(this,t.concat(o.call(arguments)))}},j.bindAll=function(n){var t=o.call(arguments,1);if(0===t.length)throw new Error("bindAll must be passed function names");return A(t,function(t){n[t]=j.bind(n[t],n)}),n},j.memoize=function(n,t){var r={};return t||(t=j.identity),function(){var e=t.apply(this,arguments);return j.has(r,e)?r[e]:r[e]=n.apply(this,arguments)}},j.delay=function(n,t){var r=o.call(arguments,2);return setTimeout(function(){return n.apply(null,r)},t)},j.defer=function(n){return j.delay.apply(j,[n,1].concat(o.call(arguments,1)))},j.throttle=function(n,t,r){var e,u,i,a=null,o=0;r||(r={});var c=function(){o=r.leading===!1?0:new Date,a=null,i=n.apply(e,u)};return function(){var l=new Date;o||r.leading!==!1||(o=l);var f=t-(l-o);return e=this,u=arguments,0>=f?(clearTimeout(a),a=null,o=l,i=n.apply(e,u)):a||r.trailing===!1||(a=setTimeout(c,f)),i}},j.debounce=function(n,t,r){var e,u,i,a,o;return function(){i=this,u=arguments,a=new Date;var c=function(){var l=new Date-a;t>l?e=setTimeout(c,t-l):(e=null,r||(o=n.apply(i,u)))},l=r&&!e;return e||(e=setTimeout(c,t)),l&&(o=n.apply(i,u)),o}},j.once=function(n){var t,r=!1;return function(){return r?t:(r=!0,t=n.apply(this,arguments),n=null,t)}},j.wrap=function(n,t){return function(){var r=[n];return a.apply(r,arguments),t.apply(this,r)}},j.compose=function(){var n=arguments;return function(){for(var t=arguments,r=n.length-1;r>=0;r--)t=[n[r].apply(this,t)];return t[0]}},j.after=function(n,t){return function(){return--n<1?t.apply(this,arguments):void 0}},j.keys=w||function(n){if(n!==Object(n))throw new TypeError("Invalid object");var t=[];for(var r in n)j.has(n,r)&&t.push(r);return t},j.values=function(n){for(var t=j.keys(n),r=t.length,e=new Array(r),u=0;r>u;u++)e[u]=n[t[u]];return e},j.pairs=function(n){for(var t=j.keys(n),r=t.length,e=new Array(r),u=0;r>u;u++)e[u]=[t[u],n[t[u]]];return e},j.invert=function(n){for(var t={},r=j.keys(n),e=0,u=r.length;u>e;e++)t[n[r[e]]]=r[e];return t},j.functions=j.methods=function(n){var t=[];for(var r in n)j.isFunction(n[r])&&t.push(r);return t.sort()},j.extend=function(n){return A(o.call(arguments,1),function(t){if(t)for(var r in t)n[r]=t[r]}),n},j.pick=function(n){var t={},r=c.apply(e,o.call(arguments,1));return A(r,function(r){r in n&&(t[r]=n[r])}),t},j.omit=function(n){var t={},r=c.apply(e,o.call(arguments,1));for(var u in n)j.contains(r,u)||(t[u]=n[u]);return t},j.defaults=function(n){return A(o.call(arguments,1),function(t){if(t)for(var r in t)n[r]===void 0&&(n[r]=t[r])}),n},j.clone=function(n){return j.isObject(n)?j.isArray(n)?n.slice():j.extend({},n):n},j.tap=function(n,t){return t(n),n};var S=function(n,t,r,e){if(n===t)return 0!==n||1/n==1/t;if(null==n||null==t)return n===t;n instanceof j&&(n=n._wrapped),t instanceof j&&(t=t._wrapped);var u=l.call(n);if(u!=l.call(t))return!1;switch(u){case"[object String]":return n==String(t);case"[object Number]":return n!=+n?t!=+t:0==n?1/n==1/t:n==+t;case"[object Date]":case"[object Boolean]":return+n==+t;case"[object RegExp]":return n.source==t.source&&n.global==t.global&&n.multiline==t.multiline&&n.ignoreCase==t.ignoreCase}if("object"!=typeof n||"object"!=typeof t)return!1;for(var i=r.length;i--;)if(r[i]==n)return e[i]==t;var a=n.constructor,o=t.constructor;if(a!==o&&!(j.isFunction(a)&&a instanceof a&&j.isFunction(o)&&o instanceof o))return!1;r.push(n),e.push(t);var c=0,f=!0;if("[object Array]"==u){if(c=n.length,f=c==t.length)for(;c--&&(f=S(n[c],t[c],r,e)););}else{for(var s in n)if(j.has(n,s)&&(c++,!(f=j.has(t,s)&&S(n[s],t[s],r,e))))break;if(f){for(s in t)if(j.has(t,s)&&!c--)break;f=!c}}return r.pop(),e.pop(),f};j.isEqual=function(n,t){return S(n,t,[],[])},j.isEmpty=function(n){if(null==n)return!0;if(j.isArray(n)||j.isString(n))return 0===n.length;for(var t in n)if(j.has(n,t))return!1;return!0},j.isElement=function(n){return!(!n||1!==n.nodeType)},j.isArray=x||function(n){return"[object Array]"==l.call(n)},j.isObject=function(n){return n===Object(n)},A(["Arguments","Function","String","Number","Date","RegExp"],function(n){j["is"+n]=function(t){return l.call(t)=="[object "+n+"]"}}),j.isArguments(arguments)||(j.isArguments=function(n){return!(!n||!j.has(n,"callee"))}),"function"!=typeof/./&&(j.isFunction=function(n){return"function"==typeof n}),j.isFinite=function(n){return isFinite(n)&&!isNaN(parseFloat(n))},j.isNaN=function(n){return j.isNumber(n)&&n!=+n},j.isBoolean=function(n){return n===!0||n===!1||"[object Boolean]"==l.call(n)},j.isNull=function(n){return null===n},j.isUndefined=function(n){return n===void 0},j.has=function(n,t){return f.call(n,t)},j.noConflict=function(){return n._=t,this},j.identity=function(n){return n},j.times=function(n,t,r){for(var e=Array(Math.max(0,n)),u=0;n>u;u++)e[u]=t.call(r,u);return e},j.random=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))};var I={escape:{"&":"&","<":"<",">":">",'"':""","'":"'"}};I.unescape=j.invert(I.escape);var T={escape:new RegExp("["+j.keys(I.escape).join("")+"]","g"),unescape:new RegExp("("+j.keys(I.unescape).join("|")+")","g")};j.each(["escape","unescape"],function(n){j[n]=function(t){return null==t?"":(""+t).replace(T[n],function(t){return I[n][t]})}}),j.result=function(n,t){if(null==n)return void 0;var r=n[t];return j.isFunction(r)?r.call(n):r},j.mixin=function(n){A(j.functions(n),function(t){var r=j[t]=n[t];j.prototype[t]=function(){var n=[this._wrapped];return a.apply(n,arguments),z.call(this,r.apply(j,n))}})};var N=0;j.uniqueId=function(n){var t=++N+"";return n?n+t:t},j.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var q=/(.)^/,B={"'":"'","\\":"\\","\r":"r","\n":"n"," ":"t","\u2028":"u2028","\u2029":"u2029"},D=/\\|'|\r|\n|\t|\u2028|\u2029/g;j.template=function(n,t,r){var e;r=j.defaults({},r,j.templateSettings);var u=new RegExp([(r.escape||q).source,(r.interpolate||q).source,(r.evaluate||q).source].join("|")+"|$","g"),i=0,a="__p+='";n.replace(u,function(t,r,e,u,o){return a+=n.slice(i,o).replace(D,function(n){return"\\"+B[n]}),r&&(a+="'+\n((__t=("+r+"))==null?'':_.escape(__t))+\n'"),e&&(a+="'+\n((__t=("+e+"))==null?'':__t)+\n'"),u&&(a+="';\n"+u+"\n__p+='"),i=o+t.length,t}),a+="';\n",r.variable||(a="with(obj||{}){\n"+a+"}\n"),a="var __t,__p='',__j=Array.prototype.join,"+"print=function(){__p+=__j.call(arguments,'');};\n"+a+"return __p;\n";try{e=new Function(r.variable||"obj","_",a)}catch(o){throw o.source=a,o}if(t)return e(t,j);var c=function(n){return e.call(this,n,j)};return c.source="function("+(r.variable||"obj")+"){\n"+a+"}",c},j.chain=function(n){return j(n).chain()};var z=function(n){return this._chain?j(n).chain():n};j.mixin(j),A(["pop","push","reverse","shift","sort","splice","unshift"],function(n){var t=e[n];j.prototype[n]=function(){var r=this._wrapped;return t.apply(r,arguments),"shift"!=n&&"splice"!=n||0!==r.length||delete r[0],z.call(this,r)}}),A(["concat","join","slice"],function(n){var t=e[n];j.prototype[n]=function(){return z.call(this,t.apply(this._wrapped,arguments))}}),j.extend(j.prototype,{chain:function(){return this._chain=!0,this},value:function(){return this._wrapped}})}).call(this);
|
6
|
+
//# sourceMappingURL=underscore-min.map
|
@@ -0,0 +1 @@
|
|
1
|
+
!function(e,n){"use strict";function r(e,n){var r,t,u=e.toLowerCase();for(n=[].concat(n),r=0;n.length>r;r+=1)if(t=n[r]){if(t.test&&t.test(e))return!0;if(t.toLowerCase()===u)return!0}}var t=n.prototype.trim,u=n.prototype.trimRight,i=n.prototype.trimLeft,l=function(e){return 1*e||0},o=function(e,n){if(1>n)return"";for(var r="";n>0;)1&n&&(r+=e),n>>=1,e+=e;return r},a=[].slice,c=function(e){return null==e?"\\s":e.source?e.source:"["+g.escapeRegExp(e)+"]"},s={lt:"<",gt:">",quot:'"',amp:"&",apos:"'"},f={};for(var p in s)f[s[p]]=p;f["'"]="#39";var h=function(){function e(e){return Object.prototype.toString.call(e).slice(8,-1).toLowerCase()}var r=o,t=function(){return t.cache.hasOwnProperty(arguments[0])||(t.cache[arguments[0]]=t.parse(arguments[0])),t.format.call(null,t.cache[arguments[0]],arguments)};return t.format=function(t,u){var i,l,o,a,c,s,f,p=1,g=t.length,d="",m=[];for(l=0;g>l;l++)if(d=e(t[l]),"string"===d)m.push(t[l]);else if("array"===d){if(a=t[l],a[2])for(i=u[p],o=0;a[2].length>o;o++){if(!i.hasOwnProperty(a[2][o]))throw new Error(h('[_.sprintf] property "%s" does not exist',a[2][o]));i=i[a[2][o]]}else i=a[1]?u[a[1]]:u[p++];if(/[^s]/.test(a[8])&&"number"!=e(i))throw new Error(h("[_.sprintf] expecting number but found %s",e(i)));switch(a[8]){case"b":i=i.toString(2);break;case"c":i=n.fromCharCode(i);break;case"d":i=parseInt(i,10);break;case"e":i=a[7]?i.toExponential(a[7]):i.toExponential();break;case"f":i=a[7]?parseFloat(i).toFixed(a[7]):parseFloat(i);break;case"o":i=i.toString(8);break;case"s":i=(i=n(i))&&a[7]?i.substring(0,a[7]):i;break;case"u":i=Math.abs(i);break;case"x":i=i.toString(16);break;case"X":i=i.toString(16).toUpperCase()}i=/[def]/.test(a[8])&&a[3]&&i>=0?"+"+i:i,s=a[4]?"0"==a[4]?"0":a[4].charAt(1):" ",f=a[6]-n(i).length,c=a[6]?r(s,f):"",m.push(a[5]?i+c:c+i)}return m.join("")},t.cache={},t.parse=function(e){for(var n=e,r=[],t=[],u=0;n;){if(null!==(r=/^[^\x25]+/.exec(n)))t.push(r[0]);else if(null!==(r=/^\x25{2}/.exec(n)))t.push("%");else{if(null===(r=/^\x25(?:([1-9]\d*)\$|\(([^\)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-fosuxX])/.exec(n)))throw new Error("[_.sprintf] huh?");if(r[2]){u|=1;var i=[],l=r[2],o=[];if(null===(o=/^([a-z_][a-z_\d]*)/i.exec(l)))throw new Error("[_.sprintf] huh?");for(i.push(o[1]);""!==(l=l.substring(o[0].length));)if(null!==(o=/^\.([a-z_][a-z_\d]*)/i.exec(l)))i.push(o[1]);else{if(null===(o=/^\[(\d+)\]/.exec(l)))throw new Error("[_.sprintf] huh?");i.push(o[1])}r[2]=i}else u|=2;if(3===u)throw new Error("[_.sprintf] mixing positional and named placeholders is not (yet) supported");t.push(r)}n=n.substring(r[0].length)}return t},t}(),g={VERSION:"2.3.0",isBlank:function(e){return null==e&&(e=""),/^\s*$/.test(e)},stripTags:function(e){return null==e?"":n(e).replace(/<\/?[^>]+>/g,"")},capitalize:function(e){return e=null==e?"":n(e),e.charAt(0).toUpperCase()+e.slice(1)},chop:function(e,r){return null==e?[]:(e=n(e),r=~~r,r>0?e.match(new RegExp(".{1,"+r+"}","g")):[e])},clean:function(e){return g.strip(e).replace(/\s+/g," ")},count:function(e,r){if(null==e||null==r)return 0;e=n(e),r=n(r);for(var t=0,u=0,i=r.length;;){if(u=e.indexOf(r,u),-1===u)break;t++,u+=i}return t},chars:function(e){return null==e?[]:n(e).split("")},swapCase:function(e){return null==e?"":n(e).replace(/\S/g,function(e){return e===e.toUpperCase()?e.toLowerCase():e.toUpperCase()})},escapeHTML:function(e){return null==e?"":n(e).replace(/[&<>"']/g,function(e){return"&"+f[e]+";"})},unescapeHTML:function(e){return null==e?"":n(e).replace(/\&([^;]+);/g,function(e,r){var t;return r in s?s[r]:(t=r.match(/^#x([\da-fA-F]+)$/))?n.fromCharCode(parseInt(t[1],16)):(t=r.match(/^#(\d+)$/))?n.fromCharCode(~~t[1]):e})},escapeRegExp:function(e){return null==e?"":n(e).replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")},splice:function(e,n,r,t){var u=g.chars(e);return u.splice(~~n,~~r,t),u.join("")},insert:function(e,n,r){return g.splice(e,n,0,r)},include:function(e,r){return""===r?!0:null==e?!1:-1!==n(e).indexOf(r)},join:function(){var e=a.call(arguments),n=e.shift();return null==n&&(n=""),e.join(n)},lines:function(e){return null==e?[]:n(e).split("\n")},reverse:function(e){return g.chars(e).reverse().join("")},startsWith:function(e,r){return""===r?!0:null==e||null==r?!1:(e=n(e),r=n(r),e.length>=r.length&&e.slice(0,r.length)===r)},endsWith:function(e,r){return""===r?!0:null==e||null==r?!1:(e=n(e),r=n(r),e.length>=r.length&&e.slice(e.length-r.length)===r)},succ:function(e){return null==e?"":(e=n(e),e.slice(0,-1)+n.fromCharCode(e.charCodeAt(e.length-1)+1))},titleize:function(e){return null==e?"":(e=n(e).toLowerCase(),e.replace(/(?:^|\s|-)\S/g,function(e){return e.toUpperCase()}))},camelize:function(e){return g.trim(e).replace(/[-_\s]+(.)?/g,function(e,n){return n?n.toUpperCase():""})},underscored:function(e){return g.trim(e).replace(/([a-z\d])([A-Z]+)/g,"$1_$2").replace(/[-\s]+/g,"_").toLowerCase()},dasherize:function(e){return g.trim(e).replace(/([A-Z])/g,"-$1").replace(/[-_\s]+/g,"-").toLowerCase()},classify:function(e){return g.titleize(n(e).replace(/[\W_]/g," ")).replace(/\s/g,"")},humanize:function(e){return g.capitalize(g.underscored(e).replace(/_id$/,"").replace(/_/g," "))},trim:function(e,r){return null==e?"":!r&&t?t.call(e):(r=c(r),n(e).replace(new RegExp("^"+r+"+|"+r+"+$","g"),""))},ltrim:function(e,r){return null==e?"":!r&&i?i.call(e):(r=c(r),n(e).replace(new RegExp("^"+r+"+"),""))},rtrim:function(e,r){return null==e?"":!r&&u?u.call(e):(r=c(r),n(e).replace(new RegExp(r+"+$"),""))},truncate:function(e,r,t){return null==e?"":(e=n(e),t=t||"...",r=~~r,e.length>r?e.slice(0,r)+t:e)},prune:function(e,r,t){if(null==e)return"";if(e=n(e),r=~~r,t=null!=t?n(t):"...",r>=e.length)return e;var u=function(e){return e.toUpperCase()!==e.toLowerCase()?"A":" "},i=e.slice(0,r+1).replace(/.(?=\W*\w*$)/g,u);return i=i.slice(i.length-2).match(/\w\w/)?i.replace(/\s*\S+$/,""):g.rtrim(i.slice(0,i.length-1)),(i+t).length>e.length?e:e.slice(0,i.length)+t},words:function(e,n){return g.isBlank(e)?[]:g.trim(e,n).split(n||/\s+/)},pad:function(e,r,t,u){e=null==e?"":n(e),r=~~r;var i=0;switch(t?t.length>1&&(t=t.charAt(0)):t=" ",u){case"right":return i=r-e.length,e+o(t,i);case"both":return i=r-e.length,o(t,Math.ceil(i/2))+e+o(t,Math.floor(i/2));default:return i=r-e.length,o(t,i)+e}},lpad:function(e,n,r){return g.pad(e,n,r)},rpad:function(e,n,r){return g.pad(e,n,r,"right")},lrpad:function(e,n,r){return g.pad(e,n,r,"both")},sprintf:h,vsprintf:function(e,n){return n.unshift(e),h.apply(null,n)},toNumber:function(e,n){return e?(e=g.trim(e),e.match(/^-?\d+(?:\.\d+)?$/)?l(l(e).toFixed(~~n)):0/0):0},numberFormat:function(e,n,r,t){if(isNaN(e)||null==e)return"";e=e.toFixed(~~n),t="string"==typeof t?t:",";var u=e.split("."),i=u[0],l=u[1]?(r||".")+u[1]:"";return i.replace(/(\d)(?=(?:\d{3})+$)/g,"$1"+t)+l},strRight:function(e,r){if(null==e)return"";e=n(e),r=null!=r?n(r):r;var t=r?e.indexOf(r):-1;return~t?e.slice(t+r.length,e.length):e},strRightBack:function(e,r){if(null==e)return"";e=n(e),r=null!=r?n(r):r;var t=r?e.lastIndexOf(r):-1;return~t?e.slice(t+r.length,e.length):e},strLeft:function(e,r){if(null==e)return"";e=n(e),r=null!=r?n(r):r;var t=r?e.indexOf(r):-1;return~t?e.slice(0,t):e},strLeftBack:function(e,n){if(null==e)return"";e+="",n=null!=n?""+n:n;var r=e.lastIndexOf(n);return~r?e.slice(0,r):e},toSentence:function(e,n,r,t){n=n||", ",r=r||" and ";var u=e.slice(),i=u.pop();return e.length>2&&t&&(r=g.rtrim(n)+r),u.length?u.join(n)+r+i:i},toSentenceSerial:function(){var e=a.call(arguments);return e[3]=!0,g.toSentence.apply(g,e)},slugify:function(e){if(null==e)return"";var r="ąàáäâãåæăćęèéëêìíïîłńòóöôõøśșțùúüûñçżź",t="aaaaaaaaaceeeeeiiiilnoooooosstuuuunczz",u=new RegExp(c(r),"g");return e=n(e).toLowerCase().replace(u,function(e){var n=r.indexOf(e);return t.charAt(n)||"-"}),g.dasherize(e.replace(/[^\w\s-]/g,""))},surround:function(e,n){return[n,e,n].join("")},quote:function(e,n){return g.surround(e,n||'"')},unquote:function(e,n){return n=n||'"',e[0]===n&&e[e.length-1]===n?e.slice(1,e.length-1):e},exports:function(){var e={};for(var n in this)this.hasOwnProperty(n)&&!n.match(/^(?:include|contains|reverse)$/)&&(e[n]=this[n]);return e},repeat:function(e,r,t){if(null==e)return"";if(r=~~r,null==t)return o(n(e),r);for(var u=[];r>0;u[--r]=e);return u.join(t)},naturalCmp:function(e,r){if(e==r)return 0;if(!e)return-1;if(!r)return 1;for(var t=/(\.\d+)|(\d+)|(\D+)/g,u=n(e).toLowerCase().match(t),i=n(r).toLowerCase().match(t),l=Math.min(u.length,i.length),o=0;l>o;o++){var a=u[o],c=i[o];if(a!==c){var s=parseInt(a,10);if(!isNaN(s)){var f=parseInt(c,10);if(!isNaN(f)&&s-f)return s-f}return c>a?-1:1}}return u.length===i.length?u.length-i.length:r>e?-1:1},levenshtein:function(e,r){if(null==e&&null==r)return 0;if(null==e)return n(r).length;if(null==r)return n(e).length;e=n(e),r=n(r);for(var t,u,i=[],l=0;r.length>=l;l++)for(var o=0;e.length>=o;o++)u=l&&o?e.charAt(o-1)===r.charAt(l-1)?t:Math.min(i[o],i[o-1],t)+1:l+o,t=i[o],i[o]=u;return i.pop()},toBoolean:function(e,n,t){return"number"==typeof e&&(e=""+e),"string"!=typeof e?!!e:(e=g.trim(e),r(e,n||["true","1"])?!0:r(e,t||["false","0"])?!1:void 0)}};g.strip=g.trim,g.lstrip=g.ltrim,g.rstrip=g.rtrim,g.center=g.lrpad,g.rjust=g.lpad,g.ljust=g.rpad,g.contains=g.include,g.q=g.quote,g.toBool=g.toBoolean,"undefined"!=typeof exports&&("undefined"!=typeof module&&module.exports&&(module.exports=g),exports._s=g),"function"==typeof define&&define.amd&&define("underscore.string",[],function(){return g}),e._=e._||{},e._.string=e._.str=g}(this,String);
|
data/public/js/main.js
ADDED
@@ -0,0 +1,353 @@
|
|
1
|
+
/**
|
2
|
+
* @jsx React.DOM
|
3
|
+
*/
|
4
|
+
var namespace = NamespaceModel();
|
5
|
+
|
6
|
+
var kind = "";
|
7
|
+
var lists = {
|
8
|
+
"groups": new ResourceListModel("group"),
|
9
|
+
"layers": new ResourceListModel("layer"),
|
10
|
+
"variables": new VariableListModel(),
|
11
|
+
"policies": new PolicyListModel(),
|
12
|
+
"users": new UserListModel(),
|
13
|
+
"hosts": new ResourceListModel("host")
|
14
|
+
};
|
15
|
+
var conjurConfiguration;
|
16
|
+
var components = {};
|
17
|
+
var router;
|
18
|
+
var globalIds;
|
19
|
+
var endpoints;
|
20
|
+
var flash = null;
|
21
|
+
|
22
|
+
function updateNamespace(ns) {
|
23
|
+
namespace.currentNamespace = ns;
|
24
|
+
components[kind].setState({currentNamespace: ns, members: lists[kind].members(ns)});
|
25
|
+
}
|
26
|
+
|
27
|
+
function pluralize(kind) {
|
28
|
+
if ( kind[kind.length-1] === 'y' )
|
29
|
+
return kind.slice(0, kind.length-1) + 'ies';
|
30
|
+
else if( kind[kind.length - 1] != 's')
|
31
|
+
return kind + 's';
|
32
|
+
else return kind;
|
33
|
+
}
|
34
|
+
|
35
|
+
$(document).ready(function() {
|
36
|
+
// http://www.quirksmode.org/js/cookies.html
|
37
|
+
function readCookie(name) {
|
38
|
+
var nameEQ = name + "=";
|
39
|
+
var ca = document.cookie.split(';');
|
40
|
+
for (var i = 0; i < ca.length; i++) {
|
41
|
+
var c = ca[i];
|
42
|
+
while (c.charAt(0) == ' ')
|
43
|
+
c = c.substring(1, c.length);
|
44
|
+
if (c.indexOf(nameEQ) == 0)
|
45
|
+
return c.substring(nameEQ.length, c.length);
|
46
|
+
}
|
47
|
+
return null;
|
48
|
+
}
|
49
|
+
|
50
|
+
conjurConfiguration = JSON.parse(decodeURIComponent(readCookie('conjur_configuration')).replace(/\+/g, ' '));
|
51
|
+
|
52
|
+
function createEndpoints(){
|
53
|
+
endpoints = {};
|
54
|
+
function genericEndpoint(path){
|
55
|
+
return function(){
|
56
|
+
var i= 0, length = arguments.length;
|
57
|
+
var localPath = [].concat(path); // clone it
|
58
|
+
for(; i < length && _.isString(arguments[i]); i++){
|
59
|
+
localPath.push(arguments[i]);
|
60
|
+
}
|
61
|
+
var pathString = _.flatten(localPath.map(function(p){
|
62
|
+
return p.split('/').map(encodeURIComponent)
|
63
|
+
})).join("/");
|
64
|
+
if(i < length){
|
65
|
+
pathString += '?' + jQuery.param(arguments[i]);
|
66
|
+
}
|
67
|
+
if(pathString.charAt(0) != '/') pathString = '/' + pathString;
|
68
|
+
return pathString;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
endpoints.authz = genericEndpoint(['api/authz', conjurConfiguration.account]);
|
72
|
+
endpoints.core = genericEndpoint('api');
|
73
|
+
}
|
74
|
+
|
75
|
+
createEndpoints();
|
76
|
+
|
77
|
+
_.mixin(_.str.exports());
|
78
|
+
|
79
|
+
// Use delegation to avoid initial DOM selection and allow all matching elements to bubble
|
80
|
+
$(document).delegate("a", "click", function(evt) {
|
81
|
+
// Get the anchor href and protcol
|
82
|
+
var href = $(this).attr("href");
|
83
|
+
var protocol = this.protocol + "//";
|
84
|
+
|
85
|
+
// Ensure the protocol is not part of URL, meaning its relative.
|
86
|
+
// Stop the event bubbling to ensure the link will not cause a page refresh.
|
87
|
+
if (href.slice(protocol.length) !== protocol && href[0] !== '#') {
|
88
|
+
evt.preventDefault();
|
89
|
+
|
90
|
+
// Note by using Backbone.history.navigate, router events will not be
|
91
|
+
// triggered. If this is a problem, change this to navigate on your
|
92
|
+
// router.
|
93
|
+
Backbone.history.navigate(href, {trigger:true});
|
94
|
+
}
|
95
|
+
});
|
96
|
+
|
97
|
+
function error(err) {
|
98
|
+
console.log("error:", err);
|
99
|
+
}
|
100
|
+
|
101
|
+
function activateList(componentFunction) {
|
102
|
+
/* console.log("List", kind); */
|
103
|
+
setActiveNav(kind);
|
104
|
+
namespace.currentNamespace = "";
|
105
|
+
lists[kind].fetch(function(list) {
|
106
|
+
var component = componentFunction(list);
|
107
|
+
components[kind] = component;
|
108
|
+
React.renderComponent(
|
109
|
+
component,
|
110
|
+
document.getElementById('content')
|
111
|
+
);
|
112
|
+
component.setState({currentNamespace: namespace.currentNamespace, members: list.members(namespace.currentNamespace)});
|
113
|
+
});
|
114
|
+
}
|
115
|
+
|
116
|
+
function activateRecord(id, componentFunction) {
|
117
|
+
/* console.log("Record", kind, " :", id); */
|
118
|
+
setActiveNav(kind);
|
119
|
+
new RecordModel(kind, id).fetch(function(record) {
|
120
|
+
/* console.log(record.object); */
|
121
|
+
|
122
|
+
function doRenderComponent(component) {
|
123
|
+
React.renderComponent(
|
124
|
+
component,
|
125
|
+
document.getElementById('content')
|
126
|
+
);
|
127
|
+
}
|
128
|
+
|
129
|
+
var component = componentFunction(record.object, function(result) {
|
130
|
+
doRenderComponent(result);
|
131
|
+
});
|
132
|
+
if ( component ) {
|
133
|
+
doRenderComponent(component);
|
134
|
+
}
|
135
|
+
}, function(status, text, xhr){
|
136
|
+
if(status == 403){
|
137
|
+
window.flash = "You are not authorized to view " + kind + ":" + id + ".";
|
138
|
+
window.history.back()
|
139
|
+
}else{
|
140
|
+
console.error("HTTP error: ", status, text);
|
141
|
+
}
|
142
|
+
});
|
143
|
+
}
|
144
|
+
|
145
|
+
function setActiveNav(name){
|
146
|
+
$('.nav-item').removeClass('active');
|
147
|
+
$('#nav-' + name).addClass('active');
|
148
|
+
}
|
149
|
+
|
150
|
+
var Workspace = Backbone.Router.extend({
|
151
|
+
routes: {
|
152
|
+
"": "dashboard",
|
153
|
+
"ui": "dashboard",
|
154
|
+
"ui/users": "users",
|
155
|
+
"ui/users/:user": "user",
|
156
|
+
"ui/groups": "groups",
|
157
|
+
"ui/groups/:group": "group",
|
158
|
+
"ui/hosts": "hosts",
|
159
|
+
"ui/hosts/:host": "host",
|
160
|
+
"ui/layers": "layers",
|
161
|
+
"ui/layers/:layer": "layer",
|
162
|
+
"ui/variables": "variables",
|
163
|
+
"ui/variables/:variable": "variable",
|
164
|
+
"ui/policies": "policies",
|
165
|
+
"ui/policies/:policy": "policy",
|
166
|
+
"ui/audit": "audit",
|
167
|
+
"ui/search/:search": "search"
|
168
|
+
},
|
169
|
+
|
170
|
+
dashboard: function() {
|
171
|
+
$('#inlineSearchContainer').hide();
|
172
|
+
React.renderComponent(
|
173
|
+
<Dashboard />,
|
174
|
+
document.getElementById('content')
|
175
|
+
);
|
176
|
+
},
|
177
|
+
|
178
|
+
user: function(user){
|
179
|
+
$('#inlineSearchContainer').show();
|
180
|
+
kind = "users";
|
181
|
+
activateRecord(user, function(record, callback){
|
182
|
+
return <User data={record}/>;
|
183
|
+
});
|
184
|
+
},
|
185
|
+
|
186
|
+
users: function() {
|
187
|
+
$('#inlineSearchContainer').show();
|
188
|
+
kind = "users";
|
189
|
+
activateList(function(list) {
|
190
|
+
return <UserBox data={{namespaces: list.namespaces}} />;
|
191
|
+
});
|
192
|
+
},
|
193
|
+
|
194
|
+
group: function(group) {
|
195
|
+
$('#inlineSearchContainer').show();
|
196
|
+
kind = "groups";
|
197
|
+
activateRecord(group, function(record, callback) {
|
198
|
+
$.ajax({
|
199
|
+
url: "/api/authz/" + conjurConfiguration.account + "/roles/group/" + record.id + "?members",
|
200
|
+
success: function(result) {
|
201
|
+
callback(<Group data={{group: record, members: result}} />);
|
202
|
+
},
|
203
|
+
error: error
|
204
|
+
});
|
205
|
+
});
|
206
|
+
},
|
207
|
+
|
208
|
+
groups: function() {
|
209
|
+
$('#inlineSearchContainer').show();
|
210
|
+
kind = "groups";
|
211
|
+
activateList(function(list) {
|
212
|
+
return <GroupBox data={{namespaces: list.namespaces}} />;
|
213
|
+
});
|
214
|
+
},
|
215
|
+
|
216
|
+
host: function(host){
|
217
|
+
$('#inlineSearchContainer').show();
|
218
|
+
kind = "hosts";
|
219
|
+
activateRecord(host, function(record){ return <Host data={record}/>;});
|
220
|
+
},
|
221
|
+
|
222
|
+
hosts: function() {
|
223
|
+
$('#inlineSearchContainer').show();
|
224
|
+
kind = "hosts";
|
225
|
+
activateList(function(list) {
|
226
|
+
return <HostBox data={{namespaces: list.namespaces}} />;
|
227
|
+
});
|
228
|
+
},
|
229
|
+
|
230
|
+
layer: function(layer) {
|
231
|
+
$('#inlineSearchContainer').show();
|
232
|
+
kind = "layers";
|
233
|
+
activateRecord(layer, function(record, callback) {
|
234
|
+
var id = record.id.split(':')[2];
|
235
|
+
async.map(['@/layer/' + record.id + '/use_host', '@/layer/' + record.id + '/admin_host' ],
|
236
|
+
function(role, cb) {
|
237
|
+
$.ajax({
|
238
|
+
url: "/api/authz/" + conjurConfiguration.account + "/roles/" + role + "?members",
|
239
|
+
success: function(result) { cb(null, result) },
|
240
|
+
error: cb
|
241
|
+
});
|
242
|
+
},
|
243
|
+
function(err, results) {
|
244
|
+
if ( err )
|
245
|
+
error(err);
|
246
|
+
else
|
247
|
+
callback(<Layer data={{layer: record, users: _.pluck(results[0], 'member'), admins: _.pluck(results[1], 'member')}} />);
|
248
|
+
});
|
249
|
+
});
|
250
|
+
},
|
251
|
+
|
252
|
+
layers: function() {
|
253
|
+
$('#inlineSearchContainer').show();
|
254
|
+
kind = "layers";
|
255
|
+
activateList(function(list) {
|
256
|
+
return <LayerBox data={{namespaces: list.namespaces}} />
|
257
|
+
});
|
258
|
+
},
|
259
|
+
|
260
|
+
variable: function(variable) {
|
261
|
+
$('#inlineSearchContainer').show();
|
262
|
+
kind = "variables";
|
263
|
+
activateRecord(variable, function(record, callback) {
|
264
|
+
async.map(['execute', 'update'], function(privilege, cb) {
|
265
|
+
$.ajax({
|
266
|
+
url: "/api/authz/" + conjurConfiguration.account + "/roles/allowed_to/" + privilege + "/variable/" + record.id,
|
267
|
+
success: function(result) {
|
268
|
+
cb(null, result);
|
269
|
+
},
|
270
|
+
error: cb
|
271
|
+
});
|
272
|
+
},
|
273
|
+
function(err, results) {
|
274
|
+
if ( err ) return error(err);
|
275
|
+
|
276
|
+
var updaters = results[1];
|
277
|
+
var fetchers = _.difference(results[0], updaters);
|
278
|
+
callback(<Variable data={{variable: record, fetchers: fetchers, updaters: updaters}} />);
|
279
|
+
});
|
280
|
+
});
|
281
|
+
},
|
282
|
+
|
283
|
+
variables: function() {
|
284
|
+
$('#inlineSearchContainer').show();
|
285
|
+
kind = "variables";
|
286
|
+
activateList(function(list) {
|
287
|
+
return <VariableBox data={{namespaces: list.namespaces}} />
|
288
|
+
});
|
289
|
+
},
|
290
|
+
|
291
|
+
policies: function() {
|
292
|
+
kind = "policies";
|
293
|
+
activateList(function(list) {
|
294
|
+
return <PolicyBox />
|
295
|
+
});
|
296
|
+
},
|
297
|
+
|
298
|
+
policy: function(policy) {
|
299
|
+
kind = "policies";
|
300
|
+
setActiveNav(kind);
|
301
|
+
$.ajax({
|
302
|
+
url: "/api/authz/" + conjurConfiguration.account + "/resources/policy/" + policy,
|
303
|
+
success: function(result) {
|
304
|
+
React.renderComponent(
|
305
|
+
<Policy policy={result} />,
|
306
|
+
document.getElementById('content')
|
307
|
+
);
|
308
|
+
},
|
309
|
+
error: error
|
310
|
+
});
|
311
|
+
},
|
312
|
+
|
313
|
+
audit: function(){
|
314
|
+
$('#inlineSearchContainer').show();
|
315
|
+
setActiveNav('audit')
|
316
|
+
React.renderComponent(
|
317
|
+
<GlobalAudit/>,
|
318
|
+
document.getElementById('content')
|
319
|
+
);
|
320
|
+
},
|
321
|
+
|
322
|
+
search: function(search){
|
323
|
+
$('#inlineSearchContainer').show();
|
324
|
+
SearchResults.search(search);
|
325
|
+
}
|
326
|
+
});
|
327
|
+
|
328
|
+
router = new Workspace();
|
329
|
+
|
330
|
+
router.on('all', function(route, router){
|
331
|
+
console.log("router.all", route, flash);
|
332
|
+
if(route != 'route') return;
|
333
|
+
if(flash){
|
334
|
+
var old = flash;
|
335
|
+
flash = null;
|
336
|
+
var $flash = $('#flash');
|
337
|
+
var $text = $('.text', $flash);
|
338
|
+
$text.text(old);
|
339
|
+
$flash.show();
|
340
|
+
}else{
|
341
|
+
$('#flash').hide();
|
342
|
+
}
|
343
|
+
});
|
344
|
+
|
345
|
+
Backbone.history.start({pushState: true});
|
346
|
+
|
347
|
+
React.renderComponent(
|
348
|
+
<NavSearchForm />,
|
349
|
+
document.getElementById("inlineSearchContainer")
|
350
|
+
);
|
351
|
+
|
352
|
+
|
353
|
+
});
|
@@ -0,0 +1,26 @@
|
|
1
|
+
if (typeof $ === "undefined") { throw new Error("jQuery is required") }
|
2
|
+
|
3
|
+
var RecordModel = function(kind, id){
|
4
|
+
var Record = function() {
|
5
|
+
this.object = null;
|
6
|
+
}
|
7
|
+
|
8
|
+
Record.prototype.fetch = function(callback, errback) {
|
9
|
+
errback || (errback = function(status, text, xhr){
|
10
|
+
alert("Error fetching " + kind + ":" + id + " " + status + " " + text);
|
11
|
+
});
|
12
|
+
var self = this;
|
13
|
+
$.ajax({
|
14
|
+
url: "/api/" + kind + "/" + encodeURIComponent(id),
|
15
|
+
success: function(data) {
|
16
|
+
self.object = data;
|
17
|
+
callback(self);
|
18
|
+
},
|
19
|
+
error: function(xhr, textStatus, errorThrown){
|
20
|
+
errback(xhr.status, errorThrown, xhr);
|
21
|
+
}
|
22
|
+
});
|
23
|
+
}
|
24
|
+
|
25
|
+
return new Record();
|
26
|
+
}
|
@@ -0,0 +1,61 @@
|
|
1
|
+
if (typeof $ === "undefined") { throw new Error("jQuery is required") }
|
2
|
+
|
3
|
+
var ResourceListModel = function(kind, options){
|
4
|
+
var List = function() {
|
5
|
+
this._members = null;
|
6
|
+
this.namespaces = null;
|
7
|
+
this.options = options || {};
|
8
|
+
if ( !this.options.idSelector ) {
|
9
|
+
this.options.idSelector = function(member) {
|
10
|
+
var idTokens = member.id.split(':');
|
11
|
+
return idTokens[idTokens.length-1];
|
12
|
+
}
|
13
|
+
}
|
14
|
+
if ( !this.options.namespaceSelector ) {
|
15
|
+
this.options.namespaceSelector = function(member) {
|
16
|
+
return member.identifier.split('/')[0];
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
List.prototype.members = function(namespace) {
|
22
|
+
var result;
|
23
|
+
if ( namespace === "" ) {
|
24
|
+
result = _.clone(this._members);
|
25
|
+
}
|
26
|
+
else {
|
27
|
+
result = this._members.filter(function (o) {
|
28
|
+
return this.options.namespaceSelector(o) === namespace;
|
29
|
+
}.bind(this));
|
30
|
+
}
|
31
|
+
return result.sort(function(a,b) {
|
32
|
+
return a.identifier.localeCompare(b.identifier);
|
33
|
+
});
|
34
|
+
}
|
35
|
+
|
36
|
+
List.prototype.fetch = function(callback) {
|
37
|
+
if ( this._members )
|
38
|
+
return callback(this);
|
39
|
+
|
40
|
+
var self = this;
|
41
|
+
$.ajax({
|
42
|
+
url: "/api/authz/" + encodeURIComponent(conjurConfiguration.account) + "/resources/" + encodeURIComponent(kind),
|
43
|
+
success: function(data) {
|
44
|
+
var filter, idSelector;
|
45
|
+
|
46
|
+
if ( filter = this.options.filter ) {
|
47
|
+
data = _.filter(data, filter);
|
48
|
+
}
|
49
|
+
|
50
|
+
self._members = data;
|
51
|
+
self._members.forEach(function(member) {
|
52
|
+
member.identifier = this.options.idSelector(member);
|
53
|
+
}.bind(this));
|
54
|
+
self.namespaces = _.unique(self._members.map(this.options.namespaceSelector)).sort();
|
55
|
+
callback(self);
|
56
|
+
}.bind(this)
|
57
|
+
});
|
58
|
+
}
|
59
|
+
|
60
|
+
return new List();
|
61
|
+
}
|