- private static int handleCommands(Namespace ns) {
- final String username = ns.getString("username");
- Manager m;
- Signal ts;
- DBusConnection dBusConn = null;
- try {
- if (ns.getBoolean("dbus") || ns.getBoolean("dbus_system")) {
- try {
- m = null;
- int busType;
- if (ns.getBoolean("dbus_system")) {
- busType = DBusConnection.SYSTEM;
- } else {
- busType = DBusConnection.SESSION;
- }
- dBusConn = DBusConnection.getConnection(busType);
- ts = dBusConn.getRemoteObject(
- SIGNAL_BUSNAME, SIGNAL_OBJECTPATH,
- Signal.class);
- } catch (UnsatisfiedLinkError e) {
- System.err.println("Missing native library dependency for dbus service: " + e.getMessage());
- return 1;
- } catch (DBusException e) {
- e.printStackTrace();
- if (dBusConn != null) {
- dBusConn.disconnect();
- }
- return 3;
- }
- } else {
- String settingsPath = ns.getString("config");
- if (TextUtils.isEmpty(settingsPath)) {
- settingsPath = System.getProperty("user.home") + "/.config/signal";
- if (!new File(settingsPath).exists()) {
- String legacySettingsPath = System.getProperty("user.home") + "/.config/textsecure";
- if (new File(legacySettingsPath).exists()) {
- settingsPath = legacySettingsPath;
- }
- }
- }
-
- m = new Manager(username, settingsPath);
- ts = m;
- if (m.userExists()) {
- try {
- m.init();
- } catch (Exception e) {
- System.err.println("Error loading state file \"" + m.getFileName() + "\": " + e.getMessage());
- return 2;
- }
- }
- }
-
- switch (ns.getString("command")) {
- case "register":
- if (dBusConn != null) {
- System.err.println("register is not yet implemented via dbus");
- return 1;
- }
- if (!m.userHasKeys()) {
- m.createNewIdentity();
- }
- try {
- m.register(ns.getBoolean("voice"));
- } catch (IOException e) {
- System.err.println("Request verify error: " + e.getMessage());
- return 3;
- }
- break;
- case "unregister":
- if (dBusConn != null) {
- System.err.println("unregister is not yet implemented via dbus");
- return 1;
- }
- if (!m.isRegistered()) {
- System.err.println("User is not registered.");
- return 1;
- }
- try {
- m.unregister();
- } catch (IOException e) {
- System.err.println("Unregister error: " + e.getMessage());
- return 3;
- }
- break;
- case "updateAccount":
- if (dBusConn != null) {
- System.err.println("updateAccount is not yet implemented via dbus");
- return 1;
- }
- if (!m.isRegistered()) {
- System.err.println("User is not registered.");
- return 1;
- }
- try {
- m.updateAccountAttributes();
- } catch (IOException e) {
- System.err.println("UpdateAccount error: " + e.getMessage());
- return 3;
- }
- break;
- case "setPin":
- if (dBusConn != null) {
- System.err.println("setPin is not yet implemented via dbus");
- return 1;
- }
- if (!m.isRegistered()) {
- System.err.println("User is not registered.");
- return 1;
- }
- try {
- String registrationLockPin = ns.getString("registrationLockPin");
- m.setRegistrationLockPin(Optional.of(registrationLockPin));
- } catch (IOException e) {
- System.err.println("Set pin error: " + e.getMessage());
- return 3;
- }
- break;
- case "removePin":
- if (dBusConn != null) {
- System.err.println("removePin is not yet implemented via dbus");
- return 1;
- }
- if (!m.isRegistered()) {
- System.err.println("User is not registered.");
- return 1;
- }
- try {
- m.setRegistrationLockPin(Optional.<String>absent());
- } catch (IOException e) {
- System.err.println("Remove pin error: " + e.getMessage());
- return 3;
- }
- break;
- case "verify":
- if (dBusConn != null) {
- System.err.println("verify is not yet implemented via dbus");
- return 1;
- }
- if (!m.userHasKeys()) {
- System.err.println("User has no keys, first call register.");
- return 1;
- }
- if (m.isRegistered()) {
- System.err.println("User registration is already verified");
- return 1;
- }
- try {
- String verificationCode = ns.getString("verificationCode");
- String pin = ns.getString("pin");
- m.verifyAccount(verificationCode, pin);
- } catch (LockedException e) {
- System.err.println("Verification failed! This number is locked with a pin. Hours remaining until reset: " + (e.getTimeRemaining() / 1000 / 60 / 60));
- System.err.println("Use '--pin PIN_CODE' to specify the registration lock PIN");
- return 3;
- } catch (IOException e) {
- System.err.println("Verify error: " + e.getMessage());
- return 3;
- }
- break;
- case "link":
- if (dBusConn != null) {
- System.err.println("link is not yet implemented via dbus");
- return 1;
- }
-
- // When linking, username is null and we always have to create keys
- m.createNewIdentity();
-
- String deviceName = ns.getString("name");
- if (deviceName == null) {
- deviceName = "cli";
- }
- try {
- System.out.println(m.getDeviceLinkUri());
- m.finishDeviceLink(deviceName);
- System.out.println("Associated with: " + m.getUsername());
- } catch (TimeoutException e) {
- System.err.println("Link request timed out, please try again.");
- return 3;
- } catch (IOException e) {
- System.err.println("Link request error: " + e.getMessage());
- return 3;
- } catch (AssertionError e) {
- handleAssertionError(e);
- return 1;
- } catch (InvalidKeyException e) {
- e.printStackTrace();
- return 2;
- } catch (UserAlreadyExists e) {
- System.err.println("The user " + e.getUsername() + " already exists\nDelete \"" + e.getFileName() + "\" before trying again.");
- return 1;
- }
- break;
- case "addDevice":
- if (dBusConn != null) {
- System.err.println("link is not yet implemented via dbus");
- return 1;
- }
- if (!m.isRegistered()) {
- System.err.println("User is not registered.");
- return 1;
- }
- try {
- m.addDeviceLink(new URI(ns.getString("uri")));
- } catch (IOException e) {
- e.printStackTrace();
- return 3;
- } catch (InvalidKeyException e) {
- e.printStackTrace();
- return 2;
- } catch (AssertionError e) {
- handleAssertionError(e);
- return 1;
- } catch (URISyntaxException e) {
- e.printStackTrace();
- return 2;
- }
- break;
- case "listDevices":
- if (dBusConn != null) {
- System.err.println("listDevices is not yet implemented via dbus");
- return 1;
- }
- if (!m.isRegistered()) {
- System.err.println("User is not registered.");
- return 1;
- }
- try {
- List<DeviceInfo> devices = m.getLinkedDevices();
- for (DeviceInfo d : devices) {
- System.out.println("Device " + d.getId() + (d.getId() == m.getDeviceId() ? " (this device)" : "") + ":");
- System.out.println(" Name: " + d.getName());
- System.out.println(" Created: " + DateUtils.formatTimestamp(d.getCreated()));
- System.out.println(" Last seen: " + DateUtils.formatTimestamp(d.getLastSeen()));
- }
- } catch (IOException e) {
- e.printStackTrace();
- return 3;
- }
- break;
- case "removeDevice":
- if (dBusConn != null) {
- System.err.println("removeDevice is not yet implemented via dbus");
- return 1;
- }
- if (!m.isRegistered()) {
- System.err.println("User is not registered.");
- return 1;
- }
- try {
- int deviceId = ns.getInt("deviceId");
- m.removeLinkedDevices(deviceId);
- } catch (IOException e) {
- e.printStackTrace();
- return 3;
- }
- break;
- case "send":
- if (dBusConn == null && !m.isRegistered()) {
- System.err.println("User is not registered.");
- return 1;
- }
-
- if (ns.getBoolean("endsession")) {
- if (ns.getList("recipient") == null) {
- System.err.println("No recipients given");
- System.err.println("Aborting sending.");
- return 1;
- }
- try {
- ts.sendEndSessionMessage(ns.<String>getList("recipient"));
- } catch (IOException e) {
- handleIOException(e);
- return 3;
- } catch (EncapsulatedExceptions e) {
- handleEncapsulatedExceptions(e);
- return 3;
- } catch (AssertionError e) {
- handleAssertionError(e);
- return 1;
- } catch (DBusExecutionException e) {
- handleDBusExecutionException(e);
- return 1;
- }
- } else {
- String messageText = ns.getString("message");
- if (messageText == null) {
- try {
- messageText = IOUtils.readAll(System.in, Charset.defaultCharset());
- } catch (IOException e) {
- System.err.println("Failed to read message from stdin: " + e.getMessage());
- System.err.println("Aborting sending.");
- return 1;
- }
- }
-
- try {
- List<String> attachments = ns.getList("attachment");
- if (attachments == null) {
- attachments = new ArrayList<>();
- }
- if (ns.getString("group") != null) {
- byte[] groupId = decodeGroupId(ns.getString("group"));
- ts.sendGroupMessage(messageText, attachments, groupId);
- } else {
- ts.sendMessage(messageText, attachments, ns.<String>getList("recipient"));
- }
- } catch (IOException e) {
- handleIOException(e);
- return 3;
- } catch (EncapsulatedExceptions e) {
- handleEncapsulatedExceptions(e);
- return 3;
- } catch (AssertionError e) {
- handleAssertionError(e);
- return 1;
- } catch (GroupNotFoundException e) {
- handleGroupNotFoundException(e);
- return 1;
- } catch (NotAGroupMemberException e) {
- handleNotAGroupMemberException(e);
- return 1;
- } catch (AttachmentInvalidException e) {
- System.err.println("Failed to add attachment: " + e.getMessage());
- System.err.println("Aborting sending.");
- return 1;
- } catch (DBusExecutionException e) {
- handleDBusExecutionException(e);
- return 1;
- }
- }