FogBugz » TimeIntervalCommentsPlugin http://fogbugz.stackexchange.com/questions/3316
Clone URL:  
TimeIntervalExample.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
namespace TimeIntervalExample { using System; using FogCreek.FogBugz; using FogCreek.FogBugz.Database.Entity; using FogCreek.FogBugz.Plugins; using FogCreek.FogBugz.Plugins.Api; using FogCreek.FogBugz.Plugins.Entity; using FogCreek.FogBugz.Plugins.Interfaces; public class TimeIntervalExample : Plugin, IPluginTimeIntervalJoin, IPluginJS, IPluginDatabase, IPluginRawPageDisplay { private const string sPluginId = "Adam+TimeIntervalExample@fogcreek.com"; private const string CommentsTable = "TimeIntervalComment"; private const string IntervalColumn = "ixInterval"; private const string CommentColumn = "sComment"; public const int CommentColumnMaxLength = 255; private const int PluginSchemaVer = 1; public TimeIntervalExample(CPluginApi api) : base(api) { } #region IPluginTimeIntervalJoin public string[] TimeIntervalJoinTables() { return new[] { CommentsTable }; } #endregion #region IPluginJS Members /// <summary> /// Javascript is used to augment the time-tracking UI to display and edit comments /// </summary> /// <returns>new instance configured with list of JScript file references to emit</returns> public CJSInfo JSInfo() { const string trackerObjectFormat = @" var TrackerCommentsPlugIn = {{ plugInRawPageUrl: '{0}', pluginPrefix: '{1}', PostTimeFunctionToken: '{2}', UpdateCommentFunctionToken: '{3}', TimeIntervalForeignKeyColumnName: '{4}' }};"; var jsInfo = new CJSInfo { rgsStaticFiles = new[] {"js/TimeIntervalExample.js"}, sInlineJS = string.Format(trackerObjectFormat, api.Url.PluginRawPageUrl(), api.PluginPrefix, api.Security.GetActionToken("saveTimeIntervalComment"), api.Security.GetActionToken("updateCommentText"), IntervalColumn) }; return jsInfo; } #endregion #region IPluginDatabase Members /// <summary> /// Schema Definition /// </summary> /// <returns> /// Array with one element representing the comments table /// </returns> public CTable[] DatabaseSchema() { var timeIntervalComments = api.Database.NewTable(api.Database.PluginTableName(CommentsTable)); timeIntervalComments.sDesc = "Assigns Comments to TimeIntervals"; timeIntervalComments.AddAutoIncrementPrimaryKey("ixTimeIntervalComment"); timeIntervalComments.AddIntColumn(IntervalColumn, true, 0); timeIntervalComments.AddVarcharColumn(CommentColumn, CommentColumnMaxLength, false); return new[] { timeIntervalComments }; } /// <summary> /// Returns Database Plugin Schema Version /// </summary> /// <returns> /// Integer with database schema version /// </returns> public int DatabaseSchemaVersion() { return PluginSchemaVer; } public void DatabaseUpgradeAfter(int ixVersionFrom, int ixVersionTo, CDatabaseUpgradeApi apiUpgrade) { if (ixVersionTo == 1) { // No action required. Don't create any data in the tables } } public void DatabaseUpgradeBefore(int ixVersionFrom, int ixVersionTo, CDatabaseUpgradeApi apiUpgrade) { if (ixVersionTo == 1) { // No action required. Don't create any data in the tables } } #endregion #region IPluginRawPageDisplay Members /// <summary> /// Portion of FogBugz API Interface which generates a completely empty page. In our case, this empty page will never be seen /// by the user. Its only purpose is to provide a URL which AJAX calls can target and the page can then processes these calls. /// </summary> public string RawPageDisplay() { if (api.Request[api.AddPluginPrefix("action")] != null && Convert.ToString(api.Request[api.AddPluginPrefix("action")]) == "saveTimeIntervalComment") { // make sure the request includes a valid action token if ((api.Request[api.AddPluginPrefix("actionToken")] == null) || !api.Security.ValidateActionToken(api.Request[api.AddPluginPrefix("actionToken")], "saveTimeIntervalComment")) { return "!!Failure!!: action token invalid"; } else { int ixInterval = -1; string sComment = ""; if (api.Request[api.AddPluginPrefix("ixInterval")] != null && Int32.TryParse(Convert.ToString(api.Request[api.AddPluginPrefix("ixInterval")]), out ixInterval)) { if (api.Request[api.AddPluginPrefix("sComment")] != null) { sComment = api.Request[api.AddPluginPrefix("sComment")]; } //If all error checks pass, post the user's inputted comment to the database. return SaveCommentToDb(ixInterval, sComment); } else { return "!!Failure!!: invalid ixInterval"; } } } else if (api.Request[api.AddPluginPrefix("action")] != null && Convert.ToString(api.Request[api.AddPluginPrefix("action")]) == "updateCommentText") { int ixInterval = -1; if (api.Request[api.AddPluginPrefix("ixInterval")] != null && Int32.TryParse(Convert.ToString(api.Request[api.AddPluginPrefix("ixInterval")]), out ixInterval)) { //If all error checks pass, retrieve the comment specific to the time interval index. return GetCommentFromDb(ixInterval); } else { return "!!Failure!!: ixInterval invalid"; } } else { return "!!Failure!!: command not recognized"; } } /// <summary> /// Portion of FogBugz API Interface which sets the permission level of /// the empty pages used by the RawPageDisplay method. /// </summary> public PermissionLevel RawPageVisibility() { return PermissionLevel.Normal; } #endregion /// <summary> /// Posts the timeinterval and comment pair into the database /// </summary> /// <returns> /// Returns a string to confirm the the database posting was successful /// </returns> private string SaveCommentToDb (int ixInterval, string sComment) { CTimeIntervalQuery query = api.TimeInterval.NewTimeIntervalQuery(); query.AddWhere("TimeInterval.ixInterval = @ixInterval"); query.SetParamInt("@ixInterval", ixInterval); CTimeInterval[] rgTimeIntervals = query.List(); if (rgTimeIntervals.Length > 0) { CTimeInterval interval = rgTimeIntervals[0]; interval.SetPluginField(sPluginId, "sComment", sComment); interval.Commit(); } return "success: '" + sComment + "' recorded for interval #" + ixInterval; } /// <summary> /// Retrieves the comment for the specified time interval index. /// </summary> /// <returns> /// Returns a string with the comment contained within. /// </returns> private string GetCommentFromDb (int ixInterval) { string sComment = String.Empty; CTimeIntervalQuery query = api.TimeInterval.NewTimeIntervalQuery(); query.AddWhere("TimeInterval.ixInterval = @ixInterval"); query.SetParamInt("@ixInterval", ixInterval); CTimeInterval[] rgTimeIntervals = query.List(); if (rgTimeIntervals.Length > 0) { object oComment = rgTimeIntervals[0].GetPluginField(sPluginId, "sComment"); if (oComment != null) { sComment = oComment.ToString(); } } return sComment; } } }