-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogonColumnProvider.cs
259 lines (203 loc) · 8.15 KB
/
LogonColumnProvider.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/*
Copyright (C) 2016 Marko Graf
*/
using System;
using System.Diagnostics;
using System.Windows.Forms;
using KeePass.Plugins;
using KeePass.UI;
using KeePass.Util.Spr;
using KeePassLib;
using KeePassLib.Security;
namespace KeeSAPLogon
{
public sealed class LogonColumnProvider : ColumnProvider, IDisposable
{
private static string[] m_vColNames = new string[] { Translatable.ColumnName };
private readonly IPluginHost m_host = null;
private readonly SAPLogonOpt m_config = null;
//---------------------------------------------------------------------------------------------------
// Class Constructors
//---------------------------------------------------------------------------------------------------
public LogonColumnProvider(IPluginHost host, SAPLogonOpt config)
{
if (host == null)
{
string msg = "No plugin host defined.";
Debug.Assert((host == null), msg);
throw new ApplicationException(msg);
}
if (config == null)
{
string msg = "No option handler defined.";
Debug.Assert((config == null), msg);
throw new ApplicationException(msg);
}
m_host = host;
m_config = config;
}
//---------------------------------------------------------------------------------------------------
// Interface Implementation: KeePass.UI.ColumnProvider
//---------------------------------------------------------------------------------------------------
#region KeePass.UI.ColumnProvider implementation
public override string[] ColumnNames
{
get { return m_vColNames; }
}
public override HorizontalAlignment TextAlign
{
get { return HorizontalAlignment.Left; }
}
public override string GetCellData(string strColumnName, PwEntry pe)
{
if (strColumnName == null)
{
Debug.Assert(false);
return String.Empty;
}
if (strColumnName != m_vColNames[0]) return String.Empty;
if (pe == null)
{
Debug.Assert(false);
return String.Empty;
}
if (!SAPLogonHandler.ValidateSAPGUIPath(m_config.SAPGUIPath))
{
return Translatable.ColumnConfigFailure;
}
//detect SAP ID and SAP client
string strCellData = "";
LogonColumn lc = GetSAPLogonData(strColumnName, pe);
if (lc.IsValid())
{
strCellData = FormattedCellData(lc);
}
else
{
if (lc.HasSAPID() || lc.HasSAPClient() || lc.HasSAPLanguage() || lc.HasSAPTransaction())
{
strCellData = Translatable.ColumnInvalidData;
}
else
{
strCellData = Translatable.ColumnNoneSAPData;
}
}
return strCellData;
}
public override void PerformCellAction(string strColumnName, PwEntry pe)
{
LogonColumn lc = GetSAPLogonData(strColumnName, pe);
if (lc.IsValid())
{
lc.ExtendWithDefaults(m_config.DefaultLng, m_config.DefaultTx);
ProtectedString pUser = DerefValue(PwDefs.UserNameField, pe);
ProtectedString pPw = DerefValue(PwDefs.PasswordField, pe);
SAPLogonHandler.SAPGUIPath = m_config.SAPGUIPath;
SAPLogonHandler.DoLogon(lc, pUser, pPw);
}
}
public override bool SupportsCellAction(string strColumnName)
{
if (strColumnName == null)
{
Debug.Assert(false);
return false;
}
if (strColumnName != m_vColNames[0]) return false;
return SAPLogonHandler.ValidateSAPGUIPath(m_config.SAPGUIPath);
}
#endregion
//---------------------------------------------------------------------------------------------------
// Interface Implementation: IDisposable
//---------------------------------------------------------------------------------------------------
#region IDisposable implementation
public void Dispose()
{
m_vColNames = null;
}
#endregion
//---------------------------------------------------------------------------------------------------
// Private Methods
//---------------------------------------------------------------------------------------------------
private string FormattedCellData(LogonColumn entry)
{
string result = "";
if (entry.HasSAPID() && m_config.DisSystemID)
{
result = result + entry.SAPID;
if (entry.HasSAPClient() && m_config.DisClient) result = result + ":";
}
if (entry.HasSAPClient() && m_config.DisClient)
{
result = result + entry.SAPClient;
}
if (entry.HasSAPLanguage() && m_config.DisLanguage)
{
result = result + " [" + entry.SAPLanguage + "]";
}
if (entry.HasSAPTransaction() && m_config.DisTx)
{
if ((entry.HasSAPID() && m_config.DisSystemID) ||
(entry.HasSAPClient() && m_config.DisClient) ||
(entry.HasSAPLanguage() && m_config.DisLanguage)) result = result + " - ";
result = result + entry.SAPTransaction;
}
return result;
}
private LogonColumn GetSAPLogonData(string strColumnName, PwEntry pe)
{
if (strColumnName == null)
{
Debug.Assert(false);
return null;
}
if (pe == null)
{
Debug.Assert(false);
return null;
}
if (strColumnName == m_vColNames[0])
{
//detect SAP ID and SAP client
string strSAPID = pe.Strings.ReadSafe(KeeSAPLogon.Properties.Resources.FieldKeySAPID);
string strSAPClient = pe.Strings.ReadSafe(KeeSAPLogon.Properties.Resources.FieldKeySAPClient);
string strSAPLanguage = pe.Strings.ReadSafe(KeeSAPLogon.Properties.Resources.FieldKeyLanguage);
string strSAPTransaction = pe.Strings.ReadSafe(KeeSAPLogon.Properties.Resources.FieldKeyTransaction);
LogonColumn lc = new LogonColumn(strSAPID, strSAPClient, strSAPLanguage, strSAPTransaction);
return lc;
}
return null;
}
private ProtectedString DerefValue(string fieldName, PwEntry pe)
{
ProtectedString ps = new ProtectedString();
string decrypted = pe.Strings.ReadSafe(fieldName);
if (decrypted.IndexOf('{') >= 0)
{
if (m_host == null)
{
Debug.Assert(false); return ps;
}
PwDatabase pd = null;
try
{
pd = m_host.MainWindow.DocumentManager.SafeFindContainerOf(pe);
}
catch (Exception)
{
Debug.Assert(false);
}
SprContext ctx = new SprContext(pe, pd, (SprCompileFlags.Deref | SprCompileFlags.TextTransforms), false, false);
ps = new ProtectedString(true, (SprEngine.Compile(decrypted, ctx)));
decrypted = "";
return ps;
}
else
{
ps = pe.Strings.GetSafe(fieldName);
}
return ps;
}
}
}