This repository has been archived by the owner on Jul 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGoogleMirrorApprovalProcess.cls
183 lines (162 loc) · 5.84 KB
/
GoogleMirrorApprovalProcess.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
/**
* Copyright (c) 2014, FinancialForce.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 FinancialForce.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.
**/
/**
* GoogleMirrorApprovalProcess
*
* Class to handle the submission of a requisition to Google Glass when the approval process is initiated.
*/
public with sharing class GoogleMirrorApprovalProcess
{
public static final String USER_ACTION_CODE_APPROVE = 'Approve';
public static final String USER_ACTION_CODE_REJECT = 'Reject';
public static final String STATUS_SUBMITTED = 'Submitted';
/**
* Constructor
*/
public GoogleMirrorApprovalProcess()
{
}
/**
* Consider bulkification of this method.
*/
public void afterUpdate(List<SObject> triggerNew, Map<Id,SObject> triggerOldMap)
{
for (SObject item : triggerNew)
{
Id itemId = item.Id;
SObject oldItem = triggerOldMap.get(itemId);
String newStatus = (String)item.get('ApprovalStatus__c');
String oldStatus = (String) oldItem.get('ApprovalStatus__c');
if (newStatus == STATUS_SUBMITTED
&& oldStatus != STATUS_SUBMITTED)
{
processSubmitted(itemId);
}
}
}
@future(callout=true)
static void processSubmitted(String actionId)
{
ProcessInstanceWorkItem workItem = getProcessWorkItem(actionId);
if (workItem == null)
{
throw new ffhttp_AppException('Null workItem for actionId: ' + actionId);
}
String actorId = workItem.ActorId;
ConnectorService cs = getConnectorService(actorId);
if (cs == null)
{
throw new ffhttp_AppException('Null Google Connector for actorId: ' + actorId);
}
String accessToken = cs.getAccessToken();
if (String.isEmpty(accessToken))
{
throw new ffhttp_AppException('Null accessToken for Connector with actorId: ' + actorId);
}
String targetObjectId = workItem.ProcessInstance.TargetObjectId;
Requisition__c requisition = getRequisition(targetObjectId);
if (requisition == null)
{
throw new ffhttp_AppException('Null requisition for targetObjectId: ' + targetObjectId);
}
String message = 'Requisition Approval:\n' + requisition.Name + '\n$' + requisition.Budget__c;
ffhttp_GoogleMirrorModelTimeline response = GoogleMirrorService.insertApprovalTimelineItem(accessToken, message);
insert new GoogleMirrorItem__c(Name=response.getId(), Connector__c=cs.Connector.Id, RelatedRecordId__c=requisition.Id);
}
private static ConnectorService getConnectorService(String actorId)
{
ConnectorService retval = null;
try
{
Connector__c c =
[
SELECT
c.TokenType__c, c.RefreshToken__c, c.RefreshTokenRequested__c, c.OwnerId,
c.Name, c.Id, c.Active__c, c.AccessToken__c, c.AccessTokenRequested__c, c.AccessTokenExpiry__c,
ConnectorType__r.TokenEndpoint__c, ConnectorType__r.Scope__c, ConnectorType__r.ScopeRequired__c,
ConnectorType__r.RedirectUri__c, ConnectorType__r.OwnerId, ConnectorType__r.Name,
ConnectorType__r.Id, ConnectorType__r.ExtraUrlParameters__c, ConnectorType__r.DeveloperName__c,
ConnectorType__r.ClientSecret__c, ConnectorType__r.ClientId__c, ConnectorType__r.CallbackURL__c,
ConnectorType__r.AuthorizationEndpoint__c
FROM Connector__c c
WHERE c.OwnerId = :actorId
AND ConnectorType__r.DeveloperName__c = :GoogleMirrorConfigure.GLASS_TYPE_NAME
LIMIT 1
];
if (c != null)
{
ConnectorService cs = new ConnectorService(c);
String validConnector = cs.validateConnector();
if (String.isEmpty(validConnector))
{
retval = cs;
}
}
}
catch (Exception ex)
{
//Ignore errors - we deal with them elsewhere
}
return retval;
}
private static ProcessInstanceWorkItem getProcessWorkItem(String actionId)
{
ProcessInstanceWorkItem retval = null;
try
{
retval =
[
SELECT p.Id, p.ActorId, ProcessInstance.Id, ProcessInstance.TargetObjectId, ProcessInstance.Status
FROM ProcessInstanceWorkitem p
WHERE ProcessInstance.TargetObjectId = :actionId
LIMIT 1
];
}
catch (Exception ex)
{
//Ignore errors - we deal with them elsewhere
}
return retval;
}
private static Requisition__c getRequisition(String targetId)
{
Requisition__c retval = null;
try
{
retval =
[
SELECT Name, Budget__c
FROM Requisition__c
WHERE Id = :targetId
];
}
catch (Exception ex)
{
//Ignore errors - we deal with them elsewhere
}
return retval;
}
}