-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathSampleAddIn.cs
298 lines (232 loc) · 7.03 KB
/
SampleAddIn.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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using TRIM.SDK;
namespace SampleAddIn
{
public class SampleMenuLink : TrimMenuLink
{
public SampleMenuLink()
{
}
// Summary:
// Gets a string that should appear as a tool tip when hovering over a menu
// item
public override string Description
{
get { return "Select this menu item to run the sample link and see the log."; }
}
//
// Summary:
// Gets an ID number that identifies this menu item.
public override int MenuID
{
get { return 42; }
}
//
// Summary:
// Gets a string that should appear on the context menu.
public override string Name
{
get { return "Sample Menu String (Show Log)"; }
}
//
// Summary:
// Gets a boolean value indicating whether this menu item supports TRIM tagged
// processing
public override bool SupportsTagged
{
get { return false; }
}
};
class SampleMenuLinkTagged : TrimMenuLink
{
public SampleMenuLinkTagged()
{
}
// Summary:
// Gets a string that should appear as a tool tip when hovering over a menu
// item
public override string Description
{
get { return "Select this menu item to run the tagged sample link and see the log."; }
}
//
// Summary:
// Gets an ID number that identifies this menu item.
public override int MenuID
{
get { return 43; }
}
//
// Summary:
// Gets a string that should appear on the context menu.
public override string Name
{
get { return "Sample Tagged Menu String (Show Log Tagged)"; }
}
//
// Summary:
// Gets a boolean value indicating whether this menu item supports TRIM tagged
// processing
public override bool SupportsTagged
{
get { return true; }
}
};
public class SampleAddIn : ITrimAddIn
{
/*
* Member variables
*/
private const string LogFileName = "SampleAddInLog.txt";
private StringBuilder m_errorMsg;
private string m_logFile;
/*
* Private methods
*/
private void writeToLog(string message, params object[] args)
{
using (StreamWriter writer = new StreamWriter(new FileStream(m_logFile, FileMode.Append)))
{
writer.WriteLine(message, args);
}
}
/*
* Public Methods
*/
public override string ErrorMessage { get { return m_errorMsg.ToString(); } }
public override void Initialise(Database db)
{
m_errorMsg = new StringBuilder();
/* TODO: Here you can initialize any local members of your class. */
m_logFile = db.GetTRIMFolder(TrimPathType.AuditLog, true) + "\\" + LogFileName;
try
{
File.Delete(m_logFile);
}
catch
{
// do nothing, lets assume things are OK.
}
writeToLog("Record AddIn initialized on database: {0}.", db.Name);
}
public override TrimMenuLink[] GetMenuLinks()
{
m_errorMsg.Remove(0, m_errorMsg.Length);
TrimMenuLink[] links = new TrimMenuLink[] { new SampleMenuLink(), new SampleMenuLinkTagged() };
writeToLog("Number of links: {0}.", links.Length);
return links;
}
public override bool IsMenuItemEnabled(int cmdId, TrimMainObject forObject)
{
m_errorMsg.Remove(0, m_errorMsg.Length);
return true;
}
public override void ExecuteLink(int cmdId, TrimMainObject forObject, ref bool itemWasChanged)
{
m_errorMsg.Remove(0, m_errorMsg.Length);
writeToLog("Executed sample menu link for {0} (command id {1}).", forObject.NameString, cmdId);
}
public override void ExecuteLink(int cmdId, TrimMainObjectSearch forTaggedObjects)
{
m_errorMsg.Remove(0, m_errorMsg.Length);
writeToLog("Executed sample menu link for objects matching {0} (command id {1}):", forTaggedObjects.Title, cmdId);
foreach (TrimMainObject obj in forTaggedObjects)
{
writeToLog("\t{0} ({1}): {2}", obj.TrimType, obj.Uri, obj.NameString);
}
}
public override void PostDelete(TrimMainObject deletedObject)
{
m_errorMsg.Remove(0, m_errorMsg.Length);
TrimMenuLink[] links = new TrimMenuLink[] { new SampleMenuLink(), new SampleMenuLinkTagged() };
writeToLog("{0} was deleted (Code here is executed after an object was saved).", deletedObject.NameString);
}
public override void PostSave(TrimMainObject savedObject, bool itemWasJustCreated)
{
m_errorMsg.Remove(0, m_errorMsg.Length);
Record record = savedObject as Record;
if (record != null)
{
long level = getSecurityLevel(record);
}
if (itemWasJustCreated)
{
writeToLog("{0} was just created and saved", savedObject.NameString);
}
else
{
writeToLog("{0} was saved", savedObject.NameString);
}
}
public override bool PreDelete(TrimMainObject modifiedObject)
{
m_errorMsg.Remove(0, m_errorMsg.Length);
writeToLog("{0} will be deleted. (To prevent deleting certain objects, insert your code here and return false, else true.)", modifiedObject.NameString);
return true;
}
private long getSecurityLevel(Record record)
{
if (record.SecurityProfile.SecurityLevel != null)
{
return record.SecurityProfile.SecurityLevel.Uri;
}
return 0;
}
public override bool PreSave(TrimMainObject modifiedObject)
{
m_errorMsg.Remove(0, m_errorMsg.Length);
Record record = modifiedObject as Record;
if (record != null)
{
long level = getSecurityLevel(record);
}
writeToLog("{0} will be saved. (To prevent saving certain objects, insert your code here and return false, else true.)", modifiedObject.NameString);
return true;
}
public override bool SelectFieldValue(FieldDefinition field, TrimMainObject trimObject, string previousValue)
{
m_errorMsg.Remove(0, m_errorMsg.Length);
writeToLog("Display user interface for selecting a value for the field {0} on {1} (previous value: {2}).", field.NameString, trimObject.NameString, previousValue);
return false;
}
long startingSecurityLevel = 0;
public override void Setup(TrimMainObject newObject)
{
m_errorMsg.Remove(0, m_errorMsg.Length);
Record record = newObject as Record;
if (record != null)
{
startingSecurityLevel = getSecurityLevel(record);
}
writeToLog("New object of type {0} was just constructed (Code here is executed after an object's constructor was called, but before properties have been set).", newObject.TrimType);
}
public override bool SupportsField(FieldDefinition field)
{
m_errorMsg.Remove(0, m_errorMsg.Length);
bool doSupport = (field.Name == "Sample Field");
writeToLog("SupportsField: {0}: {1}", field.Name, doSupport);
if (field.Format == UserFieldFormats.Date)
{
return true;
}
return false;
}
public override bool VerifyFieldValue(FieldDefinition field, TrimMainObject trimObject, string newValue)
{
m_errorMsg.Remove(0, m_errorMsg.Length);
// simple test for non-blank
bool isValid = (newValue != "");
if (!isValid)
{
m_errorMsg.Append("SampleField cannot be blank");
}
writeToLog("VerifyFieldValue: {0}({1}):{2}. Value = {3}, {4}", trimObject.TrimType, trimObject.Uri, trimObject.NameString, newValue, isValid);
return isValid;
}
}
}