mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
resolved device type download issue in windows OS and added log support for service clients.
This commit is contained in:
parent
ee0693e2ae
commit
d185b1a331
12
pom.xml
12
pom.xml
@ -51,18 +51,6 @@
|
|||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.wso2.carbon.devicemgt</groupId>
|
|
||||||
<artifactId>org.wso2.carbon.device.mgt.analytics.data.publisher</artifactId>
|
|
||||||
<scope>provided</scope>
|
|
||||||
<exclusions>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>org.apache.axis2.wso2</groupId>
|
|
||||||
<artifactId>axis2-client</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
</exclusions>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.wso2.carbon.devicemgt</groupId>
|
<groupId>org.wso2.carbon.devicemgt</groupId>
|
||||||
<artifactId>org.wso2.carbon.certificate.mgt.core</artifactId>
|
<artifactId>org.wso2.carbon.certificate.mgt.core</artifactId>
|
||||||
|
|||||||
@ -58,15 +58,11 @@ import javax.ws.rs.PathParam;
|
|||||||
import javax.ws.rs.Produces;
|
import javax.ws.rs.Produces;
|
||||||
import javax.ws.rs.QueryParam;
|
import javax.ws.rs.QueryParam;
|
||||||
import javax.ws.rs.core.Response;
|
import javax.ws.rs.core.Response;
|
||||||
import java.io.IOException;
|
|
||||||
import java.nio.ByteBuffer;
|
import java.nio.ByteBuffer;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.security.PrivateKey;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
@ -175,12 +171,11 @@ public class VirtualFireAlarmServiceImpl implements VirtualFireAlarmService {
|
|||||||
String user = APIUtil.getAuthenticatedUser() + "@" + PrivilegedCarbonContext.getThreadLocalCarbonContext()
|
String user = APIUtil.getAuthenticatedUser() + "@" + PrivilegedCarbonContext.getThreadLocalCarbonContext()
|
||||||
.getTenantDomain();
|
.getTenantDomain();
|
||||||
ZipArchive zipFile = createDownloadFile(user, deviceName, sketchType);
|
ZipArchive zipFile = createDownloadFile(user, deviceName, sketchType);
|
||||||
Response.ResponseBuilder response = Response.ok(FileUtils.readFileToByteArray(zipFile.getZipFile()));
|
Response.ResponseBuilder response = Response.ok(zipFile.getZipFileContent());
|
||||||
response.status(Response.Status.OK);
|
response.status(Response.Status.OK);
|
||||||
response.type("application/zip");
|
response.type("application/zip");
|
||||||
response.header("Content-Disposition", "attachment; filename=\"" + zipFile.getFileName() + "\"");
|
response.header("Content-Disposition", "attachment; filename=\"" + zipFile.getFileName() + "\"");
|
||||||
Response resp = response.build();
|
Response resp = response.build();
|
||||||
zipFile.getZipFile().delete();
|
|
||||||
return resp;
|
return resp;
|
||||||
} catch (IllegalArgumentException ex) {
|
} catch (IllegalArgumentException ex) {
|
||||||
return Response.status(400).entity(ex.getMessage()).build();//bad request
|
return Response.status(400).entity(ex.getMessage()).build();//bad request
|
||||||
@ -193,9 +188,6 @@ public class VirtualFireAlarmServiceImpl implements VirtualFireAlarmService {
|
|||||||
} catch (APIManagerException ex) {
|
} catch (APIManagerException ex) {
|
||||||
log.error(ex.getMessage(), ex);
|
log.error(ex.getMessage(), ex);
|
||||||
return Response.status(500).entity(ex.getMessage()).build();
|
return Response.status(500).entity(ex.getMessage()).build();
|
||||||
} catch (IOException ex) {
|
|
||||||
log.error(ex.getMessage(), ex);
|
|
||||||
return Response.status(500).entity(ex.getMessage()).build();
|
|
||||||
} catch (UserStoreException ex) {
|
} catch (UserStoreException ex) {
|
||||||
log.error(ex.getMessage(), ex);
|
log.error(ex.getMessage(), ex);
|
||||||
return Response.status(500).entity(ex.getMessage()).build();
|
return Response.status(500).entity(ex.getMessage()).build();
|
||||||
|
|||||||
@ -18,23 +18,23 @@
|
|||||||
|
|
||||||
package org.wso2.carbon.device.mgt.iot.virtualfirealarm.service.impl.util;
|
package org.wso2.carbon.device.mgt.iot.virtualfirealarm.service.impl.util;
|
||||||
|
|
||||||
import java.io.File;
|
import java.util.zip.ZipOutputStream;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This is an utility class to hold zip files.
|
* This is an utility class to hold zip files.
|
||||||
*/
|
*/
|
||||||
public class ZipArchive {
|
public class ZipArchive {
|
||||||
|
|
||||||
private File zipFile = null;
|
private byte[] zipFileContent = null;
|
||||||
private String fileName = null;
|
private String fileName = null;
|
||||||
|
|
||||||
public ZipArchive(String fileName, File zipFile) {
|
public ZipArchive(String fileName, byte[] zipFile) {
|
||||||
this.fileName = fileName;
|
this.fileName = fileName;
|
||||||
this.zipFile = zipFile;
|
this.zipFileContent = zipFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
public File getZipFile() {
|
public byte[] getZipFileContent() {
|
||||||
return zipFile;
|
return zipFileContent;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getFileName() {
|
public String getFileName() {
|
||||||
|
|||||||
@ -19,7 +19,6 @@
|
|||||||
package org.wso2.carbon.device.mgt.iot.virtualfirealarm.service.impl.util;
|
package org.wso2.carbon.device.mgt.iot.virtualfirealarm.service.impl.util;
|
||||||
|
|
||||||
import org.apache.commons.codec.binary.Base64;
|
import org.apache.commons.codec.binary.Base64;
|
||||||
import org.apache.commons.io.FileUtils;
|
|
||||||
import org.apache.commons.io.IOUtils;
|
import org.apache.commons.io.IOUtils;
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
@ -33,14 +32,12 @@ import org.wso2.carbon.device.mgt.common.configuration.mgt.PlatformConfiguration
|
|||||||
import org.wso2.carbon.device.mgt.iot.virtualfirealarm.service.impl.xmpp.XmppConfig;
|
import org.wso2.carbon.device.mgt.iot.virtualfirealarm.service.impl.xmpp.XmppConfig;
|
||||||
import org.wso2.carbon.utils.CarbonUtils;
|
import org.wso2.carbon.utils.CarbonUtils;
|
||||||
|
|
||||||
import java.io.BufferedInputStream;
|
|
||||||
import java.io.BufferedOutputStream;
|
import java.io.BufferedOutputStream;
|
||||||
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileInputStream;
|
import java.io.FileInputStream;
|
||||||
import java.io.FileOutputStream;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.OutputStream;
|
|
||||||
import java.net.SocketException;
|
import java.net.SocketException;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@ -59,24 +56,18 @@ import java.util.zip.ZipOutputStream;
|
|||||||
public class ZipUtil {
|
public class ZipUtil {
|
||||||
|
|
||||||
private static final Log log = LogFactory.getLog(ZipUtil.class);
|
private static final Log log = LogFactory.getLog(ZipUtil.class);
|
||||||
private static final String HTTPS_PORT_PROPERTY = "httpsPort";
|
|
||||||
private static final String HTTP_PORT_PROPERTY = "httpPort";
|
|
||||||
|
|
||||||
private static final String LOCALHOST = "localhost";
|
private static final String LOCALHOST = "localhost";
|
||||||
private static final String HTTPS_PROTOCOL_URL = "https://${iot.gateway.host}:${iot.gateway.https.port}";
|
private static final String HTTPS_PROTOCOL_URL = "https://${iot.gateway.host}:${iot.gateway.https.port}";
|
||||||
private static final String HTTP_PROTOCOL_URL = "http://${iot.gateway.host}:${iot.gateway.http.port}";
|
private static final String HTTP_PROTOCOL_URL = "http://${iot.gateway.host}:${iot.gateway.http.port}";
|
||||||
private static final String CONFIG_TYPE = "general";
|
private static final String CONFIG_TYPE = "general";
|
||||||
private static final String DEFAULT_MQTT_ENDPOINT = "tcp://${mqtt.broker.host}:${mqtt.broker.port}";
|
private static final String DEFAULT_MQTT_ENDPOINT = "tcp://${mqtt.broker.host}:${mqtt.broker.port}";
|
||||||
public static final String HOST_NAME = "HostName";
|
|
||||||
|
|
||||||
public ZipArchive createZipFile(String owner, String deviceType, String deviceId, String deviceName,
|
public ZipArchive createZipFile(String owner, String deviceType, String deviceId, String deviceName,
|
||||||
String apiApplicationKey, String token, String refreshToken)
|
String apiApplicationKey, String token, String refreshToken)
|
||||||
throws DeviceManagementException {
|
throws DeviceManagementException {
|
||||||
|
|
||||||
String sketchFolder = "repository" + File.separator + "resources" + File.separator + "sketches";
|
String sketchFolder = "repository" + File.separator + "resources" + File.separator + "sketches";
|
||||||
String archivesPath =
|
|
||||||
CarbonUtils.getCarbonHome() + File.separator + sketchFolder + File.separator + "archives" +
|
|
||||||
File.separator + deviceId;
|
|
||||||
String templateSketchPath = sketchFolder + File.separator + deviceType;
|
String templateSketchPath = sketchFolder + File.separator + deviceType;
|
||||||
String iotServerIP;
|
String iotServerIP;
|
||||||
|
|
||||||
@ -141,7 +132,7 @@ public class ZipUtil {
|
|||||||
? "" : XmppConfig.getInstance().getJid());
|
? "" : XmppConfig.getInstance().getJid());
|
||||||
|
|
||||||
ZipArchive zipFile;
|
ZipArchive zipFile;
|
||||||
zipFile = getSketchArchive(archivesPath, templateSketchPath, contextParams, deviceName);
|
zipFile = getSketchArchive(templateSketchPath, contextParams, deviceName);
|
||||||
return zipFile;
|
return zipFile;
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new DeviceManagementException("Zip File Creation Failed", e);
|
throw new DeviceManagementException("Zip File Creation Failed", e);
|
||||||
@ -159,7 +150,7 @@ public class ZipUtil {
|
|||||||
return Base64.encodeBase64String(stringToEncode.getBytes());
|
return Base64.encodeBase64String(stringToEncode.getBytes());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getServerUrl() {
|
private static String getServerUrl() {
|
||||||
try {
|
try {
|
||||||
return org.apache.axis2.util.Utils.getIpAddress();
|
return org.apache.axis2.util.Utils.getIpAddress();
|
||||||
} catch (SocketException e) {
|
} catch (SocketException e) {
|
||||||
@ -168,33 +159,27 @@ public class ZipUtil {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ZipArchive getSketchArchive(String archivesPath, String templateSketchPath, Map contextParams
|
private ZipArchive getSketchArchive(String templateSketchPath, Map contextParams
|
||||||
, String zipFileName)
|
, String zipFileName)
|
||||||
throws DeviceManagementException, IOException {
|
throws DeviceManagementException, IOException {
|
||||||
String sketchPath = CarbonUtils.getCarbonHome() + File.separator + templateSketchPath;
|
String sketchPath = CarbonUtils.getCarbonHome() + File.separator + templateSketchPath;
|
||||||
FileUtils.deleteDirectory(new File(archivesPath));//clear directory
|
|
||||||
FileUtils.deleteDirectory(new File(archivesPath + ".zip"));//clear zip
|
|
||||||
if (!new File(archivesPath).mkdirs()) { //new dir
|
|
||||||
String message = "Could not create directory at path: " + archivesPath;
|
|
||||||
log.error(message);
|
|
||||||
throw new DeviceManagementException(message);
|
|
||||||
}
|
|
||||||
zipFileName = zipFileName + ".zip";
|
zipFileName = zipFileName + ".zip";
|
||||||
try {
|
try {
|
||||||
Map<String, List<String>> properties = getProperties(sketchPath + File.separator + "sketch" + ".properties");
|
Map<String, List<String>> properties = getProperties(sketchPath + File.separator + "sketch" + ".properties");
|
||||||
List<String> templateFiles = properties.get("templates");
|
List<String> templateFiles = properties.get("templates");
|
||||||
|
List<TemplateFile> processTemplateFiles = new ArrayList<>();
|
||||||
|
|
||||||
for (String templateFile : templateFiles) {
|
for (String templateFile : templateFiles) {
|
||||||
parseTemplate(templateSketchPath + File.separator + templateFile, archivesPath + File.separator + templateFile,
|
TemplateFile tFile = new TemplateFile();
|
||||||
contextParams);
|
tFile.setContent(parseTemplate(templateSketchPath + File.separator + templateFile, contextParams));
|
||||||
|
tFile.setFileName(templateFile);
|
||||||
|
processTemplateFiles.add(tFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
templateFiles.add("sketch.properties"); // ommit copying the props file
|
templateFiles.add("sketch.properties"); // ommit copying the props file
|
||||||
copyFolder(new File(sketchPath), new File(archivesPath), templateFiles);
|
|
||||||
createZipArchive(archivesPath);
|
byte[] zip = createZipArchive(templateSketchPath, processTemplateFiles);
|
||||||
FileUtils.deleteDirectory(new File(archivesPath));
|
return new ZipArchive(zipFileName, zip);
|
||||||
File zip = new File(archivesPath + ".zip");
|
|
||||||
return new org.wso2.carbon.device.mgt.iot.virtualfirealarm.service.impl.util.ZipArchive(zipFileName, zip);
|
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
throw new DeviceManagementException(
|
throw new DeviceManagementException(
|
||||||
"Error occurred when trying to read property " + "file sketch.properties", ex);
|
"Error occurred when trying to read property " + "file sketch.properties", ex);
|
||||||
@ -206,9 +191,7 @@ public class ZipUtil {
|
|||||||
InputStream input = null;
|
InputStream input = null;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
input = new FileInputStream(propertyFilePath);
|
input = new FileInputStream(propertyFilePath);
|
||||||
|
|
||||||
// load a properties file
|
// load a properties file
|
||||||
prop.load(input);
|
prop.load(input);
|
||||||
Map<String, List<String>> properties = new HashMap<String, List<String>>();
|
Map<String, List<String>> properties = new HashMap<String, List<String>>();
|
||||||
@ -235,148 +218,124 @@ public class ZipUtil {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void parseTemplate(String srcFile, String dstFile, Map contextParams) throws IOException {
|
private static String parseTemplate(String srcFile, Map contextParams) throws IOException {
|
||||||
//read from file
|
//read from file
|
||||||
FileInputStream inputStream = null;
|
FileInputStream inputStream = null;
|
||||||
FileOutputStream outputStream = null;
|
|
||||||
try {
|
try {
|
||||||
inputStream = new FileInputStream(srcFile);
|
inputStream = new FileInputStream(srcFile);
|
||||||
outputStream = new FileOutputStream(dstFile);
|
|
||||||
String content = IOUtils.toString(inputStream, StandardCharsets.UTF_8.toString());
|
String content = IOUtils.toString(inputStream, StandardCharsets.UTF_8.toString());
|
||||||
Iterator iterator = contextParams.entrySet().iterator();
|
Iterator iterator = contextParams.entrySet().iterator();
|
||||||
while (iterator.hasNext()) {
|
while (iterator.hasNext()) {
|
||||||
Map.Entry mapEntry = (Map.Entry) iterator.next();
|
Map.Entry mapEntry = (Map.Entry) iterator.next();
|
||||||
content = content.replaceAll("\\$\\{" + mapEntry.getKey() + "\\}", mapEntry.getValue().toString());
|
content = content.replaceAll("\\$\\{" + mapEntry.getKey() + "\\}", mapEntry.getValue().toString());
|
||||||
}
|
}
|
||||||
IOUtils.write(content, outputStream, StandardCharsets.UTF_8.toString());
|
return content;
|
||||||
} finally {
|
} finally {
|
||||||
if (inputStream != null) {
|
if (inputStream != null) {
|
||||||
inputStream.close();
|
inputStream.close();
|
||||||
}
|
}
|
||||||
if (outputStream != null) {
|
|
||||||
outputStream.close();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void copyFolder(File src, File dest, List<String> excludeFileNames) throws IOException {
|
private static byte[] createZipArchive(String srcFolder, List<TemplateFile> processTemplateFiles) throws IOException {
|
||||||
|
|
||||||
if (src.isDirectory()) {
|
|
||||||
//if directory not exists, create it
|
|
||||||
if (!dest.exists() && !dest.mkdirs()) {
|
|
||||||
String message = "Could not create directory at path: " + dest;
|
|
||||||
log.error(message);
|
|
||||||
throw new IOException(message);
|
|
||||||
}
|
|
||||||
//list all the directory contents
|
|
||||||
String files[] = src.list();
|
|
||||||
|
|
||||||
if (files == null) {
|
|
||||||
log.warn("There are no files insides the directory " + src.getAbsolutePath());
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (String file : files) {
|
|
||||||
//construct the src and dest file structure
|
|
||||||
File srcFile = new File(src, file);
|
|
||||||
File destFile = new File(dest, file);
|
|
||||||
//recursive copy
|
|
||||||
copyFolder(srcFile, destFile, excludeFileNames);
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
for (String fileName : excludeFileNames) {
|
|
||||||
if (src.getName().equals(fileName)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//if file, then copy it
|
|
||||||
//Use bytes stream to support all file types
|
|
||||||
InputStream in = null;
|
|
||||||
OutputStream out = null;
|
|
||||||
|
|
||||||
try {
|
|
||||||
in = new FileInputStream(src);
|
|
||||||
out = new FileOutputStream(dest);
|
|
||||||
|
|
||||||
byte[] buffer = new byte[1024];
|
|
||||||
|
|
||||||
int length;
|
|
||||||
//copy the file content in bytes
|
|
||||||
while ((length = in.read(buffer)) > 0) {
|
|
||||||
out.write(buffer, 0, length);
|
|
||||||
}
|
|
||||||
} finally {
|
|
||||||
if (in != null) {
|
|
||||||
in.close();
|
|
||||||
}
|
|
||||||
if (out != null) {
|
|
||||||
out.close();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static boolean createZipArchive(String srcFolder) throws IOException {
|
|
||||||
BufferedInputStream origin = null;
|
|
||||||
ZipOutputStream out = null;
|
ZipOutputStream out = null;
|
||||||
|
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||||
try {
|
try {
|
||||||
final int BUFFER = 2048;
|
out = new ZipOutputStream(new BufferedOutputStream(baos));
|
||||||
FileOutputStream dest = new FileOutputStream(new File(srcFolder + ".zip"));
|
|
||||||
out = new ZipOutputStream(new BufferedOutputStream(dest));
|
|
||||||
byte data[] = new byte[BUFFER];
|
|
||||||
File subDir = new File(srcFolder);
|
File subDir = new File(srcFolder);
|
||||||
String subdirList[] = subDir.list();
|
String subdirList[] = subDir.list();
|
||||||
if (subdirList == null) {
|
if (subdirList == null) {
|
||||||
log.warn("The sub directory " + subDir.getAbsolutePath() + " is empty");
|
log.warn("The sub directory " + subDir.getAbsolutePath() + " is empty");
|
||||||
return false;
|
return null;
|
||||||
}
|
}
|
||||||
for (String sd : subdirList) {
|
for (String sd : subdirList) {
|
||||||
// get a list of files from current directory
|
// get a list of files from current directory
|
||||||
File f = new File(srcFolder + "/" + sd);
|
File f = new File(srcFolder + File.separator + sd);
|
||||||
if (f.isDirectory()) {
|
if (f.isDirectory()) {
|
||||||
String files[] = f.list();
|
String files[] = f.list();
|
||||||
|
|
||||||
if (files == null) {
|
if (files == null) {
|
||||||
log.warn("The current directory " + f.getAbsolutePath() + " is empty. Has no files");
|
log.warn("The current directory " + f.getAbsolutePath() + " is empty. Has no files");
|
||||||
return false;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < files.length; i++) {
|
for (int i = 0; i < files.length; i++) {
|
||||||
FileInputStream fi = new FileInputStream(srcFolder + "/" + sd + "/" + files[i]);
|
boolean fileAdded = false;
|
||||||
origin = new BufferedInputStream(fi, BUFFER);
|
for (TemplateFile templateFile : processTemplateFiles) {
|
||||||
ZipEntry entry = new ZipEntry(sd + "/" + files[i]);
|
if (files[i].equals(templateFile.getFileName())) {
|
||||||
out.putNextEntry(entry);
|
ZipEntry entry = new ZipEntry(templateFile.getFileName());
|
||||||
int count;
|
out.putNextEntry(entry);
|
||||||
while ((count = origin.read(data, 0, BUFFER)) != -1) {
|
out.write(templateFile.getContent().getBytes());
|
||||||
out.write(data, 0, count);
|
out.closeEntry();
|
||||||
out.flush();
|
fileAdded = true;
|
||||||
|
break;
|
||||||
|
} else if (f.getName().equals("sketch.properties")) {
|
||||||
|
fileAdded = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
if (fileAdded) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
ZipEntry entry = new ZipEntry(sd + File.separator + files[i]);
|
||||||
|
out.putNextEntry(entry);
|
||||||
|
out.write(IOUtils.toByteArray(new FileInputStream(srcFolder + File.separator + sd
|
||||||
|
+ File.separator + files[i])));
|
||||||
|
out.closeEntry();
|
||||||
|
|
||||||
}
|
}
|
||||||
} else //it is just a file
|
} else //it is just a file
|
||||||
{
|
{
|
||||||
FileInputStream fi = new FileInputStream(f);
|
boolean fileAdded = false;
|
||||||
origin = new BufferedInputStream(fi, BUFFER);
|
for (TemplateFile templateFile : processTemplateFiles) {
|
||||||
|
if (f.getName().equals(templateFile.getFileName())) {
|
||||||
|
ZipEntry entry = new ZipEntry(templateFile.getFileName());
|
||||||
|
out.putNextEntry(entry);
|
||||||
|
out.write(templateFile.getContent().getBytes());
|
||||||
|
out.closeEntry();
|
||||||
|
fileAdded = true;
|
||||||
|
break;
|
||||||
|
} else if (f.getName().equals("sketch.properties")) {
|
||||||
|
fileAdded = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (fileAdded) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
ZipEntry entry = new ZipEntry(sd);
|
ZipEntry entry = new ZipEntry(sd);
|
||||||
out.putNextEntry(entry);
|
out.putNextEntry(entry);
|
||||||
int count;
|
out.write(IOUtils.toByteArray(new FileInputStream(f)));
|
||||||
while ((count = origin.read(data, 0, BUFFER)) != -1) {
|
out.closeEntry();
|
||||||
out.write(data, 0, count);
|
|
||||||
out.flush();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
out.flush();
|
out.finish();
|
||||||
} finally {
|
} finally {
|
||||||
if (origin != null) {
|
|
||||||
origin.close();
|
|
||||||
}
|
|
||||||
if (out != null) {
|
if (out != null) {
|
||||||
out.close();
|
out.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return baos.toByteArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
public class TemplateFile {
|
||||||
|
private String content;
|
||||||
|
private String fileName;
|
||||||
|
|
||||||
|
public String getContent() {
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setContent(String content) {
|
||||||
|
this.content = content;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFileName() {
|
||||||
|
return fileName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFileName(String fileName) {
|
||||||
|
this.fileName = fileName;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,61 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* WSO2 Inc. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package org.wso2.carbon.device.mgt.iot.virtualfirealarm.service.impl.util.util;
|
|
||||||
|
|
||||||
import org.apache.commons.io.FileUtils;
|
|
||||||
import org.apache.commons.io.IOUtils;
|
|
||||||
import org.apache.commons.logging.Log;
|
|
||||||
import org.apache.commons.logging.LogFactory;
|
|
||||||
import org.wso2.carbon.base.ServerConfiguration;
|
|
||||||
import org.wso2.carbon.device.mgt.common.DeviceManagementException;
|
|
||||||
import org.wso2.carbon.device.mgt.iot.virtualfirealarm.service.impl.util.ZipArchive;
|
|
||||||
import org.wso2.carbon.utils.CarbonUtils;
|
|
||||||
import org.wso2.carbon.utils.NetworkUtils;
|
|
||||||
|
|
||||||
import java.io.BufferedInputStream;
|
|
||||||
import java.io.BufferedOutputStream;
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.FileInputStream;
|
|
||||||
import java.io.FileOutputStream;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.io.OutputStream;
|
|
||||||
import java.net.SocketException;
|
|
||||||
import java.nio.charset.StandardCharsets;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Iterator;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Properties;
|
|
||||||
import java.util.zip.ZipEntry;
|
|
||||||
import java.util.zip.ZipOutputStream;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides utility methods required by the device type plugins.
|
|
||||||
*/
|
|
||||||
public class Utils {
|
|
||||||
|
|
||||||
public static final String HOST_NAME = "HostName";
|
|
||||||
private static final Log log = LogFactory.getLog(Utils.class);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue
Block a user