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; }
protected void saveAsset(ImportSource source, VFSFile root, AssetNode node) throws Exception { JSSnippet snippet = (JSSnippet) node.load(root); Document doc = getDatabase().createDocument(); try { setItemValue(doc, "Form", "CodeSnippet"); setItemValue( doc, "Author", doc.getParentDatabase() .getParent() .getUserName()); // Should we make this private (reader field)? setItemValue(doc, "Id", node.getUnid()); setItemValue(doc, "Category", node.getCategory()); setItemValue(doc, "Name", node.getName()); setItemValue(doc, "Description", snippet.getProperty("description")); setItemValue(doc, "Tags", snippet.getProperty("tags")); setItemValue(doc, "ImportSource", source.getName()); setItemValueRichText(doc, "Html", snippet.getHtml()); setItemValueRichText(doc, "Css", snippet.getCss()); setItemValueRichText(doc, "JavaScript", snippet.getJs()); setItemValueRichText(doc, "Properties", snippet.getPropertiesAsString()); setItemValueRichText(doc, "Documentation", snippet.getDocHtml()); doc.save(); } finally { doc.recycle(); } }
public static void createAppDefinition(String appPath, boolean hideFromWS, boolean autoLaunch) { Session sessionAsSigner = null; Database dbUnplugged = null; Document docApp = null; try { String correctedPath = appPath.replace("\\", "/"); Logger.debug("create unplugged application " + correctedPath); Configuration config = Configuration.get(); // open unplugged db sessionAsSigner = Utils.getCurrentSessionAsSigner(); dbUnplugged = sessionAsSigner.getDatabase(config.getServerName(), config.getUnpluggedDbPath()); // 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 { throw (new Exception("application for " + correctedPath + " already exists in Unplugged")); } docApp.replaceItemValue("Active", "1"); docApp.replaceItemValue("ShowOnWS", (hideFromWS ? "no" : "")); docApp.replaceItemValue("AutoLaunchApp", (autoLaunch ? "yes" : "")); docApp.replaceItemValue("ReplAttachmentExts", ""); // send all attachments docApp.computeWithForm(true, true); docApp.save(); Logger.debug("done"); } catch (Exception e) { Logger.error(e); } finally { Utils.recycle(docApp, dbUnplugged); } }
/** * RWFException constructor * * @param Database d the current database */ public RWFException(Database d) { super(); try { Document e = d.createDocument(); e.replaceItemValue("Form", EXCEPTION_FORM); e.replaceItemValue(EXCEPTION_TYPE_FIELD, "Workflow Exception"); e.save(); } catch (NotesException e) { e.printStackTrace(); System.out.println(e.text); } }
public void setCallTreeRoleBased() { this.callTreeType = CALLTREE_TYPE_ROLE; try { Document docSettings = ExtLibUtil.getCurrentDatabase().getDocumentByUNID(settingsUnid); docSettings.replaceItemValue("callTreeType", callTreeType); docSettings.save(); docSettings.recycle(); } catch (NotesException e) { Logger.error(e); } }
public FileHelper addFile(FileHelper fh, UploadedFile file, String strNewId) { try { Database ndbCurrent = ExtLibUtil.getCurrentSession().getDatabase(fh.getServer(), fh.getPath()); if (ndbCurrent == null) return null; Document docCurrent = ndbCurrent.getDocumentByUNID(fh.getDocID()); if (docCurrent == null) { ndbCurrent.recycle(); return null; } IUploadedFile FTemp = file.getUploadedFile(); File SrFile = FTemp.getServerFile(); File FNew = new File( SrFile.getParentFile().getAbsolutePath() + File.separator + FTemp.getClientFileName()); SrFile.renameTo(FNew); RichTextItem rt = null; rt = (RichTextItem) docCurrent.getFirstItem(fh.getFieldName()); if (rt == null) { rt = docCurrent.createRichTextItem(fh.getFieldName()); } EmbeddedObject em = rt.embedObject(EmbeddedObject.EMBED_ATTACHMENT, "", FNew.getAbsolutePath(), null); docCurrent.save(true, false, true); FileHelper fhNew = new FileHelper(); fhNew.setFieldName(fh.getFieldName()); fhNew.setServer(fh.getServer()); fhNew.setPath(fh.getPath()); fhNew.setFileSize(em.getFileSize()); fhNew.setName(em.getName()); fhNew.setDisplayName(FTemp.getClientFileName()); fhNew.setId(strNewId); fhNew.setDocID(fh.getDocID()); fhNew.setFileType(ComponentSessionFacade.get().getMimeTypes().getContentType(FNew)); fhNew.setNewFile(false); rt.recycle(); docCurrent.recycle(); ndbCurrent.recycle(); return fhNew; } catch (Exception e) { e.printStackTrace(); } return null; }
/** * RWFException constructor * * @param - msg, String the error message to be used. * @param Database d the current database * @param Document doc the context document. */ public RWFException(String msg, Database d, Document doc) { super(msg); try { Document e = d.createDocument(); e.replaceItemValue("Form", EXCEPTION_FORM); e.replaceItemValue(EXCEPTION_TYPE_FIELD, "Workflow Exception"); e.replaceItemValue(EXCEPTION_MSG_FIELD, msg); RichTextItem rt = e.createRichTextItem(EXCEPTION_DOCLINK_FIELD); rt.appendDocLink(doc); e.save(); } catch (NotesException e) { e.printStackTrace(); System.out.println(e.text); } }
// create an Unplugged user private static void createUser(Database dbUnplugged, String userName, boolean isActive) { Document docUser = null; try { Logger.info("create user document for " + userName); docUser = dbUnplugged.createDocument(); docUser.replaceItemValue("Form", "User"); docUser.replaceItemValue("UserName", userName); docUser.replaceItemValue("Active", (isActive ? "1" : "0")); docUser.computeWithForm(true, true); docUser.save(); } catch (Exception e) { Logger.error(e); } finally { Utils.recycle(docUser); } }
@SuppressWarnings("unchecked") public void removeFile(FileHelper fh) { try { Database ndbCurrent = ExtLibUtil.getCurrentSession().getDatabase(fh.getServer(), fh.getPath()); if (ndbCurrent == null) return; Document docCurrent = ndbCurrent.getDocumentByUNID(fh.getDocID()); if (docCurrent == null) { ndbCurrent.recycle(); return; } // RESULTS IN NOTE ITEM NOT FOUND ERROR AFTERWARDS // EmbeddedObject entity = docCurrent.getAttachment(fh.getName()); // if (entity == null) // return; // entity.remove(); RichTextItem rti = (RichTextItem) docCurrent.getFirstItem(fh.getFieldName()); Vector<EmbeddedObject> entitys = rti.getEmbeddedObjects(); for (EmbeddedObject entity : entitys) { if (entity.getType() == EmbeddedObject.EMBED_ATTACHMENT) { if (entity.getName().equals(fh.getName())) { entity.remove(); break; } } } docCurrent.save(true, false, true); rti.recycle(); docCurrent.recycle(); ndbCurrent.recycle(); } catch (Exception e) { e.printStackTrace(); } }
@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); } }
// 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); } }
/* * 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; }