2 * ============LICENSE_START====================================================
4 * ===========================================================================
5 * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
7 * Modifications Copyright (C) 2019 IBM.
8 * ===========================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
13 * http://www.apache.org/licenses/LICENSE-2.0
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END====================================================
24 package org.onap.aaf.auth.cmd;
26 import java.io.BufferedReader;
28 import java.io.FileReader;
29 import java.io.InputStreamReader;
30 import java.io.OutputStreamWriter;
31 import java.io.PrintWriter;
32 import java.io.Reader;
33 import java.io.Writer;
34 import java.net.HttpURLConnection;
35 import java.util.ArrayList;
36 import java.util.List;
38 import org.onap.aaf.auth.cmd.mgmt.Mgmt;
39 import org.onap.aaf.auth.cmd.ns.NS;
40 import org.onap.aaf.auth.cmd.perm.Perm;
41 import org.onap.aaf.auth.cmd.role.Role;
42 import org.onap.aaf.auth.cmd.user.User;
43 import org.onap.aaf.auth.common.Define;
44 import org.onap.aaf.auth.env.AuthzEnv;
45 import org.onap.aaf.cadi.Access;
46 import org.onap.aaf.cadi.Access.Level;
47 import org.onap.aaf.cadi.CadiException;
48 import org.onap.aaf.cadi.PropAccess;
49 import org.onap.aaf.cadi.SecuritySetter;
50 import org.onap.aaf.cadi.aaf.v2_0.AAFConHttp;
51 import org.onap.aaf.cadi.client.Retryable;
52 import org.onap.aaf.cadi.config.Config;
53 import org.onap.aaf.cadi.config.SecurityInfoC;
54 import org.onap.aaf.cadi.http.HBasicAuthSS;
55 import org.onap.aaf.cadi.http.HMangr;
56 import org.onap.aaf.cadi.sso.AAFSSO;
57 import org.onap.aaf.misc.env.APIException;
59 import jline.console.ConsoleReader;
62 protected static PrintWriter pw;
63 protected HMangr hman;
64 // Storage for last reused client. We can do this
65 // because we're technically "single" threaded calls.
66 public Retryable<?> prevCall;
68 protected SecuritySetter<HttpURLConnection> ss;
69 // protected AuthzEnv env;
70 private boolean close;
71 private List<Cmd> cmds;
74 private ArrayList<Integer> expect = new ArrayList<>();
75 private boolean verbose = true;
77 private SecurityInfoC<HttpURLConnection> si;
78 private boolean request = false;
79 private String force = null;
80 private boolean gui = false;
85 private static int TIMEOUT = Integer.parseInt(Config.AAF_CONN_TIMEOUT_DEF);
86 private static boolean isConsole = false;
87 private static boolean isTest = false;
88 private static boolean showDetails = false;
89 private static boolean ignoreDelay = false;
90 private static int globalDelay=0;
92 // Create when only have Access
93 public AAFcli(Access access, Writer wtr, HMangr hman, SecurityInfoC<HttpURLConnection> si, SecuritySetter<HttpURLConnection> ss) throws APIException {
94 this(access,new AuthzEnv(access.getProperties()),wtr,hman, si,ss);
97 public AAFcli(Access access, AuthzEnv env, Writer wtr, HMangr hman, SecurityInfoC<HttpURLConnection> si, SecuritySetter<HttpURLConnection> ss) throws APIException {
103 if (wtr instanceof PrintWriter) {
104 pw = (PrintWriter) wtr;
107 pw = new PrintWriter(wtr);
114 cmds = new ArrayList<>();
116 Role role = new Role(this);
117 cmds.add(new Help(this, cmds));
118 cmds.add(new Version(this));
119 cmds.add(new Perm(role));
121 cmds.add(new User(this));
122 cmds.add(new NS(this));
123 cmds.add(new Mgmt(this));
126 public AuthzEnv env() {
130 public static int timeout() {
134 public void verbose(boolean v) {
138 public void close() {
139 // if (hman != null) {
148 public boolean eval(String line) throws Exception {
149 if (line.length() == 0) {
151 } else if (line.startsWith("#")) {
156 String[] largs = argEval(line);
159 // Variable replacement
160 StringBuilder sb = null;
161 while (idx < largs.length) {
163 for (int v = largs[idx].indexOf("@["); v >= 0; v = largs[idx].indexOf("@[", v + 1)) {
165 sb = new StringBuilder();
167 sb.append(largs[idx], e, v);
168 if ((e = largs[idx].indexOf(']', v)) >= 0) {
169 String p = access.getProperty(largs[idx].substring(v + 2, e),null);
171 p = System.getProperty(largs[idx].substring(v+2,e));
179 if (sb != null && sb.length() > 0) {
180 sb.append(largs[idx], e, largs[idx].length());
181 largs[idx] = sb.toString();
189 while (rv && idx < largs.length) {
190 // Allow Script to change Credential
192 if ("as".equalsIgnoreCase(largs[idx])) {
193 if (largs.length > ++idx) {
194 // get Password from Props with ID as Key
195 String user = largs[idx++];
196 int colon = user.indexOf(':');
199 pass = user.substring(colon + 1);
200 user = user.substring(0, colon);
202 pass = access.getProperty(user, null);
205 pass = access.decrypt(pass, false);
206 access.getProperties().put(user, pass);
207 ss=new HBasicAuthSS(si, user, pass);
208 pw.println("as " + user);
209 } else { // get Pass from System Properties, under name of
211 pw.println("ERROR: No password set for " + user);
216 } else if ("expect".equalsIgnoreCase(largs[idx])) {
218 if ((largs.length > idx++)&&(!"nothing".equals(largs[idx]))) {
219 for (String str : largs[idx].split(",")) {
221 if ("Exception".equalsIgnoreCase(str)) {
224 expect.add(Integer.parseInt(str));
226 } catch (NumberFormatException e) {
227 throw new CadiException("\"expect\" should be followed by Number");
233 // Sleep, typically for reports, to allow DB to update
236 } else if ("sleep".equalsIgnoreCase(largs[idx])) {
237 Integer t = Integer.parseInt(largs[++idx]);
238 pw.println("sleep " + t);
242 } else if ("delay".equalsIgnoreCase(largs[idx])) {
243 delay = Integer.parseInt(largs[++idx]);
244 pw.println("delay " + delay);
247 } else if ("pause".equalsIgnoreCase(largs[idx])) {
248 pw.println("Press <Return> to continue...");
250 // Sonar insists we do something with the string, though it's only a pause. Not very helpful...
251 BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
254 sonar = br.readLine();
258 sonar=""; // this useless code brought to you by Sonar.
261 } else if ("exit".equalsIgnoreCase(largs[idx])) {
262 pw.println("Exiting...");
264 } else if ("set".equalsIgnoreCase(largs[idx])) {
265 while (largs.length > ++idx) {
266 int equals = largs[idx].indexOf('=');
271 value = access.getProperty(Config.AAF_APPPASS,null);
275 value = access.decrypt(value, false);
279 access.getProperties().put(tag, value);
280 pw.println("set " + tag + " <encrypted>");
283 tag = largs[idx].substring(0, equals);
284 value = largs[idx].substring(++equals);
285 pw.println("set " + tag + ' ' + value);
287 boolean isTrue = "TRUE".equalsIgnoreCase(value);
288 if ("FORCE".equalsIgnoreCase(tag)) {
290 } else if ("REQUEST".equalsIgnoreCase(tag)) {
292 } else if ("DETAILS".equalsIgnoreCase(tag)) {
293 showDetails = isTrue;
295 access.getProperties().put(tag, value);
299 // Allow Script to indicate if Failure is what is expected
304 if ("REQUEST".equalsIgnoreCase(largs[idx])) {
307 } else if ("FORCE".equalsIgnoreCase(largs[idx])) {
310 } else if ("DETAILS".equalsIgnoreCase(largs[idx])) {
317 if (largs[idx].equalsIgnoreCase(c.getName())) {
320 if (expect.size() > 0) {
321 pw.print("** Expect ");
322 boolean first = true;
323 for (Integer i : expect) {
335 ret = c.exec(++idx, largs);
336 if (delay+globalDelay > 0) {
337 Thread.sleep((long)(delay+globalDelay));
339 } catch (Exception e) {
340 if (expect.contains(-1)) {
341 pw.println(e.getMessage());
347 clearSingleLineProperties();
349 rv = expect.isEmpty() || expect.contains(ret);
354 pw.print("!!! Unexpected Return Code: ");
356 pw.println(", VALIDATE OUTPUT!!!");
362 pw.write("Unknown Instruction \"");
363 pw.write(largs[idx]);
365 idx = largs.length;// always end after one command
370 private String[] argEval(String line) {
371 StringBuilder sb = new StringBuilder();
372 ArrayList<String> arr = new ArrayList<>();
373 boolean start = true;
376 for (int i = 0; i < line.length(); ++i) {
379 if (Character.isWhitespace(ch)) {
380 if (start || last==',') {
382 } else if (quote != 0) {
385 arr.add(sb.toString());
389 } else if (ch == '\'' || ch == '"') { // toggle
395 } else if (ch=='|' && quote==0) {
396 arr.add(sb.toString());
405 if (sb.length() > 0) {
406 arr.add(sb.toString());
409 String[] rv = new String[arr.size()];
414 public static void keyboardHelp() {
415 System.out.println("'C-' means hold the ctrl key down while pressing the next key.");
416 System.out.println("'M-' means hold the alt key down while pressing the next key.");
417 System.out.println("For instance, C-b means hold ctrl key and press b, M-b means hold alt and press b\n");
419 System.out.println("Basic Keybindings:");
420 System.out.println("\tC-l - clear screen");
421 System.out.println("\tC-a - beginning of line");
422 System.out.println("\tC-e - end of line");
423 System.out.println("\tC-b - backward character (left arrow also works)");
424 System.out.println("\tM-b - backward word");
425 System.out.println("\tC-f - forward character (right arrow also works)");
426 System.out.println("\tM-f - forward word");
427 System.out.println("\tC-d - delete character under cursor");
428 System.out.println("\tM-d - delete word forward");
429 System.out.println("\tM-backspace - delete word backward");
430 System.out.println("\tC-k - delete from cursor to end of line");
431 System.out.println("\tC-u - delete entire line, regardless of cursor position\n");
433 System.out.println("Command History:");
434 System.out.println("\tC-r - search backward in history (repeating C-r continues the search)");
435 System.out.println("\tC-p - move backwards through history (up arrow also works)");
436 System.out.println("\tC-n - move forwards through history (down arrow also works)\n");
443 public static void main(String[] args) {
447 AAFSSO aafsso = new AAFSSO(args);
448 String noexit = aafsso.access().getProperty("no_exit");
450 PropAccess access = aafsso.access();
454 AuthzEnv env = new AuthzEnv(access);
457 boolean exitOnFailure = true;
459 * Check for "-" options anywhere in command line
461 StringBuilder sb = new StringBuilder();
462 for (int i = 0; i < args.length; ++i) {
463 if ("-i".equalsIgnoreCase(args[i])) {
464 rdr = new InputStreamReader(System.in);
465 // } else if ("-o".equalsIgnoreCase(args[i])) {
466 // // shall we do something different? Output stream is
468 } else if ("-f".equalsIgnoreCase(args[i])) {
469 if (args.length > i + 1) {
470 rdr = new FileReader(args[++i]);
472 } else if ("-a".equalsIgnoreCase(args[i])) {
473 exitOnFailure = false;
474 } else if ("-c".equalsIgnoreCase(args[i])) {
476 } else if ("-s".equalsIgnoreCase(args[i]) && args.length > i + 1) {
477 access.setProperty(Cmd.STARTDATE, args[++i]);
478 } else if ("-e".equalsIgnoreCase(args[i]) && args.length > i + 1) {
479 access.setProperty(Cmd.ENDDATE, args[++i]);
480 } else if ("-t".equalsIgnoreCase(args[i])) {
482 } else if ("-d".equalsIgnoreCase(args[i])) {
484 } else if ("-n".equalsIgnoreCase(args[i])) {
487 if (sb.length() > 0) {
494 AAFConHttp aafcon = new AAFConHttp(access);
496 // SecurityInfoC<?> si = aafcon.securityInfo();
499 aafsso.setLogDefault();
500 aafsso.setStdErrDefault();
502 // Note, with AAF Locator, this may not longer be necessary 3/2018 Jonathan
503 if (!aafsso.loginOnly()) {
505 // loc = new AAFLocator(si,new URI(access.getProperty(Config.AAF_URL)));
506 // } catch (Throwable t) {
507 // aafsso.setStdErrDefault();
510 // // Other Access is done writing to StdOut and StdErr, reset Std out
511 // aafsso.setLogDefault();
514 TIMEOUT = Integer.parseInt(access.getProperty(Config.AAF_CONN_TIMEOUT, Config.AAF_CONN_TIMEOUT_DEF));
515 // HMangr hman = new HMangr(access, loc).readTimeout(TIMEOUT).apiVersion(Config.AAF_DEFAULT_API_VERSION);
517 if (access.getProperty(Config.AAF_DEFAULT_REALM)==null) {
518 access.setProperty(Config.AAF_DEFAULT_REALM, "people.osaaf.org");
519 aafsso.addProp(Config.AAF_DEFAULT_REALM, "people.osaaf.org");
522 AAFcli aafcli = new AAFcli(access,env, new OutputStreamWriter(System.out),
523 aafcon.hman(), aafcon.securityInfo(), aafcon.securityInfo().defSS);
524 // new HBasicAuthSS(si,aafsso.user(), access.decrypt(aafsso.enc_pass(),false)));
527 File delay = new File("aafcli.delay");
528 if (delay.exists()) {
529 BufferedReader br = new BufferedReader(new FileReader(delay));
531 globalDelay = Integer.parseInt(br.readLine());
532 } catch (Exception e) {
533 access.log(Level.DEBUG,e);
541 System.out.println("Type 'help' for short help or 'help -d' for detailed help with aafcli commands");
542 System.out.println("Type '?' for help with command line editing");
543 System.out.println("Type 'q', 'quit', or 'exit' to quit aafcli\n");
545 ConsoleReader reader = new ConsoleReader();
547 reader.setPrompt("aafcli > ");
550 while ((line = reader.readLine()) != null) {
551 showDetails = (line.contains("-d"));
553 if ("quit".equalsIgnoreCase(line) || "q".equalsIgnoreCase(line) || "exit".equalsIgnoreCase(line)) {
555 } else if ("--help -d".equalsIgnoreCase(line) || "help -d".equalsIgnoreCase(line)
556 || "help".equalsIgnoreCase(line)) {
558 } else if ("cls".equalsIgnoreCase(line)) {
559 reader.clearScreen();
561 } else if ("?".equalsIgnoreCase(line)) {
568 } catch (Exception e) {
569 pw.println(e.getMessage());
576 } else if (rdr != null) {
577 BufferedReader br = new BufferedReader(rdr);
580 while ((line = br.readLine()) != null) {
581 if (!aafcli.eval(line) && exitOnFailure) {
589 } else { // just run the command line
590 aafcli.verbose(false);
591 if (sb.length() == 0) {
594 rv = aafcli.eval(sb.toString()) ? 0 : 1;
600 // Don't close if No Reader, or it's a Reader of Standard In
601 if (rdr != null && !(rdr instanceof InputStreamReader)) {
609 StringBuilder err = aafsso.err();
611 err.append("to continue...");
612 System.err.println(err);
620 } catch (MessageException e) {
621 System.out.println("MessageException caught");
623 System.err.println(e.getMessage());
624 } catch (Exception e) {
625 e.printStackTrace(System.err);
630 public boolean isTest() {
631 return AAFcli.isTest;
634 public boolean isDetailed() {
635 return AAFcli.showDetails;
638 public String typeString(Class<?> cls, boolean json) {
639 return "application/" + cls.getSimpleName() + "+" + (json ? "json" : "xml");//+ ";version=" + hman.apiVersion();
642 public String forceString() {
646 public boolean addRequest() {
650 public void clearSingleLineProperties() {
656 public void gui(boolean b) {