package org.gcube.dataanalysis.dataminer.poolmanager.util; import java.text.SimpleDateFormat; import java.util.Calendar; import org.apache.commons.lang.StringUtils; import scala.actors.threadpool.Arrays; public class NotificationHelper ***REMOVED*** private Exception executionException; public NotificationHelper() ***REMOVED*** ***REMOVED*** private String getSubjectHeader() ***REMOVED*** return "[DataMinerGhostInstallationRequestReport]"; ***REMOVED*** private String getSubjectHeaderRelease() ***REMOVED*** return "[DataMinerReleaseInstallationRequestReport]"; ***REMOVED*** private boolean isError() ***REMOVED*** return this.executionException!=null; ***REMOVED*** public void setExecutionException(Exception executionException) ***REMOVED*** this.executionException = executionException; ***REMOVED*** public String getSuccessSubject() ***REMOVED*** return this.getSubjectHeader()+" is SUCCESS"; ***REMOVED*** public String getSuccessSubjectRelease() ***REMOVED*** return this.getSubjectHeaderRelease()+" is SUCCESS"; ***REMOVED*** public String getFailedSubjectRelease() ***REMOVED*** return this.getSubjectHeaderRelease()+" is FAILED"; ***REMOVED*** public String getFailedSubject() ***REMOVED*** return String.format(this.getSubjectHeader()+" is FAILED"); ***REMOVED*** public String getSuccessBody(String info) ***REMOVED*** String message = String.format("The installation of the algorithm in the ghost dataminer is completed successfully."); message+="\n\nYou can retrieve experiment results under the '/DataMiner' e-Infrastructure Workspace folder or from the DataMiner interface.\n\n"+ info; return message; ***REMOVED*** public String getFailedBody(String message) ***REMOVED*** String body = String.format("An error occurred while deploying your algorithm"); body+= "\n\nHere are the error details:\n\n" + message; return body; ***REMOVED*** public String getSuccessBodyRelease(String info) ***REMOVED*** String message = String.format("SVN REPOSITORY CORRECTLY UPDATED."); message+="\n\n The CRON job will install the algorithm in the target VRE \n\n"+ info; return message; ***REMOVED*** public String getFailedBodyRelease(String info) ***REMOVED*** String message = String.format("SVN REPOSITORY UPDATE FAILED."); message+="\n\n The CRON job will NOT be able to install the algorithm in the target VRE \n\n"+ info; return message; ***REMOVED*** ***REMOVED*** public String getSubject() ***REMOVED*** ***REMOVED*** if(this.isError()) ***REMOVED*** ***REMOVED*** return this.getFailedSubject(); ***REMOVED*** ***REMOVED*** else ***REMOVED*** ***REMOVED*** return this.getSuccessSubject(); ***REMOVED*** ***REMOVED*** ***REMOVED*** ***REMOVED*** ***REMOVED*** ***REMOVED*** public String getBody() ***REMOVED*** ***REMOVED*** if(this.isError()) ***REMOVED*** ***REMOVED*** return this.getFailedBody(); ***REMOVED*** ***REMOVED*** else ***REMOVED*** ***REMOVED*** return this.getSuccessBody(); ***REMOVED*** ***REMOVED*** ***REMOVED*** ***REMOVED*** ***REMOVED***