@magda/acs-cmd 1.1.0-alpha.2 → 1.1.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,267 @@
1
+ #!/usr/bin/env node
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define([], factory);
7
+ else {
8
+ var a = factory();
9
+ for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
10
+ }
11
+ })(global, function() {
12
+ return /******/ (function(modules) { // webpackBootstrap
13
+ /******/ // The module cache
14
+ /******/ var installedModules = {};
15
+ /******/
16
+ /******/ // The require function
17
+ /******/ function __webpack_require__(moduleId) {
18
+ /******/
19
+ /******/ // Check if module is in cache
20
+ /******/ if(installedModules[moduleId]) {
21
+ /******/ return installedModules[moduleId].exports;
22
+ /******/ }
23
+ /******/ // Create a new module (and put it into the cache)
24
+ /******/ var module = installedModules[moduleId] = {
25
+ /******/ i: moduleId,
26
+ /******/ l: false,
27
+ /******/ exports: {}
28
+ /******/ };
29
+ /******/
30
+ /******/ // Execute the module function
31
+ /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
32
+ /******/
33
+ /******/ // Flag the module as loaded
34
+ /******/ module.l = true;
35
+ /******/
36
+ /******/ // Return the exports of the module
37
+ /******/ return module.exports;
38
+ /******/ }
39
+ /******/
40
+ /******/
41
+ /******/ // expose the modules object (__webpack_modules__)
42
+ /******/ __webpack_require__.m = modules;
43
+ /******/
44
+ /******/ // expose the module cache
45
+ /******/ __webpack_require__.c = installedModules;
46
+ /******/
47
+ /******/ // define getter function for harmony exports
48
+ /******/ __webpack_require__.d = function(exports, name, getter) {
49
+ /******/ if(!__webpack_require__.o(exports, name)) {
50
+ /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
51
+ /******/ }
52
+ /******/ };
53
+ /******/
54
+ /******/ // define __esModule on exports
55
+ /******/ __webpack_require__.r = function(exports) {
56
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
57
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
58
+ /******/ }
59
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
60
+ /******/ };
61
+ /******/
62
+ /******/ // create a fake namespace object
63
+ /******/ // mode & 1: value is a module id, require it
64
+ /******/ // mode & 2: merge all properties of value into the ns
65
+ /******/ // mode & 4: return value when already ns object
66
+ /******/ // mode & 8|1: behave like require
67
+ /******/ __webpack_require__.t = function(value, mode) {
68
+ /******/ if(mode & 1) value = __webpack_require__(value);
69
+ /******/ if(mode & 8) return value;
70
+ /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
71
+ /******/ var ns = Object.create(null);
72
+ /******/ __webpack_require__.r(ns);
73
+ /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
74
+ /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
75
+ /******/ return ns;
76
+ /******/ };
77
+ /******/
78
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
79
+ /******/ __webpack_require__.n = function(module) {
80
+ /******/ var getter = module && module.__esModule ?
81
+ /******/ function getDefault() { return module['default']; } :
82
+ /******/ function getModuleExports() { return module; };
83
+ /******/ __webpack_require__.d(getter, 'a', getter);
84
+ /******/ return getter;
85
+ /******/ };
86
+ /******/
87
+ /******/ // Object.prototype.hasOwnProperty.call
88
+ /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
89
+ /******/
90
+ /******/ // __webpack_public_path__
91
+ /******/ __webpack_require__.p = "";
92
+ /******/
93
+ /******/
94
+ /******/ // Load entry module and return exports
95
+ /******/ return __webpack_require__(__webpack_require__.s = 23);
96
+ /******/ })
97
+ /************************************************************************/
98
+ /******/ ([
99
+ /* 0 */
100
+ /***/ (function(module, exports) {
101
+
102
+ module.exports = require("../../package.json");
103
+
104
+ /***/ }),
105
+ /* 1 */
106
+ /***/ (function(module, exports) {
107
+
108
+ module.exports = require("commander");
109
+
110
+ /***/ }),
111
+ /* 2 */
112
+ /***/ (function(module, exports) {
113
+
114
+ module.exports = require("chalk");
115
+
116
+ /***/ }),
117
+ /* 3 */
118
+ /***/ (function(module, exports, __webpack_require__) {
119
+
120
+ const pg = __webpack_require__(4);
121
+ const getDBConfig = __webpack_require__(5);
122
+
123
+ const pool = new pg.Pool(getDBConfig());
124
+ pool.on("error", function (err, client) {
125
+ console.error("DB Pool Error: ", err.message, err.stack);
126
+ });
127
+
128
+ function getDBPool() {
129
+ return pool;
130
+ }
131
+
132
+ module.exports = getDBPool;
133
+
134
+
135
+ /***/ }),
136
+ /* 4 */
137
+ /***/ (function(module, exports) {
138
+
139
+ module.exports = require("pg");
140
+
141
+ /***/ }),
142
+ /* 5 */
143
+ /***/ (function(module, exports) {
144
+
145
+ function getDBConfig() {
146
+ const {
147
+ POSTGRES_HOST: host,
148
+ POSTGRES_DB: database,
149
+ POSTGRES_USER: user,
150
+ POSTGRES_PASSWORD: password,
151
+ POSTGRES_PORT: port
152
+ } = process.env;
153
+
154
+ return {
155
+ host: host ? host : "localhost",
156
+ database: database ? database : "auth",
157
+ port: port ? port : 5432,
158
+ user: user ? user : "postgres",
159
+ password: password ? password : ""
160
+ };
161
+ }
162
+
163
+ module.exports = getDBConfig;
164
+
165
+
166
+ /***/ }),
167
+ /* 6 */,
168
+ /* 7 */
169
+ /***/ (function(module, exports) {
170
+
171
+ module.exports = require("table");
172
+
173
+ /***/ }),
174
+ /* 8 */,
175
+ /* 9 */,
176
+ /* 10 */,
177
+ /* 11 */,
178
+ /* 12 */,
179
+ /* 13 */,
180
+ /* 14 */,
181
+ /* 15 */,
182
+ /* 16 */,
183
+ /* 17 */,
184
+ /* 18 */,
185
+ /* 19 */,
186
+ /* 20 */,
187
+ /* 21 */,
188
+ /* 22 */,
189
+ /* 23 */
190
+ /***/ (function(module, exports, __webpack_require__) {
191
+
192
+
193
+ const pkg = __webpack_require__(0);
194
+ const program = __webpack_require__(1);
195
+ const chalk = __webpack_require__(2);
196
+ const getDBPool = __webpack_require__(3);
197
+ const { table } = __webpack_require__(7);
198
+
199
+ const pool = getDBPool();
200
+
201
+ program
202
+ .description("List all roles")
203
+ .version(pkg.version)
204
+ .action(async () => {
205
+ try {
206
+ const selectFields = ["id", "name", "description"];
207
+ const result = await pool.query(
208
+ `SELECT ${selectFields.join(", ")} FROM roles`
209
+ );
210
+ if (!result || !result.rows || !result.rows.length) {
211
+ throw new Error("Cannot find any records!");
212
+ }
213
+
214
+ const data = [["ID", "Name", "Description", "Permissions"]];
215
+ const options = {
216
+ columns: {
217
+ 0: {
218
+ width: 36
219
+ },
220
+ 1: {
221
+ width: 20
222
+ },
223
+ 2: {
224
+ width: 25
225
+ },
226
+ 3: {
227
+ width: 37
228
+ }
229
+ }
230
+ };
231
+ for (let i = 0; i < result.rows.length; i++) {
232
+ const role = result.rows[i];
233
+ const permissions = await getPermissionsByRoleId(role["id"]);
234
+ data.push(
235
+ selectFields
236
+ .map((k) => role[k])
237
+ .concat([
238
+ permissions
239
+ .map((p) => `${p.id}:\n${p.name}`)
240
+ .join("\n\n")
241
+ ])
242
+ );
243
+ }
244
+ console.log(table(data, options));
245
+ } catch (e) {
246
+ console.error(chalk.red(`Error: ${e}`));
247
+ }
248
+ process.exit(0);
249
+ })
250
+ .parse(process.argv);
251
+
252
+ async function getPermissionsByRoleId(roleId) {
253
+ const result = await pool.query(
254
+ `SELECT p.*
255
+ FROM role_permissions AS rp
256
+ LEFT JOIN permissions p ON p.id = rp.permission_id
257
+ WHERE rp.role_id = $1`,
258
+ [roleId]
259
+ );
260
+ if (!result || !result.rows || !result.rows.length) return [];
261
+ return result.rows;
262
+ }
263
+
264
+
265
+ /***/ })
266
+ /******/ ]);
267
+ });
@@ -0,0 +1,271 @@
1
+ #!/usr/bin/env node
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define([], factory);
7
+ else {
8
+ var a = factory();
9
+ for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
10
+ }
11
+ })(global, function() {
12
+ return /******/ (function(modules) { // webpackBootstrap
13
+ /******/ // The module cache
14
+ /******/ var installedModules = {};
15
+ /******/
16
+ /******/ // The require function
17
+ /******/ function __webpack_require__(moduleId) {
18
+ /******/
19
+ /******/ // Check if module is in cache
20
+ /******/ if(installedModules[moduleId]) {
21
+ /******/ return installedModules[moduleId].exports;
22
+ /******/ }
23
+ /******/ // Create a new module (and put it into the cache)
24
+ /******/ var module = installedModules[moduleId] = {
25
+ /******/ i: moduleId,
26
+ /******/ l: false,
27
+ /******/ exports: {}
28
+ /******/ };
29
+ /******/
30
+ /******/ // Execute the module function
31
+ /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
32
+ /******/
33
+ /******/ // Flag the module as loaded
34
+ /******/ module.l = true;
35
+ /******/
36
+ /******/ // Return the exports of the module
37
+ /******/ return module.exports;
38
+ /******/ }
39
+ /******/
40
+ /******/
41
+ /******/ // expose the modules object (__webpack_modules__)
42
+ /******/ __webpack_require__.m = modules;
43
+ /******/
44
+ /******/ // expose the module cache
45
+ /******/ __webpack_require__.c = installedModules;
46
+ /******/
47
+ /******/ // define getter function for harmony exports
48
+ /******/ __webpack_require__.d = function(exports, name, getter) {
49
+ /******/ if(!__webpack_require__.o(exports, name)) {
50
+ /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
51
+ /******/ }
52
+ /******/ };
53
+ /******/
54
+ /******/ // define __esModule on exports
55
+ /******/ __webpack_require__.r = function(exports) {
56
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
57
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
58
+ /******/ }
59
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
60
+ /******/ };
61
+ /******/
62
+ /******/ // create a fake namespace object
63
+ /******/ // mode & 1: value is a module id, require it
64
+ /******/ // mode & 2: merge all properties of value into the ns
65
+ /******/ // mode & 4: return value when already ns object
66
+ /******/ // mode & 8|1: behave like require
67
+ /******/ __webpack_require__.t = function(value, mode) {
68
+ /******/ if(mode & 1) value = __webpack_require__(value);
69
+ /******/ if(mode & 8) return value;
70
+ /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
71
+ /******/ var ns = Object.create(null);
72
+ /******/ __webpack_require__.r(ns);
73
+ /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
74
+ /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
75
+ /******/ return ns;
76
+ /******/ };
77
+ /******/
78
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
79
+ /******/ __webpack_require__.n = function(module) {
80
+ /******/ var getter = module && module.__esModule ?
81
+ /******/ function getDefault() { return module['default']; } :
82
+ /******/ function getModuleExports() { return module; };
83
+ /******/ __webpack_require__.d(getter, 'a', getter);
84
+ /******/ return getter;
85
+ /******/ };
86
+ /******/
87
+ /******/ // Object.prototype.hasOwnProperty.call
88
+ /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
89
+ /******/
90
+ /******/ // __webpack_public_path__
91
+ /******/ __webpack_require__.p = "";
92
+ /******/
93
+ /******/
94
+ /******/ // Load entry module and return exports
95
+ /******/ return __webpack_require__(__webpack_require__.s = 24);
96
+ /******/ })
97
+ /************************************************************************/
98
+ /******/ ({
99
+
100
+ /***/ 0:
101
+ /***/ (function(module, exports) {
102
+
103
+ module.exports = require("../../package.json");
104
+
105
+ /***/ }),
106
+
107
+ /***/ 1:
108
+ /***/ (function(module, exports) {
109
+
110
+ module.exports = require("commander");
111
+
112
+ /***/ }),
113
+
114
+ /***/ 2:
115
+ /***/ (function(module, exports) {
116
+
117
+ module.exports = require("chalk");
118
+
119
+ /***/ }),
120
+
121
+ /***/ 24:
122
+ /***/ (function(module, exports, __webpack_require__) {
123
+
124
+
125
+ const pkg = __webpack_require__(0);
126
+ const program = __webpack_require__(1);
127
+ const chalk = __webpack_require__(2);
128
+ const getDBPool = __webpack_require__(3);
129
+ const { table } = __webpack_require__(7);
130
+
131
+ const pool = getDBPool();
132
+
133
+ program
134
+ .description("List all users")
135
+ .version(pkg.version)
136
+ .action(async () => {
137
+ try {
138
+ const selectFields = ["id", "displayName", "orgUnitId"];
139
+ const result = await pool.query(
140
+ `SELECT ${selectFields
141
+ .map((n) => `"${n}"`)
142
+ .join(", ")} FROM users`
143
+ );
144
+ if (!result || !result.rows || !result.rows.length) {
145
+ throw new Error("Cannot find any records!");
146
+ }
147
+
148
+ const data = [["ID", "Name", "Org Unit", "Roles"]];
149
+ const options = {
150
+ columns: {
151
+ 0: {
152
+ width: 36
153
+ },
154
+ 1: {
155
+ width: 15
156
+ },
157
+ 2: {
158
+ width: 20
159
+ },
160
+ 3: {
161
+ width: 37
162
+ }
163
+ }
164
+ };
165
+ for (let i = 0; i < result.rows.length; i++) {
166
+ const user = result.rows[i];
167
+ const roles = await getRolesByUserId(user["id"]);
168
+ const row = selectFields
169
+ .map((k) => user[k])
170
+ .concat([
171
+ roles.map((r) => `${r.id}:\n${r.name}`).join("\n\n")
172
+ ]);
173
+ row[2] = await getOrgUnitNameById(row[2]);
174
+ data.push(row);
175
+ }
176
+ console.log(table(data, options));
177
+ } catch (e) {
178
+ console.error(chalk.red(`Error: ${e}`));
179
+ }
180
+ process.exit(0);
181
+ })
182
+ .parse(process.argv);
183
+
184
+ async function getRolesByUserId(userId) {
185
+ const result = await pool.query(
186
+ `SELECT r.*
187
+ FROM user_roles AS ur
188
+ LEFT JOIN roles r ON r.id = ur.role_id
189
+ WHERE ur.user_id = $1`,
190
+ [userId]
191
+ );
192
+ if (!result || !result.rows || !result.rows.length) return [];
193
+ return result.rows;
194
+ }
195
+
196
+ async function getOrgUnitNameById(id) {
197
+ const result = await pool.query(
198
+ `SELECT name
199
+ FROM org_units
200
+ WHERE id = $1`,
201
+ [id]
202
+ );
203
+ if (!result || !result.rows || !result.rows.length) return null;
204
+ return result.rows[0]["name"];
205
+ }
206
+
207
+
208
+ /***/ }),
209
+
210
+ /***/ 3:
211
+ /***/ (function(module, exports, __webpack_require__) {
212
+
213
+ const pg = __webpack_require__(4);
214
+ const getDBConfig = __webpack_require__(5);
215
+
216
+ const pool = new pg.Pool(getDBConfig());
217
+ pool.on("error", function (err, client) {
218
+ console.error("DB Pool Error: ", err.message, err.stack);
219
+ });
220
+
221
+ function getDBPool() {
222
+ return pool;
223
+ }
224
+
225
+ module.exports = getDBPool;
226
+
227
+
228
+ /***/ }),
229
+
230
+ /***/ 4:
231
+ /***/ (function(module, exports) {
232
+
233
+ module.exports = require("pg");
234
+
235
+ /***/ }),
236
+
237
+ /***/ 5:
238
+ /***/ (function(module, exports) {
239
+
240
+ function getDBConfig() {
241
+ const {
242
+ POSTGRES_HOST: host,
243
+ POSTGRES_DB: database,
244
+ POSTGRES_USER: user,
245
+ POSTGRES_PASSWORD: password,
246
+ POSTGRES_PORT: port
247
+ } = process.env;
248
+
249
+ return {
250
+ host: host ? host : "localhost",
251
+ database: database ? database : "auth",
252
+ port: port ? port : 5432,
253
+ user: user ? user : "postgres",
254
+ password: password ? password : ""
255
+ };
256
+ }
257
+
258
+ module.exports = getDBConfig;
259
+
260
+
261
+ /***/ }),
262
+
263
+ /***/ 7:
264
+ /***/ (function(module, exports) {
265
+
266
+ module.exports = require("table");
267
+
268
+ /***/ })
269
+
270
+ /******/ });
271
+ });
@@ -0,0 +1,155 @@
1
+ #!/usr/bin/env node
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define([], factory);
7
+ else {
8
+ var a = factory();
9
+ for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
10
+ }
11
+ })(global, function() {
12
+ return /******/ (function(modules) { // webpackBootstrap
13
+ /******/ // The module cache
14
+ /******/ var installedModules = {};
15
+ /******/
16
+ /******/ // The require function
17
+ /******/ function __webpack_require__(moduleId) {
18
+ /******/
19
+ /******/ // Check if module is in cache
20
+ /******/ if(installedModules[moduleId]) {
21
+ /******/ return installedModules[moduleId].exports;
22
+ /******/ }
23
+ /******/ // Create a new module (and put it into the cache)
24
+ /******/ var module = installedModules[moduleId] = {
25
+ /******/ i: moduleId,
26
+ /******/ l: false,
27
+ /******/ exports: {}
28
+ /******/ };
29
+ /******/
30
+ /******/ // Execute the module function
31
+ /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
32
+ /******/
33
+ /******/ // Flag the module as loaded
34
+ /******/ module.l = true;
35
+ /******/
36
+ /******/ // Return the exports of the module
37
+ /******/ return module.exports;
38
+ /******/ }
39
+ /******/
40
+ /******/
41
+ /******/ // expose the modules object (__webpack_modules__)
42
+ /******/ __webpack_require__.m = modules;
43
+ /******/
44
+ /******/ // expose the module cache
45
+ /******/ __webpack_require__.c = installedModules;
46
+ /******/
47
+ /******/ // define getter function for harmony exports
48
+ /******/ __webpack_require__.d = function(exports, name, getter) {
49
+ /******/ if(!__webpack_require__.o(exports, name)) {
50
+ /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
51
+ /******/ }
52
+ /******/ };
53
+ /******/
54
+ /******/ // define __esModule on exports
55
+ /******/ __webpack_require__.r = function(exports) {
56
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
57
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
58
+ /******/ }
59
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
60
+ /******/ };
61
+ /******/
62
+ /******/ // create a fake namespace object
63
+ /******/ // mode & 1: value is a module id, require it
64
+ /******/ // mode & 2: merge all properties of value into the ns
65
+ /******/ // mode & 4: return value when already ns object
66
+ /******/ // mode & 8|1: behave like require
67
+ /******/ __webpack_require__.t = function(value, mode) {
68
+ /******/ if(mode & 1) value = __webpack_require__(value);
69
+ /******/ if(mode & 8) return value;
70
+ /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
71
+ /******/ var ns = Object.create(null);
72
+ /******/ __webpack_require__.r(ns);
73
+ /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
74
+ /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
75
+ /******/ return ns;
76
+ /******/ };
77
+ /******/
78
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
79
+ /******/ __webpack_require__.n = function(module) {
80
+ /******/ var getter = module && module.__esModule ?
81
+ /******/ function getDefault() { return module['default']; } :
82
+ /******/ function getModuleExports() { return module; };
83
+ /******/ __webpack_require__.d(getter, 'a', getter);
84
+ /******/ return getter;
85
+ /******/ };
86
+ /******/
87
+ /******/ // Object.prototype.hasOwnProperty.call
88
+ /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
89
+ /******/
90
+ /******/ // __webpack_public_path__
91
+ /******/ __webpack_require__.p = "";
92
+ /******/
93
+ /******/
94
+ /******/ // Load entry module and return exports
95
+ /******/ return __webpack_require__(__webpack_require__.s = 25);
96
+ /******/ })
97
+ /************************************************************************/
98
+ /******/ ({
99
+
100
+ /***/ 0:
101
+ /***/ (function(module, exports) {
102
+
103
+ module.exports = require("../../package.json");
104
+
105
+ /***/ }),
106
+
107
+ /***/ 1:
108
+ /***/ (function(module, exports) {
109
+
110
+ module.exports = require("commander");
111
+
112
+ /***/ }),
113
+
114
+ /***/ 2:
115
+ /***/ (function(module, exports) {
116
+
117
+ module.exports = require("chalk");
118
+
119
+ /***/ }),
120
+
121
+ /***/ 25:
122
+ /***/ (function(module, exports, __webpack_require__) {
123
+
124
+
125
+ const pkg = __webpack_require__(0);
126
+ const program = __webpack_require__(1);
127
+ const chalk = __webpack_require__(2);
128
+
129
+ program
130
+ .version(pkg.version)
131
+ .description(
132
+ `A tool for viewing magda access control data. Version: ${pkg.version}`
133
+ )
134
+ .command("permissions", "List all permissions")
135
+ .command("roles", "List all roles")
136
+ .command("users", "List all users")
137
+ .on("command:*", function (cmds) {
138
+ if (["permissions", "roles", "users"].indexOf(cmds[0]) === -1) {
139
+ console.error(
140
+ chalk.red(
141
+ `Invalid command: ${program.args.join(
142
+ " "
143
+ )}\nSee --help for a list of available commands.`
144
+ )
145
+ );
146
+ process.exit(1);
147
+ }
148
+ })
149
+ .parse(process.argv);
150
+
151
+
152
+ /***/ })
153
+
154
+ /******/ });
155
+ });