SharinPix automatic token generation (Developer-oriented)
Overview
In this article, you will learn how to use a trigger to automatically generate a token on an object.
Creation of the Trigger
In this section, we will create a Trigger on the WorkOrder object.
Name the Trigger SharinPixWorkOrderTrigger and use the code snippet below to create it:
trigger SharinPixWorkOrderTrigger on WorkOrder (after insert, before update) {
sharinpix.Client clientInstance = sharinpix.Client.getInstance();
String token;
List<WorkOrder> updatedWOrders = new List<WorkOrder>();
for (WorkOrder wOrder : Trigger.new) {
if (String.isBlank(wOrder.SharinPix_Token__c)) {
token = sharinpix.Client.getInstance().token(
new Map<String, Object> {
'Id' => wOrder.Id,
'exp' => 0,
'path' => '/pagelayout/' + wOrder.Id,
'abilities' => new Map<String, Object> {
wOrder.Id => new Map<String, Object> {
'Access' => new Map<String, Boolean> {
'see' => true,
'image_list' => true,
'image_upload' => true,
'image_delete' => true
}
},
'Display' => new Map<String, Object> {
'tags'=> true
}
}
}
);
if (Trigger.isInsert) {
updatedWOrders.add(new WorkOrder(
Id = wOrder.Id,
SharinPix_Token__c = token
));
} else {
wOrder.SharinPix_Token__c = token;
}
}
}
if (Trigger.isInsert) { update updatedWOrders; }
}
Click to copy
The Trigger SharinPixWorkOrderTrigger:
- Generate a token
- Stores the value of the token generated in the field SharinPix Token
A SharinPix Token is now generated whenever a new WorkOrder is created. This token can be found inside the SharinPix Token field of the newly-created object.
Tip:
The above token can be used to open the SharinPix album within the SharinPix mobile app using the app's online mode feature. For more information on how to make use of the online mode feature, refer to the following article:
0 Comments
Add your comment