- Added support for ADD-KEY and DELETE-KEY for GnomeKeyring store.
- Bug 142183:Added code to prevent users from deleting "GKPassword" Key in Keyring store. ...................................................................
This commit is contained in:
parent
7b685e2987
commit
8348ecdb4a
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 10 13:20:06 IST 2006 - smanojna@novell.com
|
||||
|
||||
- Added support for ADD-KEY and DELETE-KEY for GnomeKeyring store.
|
||||
- Bug 142183:Added code to prevent users from deleting "GKPassword"
|
||||
Key in Keyring store.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 9 17:38:33 MST 2006 - jnorman@novell.com
|
||||
|
||||
|
@ -583,9 +583,7 @@ namespace Novell.CASA.GUI
|
||||
case Common.STORE_GNOMEKEYRING:
|
||||
if( 0 != objGnomeKeyring.tvSecretIDGnomeKeyring.Selection.CountSelectedRows() )
|
||||
{
|
||||
//mmiNew.Sensitive = mmiNewKey.Sensitive = true;
|
||||
mmiNew.Sensitive = true;
|
||||
mmiNewKey.Sensitive = false;
|
||||
mmiNew.Sensitive = mmiNewKey.Sensitive = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -199,7 +199,7 @@ public class GnomeKeyring : Store
|
||||
menuRightClick.Popup(null, null, null, IntPtr.Zero, 3, Gtk.Global.CurrentEventTime);
|
||||
|
||||
if( 0 != tvSecretIDGnomeKeyring.Selection.CountSelectedRows() )
|
||||
cmiNewKey.Sensitive = cmiLink.Sensitive = cmiCopy.Sensitive = false;
|
||||
cmiLink.Sensitive = cmiCopy.Sensitive = false;
|
||||
else
|
||||
cmiNewKey.Sensitive = cmiView.Sensitive = cmiLink.Sensitive = cmiCopy.Sensitive = cmiDelete.Sensitive = false;
|
||||
}
|
||||
@ -263,8 +263,8 @@ public class GnomeKeyring : Store
|
||||
|
||||
}
|
||||
tvKeyValue.Model = tsKeyValue;
|
||||
//entryKey.HasFocus = true;
|
||||
entryKey.Sensitive = entryValue.Sensitive = buttonNewAdd.Sensitive = buttonNewRemove.Sensitive = false;
|
||||
entryKey.HasFocus = true;
|
||||
//entryKey.Sensitive = entryValue.Sensitive = buttonNewAdd.Sensitive = buttonNewRemove.Sensitive = false;
|
||||
}
|
||||
}
|
||||
catch(Exception exp)
|
||||
@ -398,7 +398,7 @@ public class GnomeKeyring : Store
|
||||
TreeIter iterKey;
|
||||
|
||||
if(tvKeyValue.Selection.GetSelected (out modelKey, out iterKey))
|
||||
if( false == (bool)tsKeyValue.GetValue(iterKey,3) )
|
||||
if( "GKPassword" != (string)tsKeyValue.GetValue(iterKey,0) && false == (bool)tsKeyValue.GetValue(iterKey,3) )
|
||||
arrDeletedKeys.Add(tsKeyValue.GetValue(iterKey,0));
|
||||
|
||||
if( 0 != tvKeyValue.Selection.CountSelectedRows() )
|
||||
@ -407,8 +407,11 @@ public class GnomeKeyring : Store
|
||||
TreeIter iter;
|
||||
|
||||
tvKeyValue.Selection.GetSelected (out model, out iter);
|
||||
tsKeyValue.Remove(ref iter);
|
||||
tvKeyValue.ColumnsAutosize();
|
||||
if( "GKPassword" != (string)tsKeyValue.GetValue(iter,0) )
|
||||
{
|
||||
tsKeyValue.Remove(ref iter);
|
||||
tvKeyValue.ColumnsAutosize();
|
||||
}
|
||||
}
|
||||
|
||||
Logger.DbgLog("GUI:GnomeKeyring.on_buttonNewRemove_clicked() - END");
|
||||
|
@ -653,7 +653,8 @@ namespace Novell.CASA.GUI {
|
||||
XmlNode keyParentNode = key.ParentNode;
|
||||
key.ParentNode.RemoveChild(key);
|
||||
//Console.WriteLine("EXECUTING OPERATION_DELETE_KEY:Deleting"+ccfSecretPath);//FIXME:Remove this line
|
||||
ad.SetSecret(keyParentNode,storeIDentifier);
|
||||
//ad.SetSecret(keyParentNode,storeIDentifier);
|
||||
ad.SetSecret(keyParentNode,Common.OPERATION_MODIFY_KEY,storeIDentifier);
|
||||
}
|
||||
}
|
||||
else if( Common.OPERATION_ADD_SECRET == operation )
|
||||
@ -729,7 +730,7 @@ namespace Novell.CASA.GUI {
|
||||
}
|
||||
else
|
||||
{//Wallet:CASAwallet exists. Hence check for folder
|
||||
ccfKeyChainPath = "//CCF/KWallet/Wallet[@ID='" + keyChainID + "']/Folder[@Name='" + folderName + "']"; //Password
|
||||
ccfKeyChainPath = "//CCF/KWallet/Wallet[@ID='" + keyChainID + "']/Folder[@Name='" + folderName + "']"; //Passwords
|
||||
XmlNodeList keychainFolderNodeList = root.SelectNodes(ccfKeyChainPath);
|
||||
if( (null == keychainFolderNodeList) || (0 == keychainFolderNodeList.Count) )
|
||||
{//folderName:Password does not exist. Hence create folder & type
|
||||
@ -777,11 +778,12 @@ namespace Novell.CASA.GUI {
|
||||
//Console.WriteLine("ADD_SECRET:ccfKeyChainPath="+ccfKeyChainPath);//FIXME:Remove this line
|
||||
XmlNodeList secretNodeList = root.SelectNodes(ccfKeyChainPath);
|
||||
XmlNode SecretNode = secretNodeList.Item(0);
|
||||
XmlNode lastChild = SecretNode.LastChild; //The newly added secret
|
||||
SecretNode.AppendChild(newSecretElement); //Add the new Secret
|
||||
XmlNode lastChild = SecretNode.LastChild; //Get The newly added secret
|
||||
if(lastChild!=null)
|
||||
{
|
||||
//Console.WriteLine("EXECUTING OPERATION_ADD_SECRET:Adding"+ccfSecretPath);//FIXME:Remove this line
|
||||
ad.SetSecret(lastChild,operation,storeIDentifier);
|
||||
Console.WriteLine("EXECUTING OPERATION_ADD_SECRET:Adding"+ccfSecretPath);//FIXME:Remove this line
|
||||
ad.SetSecret(lastChild,operation,storeIDentifier); //and set it
|
||||
}
|
||||
}//STORE_KDEWALLET
|
||||
|
||||
@ -797,7 +799,8 @@ namespace Novell.CASA.GUI {
|
||||
XmlNode lastChild = keyNode.LastChild;
|
||||
keyNode.InsertBefore(newKeyElement,lastChild);
|
||||
//ShowDocOnConsole("JUST BEFORE CALL TO SETSECRET-ADDKEY");//FIXME:Remove this
|
||||
int errcode=ad.SetSecret(keyNode,Common.OPERATION_ADD_SECRET,storeIDentifier);
|
||||
//int errcode=ad.SetSecret(keyNode,Common.OPERATION_ADD_SECRET,storeIDentifier);
|
||||
int errcode=ad.SetSecret(keyNode,Common.OPERATION_MODIFY_KEY,storeIDentifier);
|
||||
//ShowDocOnConsole("SetSecret returned errcode="+errcode);//FIXME:Remove this
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user