-
Notifications
You must be signed in to change notification settings - Fork 521
/
Copy pathMilestone1_Charts_GanttController.cls
executable file
·275 lines (225 loc) · 11 KB
/
Milestone1_Charts_GanttController.cls
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
/*
Copyright (c) 2011, salesforce.com, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the salesforce.com, Inc. nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
*/
public with sharing class Milestone1_Charts_GanttController {
public String mytarget {get;
set{
this.mytarget = value;
init();
}
}
public String objectType {get;set;}
public String startDateFieldName {get;set;}
public String endDateFieldName {get;set;}
public String idFieldName {get;set;}
public String fullViewURL {get;set;}
public String projectGanttJson{get;set;}
private String nameFieldName;
private String completedFieldName;
private String filterFieldName;
private List<Sobject> sobjectList;
private static final String REGEXP_QUOTES = '(?<!\\\\)"';
public static final String COLOR_COMPLETE = '#333333';
public static final String COLOR_LATE = '#ee3322';
public static final String COLOR_FUTURE = '#666666';
public static final String COLOR_CURRENT = '#2299bb';
public Milestone1_Charts_GanttController()
{
init();
}
private void init()
{
if (myTarget != null)
{
initFieldNames();
retrieveData();
projectGanttJson = toJSon();
}
}
public String getProjectGanttJson() {
init();
return projectGanttJson;
}
/*
* Initialize the variables depending on the object type possible values:
* Milestone1_Milestone__c and Milestone1_Task__c
*/
private void initFieldNames(){
if(mytarget != null){
if(mytarget.startsWith(Schema.SObjectType.Milestone1_Project__c.getKeyPrefix())){
/*startDateFieldName = 'Kickoff__c';
endDateFieldName = 'Deadline__c';
nameFieldName = 'NameClean__c';
filterFieldName = 'Project__c';*/
startDateFieldName = Milestone1_Milestone__c.Kickoff__c.getDescribe().getName();
endDateFieldName = Milestone1_Milestone__c.Deadline__c.getDescribe().getName();
nameFieldName = Milestone1_Milestone__c.NameClean__c.getDescribe().getName();
filterFieldName = Milestone1_Milestone__c.Project__c.getDescribe().getName();
//objectType = 'Milestone1_Milestone__c';
objectType = Schema.SObjectType.Milestone1_Milestone__c.getName();
}else if(mytarget.startsWith(Schema.SObjectType.Milestone1_Milestone__c.getKeyPrefix())){
startDateFieldName = Milestone1_Task__c.Start_Date__c.getDescribe().getName();
endDateFieldName = Milestone1_Task__c.Due_Date__c.getDescribe().getName();
nameFieldName = Milestone1_Task__c.Name.getDescribe().getName();
filterFieldName = Milestone1_Task__c.Project_Milestone__c.getDescribe().getName();
objectType = Schema.SObjectType.Milestone1_Task__c.getName();
} else {
throw new Milestone1_Exception('[initFieldNames] Unable to generate JSON for ' + mytarget);
}
idFieldName = 'Id';
completedFieldName = 'Complete__c';
}
}
/*
* Retrieve the data doing a dynamic query by object type.
*/
private void retrieveData(){
String query = 'SELECT ' + String.valueOf(idFieldName) + ',' + String.valueOf(startDateFieldName) + ','
+ String.valueOf(endDateFieldName) + ',' + String.valueOf(nameFieldName) + ',' + String.valueOf(completedFieldName) +
' FROM ' + String.valueOf(objectType) + ' WHERE ' + String.valueOf(filterFieldName) + '=\'' + String.valueOf(mytarget)
+ '\' ORDER BY Name';
sobjectList = Database.query(query);
}
/**
* Generate the output in json format to be rendered in the jquery gantt.
*/
private String toJSon(){
String ret = 'var ganttData' +mytarget + ' = [{id: 1, name: "", series: [';
Boolean addComma=false,completed;
Date startDate,endDate;
String name,id;
for (Sobject current : sobjectList){
if(current.get(startDateFieldName) == null){
startDate = Date.today();
}else{
startDate = Date.valueOf(current.get(startDateFieldName));
}
if(current.get(endDateFieldName) == null){
endDate = startDate;
}else{
endDate = Date.valueOf(current.get(endDateFieldName));
}
completed = Boolean.valueOf(current.get(completedFieldName));
name = escapeDoubleQuotes(String.valueOf(current.get(nameFieldName)));
name = name.replaceAll('[^a-zA-Z0-9]', ' ');
id = String.valueOf(current.get(idFieldName));
id = id.replaceAll('[^a-zA-Z0-9]', ' ');
if (addComma) { ret += ','; }
String color=COLOR_CURRENT;
if (completed) {
color=COLOR_COMPLETE;
} else if (endDate < Date.today()) {
color=COLOR_LATE;
} else if (startDate > Date.today()) {
color=COLOR_FUTURE;
}
ret += '{'+
'id:"'+id+'",'+
'name: "'+name+'",'+
'start: new Date(' +startDate.year() +',' + (startDate.month()-1) +',' + startDate.day() +'),'+
'end: new Date(' +endDate.year() +',' + (endDate.month()-1) + ',' + endDate.day() +'), ' +
'color: "' + color + '"'+
'}';
addComma=true;
}
ret+=']}];';
return ret;
}
private String escapeDoubleQuotes(String word){
return word.replaceAll(REGEXP_QUOTES,'\\\\"');
}
static testMethod void TestProjectJson() {
Milestone1_Project__c p1 = Milestone1_Test_Utility.sampleProjectActive('Json');
if (Schema.sObjectType.Milestone1_Project__c.isCreateable()) {
insert p1;
} else {
ApexPages.addMessage(new ApexPages.Message(ApexPages.Severity.ERROR,'Error: User is unauthorized to act on this object/field.'));
}
Milestone1_Milestone__c m1 = Milestone1_Test_Utility.sampleMilestone(p1);
if (Schema.sObjectType.Milestone1_Milestone__c.isCreateable()) {
insert m1;
} else {
ApexPages.addMessage(new ApexPages.Message(ApexPages.Severity.ERROR,'Error: User is unauthorized to act on this object/field.'));
}
Milestone1_Charts_GanttController cls = new Milestone1_Charts_GanttController();
cls.mytarget = p1.id;
String ret = cls.getProjectGanttJson();
System.assert(ret.indexOf('ganttData') > -1);
System.assert(ret.indexOf(m1.Name) > -1);
//RSC 2011-05-09 bad test -- fails when there is an interesting dateformat.
//System.assert(ret.indexOf(Date.today().format().substring(5)) > -1); // Test today's
String testDateString = 'new Date(' +m1.Kickoff__c.year() +',' + (m1.Kickoff__c.month()-1) +',' + m1.Kickoff__c.day() +')';
System.assert(ret.indexOf(testDateString) > -1, 'expected: ' + testDateString + ': in: ' + ret);
m1.Complete__c = true;
if (Schema.sObjectType.Milestone1_Milestone__c.isUpdateable()) {
update m1;
} else {
ApexPages.addMessage(new ApexPages.Message(ApexPages.Severity.ERROR,'Error: User is unauthorized to act on this object/field.'));
}
Milestone1_Milestone__c m2 = Milestone1_Test_Utility.sampleMilestone(p1);
m2.Deadline__c = Date.today()-1;
if (Schema.sObjectType.Milestone1_Milestone__c.isCreateable()) {
insert m2;
} else {
ApexPages.addMessage(new ApexPages.Message(ApexPages.Severity.ERROR,'Error: User is unauthorized to act on this object/field.'));
}
Milestone1_Milestone__c m3 = Milestone1_Test_Utility.sampleMilestone(p1);
m3.Kickoff__c = Date.today()+1;
if (Schema.sObjectType.Milestone1_Milestone__c.isCreateable()) {
insert m3;
} else {
ApexPages.addMessage(new ApexPages.Message(ApexPages.Severity.ERROR,'Error: User is unauthorized to act on this object/field.'));
}
ret = cls.getProjectGanttJson();
System.assert(ret.indexOf(COLOR_COMPLETE) > -1);
System.assert(ret.indexOf(COLOR_LATE) > -1);
System.assert(ret.indexOf(COLOR_FUTURE) > -1);
}
static testMethod void TestMilestoneJson() {
Milestone1_Project__c p1 = Milestone1_Test_Utility.sampleProjectActive('Json');
if (Schema.sObjectType.Milestone1_Project__c.isCreateable()) {
insert p1;
} else {
ApexPages.addMessage(new ApexPages.Message(ApexPages.Severity.ERROR,'Error: User is unauthorized to act on this object/field.'));
}
Milestone1_Milestone__c m2 = Milestone1_Test_Utility.sampleMilestone(p1);
m2.Deadline__c = Date.today()-1;
if (Schema.sObjectType.Milestone1_Milestone__c.isCreateable()) {
insert m2;
} else {
ApexPages.addMessage(new ApexPages.Message(ApexPages.Severity.ERROR,'Error: User is unauthorized to act on this object/field.'));
}
Milestone1_Task__c t1 = Milestone1_Test_Utility.sampleTask(m2.Id);
if (Schema.sObjectType.Milestone1_Task__c.isCreateable()) {
insert t1;
} else {
ApexPages.addMessage(new ApexPages.Message(ApexPages.Severity.ERROR,'Error: User is unauthorized to act on this object/field.'));
}
Milestone1_Charts_GanttController cls = new Milestone1_Charts_GanttController();
cls.mytarget = m2.Id;
String ret = cls.getProjectGanttJson();
System.debug(LoggingLevel.Info, '12345:' + ret);
System.assert(ret.indexOf(COLOR_FUTURE) > -1);
}
}