6 Commits

25 changed files with 341 additions and 136 deletions

26
pom.xml
View File

@@ -6,7 +6,7 @@
<groupId>com.inteligr8.alfresco</groupId>
<artifactId>aps-model-maven-plugin</artifactId>
<version>1.4-SNAPSHOT</version>
<version>1.5-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>A Maven plugin for Alfresco Process Services model portability</name>
@@ -42,26 +42,26 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.version>3.6.3</maven.version>
<maven.version>3.9.9</maven.version>
<jersey.version>2.39.1</jersey.version>
<jersey.version>3.1.10</jersey.version>
</properties>
<dependencies>
<dependency>
<groupId>com.inteligr8.alfresco</groupId>
<artifactId>aps-public-rest-api</artifactId>
<version>2.0.17</version>
<version>3.0.6</version>
</dependency>
<dependency>
<groupId>com.inteligr8.alfresco</groupId>
<artifactId>aps-public-rest-client</artifactId>
<version>2.0.5-jersey</version>
<version>3.0.2-jersey</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
<version>3.17.0</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>file-management</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
@@ -87,7 +87,7 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.6.0</version>
<version>3.15.1</version>
<scope>provided</scope>
</dependency>
<dependency>
@@ -111,7 +111,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
@@ -121,7 +121,7 @@
<plugins>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
<version>3.2.2</version>
<version>3.9.0</version>
<configuration>
<projectsDirectory>${basedir}/src/it</projectsDirectory>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
@@ -146,7 +146,7 @@
<plugins>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.6.1</version>
<version>3.15.1</version>
<configuration>
<goalPrefix>aps-model</goalPrefix>
</configuration>
@@ -168,7 +168,7 @@
<plugin>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-metadata</artifactId>
<version>2.0.0</version>
<version>2.2.0</version>
<executions>
<execution>
<goals>
@@ -269,7 +269,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<version>1.7.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>

View File

@@ -45,4 +45,9 @@ public interface ApsAppCrawlable {
*/
ApsFileTransformer getFormJsonTransformer();
/**
* @return A file transformer for APS Decision Table JSON files.
*/
ApsFileTransformer getDecisionTableJsonTransformer();
}

View File

@@ -83,6 +83,7 @@ public class ApsAppCrawler {
this.transform(crawlable.getAppJsonTransformer(), this.appDescriptor, this.appName, null);
this.crawlModels("form-models", crawlable.getFormJsonTransformer());
this.crawlModels("decision-table-models", crawlable.getDecisionTableJsonTransformer());
this.crawlModels("bpmn-models", processTransformers);
this.crawlModels("bpmn-subprocess-models", crawlable.getProcessJsonTransformer());
}

View File

@@ -17,12 +17,16 @@ package com.inteligr8.maven.aps.modeling.goal;
import java.util.List;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Component;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.settings.Server;
import org.apache.maven.settings.crypto.DefaultSettingsDecryptionRequest;
import org.apache.maven.settings.crypto.SettingsDecrypter;
import com.inteligr8.alfresco.activiti.ApsClientJerseyConfiguration;
import com.inteligr8.alfresco.activiti.ApsClientJerseyImpl;
import com.inteligr8.alfresco.activiti.ApsPublicRestApiJerseyImpl;
import com.inteligr8.alfresco.activiti.ApsProtectedRestApiJerseyImpl;
import com.inteligr8.alfresco.activiti.model.Tenant;
/**
@@ -58,8 +62,11 @@ public abstract class ApsAddressibleGoal extends DisablableGoal {
@Parameter( property = "aps-model.oauth.tokenUrl", required = false )
protected String oauthTokenUrl;
@Component
private SettingsDecrypter decrypter;
private ApsPublicRestApiJerseyImpl api;
private ApsProtectedRestApiJerseyImpl api;
/**
* Retrieves an APS client configuration.
@@ -69,10 +76,11 @@ public abstract class ApsAddressibleGoal extends DisablableGoal {
*
* @return An APS client configuration.
*/
public ApsClientJerseyConfiguration getApsClientConfiguration() {
public ApsClientJerseyConfiguration getApsClientConfiguration() throws MojoExecutionException {
this.getLog().debug("Configuring APS to URL: " + this.activitiAppBaseUrl);
ApsClientJerseyConfiguration config = new ApsClientJerseyConfiguration();
config.setBaseUrl(this.activitiAppBaseUrl);
switch (this.activitiAppAuthType.toUpperCase()) {
case "BASIC":
this.getLog().info("Configuring APS with BASIC authentication");
@@ -82,6 +90,9 @@ public abstract class ApsAddressibleGoal extends DisablableGoal {
this.getLog().warn("The Maven configuration has no server '" + this.activitiAppAuthBasicServerId + "'; continuing with default credentials");
if (creds != null) {
creds = this.decrypter.decrypt(new DefaultSettingsDecryptionRequest(creds))
.getServer();
this.getLog().debug("Username: " + creds.getUsername());
config.setBasicAuthUsername(creds.getUsername());
config.setBasicAuthPassword(creds.getPassword());
@@ -95,19 +106,29 @@ public abstract class ApsAddressibleGoal extends DisablableGoal {
if ((this.oauthClientServerId != null || this.oauthServerId != null) && clientCreds == null && oauthCreds == null)
this.getLog().warn("The Maven configuration has no server '" + this.oauthClientServerId + "' or '" + this.oauthServerId + "'; continuing without credentials");
this.getLog().debug("OAuth Code: " + this.oauthCode);
config.setOAuthAuthCode(this.oauthCode);
if (this.oauthCode != null) {
this.getLog().debug("OAuth Code: " + this.oauthCode);
config.setOAuthAuthCode(this.oauthCode);
}
if (clientCreds != null) {
creds = this.decrypter.decrypt(new DefaultSettingsDecryptionRequest(clientCreds))
.getServer();
this.getLog().debug("OAuth Client ID: " + clientCreds.getUsername());
config.setOAuthClientId(clientCreds.getUsername());
config.setOAuthClientSecret(clientCreds.getPassword());
if (clientCreds.getPassword() != null && clientCreds.getPassword().length() > 0)
config.setOAuthClientSecret(clientCreds.getPassword());
}
if (oauthCreds != null) {
creds = this.decrypter.decrypt(new DefaultSettingsDecryptionRequest(oauthCreds))
.getServer();
this.getLog().debug("OAuth Username: " + oauthCreds.getUsername());
config.setOAuthUsername(oauthCreds.getUsername());
config.setOAuthPassword(oauthCreds.getPassword());
if (oauthCreds.getPassword() != null && oauthCreds.getPassword().length() > 0)
config.setOAuthPassword(oauthCreds.getPassword());
}
config.setOAuthTokenUrl(this.oauthTokenUrl);
@@ -123,12 +144,13 @@ public abstract class ApsAddressibleGoal extends DisablableGoal {
* This method constructs and caches the APS API accessor.
*
* @return An APS API instance.
* @throws MojoExecutionException The APS API failed to initialize.
*/
public synchronized ApsPublicRestApiJerseyImpl getApsApi() {
public synchronized ApsProtectedRestApiJerseyImpl getApsApi() throws MojoExecutionException {
if (this.api == null) {
ApsClientJerseyConfiguration config = this.getApsClientConfiguration();
ApsClientJerseyImpl apsClient = new ApsClientJerseyImpl(config);
this.api = new ApsPublicRestApiJerseyImpl(apsClient);
this.api = new ApsProtectedRestApiJerseyImpl(apsClient);
}
return this.api;
@@ -141,8 +163,9 @@ public abstract class ApsAddressibleGoal extends DisablableGoal {
* This method does not cache the result.
*
* @return An APS tenant ID; null only if there are no tenants.
* @throws MojoExecutionException The APS API failed to initialize.
*/
protected Long findTenantId() {
protected Long findTenantId() throws MojoExecutionException {
List<Tenant> tenants = this.getApsApi().getAdminApi().getTenants();
if (tenants == null || tenants.isEmpty())
return null;

View File

@@ -15,19 +15,15 @@
package com.inteligr8.maven.aps.modeling.goal;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Parameter;
import com.inteligr8.activiti.model.Datum;
import com.inteligr8.activiti.model.ResultList;
import com.inteligr8.alfresco.activiti.ApsPublicRestApiJerseyImpl;
import com.inteligr8.alfresco.activiti.ApsPublicRestApi;
import com.inteligr8.alfresco.activiti.api.ModelsApi.ModelType;
import com.inteligr8.alfresco.activiti.model.ModelRepresentation;
import com.inteligr8.alfresco.activiti.model.ResultListDataRepresentation;
import com.inteligr8.alfresco.activiti.model.Tenant;
/**
* This class adds the APS App name to APS addressibility to extending goals.
@@ -43,21 +39,6 @@ public abstract class ApsAppAddressibleGoal extends ApsAddressibleGoal {
@Parameter( property = "aps-model.appName", required = true )
protected String apsAppName;
/**
* This method makes the appropriate service calls to find the first APS
* tenant ID from the configured APS service.
*
* This method does not cache the result.
*
* @return An APS tenant ID; null only if there are no tenants.
*/
protected Long findTenantId() {
List<Tenant> tenants = this.getApsApi().getAdminApi().getTenants();
if (tenants == null || tenants.isEmpty())
return null;
return tenants.iterator().next().getId();
}
/**
* This method makes the appropriate service calls to find all the APS
* Apps, returning them as a map of names to models.
@@ -65,9 +46,10 @@ public abstract class ApsAppAddressibleGoal extends ApsAddressibleGoal {
* This method does not cache the result.
*
* @return A map of APS App names to their model; may be empty; never null.
* @throws MojoExecutionException The APS API failed to initialize.
*/
protected Map<String, ModelRepresentation> buildAppNameMap() {
ApsPublicRestApiJerseyImpl api = this.getApsApi();
protected Map<String, ModelRepresentation> buildAppNameMap() throws MojoExecutionException {
ApsPublicRestApi api = this.getApsApi();
Map<String, ModelRepresentation> apps = new HashMap<>(16);

View File

@@ -26,14 +26,12 @@ import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.codehaus.plexus.component.annotations.Component;
import com.inteligr8.activiti.model.Datum;
import com.inteligr8.activiti.model.ResultList;
import com.inteligr8.alfresco.activiti.api.ModelsApi;
import com.inteligr8.alfresco.activiti.model.GroupLight;
import com.inteligr8.alfresco.activiti.model.ModelRepresentation;
import com.inteligr8.alfresco.activiti.model.PermissionLevel;
import com.inteligr8.alfresco.activiti.model.PermissionLight;
import com.inteligr8.alfresco.activiti.model.ResultListDataRepresentation;
import com.inteligr8.alfresco.activiti.model.ShareInfoRequest;
import com.inteligr8.alfresco.activiti.model.SharePermission;
import com.inteligr8.alfresco.activiti.model.Tenant;
@@ -108,7 +106,7 @@ public class ApsShareGoal extends ApsAddressibleGoal {
this.shareModels(ModelsApi.ModelType.Form, this.formReaderSet, this.formEditorSet);
}
private void shareModels(ModelsApi.ModelType modelType, Set<String> readers, Set<String> editors) {
private void shareModels(ModelsApi.ModelType modelType, Set<String> readers, Set<String> editors) throws MojoExecutionException {
ResultList<ModelRepresentation> models = this.getApsApi().getModelsApi().get(null, null, modelType.getId(), null);
if (models.getData() == null)
return;
@@ -220,7 +218,7 @@ public class ApsShareGoal extends ApsAddressibleGoal {
return params;
}
protected void buildIdentityIndex() {
protected void buildIdentityIndex() throws MojoExecutionException {
List<Tenant> tenants = this.getApsApi().getAdminApi().getTenants();
for (Tenant tenant : tenants) {
List<GroupLight> groups = this.getApsApi().getAdminApi().getGroups(tenant.getId(), true, true);

View File

@@ -21,6 +21,7 @@ import java.util.List;
import java.util.Map;
import java.util.regex.Pattern;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Parameter;
import com.inteligr8.activiti.model.ResultList;
@@ -52,12 +53,12 @@ public abstract class ApsTemplateAddressibleGoal extends ApsAddressibleGoal {
@Parameter( property = "aps-model.customEmailTemplateNames", defaultValue = ".*" )
protected String apsCustomEmailTemplateNames;
protected Map<TemplateType, Map<String, ? extends BaseTemplateLight>> findTemplates() {
protected Map<TemplateType, Map<String, ? extends BaseTemplateLight>> findTemplates() throws MojoExecutionException {
Long tenantId = this.findTenantId();
return this.findTemplates(tenantId);
}
protected Map<TemplateType, Map<String, ? extends BaseTemplateLight>> findTemplates(Long tenantId) {
protected Map<TemplateType, Map<String, ? extends BaseTemplateLight>> findTemplates(Long tenantId) throws MojoExecutionException {
Map<TemplateType, Map<String, ? extends BaseTemplateLight>> templates = new HashMap<>(32);
Map<String, ? extends BaseTemplateLight> systemEmailTemplateNames = this.findSystemEmailTemplates(tenantId);
@@ -75,7 +76,7 @@ public abstract class ApsTemplateAddressibleGoal extends ApsAddressibleGoal {
return templates;
}
protected Map<String, ? extends BaseTemplateLight> findSystemEmailTemplates(Long tenantId) {
protected Map<String, ? extends BaseTemplateLight> findSystemEmailTemplates(Long tenantId) throws MojoExecutionException {
this.getLog().debug("Searching for all APS System Email Templates");
List<Pattern> matchingPatterns = this.buildPatterns(this.apsSystemEmailTemplateNames);
@@ -94,7 +95,7 @@ public abstract class ApsTemplateAddressibleGoal extends ApsAddressibleGoal {
return map;
}
protected Map<String, ? extends BaseTemplateLight> findCustomEmailTemplates(Long tenantId) {
protected Map<String, ? extends BaseTemplateLight> findCustomEmailTemplates(Long tenantId) throws MojoExecutionException {
this.getLog().debug("Searching for all APS Custom Email Templates");
List<Pattern> matchingPatterns = this.buildPatterns(this.apsCustomEmailTemplateNames);
@@ -120,7 +121,7 @@ public abstract class ApsTemplateAddressibleGoal extends ApsAddressibleGoal {
return map;
}
protected Map<String, ? extends BaseTemplateLight> findDocumentTemplates(Long tenantId) {
protected Map<String, ? extends BaseTemplateLight> findDocumentTemplates(Long tenantId) throws MojoExecutionException {
List<Pattern> matchingPatterns = this.buildPatterns(this.apsDocumentTemplateNames);
Map<String, DocumentTemplateLight> map = new HashMap<>();
int pageSize = 50;

View File

@@ -24,7 +24,7 @@ import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.codehaus.plexus.component.annotations.Component;
import com.inteligr8.alfresco.activiti.ApsPublicRestApiJerseyImpl;
import com.inteligr8.alfresco.activiti.ApsPublicRestApi;
/**
* A class that implements an APS service download goal.
@@ -56,7 +56,7 @@ public class DownloadAppGoal extends ApsAppAddressibleGoal {
try {
FileUtils.copyFile(appZip, toAppZip);
} catch (IOException ie) {
throw new MojoExecutionException("The downloaded APS App could not be saved", ie);
throw new MojoFailureException("The downloaded APS App could not be saved", ie);
}
}
@@ -69,8 +69,8 @@ public class DownloadAppGoal extends ApsAppAddressibleGoal {
}
}
private File downloadApp(long appId) {
ApsPublicRestApiJerseyImpl api = this.getApsApi();
private File downloadApp(long appId) throws MojoExecutionException {
ApsPublicRestApi api = this.getApsApi();
this.getLog().debug("Downloading APS App: " + appId);
return api.getAppDefinitionsApi().export(appId);
}

View File

@@ -20,8 +20,6 @@ import java.io.InputStream;
import java.util.Map;
import java.util.Map.Entry;
import javax.ws.rs.core.Response;
import org.apache.commons.io.FileUtils;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
@@ -31,11 +29,12 @@ import org.codehaus.plexus.component.annotations.Component;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.inteligr8.alfresco.activiti.model.BaseTemplateLight;
import com.inteligr8.alfresco.activiti.model.DocumentTemplateLight;
import com.inteligr8.alfresco.activiti.model.EmailTemplate;
import com.inteligr8.maven.aps.modeling.normalizer.ApsTemplateJsonNormalizer;
import com.inteligr8.maven.aps.modeling.util.ModelUtil;
import jakarta.ws.rs.core.Response;
/**
* A class that implements an APS service download goal.
*
@@ -119,7 +118,7 @@ public class DownloadTemplateGoal extends ApsTemplateAddressibleGoal {
}
}
} catch (IOException ie) {
throw new MojoExecutionException("The downloaded APS templates could not be saved", ie);
throw new MojoFailureException("The downloaded APS templates could not be saved", ie);
}
}

View File

@@ -63,7 +63,7 @@ public class PackAppGoal extends ApsAppGoal {
try {
this.pack(appDirectory, targetFile);
} catch (IOException ie) {
throw new MojoExecutionException("The APS App could not be packed", ie);
throw new MojoFailureException("The APS App could not be packed", ie);
}
}

View File

@@ -22,8 +22,12 @@ import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.codehaus.plexus.component.annotations.Component;
import com.inteligr8.alfresco.activiti.ApsPublicRestApiJerseyImpl;
import com.inteligr8.alfresco.activiti.ApsPublicRestApi;
import com.inteligr8.alfresco.activiti.model.AppDefinitionPublishRepresentation;
import com.inteligr8.alfresco.activiti.model.AppDefinitionUpdateResultRepresentation;
import jakarta.ws.rs.WebApplicationException;
import jakarta.ws.rs.core.Response;
/**
* A class that implements an APS Service publish goal.
@@ -50,12 +54,12 @@ public class PublishAppGoal extends ApsAppAddressibleGoal {
try {
this.publishApp(appId);
} catch (IOException ie) {
throw new MojoExecutionException("The APS App could not be published", ie);
throw new MojoFailureException("The APS App could not be published", ie);
}
}
private void publishApp(Long appId) throws IOException, MojoExecutionException {
ApsPublicRestApiJerseyImpl api = this.getApsApi();
ApsPublicRestApi api = this.getApsApi();
AppDefinitionPublishRepresentation appDefPublish = new AppDefinitionPublishRepresentation();
appDefPublish.setComment(this.comment);
@@ -63,7 +67,9 @@ public class PublishAppGoal extends ApsAppAddressibleGoal {
this.getLog().info("[DRYRUN]: Publishing app: " + appId);
} else {
this.getLog().info("Publishing app: " + appId);
api.getAppDefinitionsApi().publish(appId, appDefPublish);
AppDefinitionUpdateResultRepresentation response = api.getAppDefinitionsApi().publish(appId, appDefPublish);
if (Boolean.TRUE.equals(response.getError()))
throw new WebApplicationException(response.getErrorDescription(), Response.Status.PRECONDITION_FAILED);
}
}

View File

@@ -74,7 +74,7 @@ public class TranslateAppGoal extends ApsAppAddressibleGoal {
ApsAppCrawler crawler = new ApsAppCrawler(this.apsAppName, apsAppDirectory, true);
crawler.execute(translator);
} catch (IOException ie) {
throw new MojoExecutionException("An I/O issue occurred", ie);
throw new MojoFailureException("An I/O issue occurred", ie);
} catch (IllegalArgumentException iae) {
throw new MojoExecutionException("The input is not supported", iae);
} catch (IllegalStateException ise) {

View File

@@ -69,7 +69,7 @@ public class TranslateTemplateGoal extends ApsAddressibleGoal {
ApsTemplateCrawler crawler = new ApsTemplateCrawler(this.finalDirectory, true);
crawler.execute(translator);
} catch (IOException ie) {
throw new MojoExecutionException("An I/O issue occurred", ie);
throw new MojoFailureException("An I/O issue occurred", ie);
} catch (IllegalArgumentException iae) {
throw new MojoExecutionException("The input is not supported", iae);
} catch (IllegalStateException ise) {

View File

@@ -90,7 +90,7 @@ public class UnpackAppGoal extends ApsAppGoal {
try {
this.unpack(sourceFile, appDirectory);
} catch (IOException ie) {
throw new MojoExecutionException("The downloaded APS App could not be unpacked", ie);
throw new MojoFailureException("The downloaded APS App could not be unpacked", ie);
}
if (this.reformat)
@@ -101,7 +101,7 @@ public class UnpackAppGoal extends ApsAppGoal {
ApsAppCrawler crawler = new ApsAppCrawler(this.apsAppName, appDirectory, true);
crawler.execute(normalizer);
} catch (IOException ie) {
throw new MojoExecutionException("An I/O issue occurred", ie);
throw new MojoFailureException("An I/O issue occurred", ie);
}
}
}
@@ -223,7 +223,7 @@ public class UnpackAppGoal extends ApsAppGoal {
file.delete();
}
} catch (TransformerException | SAXException | IOException e) {
throw new MojoFailureException("The following file faild to be reformatted: " + file, e);
throw new MojoFailureException("The following file failed to be reformatted: " + file, e);
}
}
}

View File

@@ -26,11 +26,14 @@ import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.codehaus.plexus.component.annotations.Component;
import com.inteligr8.alfresco.activiti.ApsPublicRestApiJerseyImpl;
import com.inteligr8.alfresco.activiti.ApsPublicRestJerseyApi;
import com.inteligr8.alfresco.activiti.model.AppDefinitionUpdateResultRepresentation;
import com.inteligr8.alfresco.activiti.model.FileMultipartJersey;
import com.inteligr8.alfresco.activiti.model.ModelRepresentation;
import jakarta.ws.rs.WebApplicationException;
import jakarta.ws.rs.core.Response;
/**
* A class that implements an APS service upload goal.
*
@@ -65,7 +68,7 @@ public class UploadAppGoal extends ApsAppAddressibleGoal {
try {
this.uploadApp(appModel, sourceFile);
} catch (IOException ie) {
throw new MojoExecutionException("The APS App could not be uploaded", ie);
throw new MojoFailureException("The APS App could not be uploaded", ie);
}
}
@@ -87,8 +90,8 @@ public class UploadAppGoal extends ApsAppAddressibleGoal {
return sourceFile;
}
private void uploadApp(ModelRepresentation appModel, File appZip) throws IOException, MojoExecutionException {
ApsPublicRestApiJerseyImpl api = this.getApsApi();
private void uploadApp(ModelRepresentation appModel, File appZip) throws IOException, MojoExecutionException, MojoFailureException {
ApsPublicRestJerseyApi api = this.getApsApi();
FileInputStream fistream = new FileInputStream(appZip);
BufferedInputStream bistream = new BufferedInputStream(fistream, this.bufferSize);
@@ -103,7 +106,7 @@ public class UploadAppGoal extends ApsAppAddressibleGoal {
this.getLog().info("Uploading & publishing new APS App: " + this.apsAppName);
AppDefinitionUpdateResultRepresentation appDefUpdate = api.getAppDefinitionsJerseyApi().publishApp(multipart);
if (Boolean.TRUE.equals(appDefUpdate.getError()))
throw new MojoExecutionException(appDefUpdate.getErrorDescription());
throw new WebApplicationException(appDefUpdate.getErrorDescription(), Response.Status.PRECONDITION_FAILED);
}
} else {
if (this.dryRun) {
@@ -121,7 +124,7 @@ public class UploadAppGoal extends ApsAppAddressibleGoal {
this.getLog().info("Uploading, versioning, & publishing APS App: " + this.apsAppName + " (" + appModel.getId() + ")");
AppDefinitionUpdateResultRepresentation appDefUpdate = api.getAppDefinitionsJerseyApi().publishApp(appModel.getId(), multipart);
if (Boolean.TRUE.equals(appDefUpdate.getError()))
throw new MojoExecutionException(appDefUpdate.getErrorDescription());
throw new WebApplicationException(appDefUpdate.getErrorDescription(), Response.Status.PRECONDITION_FAILED);
}
} else {
if (this.dryRun) {

View File

@@ -30,7 +30,6 @@ import org.codehaus.plexus.component.annotations.Component;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.inteligr8.alfresco.activiti.model.DocumentTemplateLight;
import com.inteligr8.alfresco.activiti.model.EmailTemplate;
import com.inteligr8.alfresco.activiti.model.EmailTemplateLight;
import com.inteligr8.alfresco.activiti.model.FileMultipartJersey;
import com.inteligr8.maven.aps.modeling.util.ModelUtil;
@@ -153,9 +152,9 @@ public class UploadTemplateGoal extends ApsAddressibleGoal {
}
}
} catch (JsonProcessingException jpe) {
throw new MojoExecutionException("The APS templates JSON files could not be parsed", jpe);
throw new MojoFailureException("The APS templates JSON files could not be parsed", jpe);
} catch (IOException ie) {
throw new MojoExecutionException("The APS templates could not be uploaded", ie);
throw new MojoFailureException("The APS templates could not be uploaded", ie);
} catch (ParseException pe) {
throw new MojoFailureException("This should never happen", pe);
}

View File

@@ -62,6 +62,11 @@ public class ApsAppNormalizer implements ApsAppCrawlable {
public ApsFileTransformer getFormJsonTransformer() {
return new ApsFormJsonNormalizer();
}
@Override
public ApsFileTransformer getDecisionTableJsonTransformer() {
return new ApsDecisionTableJsonNormalizer();
}
@Override
public ApsFileTransformer getProcessJsonTransformer() {

View File

@@ -0,0 +1,41 @@
/*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.inteligr8.maven.aps.modeling.normalizer;
import java.io.File;
import java.io.IOException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This class implements an APS Decision Table JSON configuration file
* normalizer.
*
* This does nothing but log at this time.
*
* @author brian@inteligr8.com
*/
public class ApsDecisionTableJsonNormalizer implements ApsFileNormalizer {
private final Logger logger = LoggerFactory.getLogger(ApsDecisionTableJsonNormalizer.class);
@Override
public void normalizeFile(File file, String modelName) throws IOException {
this.logger.debug("Normalizing Form JSON file: {}", file);
this.logger.trace("Nothing to normalize: {}", modelName);
}
}

View File

@@ -26,13 +26,11 @@ import java.util.regex.Pattern;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.inteligr8.activiti.model.Datum;
import com.inteligr8.activiti.model.ResultList;
import com.inteligr8.alfresco.activiti.ApsPublicRestApi;
import com.inteligr8.alfresco.activiti.api.ModelsApi.ModelType;
import com.inteligr8.alfresco.activiti.model.GroupLight;
import com.inteligr8.alfresco.activiti.model.ModelRepresentation;
import com.inteligr8.alfresco.activiti.model.ResultListDataRepresentation;
import com.inteligr8.alfresco.activiti.model.Tenant;
import com.inteligr8.maven.aps.modeling.crawler.ApsAppCrawlable;
import com.inteligr8.maven.aps.modeling.crawler.ApsFileTransformer;
@@ -66,6 +64,7 @@ public class ApsAppTranslator implements ApsAppCrawlable {
private boolean indexesBuilt = false;
private Map<String, GroupLight> apsOrgIndex;
private Index<Long, String> apsFormIndex;
private Index<Long, String> apsDecisionTableIndex;
private Index<Long, String> apsProcessIndex;
private Index<Long, String> fileFormIndex;
private Index<Long, String> fileProcessIndex;
@@ -109,6 +108,9 @@ public class ApsAppTranslator implements ApsAppCrawlable {
this.apsFormIndex = this.buildApsModelIndex(ModelType.Form);
this.logLarge("APS form models: {}", this.apsFormIndex);
this.apsDecisionTableIndex = this.buildApsModelIndex(ModelType.DecisionTable);
this.logLarge("APS decision table models: {}", this.apsDecisionTableIndex);
this.fileFormIndex = this.buildFileIndex("form-models", this.apsFormIndex, true);
this.logLarge("File form models: {}", this.fileFormIndex);
@@ -158,6 +160,15 @@ public class ApsAppTranslator implements ApsAppCrawlable {
return new ApsFormJsonTranslator(
this.apsFormIndex);
}
@Override
public ApsFileTransformer getDecisionTableJsonTransformer() {
if (!this.indexesBuilt)
throw new IllegalStateException("The indexes are never built");
return new ApsDecisionTableJsonTranslator(
this.apsDecisionTableIndex);
}
@Override
public ApsFileTransformer getProcessJsonTransformer() {
@@ -168,7 +179,8 @@ public class ApsAppTranslator implements ApsAppCrawlable {
this.api,
this.apsProcessIndex,
this.apsOrgIndex,
this.apsFormIndex);
this.apsFormIndex,
this.apsDecisionTableIndex);
}
@Override
@@ -181,6 +193,7 @@ public class ApsAppTranslator implements ApsAppCrawlable {
this.apsProcessIndex,
this.apsOrgIndex,
this.apsFormIndex,
this.apsDecisionTableIndex,
this.fileFormIndex);
}

View File

@@ -0,0 +1,39 @@
/*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.inteligr8.maven.aps.modeling.translator;
import com.inteligr8.maven.aps.modeling.util.Index;
/**
* This class implements an APS Decision Table JSON configuration file
* translator.
*
* This will translate the decision table ID embedded into APS Decision Table
* descriptor.
*
* @author brian@inteligr8.com
*/
public class ApsDecisionTableJsonTranslator extends ApsResourceJsonTranslator {
/**
* This constructor initializes the default translator.
*
* @param apsDecisionTableIndex A map of form IDs to form names as defined in the APS Service.
*/
public ApsDecisionTableJsonTranslator(Index<Long, String> apsDecisionTableIndex) {
super(apsDecisionTableIndex);
}
}

View File

@@ -14,16 +14,7 @@
*/
package com.inteligr8.maven.aps.modeling.translator;
import java.io.File;
import java.io.IOException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.inteligr8.maven.aps.modeling.util.Index;
import com.inteligr8.maven.aps.modeling.util.ModelUtil;
/**
* This class implements an APS Form JSON configuration file translator.
@@ -32,10 +23,7 @@ import com.inteligr8.maven.aps.modeling.util.ModelUtil;
*
* @author brian@inteligr8.com
*/
public class ApsFormJsonTranslator implements ApsFileTranslator {
private final Logger logger = LoggerFactory.getLogger(ApsFormJsonTranslator.class);
private final Index<Long, String> apsIndex;
public class ApsFormJsonTranslator extends ApsResourceJsonTranslator {
/**
* This constructor initializes the default translator.
@@ -43,36 +31,7 @@ public class ApsFormJsonTranslator implements ApsFileTranslator {
* @param apsFormIndex A map of form IDs to form names as defined in the APS Service.
*/
public ApsFormJsonTranslator(Index<Long, String> apsFormIndex) {
this.apsIndex = apsFormIndex;
}
@Override
public void translateFile(File file, String formName, Long formId) throws IOException {
this.logger.debug("Translating JSON file: {}", file);
boolean changed = false;
ObjectNode jsonDescriptor = ModelUtil.getInstance().readJson(file, ObjectNode.class);
JsonNode jsonResourceId = jsonDescriptor.get("resourceId");
if (jsonResourceId == null || jsonResourceId.isNull()) {
this.logger.debug("The form has no ID to translate");
return;
}
this.logger.trace("Found ID {} in the '{}' APS Form descriptor", jsonResourceId, formName);
Long apsFormId = this.apsIndex.getFirstKey(formName);
if (apsFormId == null) {
this.logger.debug("The form '{}' does not exist in APS; leaving unchanged", formName);
} else if (!formId.equals(apsFormId)) {
this.logger.debug("The form '{}' exists in APS with ID {}; changing descriptor", formName, apsFormId);
jsonDescriptor.put("resourceId", apsFormId);
changed = true;
} else {
this.logger.trace("The form '{}' ID does not change; leaving unchanged", formName, apsFormId);
}
if (changed)
ModelUtil.getInstance().writeJson(jsonDescriptor, file, false);
super(apsFormIndex);
}
}

View File

@@ -63,7 +63,8 @@ public class ApsProcessBpmnTranslator extends ApsOrganizationHandler implements
private final Index<Long, String> apsIndex;
private final Map<String, GroupLight> apsOrgIndex;
private final Index<Long, String> apsFormIndex;
private final Index<Long, String> fileFormIndex;
private final Index<Long, String> apsDecisionTableIndex;
private final Index<Long, String> fileFormIndex;
/**
* This constructor initializes the default translator.
@@ -79,12 +80,14 @@ public class ApsProcessBpmnTranslator extends ApsOrganizationHandler implements
Index<Long, String> apsProcessIndex,
Map<String, GroupLight> apsOrgIndex,
Index<Long, String> apsFormIndex,
Index<Long, String> apsDecisionTableIndex,
Index<Long, String> fileFormIndex) {
super(api, apsOrgIndex);
this.apsIndex = apsProcessIndex;
this.apsOrgIndex = apsOrgIndex;
this.apsFormIndex = apsFormIndex;
this.fileFormIndex = fileFormIndex;
this.apsDecisionTableIndex = apsDecisionTableIndex;
this.fileFormIndex = fileFormIndex;
}
@Override
@@ -111,6 +114,12 @@ public class ApsProcessBpmnTranslator extends ApsOrganizationHandler implements
Element formKeyElement = (Element)formKeyElements.item(n);
changed = this.translateTaskForm(formKeyElement) || changed;
}
NodeList decisionTableRefElements = ModelUtil.getInstance().xpath(definitionsElement, "//modeler:decisiontable-reference");
for (int n = 0; n < decisionTableRefElements.getLength(); n++) {
Element decisionTableRefElement = (Element)decisionTableRefElements.item(n);
changed = this.translateDecisionTableRef(decisionTableRefElement, bpmn) || changed;
}
NodeList subprocessElements = ModelUtil.getInstance().xpath(definitionsElement, "//tns:subProcess");
for (int n = 0; n < subprocessElements.getLength(); n++) {
@@ -258,6 +267,47 @@ public class ApsProcessBpmnTranslator extends ApsOrganizationHandler implements
return changed;
}
private boolean translateDecisionTableRef(Element decisionTableRefElement, Document xmldoc) throws XPathExpressionException {
String dtRefIdStr = decisionTableRefElement.getAttributeNS(NAMESPACE_ACTIVITI_MODELER, "decisiontablereferenceid");
this.logger.trace("Translating decision table: {}", dtRefIdStr);
if (dtRefIdStr == null)
throw new IllegalStateException("A decision table was detected, but no identifier was found");
Long dtRefId = new Long(dtRefIdStr);
boolean changed = false;
String dtRefName = decisionTableRefElement.getAttributeNS(NAMESPACE_ACTIVITI_MODELER, "decisiontablereferencename");
if (dtRefName == null)
throw new IllegalStateException("A decision table was detected, but no name was found: " + dtRefId);
dtRefName = dtRefName.trim();
this.logger.trace("Found '{}' decision table in the APS Process BPMN model", dtRefName);
Long apsDecisionTableId = this.apsDecisionTableIndex.getFirstKey(dtRefName);
if (apsDecisionTableId == null) {
this.logger.debug("The decision table '{}' does not exist in APS; leaving unchanged", dtRefName);
return false;
}
this.logger.trace("Found ID {} for the decision table '{}' in the APS Process BPMN model", apsDecisionTableId, dtRefName);
String dtRefKey = (String) ModelUtil.getInstance().xpath(
decisionTableRefElement.getParentNode(),
"activiti:field[@name=\"decisionTableReferenceKey\"]/activiti:string/text()",
XPathConstants.STRING);
if (dtRefKey == null)
throw new IllegalStateException("A decision table was detected, but no key was found: " + dtRefId);
if (!apsDecisionTableId.equals(dtRefId)) {
this.logger.debug("The decision table '{}' exists in APS with ID {}; changing model", dtRefName, apsDecisionTableId);
decisionTableRefElement.setAttributeNS(NAMESPACE_ACTIVITI_MODELER, "decisiontablereferenceid", apsDecisionTableId.toString());
changed = true;
} else {
this.logger.trace("The decision table '{}' key does not change; leaving unchanged", dtRefName);
}
return changed;
}
private boolean translateSubprocess(Element subprocessElement) throws XPathExpressionException {
this.logger.trace("Translating subprocess: {}", subprocessElement.getAttribute("id"));

View File

@@ -48,6 +48,7 @@ public class ApsProcessJsonTranslator extends ApsOrganizationHandler implements
private final Index<Long, String> apsIndex;
private final Map<String, GroupLight> apsOrgIndex;
private final Index<Long, String> apsFormIndex;
private final Index<Long, String> apsDecisionTableIndex;
/**
* This constructor initializes the default translator.
@@ -56,16 +57,19 @@ public class ApsProcessJsonTranslator extends ApsOrganizationHandler implements
* @param apsProcessIndex A map of process IDs to process names as defined in the APS Service.
* @param apsOrgIndex A map of organizations (groups) to organization meta-data as defined in the APS Service.
* @param apsFormIndex A map of form IDs to form names as defined in the APS Service.
* @param apsDecisionTableIndex A map of decision table IDs to decision table names as defined in the APS Service.
*/
public ApsProcessJsonTranslator(
ApsPublicRestApi api,
Index<Long, String> apsProcessIndex,
Map<String, GroupLight> apsOrgIndex,
Index<Long, String> apsFormIndex) {
Index<Long, String> apsFormIndex,
Index<Long, String> apsDecisionTableIndex) {
super(api, apsOrgIndex);
this.apsIndex = apsProcessIndex;
this.apsOrgIndex = apsOrgIndex;
this.apsFormIndex = apsFormIndex;
this.apsDecisionTableIndex = apsDecisionTableIndex;
}
@Override
@@ -79,7 +83,7 @@ public class ApsProcessJsonTranslator extends ApsOrganizationHandler implements
changed = this.translateResourceId(jsonDescriptor, processName, apsProcessId) || changed;
changed = this.translateOrganizations(jsonDescriptor, processName) || changed;
changed = this.translateForms(jsonDescriptor, processName) || changed;
changed = this.translateResources(jsonDescriptor, processName) || changed;
changed = this.translateSubprocesses(jsonDescriptor, processName) || changed;
if (changed)
@@ -171,8 +175,8 @@ public class ApsProcessJsonTranslator extends ApsOrganizationHandler implements
private boolean translateForms(ObjectNode jsonDescriptor, String processName) {
this.logger.trace("Translating forms in process: {}", processName);
private boolean translateResources(ObjectNode jsonDescriptor, String processName) {
this.logger.trace("Translating resources in process: {}", processName);
boolean changed = false;
for (JsonNode jsonChildShape : this.getChildShapes(jsonDescriptor)) {
@@ -182,6 +186,9 @@ public class ApsProcessJsonTranslator extends ApsOrganizationHandler implements
JsonNode jsonFormRef = (JsonNode)jsonChildShape.get("properties").get("formreference");
changed = this.translateReference(jsonFormRef, this.apsFormIndex) || changed;
JsonNode jsonDecitionTableRef = (JsonNode)jsonChildShape.get("properties").get("decisiontaskdecisiontablereference");
changed = this.translateReference(jsonDecitionTableRef, this.apsDecisionTableIndex) || changed;
} catch (NullPointerException npe) {
// suppress; gracefully skip
}

View File

@@ -0,0 +1,74 @@
/*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.inteligr8.maven.aps.modeling.translator;
import java.io.File;
import java.io.IOException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.inteligr8.maven.aps.modeling.util.Index;
import com.inteligr8.maven.aps.modeling.util.ModelUtil;
/**
* @author brian@inteligr8.com
*/
public class ApsResourceJsonTranslator implements ApsFileTranslator {
private final Logger logger = LoggerFactory.getLogger(this.getClass());
private final Index<Long, String> apsResourceIndex;
/**
* This constructor initializes the default translator.
*
* @param apsResourceIndex A map of resource IDs to resource names as defined in the APS Service.
*/
public ApsResourceJsonTranslator(Index<Long, String> apsResourceIndex) {
this.apsResourceIndex = apsResourceIndex;
}
@Override
public void translateFile(File file, String formName, Long resourceId) throws IOException {
this.logger.debug("Translating JSON file: {}", file);
boolean changed = false;
ObjectNode jsonDescriptor = ModelUtil.getInstance().readJson(file, ObjectNode.class);
JsonNode jsonResourceId = jsonDescriptor.get("resourceId");
if (jsonResourceId == null || jsonResourceId.isNull()) {
this.logger.debug("The resource has no ID to translate");
return;
}
this.logger.trace("Found ID {} in the '{}' APS resource descriptor", jsonResourceId, formName);
Long apsResourceId = this.apsResourceIndex.getFirstKey(formName);
if (apsResourceId == null) {
this.logger.debug("The resource '{}' does not exist in APS; leaving unchanged", formName);
} else if (!resourceId.equals(apsResourceId)) {
this.logger.debug("The resource '{}' exists in APS with ID {}; changing descriptor", formName, apsResourceId);
jsonDescriptor.put("resourceId", apsResourceId);
changed = true;
} else {
this.logger.trace("The resource '{}' ID does not change; leaving unchanged", formName, apsResourceId);
}
if (changed)
ModelUtil.getInstance().writeJson(jsonDescriptor, file, false);
}
}

View File

@@ -21,7 +21,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.inteligr8.activiti.model.ResultList;
import com.inteligr8.alfresco.activiti.ApsPublicRestApi;
import com.inteligr8.alfresco.activiti.ApsProtectedRestApi;
import com.inteligr8.alfresco.activiti.model.BaseTemplateLight;
import com.inteligr8.alfresco.activiti.model.Tenant;
import com.inteligr8.maven.aps.modeling.crawler.ApsFileTransformer;
@@ -49,13 +49,13 @@ import com.inteligr8.maven.aps.modeling.util.Index;
public class ApsTemplateTranslator implements ApsTemplateCrawlable {
private final Logger logger = LoggerFactory.getLogger(ApsTemplateTranslator.class);
private final ApsPublicRestApi api;
private final ApsProtectedRestApi api;
private boolean indexesBuilt = false;
private Index<Long, String> apsDocumentTemplateIndex;
private Index<Long, String> apsCustomEmailTemplateIndex;
public ApsTemplateTranslator(ApsPublicRestApi api) {
public ApsTemplateTranslator(ApsProtectedRestApi api) {
this.api = api;
}