Example #1
0
 private boolean swap(String noteID, boolean previous) throws Exception {
   // Is there a faster way?
   View view = ExtLibUtil.getCurrentDatabase().getView("AllDocumentation");
   // view.setAutoUpdate(false);
   ViewNavigator vn = view.createViewNav();
   try {
     for (ViewEntry ve = vn.getFirst(); ve != null; ve = vn.getNext(ve)) {
       if (ve.getNoteID().equals(noteID)) {
         int docIndent = ve.getIndentLevel();
         Document doc = ve.getDocument();
         ve = previous ? vn.getPrev(ve) : vn.getNext(ve);
         if (ve != null) {
           Document other = ve.getDocument();
           if (ve.getIndentLevel() == docIndent) {
             Object ts = other.getItemValue("OrderTS");
             other.replaceItemValue("OrderTS", doc.getItemValue("OrderTS"));
             doc.replaceItemValue("OrderTS", ts);
             doc.save();
             other.save();
             view.refresh();
             return true;
           }
         }
         return false;
       }
     }
   } finally {
     vn.recycle();
   }
   return false;
 }
Example #2
0
 /**
  * Wrap.
  *
  * @param entry the entry
  * @return the view entry
  */
 public static ViewEntry wrap(final lotus.domino.ViewEntry entry) {
   try {
     Object parent = entry.getParent();
     lotus.domino.View view;
     if (parent instanceof lotus.domino.ViewEntryCollection) {
       view = ((lotus.domino.ViewEntryCollection) parent).getParent();
     } else if (parent instanceof lotus.domino.ViewNavigator) {
       view = ((lotus.domino.ViewNavigator) parent).getParentView();
     } else {
       view = (lotus.domino.View) parent;
     }
     lotus.domino.Database db = view.getParent();
     Session session = Factory.fromLotus(db.getParent(), Session.class, null);
     Database wrappedDB = Factory.fromLotus(db, Database.class, session);
     View wrappedView = Factory.fromLotus(view, View.class, wrappedDB);
     if (parent instanceof lotus.domino.ViewEntryCollection) {
       ViewEntryCollection vec =
           Factory.fromLotus((lotus.domino.Base) parent, ViewEntryCollection.class, wrappedView);
       return Factory.fromLotus(entry, ViewEntry.class, vec);
     } else if (parent instanceof lotus.domino.ViewNavigator) {
       ViewNavigator vnav =
           Factory.fromLotus((lotus.domino.Base) parent, ViewNavigator.class, wrappedView);
       return Factory.fromLotus(entry, ViewEntry.class, vnav);
     } else {
       return Factory.fromLotus(entry, ViewEntry.class, wrappedView);
     }
   } catch (lotus.domino.NotesException ne) {
     return null;
   }
 }
 public String getFirstContactID() throws NotesException {
   if (!firstContactIDRead) {
     Database db = ExtLibUtil.getCurrentDatabase();
     View view = db.getView("AllContacts");
     Document doc = view.getFirstDocument();
     if (doc != null) {
       firstContactID = doc.getNoteID();
     }
   }
   return firstContactID;
 }
 /** Read the snippet categories */
 public String[] getAllCategories() throws NotesException {
   Database db = ExtLibUtil.getCurrentDatabase();
   View v = db.getView("AllSnippets");
   ViewNavigator nav = v.createViewNav();
   try {
     nav.setMaxLevel(0);
     // nav.setCacheSize(128);
     List<String> categories = new ArrayList<String>();
     for (ViewEntry ve = nav.getFirst(); ve != null; ve = nav.getNext(ve)) {
       categories.add((String) ve.getColumnValues().get(0));
     }
     return categories.toArray(new String[categories.size()]);
   } finally {
     nav.recycle();
   }
 }
Example #5
0
 /**
  * This will display an error page to the user. The error page must be in a view in the current
  * Database with the name matching the value of EXCEPTION_VIEW. The key of the document in the
  * view is the same as the class of the exception that is calling this method.
  *
  * @param - contextDoc Document , the context document.
  */
 public void showExceptionWebPage(Document contextDoc) {
   try {
     Database db = contextDoc.getParentDatabase();
     View view = db.getView(EXCEPTION_VIEW);
     if (view != null) {
       Document errorPage = view.getDocumentByKey(EXCEPTION_KEY);
       if (errorPage != null) {
         contextDoc.replaceItemValue(
             "$$Return",
             "[/"
                 + db.getFilePath()
                 + "/"
                 + EXCEPTION_VIEW
                 + "/"
                 + EXCEPTION_KEY
                 + "?OpenDocument]");
       }
     }
   } catch (
       NotesException
           e) {; /// Do nothing if the database doesn't have an exception page  for this exception
   }
 }
 private RootNode readSnippetsNodes() throws NotesException {
   Database db = ExtLibUtil.getCurrentDatabase();
   View v = db.getView("AllSnippetsFlat");
   try {
     RootNode root = new RootNode();
     String snippetSearch = (String) ExtLibUtil.getViewScope().get("snippetSearch");
     if (StringUtil.isNotEmpty(snippetSearch)) {
       v.FTSearch(snippetSearch);
       ViewEntryCollection col = v.getAllEntries();
       for (ViewEntry e = col.getFirstEntry(); e != null; e = col.getNextEntry()) {
         Vector<?> values = e.getColumnValues();
         String unid = e.getUniversalID();
         String cat = (String) values.get(0);
         String name = (String) values.get(1);
         String jspUrl = (String) values.get(2);
         CategoryNode c = findCategory(root, cat);
         SnippetNode snippet = new SnippetNode(c, name, cat, unid, jspUrl);
         c.getChildren().add(snippet);
       }
     } else {
       v.setAutoUpdate(false);
       ViewNavigator nav = v.createViewNav();
       nav.setBufferMaxEntries(500);
       for (ViewEntry e = nav.getFirst(); e != null; e = nav.getNext()) {
         Vector<?> values = e.getColumnValues();
         String unid = e.getUniversalID();
         String cat = (String) values.get(0);
         String name = (String) values.get(1);
         String jspUrl = (String) values.get(2);
         CategoryNode c = findCategory(root, cat);
         SnippetNode snippet = new SnippetNode(c, name, cat, unid, findUniqueUrl(c, unid, jspUrl));
         c.getChildren().add(snippet);
       }
     }
     return root;
   } finally {
     v.recycle();
   }
 }
Example #7
0
  /*
   * Reload the application configuration by reading the settings document
   */
  public void reload() {

    Database dbCurrent = null;
    View vwAllByType = null;
    Document docSettings = null;

    try {

      Session sessionAsSigner = Utils.getCurrentSessionAsSigner();
      dbCurrent = sessionAsSigner.getCurrentDatabase();
      vwAllByType = dbCurrent.getView("vwAllByType");

      docSettings = vwAllByType.getDocumentByKey("fSettings", true);

      if (docSettings == null) {

        System.out.println("could not read settings document");

      } else {

        String dataVersion = docSettings.getItemValueString("dataVersion");

        if (!dataVersion.equals(DATA_VERSION)) {

          convert(dataVersion, DATA_VERSION, dbCurrent, vwAllByType, docSettings);
        }

        serverName = dbCurrent.getServer();
        continuityDbPath = dbCurrent.getFilePath();
        continuityDbUrl = "/" + continuityDbPath.replace("\\", "/");

        settingsUnid = docSettings.getUniversalID();
        organisationName = docSettings.getItemValueString("organisationName");
        organisationId = docSettings.getItemValueString("organisationId");
        directoryDbPath = docSettings.getItemValueString("directoryDbPath");
        unpluggedDbPath = docSettings.getItemValueString("unpluggedDbPath");

        callTreeType = docSettings.getItemValueString("callTreeType");

        if (callTreeType.length() == 0) {
          callTreeType = CALLTREE_TYPE_ROLE; // default: role based
        }

        senderEmail = docSettings.getItemValueString("senderEmail");
        senderName = docSettings.getItemValueString("senderName");

        // defaults
        if (senderEmail.length() == 0) {
          senderEmail = "*****@*****.**";
        }
        if (senderName.length() == 0) {
          senderName = "Continuity";
        }

        // labels
        String riskNaming = docSettings.getItemValueString("riskNaming");
        String incidentNaming = docSettings.getItemValueString("incidentNaming");

        if (riskNaming.equals("activities")) {
          labels.put("assets", "Activities");
          labels.put("asset", "Activity");
        } else if (riskNaming.equals("sites")) {
          labels.put("assets", "Sites");
          labels.put("asset", "Site");
        } else if (riskNaming.equals("locations")) {
          labels.put("assets", "Locations");
          labels.put("asset", "Location");
        } else {
          labels.put("assets", "Assets");
          labels.put("asset", "Asset");
        }

        if (incidentNaming.equals("crises")) {
          labels.put("incidents", "Crises");
          labels.put("incident", "Crisis");
        } else if (incidentNaming.equals("emergencies")) {
          labels.put("incidents", "Emergencies");
          labels.put("incident", "Emergency");
        } else {
          labels.put("incidents", "Incidents");
          labels.put("incident", "Incident");
        }

        labels.put("miniConfigGuide", getMiniConfigGuide());
        labels.put("contactsImportGuide", getContactsImportGuide());
      }

    } catch (Exception e) {
      e.printStackTrace();
    } finally {

      Utils.recycle(docSettings, vwAllByType, dbCurrent);
    }
  }
Example #8
0
  @SuppressWarnings("unchecked")
  private void convert(
      String dataVersion,
      String DATA_VERSION,
      Database dbCurrent,
      View vwAllByType,
      Document docSettings) {

    try {
      DebugToolbar.get()
          .info(
              "Start conversion (current data version: "
                  + dataVersion
                  + ", update to "
                  + DATA_VERSION
                  + ")");

      DebugToolbar.get().info("- convert role > appMenuOptions");

      DocumentCollection dc;
      dc = dbCurrent.search("form=\"fRole\" & @IsUnavailable(appMenuOptions)");
      if (dc.getCount() > 0) {
        dc.stampAll("appMenuOptions", "all");
      }

      DebugToolbar.get()
          .info("- convert contacts (app menu options, org units, org unit in call tree)");

      dc = dbCurrent.search("form=\"fContact\"");
      if (dc.getCount() > 0) {

        boolean changed = false;

        Document doc = dc.getFirstDocument();
        while (null != doc) {

          changed = false;

          // remove app menu options field
          if (doc.hasItem("appMenuOptions")) {
            doc.removeItem("appMenuOptions");
            changed = true;
          }
          if (doc.hasItem("appMenuOptionsActive")) {
            doc.removeItem("appMenuOptionsActive");
            changed = true;
          }

          String callTreeRoot = doc.getItemValueString("callTreeRoot");
          Vector<String> callTreeCalledBy = doc.getItemValue("callTreeCalledBy");
          Vector<String> callTreeContacts = doc.getItemValue("callTreeContacts");

          String orgUnitId = null;

          if (doc.hasItem("orgUnitId")) {
            orgUnitId = doc.getItemValueString("orgUnitId");
          } else {
            Vector<String> o = doc.getItemValue("orgUnitIds");
            if (o.size() > 0) {
              orgUnitId = o.get(0);
            }
          }

          boolean callTreeChanged = false;

          if (StringUtil.isNotEmpty(orgUnitId)) {

            if (callTreeRoot.length() > 0 && callTreeRoot.indexOf("-") == -1) {
              doc.replaceItemValue("callTreeRoot", orgUnitId + "-" + callTreeRoot);
              callTreeChanged = true;
            }

            for (int i = 0; i < callTreeCalledBy.size(); i++) {
              String _this = callTreeCalledBy.get(i);
              if (_this.length() > 0 && _this.indexOf("-") == -1) {
                callTreeCalledBy.set(i, orgUnitId + "-" + _this);
                callTreeChanged = true;
              }
            }

            for (int i = 0; i < callTreeContacts.size(); i++) {
              String _this = callTreeContacts.get(i);
              if (_this.length() > 0 && _this.indexOf("-") == -1) {
                callTreeContacts.set(i, orgUnitId + "-" + _this);
                callTreeChanged = true;
              }
            }

            if (callTreeChanged) {
              changed = true;
              doc.replaceItemValue("callTreeCalledBy", callTreeCalledBy);
              doc.replaceItemValue("callTreeContacts", callTreeContacts);
            }
          }

          // convert org unit to multi-value name
          if (doc.hasItem("orgUnitId")) {
            doc.replaceItemValue("orgUnitIds", doc.getItemValueString("orgUnitId"));
            doc.removeItem("orgUnitId");
            changed = true;
          }
          if (doc.hasItem("orgUnitName")) {
            doc.replaceItemValue("orgUnitNames", doc.getItemValueString("orgUnitName"));
            doc.removeItem("orgUnitName");
            changed = true;
          }

          if (changed) {
            doc.save();
          }

          Document tmp = dc.getNextDocument(doc);
          doc.recycle();
          doc = tmp;
        }

        dc.stampAll("appMenuOptions", "all");
      }

      DebugToolbar.get().info("Conversion finished - update data version");

      // update version in settings document
      docSettings =
          vwAllByType.getDocumentByKey("fSettings", true); // re-retrieve here using signer access
      docSettings.replaceItemValue("dataVersion", DATA_VERSION);
      docSettings.save();
    } catch (Exception e) {
      DebugToolbar.get().error(e);
    }
  }
Example #9
0
  // removes the specified applications for the user from Unplugged
  @SuppressWarnings("unchecked")
  public static void deleteApplication(String userName, Vector<String> appPaths) {

    Session sessionAsSigner = null;
    Database dbUnplugged = null;
    Document docUser = null;
    View vwUsers = null;
    Name nmUser = null;
    Document docApp = null;

    try {

      Configuration config = Configuration.get();

      // open unplugged db
      sessionAsSigner = Utils.getCurrentSessionAsSigner();
      dbUnplugged =
          sessionAsSigner.getDatabase(config.getServerName(), config.getUnpluggedDbPath());

      nmUser = sessionAsSigner.createName(userName);

      // get all application documents for this user
      DocumentCollection dcApp =
          dbUnplugged.search("Form=\"UserDatabase\" & @IsMember(\"" + userName + "\"; UserName)");

      Document docTemp = null;

      int numRemoved = 0;

      // update app documents
      docApp = dcApp.getFirstDocument();
      while (null != docApp) {

        String path = docApp.getItemValueString("Path");

        if (appPaths.contains(path)) {
          // remove application
          Vector<String> appUsers = docApp.getItemValue("UserName");

          Logger.debug(nmUser.getCanonical() + " is a user for " + path + " - removing");

          appUsers.remove(nmUser.getCanonical());
          docApp.replaceItemValue("UserName", appUsers);
          docApp.computeWithForm(true, true);
          docApp.save();

          numRemoved++;
        }

        docTemp = dcApp.getNextDocument(docApp);
        docApp.recycle();
        docApp = docTemp;
      }

      if (numRemoved == dcApp.getCount()) { // user removed from all apps - remove user config

        Logger.info(
            "Unplugged user "
                + nmUser.getCanonical()
                + " removed from all applications - remove user config");

        // check for user account
        vwUsers = dbUnplugged.getView(USERS_VIEW);
        docUser = vwUsers.getDocumentByKey(nmUser.getAbbreviated(), true);

        if (docUser != null) {
          docUser.remove(true);
          Logger.info("removed Unplugged user " + nmUser.getCanonical());
        }
      }

    } catch (Exception e) {
      Logger.error(e);
    } finally {

      Utils.recycle(docUser, nmUser, dbUnplugged, sessionAsSigner);
    }
  }
Example #10
0
  /*
   * Create an Unplugged application definition in the Unplugged database
   * and add the specified user to it. The user is created if Unplugged
   * if he doesn't exist yet.
   */
  @SuppressWarnings("unchecked")
  public static boolean createApplication(String userName, String appPath, boolean isActive) {

    Session sessionAsSigner = null;
    Database dbUnplugged = null;
    Document docApp = null;
    Document docUser = null;
    View vwUsers = null;
    Name nmUser = null;

    try {

      String correctedPath = appPath.replace("\\", "/");

      Logger.debug("create unplugged application " + correctedPath + " for " + userName);

      Configuration config = Configuration.get();

      // open unplugged db
      sessionAsSigner = Utils.getCurrentSessionAsSigner();
      dbUnplugged =
          sessionAsSigner.getDatabase(config.getServerName(), config.getUnpluggedDbPath());

      // create notes name object for user
      nmUser = sessionAsSigner.createName(userName);

      // check if user already exists in Unplugged
      vwUsers = dbUnplugged.getView(USERS_VIEW);
      docUser = vwUsers.getDocumentByKey(nmUser.getAbbreviated(), true);

      if (docUser == null) {

        // user doesn't exist yet: create
        Unplugged.createUser(dbUnplugged, nmUser.getCanonical(), isActive);

      } else if (docUser.getItemValueString("Active").equals("1") && !isActive) {

        // mark user as inactive
        docUser.replaceItemValue("Active", "0");
        docUser.save();

      } else if (!docUser.getItemValueString("Active").equals("1") && isActive) {

        // mark user as active
        docUser.replaceItemValue("Active", "1");
        docUser.save();
      }

      // check if an app document for this app already exists and create it if not
      DocumentCollection dcApp =
          dbUnplugged.search("Form=\"UserDatabase\" & Path=\"" + correctedPath + "\"");

      if (dcApp.getCount() == 0) {

        // create new app document
        Logger.debug("application not found: create new");

        docApp = dbUnplugged.createDocument();
        docApp.replaceItemValue("form", "UserDatabase");
        docApp.replaceItemValue("Path", correctedPath);

      } else {

        // update existing app document
        docApp = dcApp.getFirstDocument();
      }

      Vector<String> appUsers = docApp.getItemValue("UserName");

      if (!appUsers.contains(nmUser.getCanonical())) {

        Logger.debug(nmUser.getCanonical() + " not in list of application users: adding");

        appUsers.add(nmUser.getCanonical());
        docApp.replaceItemValue("UserName", appUsers);
        docApp.replaceItemValue("Active", "1");
        docApp.computeWithForm(true, true);
        docApp.save();
      }

      Logger.debug("done");

    } catch (NotesException e) {

      Logger.error(e);
    } finally {

      Utils.recycle(docUser, docApp, nmUser, dbUnplugged);
    }

    return true;
  }