Commit 591b93c7 authored by skoulouzis's avatar skoulouzis Committed by GitHub

Merge pull request #32 from skoulouzis/package

Package
parents 50b04be1 b68c5ae0
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
\ No newline at end of file
#-------------------------Dockers-------------------------------------------- #-------------------------Dockers--------------------------------------------
docker run -d --hostname my-rabbit --name some-rabbit rabbitmq:3-management docker run --hostname my-rabbit --name some-rabbit -p 127.0.0.1:15672:15672 -d rabbitmq:3-management
docker run --name mongo-inst -p 127.0.0.1:27017:27017 -d mongo:3 docker run --name mongo-inst -p 127.0.0.1:27017:27017 -d mongo:3
#--------Add admin-----------------
docker exec -t mongo-inst mongo -eval 'db.user.insert({"password":"$2a$10$QdysFgsH0sl6Y4BD84UhGO7yyNfoDPXjjEHkDJ3pX6cRfHDj2Q0BO","roles":["ADMIN"],"username":"admin","accountNonExpired":true,"accountNonLocked":true,"credentialsNonExpired":true,"enabled":true})' localhost/drip
...@@ -21,7 +21,6 @@ import nl.uva.sne.drip.api.service.UserService; ...@@ -21,7 +21,6 @@ import nl.uva.sne.drip.api.service.UserService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Configuration;
import org.springframework.security.access.expression.method.MethodSecurityExpressionHandler;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity; import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity;
import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.builders.HttpSecurity;
...@@ -37,8 +36,8 @@ import org.springframework.security.web.authentication.www.BasicAuthenticationFi ...@@ -37,8 +36,8 @@ import org.springframework.security.web.authentication.www.BasicAuthenticationFi
*/ */
@Configuration @Configuration
@EnableWebSecurity @EnableWebSecurity
//@EnableGlobalMethodSecurity(jsr250Enabled = true, prePostEnabled = true) @EnableGlobalMethodSecurity(jsr250Enabled = true, prePostEnabled = true)
@EnableGlobalMethodSecurity(prePostEnabled = true) //@EnableGlobalMethodSecurity(prePostEnabled = true)
public class SecurityConfig extends WebSecurityConfigurerAdapter { public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired @Autowired
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
*/ */
package nl.uva.sne.drip.api.service; package nl.uva.sne.drip.api.service;
import java.util.List;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import nl.uva.sne.drip.api.dao.UserDao; import nl.uva.sne.drip.api.dao.UserDao;
...@@ -49,7 +50,23 @@ public class UserService implements UserDetailsService { ...@@ -49,7 +50,23 @@ public class UserService implements UserDetailsService {
return null; return null;
} }
public UserDao getDao() { public User save(User user) {
return dao; return dao.save(user);
}
public User findOne(String id) {
return dao.findOne(id);
}
public void delete(User user) {
dao.delete(user);
}
public List<User> findAll() {
return dao.findAll();
}
public void deleteAll() {
dao.deleteAll();
} }
} }
...@@ -15,6 +15,8 @@ ...@@ -15,6 +15,8 @@
*/ */
package nl.uva.sne.drip.api.v0.rest; package nl.uva.sne.drip.api.v0.rest;
import java.util.ArrayList;
import java.util.Collection;
import javax.annotation.security.RolesAllowed; import javax.annotation.security.RolesAllowed;
import nl.uva.sne.drip.api.exception.PasswordNullException; import nl.uva.sne.drip.api.exception.PasswordNullException;
import nl.uva.sne.drip.api.exception.UserExistsException; import nl.uva.sne.drip.api.exception.UserExistsException;
...@@ -62,8 +64,15 @@ public class UserController0 { ...@@ -62,8 +64,15 @@ public class UserController0 {
} }
User user = new User(); User user = new User();
user.setUsername(register.user); user.setUsername(register.user);
user.setAccountNonExpired(true);
user.setAccountNonLocked(true);
user.setEnabled(true);
user.setCredentialsNonExpired(true);
Collection<String> roles = new ArrayList<>();
roles.add("USER");
user.setRoles(roles);
user.setPassword(new BCryptPasswordEncoder().encode(register.pwd)); user.setPassword(new BCryptPasswordEncoder().encode(register.pwd));
service.getDao().save(user); user = service.save(user);
return "Success: " + user.getId(); return "Success: " + user.getId();
} }
} }
...@@ -33,6 +33,7 @@ import org.springframework.web.bind.annotation.RequestMethod; ...@@ -33,6 +33,7 @@ import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import nl.uva.sne.drip.api.service.UserService; import nl.uva.sne.drip.api.service.UserService;
import org.springframework.security.access.prepost.PostAuthorize;
import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestBody;
...@@ -75,7 +76,7 @@ public class UserController { ...@@ -75,7 +76,7 @@ public class UserController {
throw new UserExistsException("Username " + user.getUsername() + " is used"); throw new UserExistsException("Username " + user.getUsername() + " is used");
} }
user.setPassword(new BCryptPasswordEncoder().encode(user.getPassword())); user.setPassword(new BCryptPasswordEncoder().encode(user.getPassword()));
service.getDao().save(user); user = service.save(user);
return user.getId(); return user.getId();
} }
...@@ -101,7 +102,7 @@ public class UserController { ...@@ -101,7 +102,7 @@ public class UserController {
public @ResponseBody public @ResponseBody
User get(@PathVariable("id") String id) { User get(@PathVariable("id") String id) {
try { try {
User user = service.getDao().findOne(id); User user = service.findOne(id);
if (user == null) { if (user == null) {
throw new UserNotFoundException("User " + id + " not found"); throw new UserNotFoundException("User " + id + " not found");
} }
...@@ -123,11 +124,11 @@ public class UserController { ...@@ -123,11 +124,11 @@ public class UserController {
public @ResponseBody public @ResponseBody
String remove(@PathVariable("id") String id) { String remove(@PathVariable("id") String id) {
try { try {
User user = service.getDao().findOne(id); User user = service.findOne(id);
if (user == null) { if (user == null) {
throw new UserNotFoundException("User " + id + " not found"); throw new UserNotFoundException("User " + id + " not found");
} }
service.getDao().delete(user); service.delete(user);
return "Deleted : " + id; return "Deleted : " + id;
} catch (Exception ex) { } catch (Exception ex) {
Logger.getLogger(UserController.class.getName()).log(Level.SEVERE, null, ex); Logger.getLogger(UserController.class.getName()).log(Level.SEVERE, null, ex);
...@@ -145,7 +146,7 @@ public class UserController { ...@@ -145,7 +146,7 @@ public class UserController {
public @ResponseBody public @ResponseBody
List<String> getIds() { List<String> getIds() {
try { try {
List<User> all = service.getDao().findAll(); List<User> all = service.findAll();
List<String> ids = new ArrayList<>(); List<String> ids = new ArrayList<>();
for (User tr : all) { for (User tr : all) {
ids.add(tr.getId()); ids.add(tr.getId());
...@@ -162,7 +163,7 @@ public class UserController { ...@@ -162,7 +163,7 @@ public class UserController {
public @ResponseBody public @ResponseBody
List<User> getAll() { List<User> getAll() {
try { try {
return service.getDao().findAll(); return service.findAll();
} catch (Exception ex) { } catch (Exception ex) {
Logger.getLogger(UserController.class.getName()).log(Level.SEVERE, null, ex); Logger.getLogger(UserController.class.getName()).log(Level.SEVERE, null, ex);
} }
......
message.broker.host=172.17.0.3 message.broker.host=127.0.0.1
db.name=drip db.name=drip
db.username=drip-user db.username=drip-user
db.password=drip-pass db.password=drip-pass
...@@ -11,7 +11,7 @@ import docker_swarm ...@@ -11,7 +11,7 @@ import docker_swarm
import control_agent import control_agent
connection = pika.BlockingConnection(pika.ConnectionParameters(host='172.17.0.3')) connection = pika.BlockingConnection(pika.ConnectionParameters(host='127.0.0.1'))
channel = connection.channel() channel = connection.channel()
channel.queue_declare(queue='deployer_queue') channel.queue_declare(queue='deployer_queue')
...@@ -87,4 +87,4 @@ channel.basic_qos(prefetch_count=1) ...@@ -87,4 +87,4 @@ channel.basic_qos(prefetch_count=1)
channel.basic_consume(on_request, queue='deployer_queue') channel.basic_consume(on_request, queue='deployer_queue')
print(" [x] Awaiting RPC requests") print(" [x] Awaiting RPC requests")
channel.start_consuming() channel.start_consuming()
\ No newline at end of file
...@@ -17,7 +17,7 @@ import json ...@@ -17,7 +17,7 @@ import json
connection = pika.BlockingConnection(pika.ConnectionParameters(host='172.17.0.3')) connection = pika.BlockingConnection(pika.ConnectionParameters(host='127.0.0.1'))
channel = connection.channel() channel = connection.channel()
channel.queue_declare(queue='planner_queue') channel.queue_declare(queue='planner_queue')
......
...@@ -15,11 +15,6 @@ ...@@ -15,11 +15,6 @@
</properties> </properties>
<dependencies> <dependencies>
<dependency>
<groupId>nl.uva.sne.drip</groupId>
<artifactId>drip-commons</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency> <dependency>
<groupId>nl.uva.sne.drip</groupId> <groupId>nl.uva.sne.drip</groupId>
......
...@@ -38,7 +38,6 @@ import java.util.Map; ...@@ -38,7 +38,6 @@ import java.util.Map;
import java.util.Properties; import java.util.Properties;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import nl.uva.sne.drip.commons.types.MessageParameter;
import org.apache.commons.io.FileUtils; import org.apache.commons.io.FileUtils;
import org.apache.commons.io.FilenameUtils; import org.apache.commons.io.FilenameUtils;
import org.json.JSONArray; import org.json.JSONArray;
...@@ -376,12 +375,12 @@ public class Consumer extends DefaultConsumer { ...@@ -376,12 +375,12 @@ public class Consumer extends DefaultConsumer {
private File getCloudConfigurationFile(JSONArray parameters, String tempInputDirPath) throws JSONException { private File getCloudConfigurationFile(JSONArray parameters, String tempInputDirPath) throws JSONException {
for (int i = 0; i < parameters.length(); i++) { for (int i = 0; i < parameters.length(); i++) {
JSONObject param = (JSONObject) parameters.get(i); JSONObject param = (JSONObject) parameters.get(i);
String name = (String) param.get(MessageParameter.NAME); String name = (String) param.get("name");
if (name.equals("ec2.conf") || name.equals("geni.conf")) { if (name.equals("ec2.conf") || name.equals("geni.conf")) {
try { try {
File confFile = new File(tempInputDirPath + File.separator + name); File confFile = new File(tempInputDirPath + File.separator + name);
if (confFile.createNewFile()) { if (confFile.createNewFile()) {
writeValueToFile((String) param.get(MessageParameter.VALUE), confFile); writeValueToFile((String) param.get("value"), confFile);
return confFile; return confFile;
} else { } else {
return null; return null;
...@@ -398,7 +397,7 @@ public class Consumer extends DefaultConsumer { ...@@ -398,7 +397,7 @@ public class Consumer extends DefaultConsumer {
private File getTopology(JSONArray parameters, String tempInputDirPath, int level) throws JSONException, IOException { private File getTopology(JSONArray parameters, String tempInputDirPath, int level) throws JSONException, IOException {
for (int i = 0; i < parameters.length(); i++) { for (int i = 0; i < parameters.length(); i++) {
JSONObject param = (JSONObject) parameters.get(i); JSONObject param = (JSONObject) parameters.get(i);
String name = (String) param.get(MessageParameter.NAME); String name = (String) param.get("name");
if (name.equals("topology")) { if (name.equals("topology")) {
JSONObject attributes = param.getJSONObject("attributes"); JSONObject attributes = param.getJSONObject("attributes");
int fileLevel = Integer.valueOf((String) attributes.get("level")); int fileLevel = Integer.valueOf((String) attributes.get("level"));
...@@ -419,7 +418,7 @@ public class Consumer extends DefaultConsumer { ...@@ -419,7 +418,7 @@ public class Consumer extends DefaultConsumer {
File topologyFile = new File(tempInputDirPath + File.separator + fileName); File topologyFile = new File(tempInputDirPath + File.separator + fileName);
topologyFile.createNewFile(); topologyFile.createNewFile();
String val = (String) param.get(MessageParameter.VALUE); String val = (String) param.get("value");
writeValueToFile(val, topologyFile); writeValueToFile(val, topologyFile);
return topologyFile; return topologyFile;
} }
...@@ -432,13 +431,13 @@ public class Consumer extends DefaultConsumer { ...@@ -432,13 +431,13 @@ public class Consumer extends DefaultConsumer {
Map<String, File> files = new HashMap<>(); Map<String, File> files = new HashMap<>();
for (int i = 0; i < parameters.length(); i++) { for (int i = 0; i < parameters.length(); i++) {
JSONObject param = (JSONObject) parameters.get(i); JSONObject param = (JSONObject) parameters.get(i);
String name = (String) param.get(MessageParameter.NAME); String name = (String) param.get("name");
if (name.equals("certificate")) { if (name.equals("certificate")) {
JSONObject attribute = param.getJSONObject("attributes"); JSONObject attribute = param.getJSONObject("attributes");
String fileName = (String) attribute.get("filename"); String fileName = (String) attribute.get("filename");
File certificate = new File(tempInputDirPath + File.separator + fileName + ".pem"); File certificate = new File(tempInputDirPath + File.separator + fileName + ".pem");
if (certificate.createNewFile()) { if (certificate.createNewFile()) {
writeValueToFile((String) param.get(MessageParameter.VALUE), certificate); writeValueToFile((String) param.get("value"), certificate);
files.put(fileName, certificate); files.put(fileName, certificate);
} }
} }
...@@ -449,9 +448,9 @@ public class Consumer extends DefaultConsumer { ...@@ -449,9 +448,9 @@ public class Consumer extends DefaultConsumer {
private String getLogDirPath(JSONArray parameters, String tempInputDirPath) throws JSONException { private String getLogDirPath(JSONArray parameters, String tempInputDirPath) throws JSONException {
for (int i = 0; i < parameters.length(); i++) { for (int i = 0; i < parameters.length(); i++) {
JSONObject param = (JSONObject) parameters.get(i); JSONObject param = (JSONObject) parameters.get(i);
String name = (String) param.get(MessageParameter.NAME); String name = (String) param.get("name");
if (name.equals("logdir")) { if (name.equals("logdir")) {
return (String) param.get(MessageParameter.VALUE); return (String) param.get("value");
} }
} }
return System.getProperty("java.io.tmpdir"); return System.getProperty("java.io.tmpdir");
...@@ -460,9 +459,9 @@ public class Consumer extends DefaultConsumer { ...@@ -460,9 +459,9 @@ public class Consumer extends DefaultConsumer {
private File getSSHKey(JSONArray parameters, String tempInputDirPath) throws JSONException, IOException { private File getSSHKey(JSONArray parameters, String tempInputDirPath) throws JSONException, IOException {
for (int i = 0; i < parameters.length(); i++) { for (int i = 0; i < parameters.length(); i++) {
JSONObject param = (JSONObject) parameters.get(i); JSONObject param = (JSONObject) parameters.get(i);
String name = (String) param.get(MessageParameter.NAME); String name = (String) param.get("name");
if (name.equals("sshkey")) { if (name.equals("sshkey")) {
String sshKeyContent = (String) param.get(MessageParameter.VALUE); String sshKeyContent = (String) param.get("value");
File sshKeyFile = new File(tempInputDirPath + File.separator + "user.pem"); File sshKeyFile = new File(tempInputDirPath + File.separator + "user.pem");
if (sshKeyFile.createNewFile()) { if (sshKeyFile.createNewFile()) {
writeValueToFile(sshKeyContent, sshKeyFile); writeValueToFile(sshKeyContent, sshKeyFile);
...@@ -476,9 +475,9 @@ public class Consumer extends DefaultConsumer { ...@@ -476,9 +475,9 @@ public class Consumer extends DefaultConsumer {
private File getSciptFile(JSONArray parameters, String tempInputDirPath) throws JSONException, IOException { private File getSciptFile(JSONArray parameters, String tempInputDirPath) throws JSONException, IOException {
for (int i = 0; i < parameters.length(); i++) { for (int i = 0; i < parameters.length(); i++) {
JSONObject param = (JSONObject) parameters.get(i); JSONObject param = (JSONObject) parameters.get(i);
String name = (String) param.get(MessageParameter.NAME); String name = (String) param.get("name");
if (name.equals("guiscript")) { if (name.equals("guiscript")) {
String scriptContent = (String) param.get(MessageParameter.VALUE); String scriptContent = (String) param.get("value");
File scriptFile = new File(tempInputDirPath + File.separator + "guiscipt.sh"); File scriptFile = new File(tempInputDirPath + File.separator + "guiscipt.sh");
if (scriptFile.createNewFile()) { if (scriptFile.createNewFile()) {
writeValueToFile(scriptContent, scriptFile); writeValueToFile(scriptContent, scriptFile);
......
...@@ -31,7 +31,7 @@ import java.util.logging.Logger; ...@@ -31,7 +31,7 @@ import java.util.logging.Logger;
public class RPCServer { public class RPCServer {
private static final String RPC_QUEUE_NAME = "provisioner_queue"; private static final String RPC_QUEUE_NAME = "provisioner_queue";
private static final String HOST = "172.17.0.3"; private static final String HOST = "127.0.0.1";
public static void main(String[] argv) { public static void main(String[] argv) {
start(); start();
......
...@@ -13,13 +13,7 @@ ...@@ -13,13 +13,7 @@
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
</properties> </properties>
<dependencies> <dependencies>
<dependency>
<groupId>nl.uva.sne.drip</groupId>
<artifactId>drip-commons</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency> <dependency>
<groupId>com.rabbitmq</groupId> <groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId> <artifactId>amqp-client</artifactId>
......
...@@ -33,8 +33,6 @@ import java.util.List; ...@@ -33,8 +33,6 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import nl.uva.sne.drip.commons.types.MessageParameter;
import nl.uva.sne.drip.commons.types.Message;
import org.json.JSONArray; import org.json.JSONArray;
import org.json.JSONException; import org.json.JSONException;
import org.json.JSONObject; import org.json.JSONObject;
...@@ -77,9 +75,9 @@ public class Consumer extends DefaultConsumer { ...@@ -77,9 +75,9 @@ public class Consumer extends DefaultConsumer {
throw new FileNotFoundException("Could not create output directory: " + tempDir.getAbsolutePath()); throw new FileNotFoundException("Could not create output directory: " + tempDir.getAbsolutePath());
} }
//We need to extact the call parameters form the json message. //We need to extact the call parameters form the json message.
inputFiles = jacksonUnmarshalExample(message); // inputFiles = jacksonUnmarshalExample(message);
//Call the method with the extracted parameters //Call the method with the extracted parameters
List<File> files = panner.plan(inputFiles[0].getAbsolutePath(), inputFiles[1].getAbsolutePath(), tempDir.getAbsolutePath()); // List<File> files = panner.plan(inputFiles[0].getAbsolutePath(), inputFiles[1].getAbsolutePath(), tempDir.getAbsolutePath());
//Here we do the same as above with a different API //Here we do the same as above with a different API
// inputFiles = simpleJsonUnmarshalExample(message); // inputFiles = simpleJsonUnmarshalExample(message);
...@@ -87,7 +85,7 @@ public class Consumer extends DefaultConsumer { ...@@ -87,7 +85,7 @@ public class Consumer extends DefaultConsumer {
// files = panner.plan(inputFiles[0].getAbsolutePath(), inputFiles[1].getAbsolutePath(), tempDir.getAbsolutePath()); // files = panner.plan(inputFiles[0].getAbsolutePath(), inputFiles[1].getAbsolutePath(), tempDir.getAbsolutePath());
//Now we need to put the result of the call to a message and respond //Now we need to put the result of the call to a message and respond
//Example 1 //Example 1
response = jacksonMarshalExample(files); // response = jacksonMarshalExample(files);
//Example 2 //Example 2
// response = simpleJsonMarshalExample(files); // response = simpleJsonMarshalExample(files);
...@@ -102,35 +100,35 @@ public class Consumer extends DefaultConsumer { ...@@ -102,35 +100,35 @@ public class Consumer extends DefaultConsumer {
} }
private File[] jacksonUnmarshalExample(String message) throws IOException { // private File[] jacksonUnmarshalExample(String message) throws IOException {
//Use the Jackson API to convert json to Object // //Use the Jackson API to convert json to Object
File[] files = new File[2]; // File[] files = new File[2];
ObjectMapper mapper = new ObjectMapper(); // ObjectMapper mapper = new ObjectMapper();
Message request = mapper.readValue(message, Message.class); // Message request = mapper.readValue(message, Message.class);
//
List<MessageParameter> params = request.getParameters(); // List<MessageParameter> params = request.getParameters();
//
//Create tmp input files // //Create tmp input files
File inputFile = File.createTempFile("input-", Long.toString(System.nanoTime())); // File inputFile = File.createTempFile("input-", Long.toString(System.nanoTime()));
File exampleFile = File.createTempFile("example-", Long.toString(System.nanoTime())); // File exampleFile = File.createTempFile("example-", Long.toString(System.nanoTime()));
//loop through the parameters in a message to find the input files // //loop through the parameters in a message to find the input files
for (MessageParameter param : params) { // for (MessageParameter param : params) {
if (param.getName().equals("input")) { // if (param.getName().equals("input")) {
try (PrintWriter out = new PrintWriter(inputFile)) { // try (PrintWriter out = new PrintWriter(inputFile)) {
out.print(param.getValue()); // out.print(param.getValue());
} // }
files[0] = inputFile; // files[0] = inputFile;
} // }
if (param.getName().equals("example")) { // if (param.getName().equals("example")) {
try (PrintWriter out = new PrintWriter(exampleFile)) { // try (PrintWriter out = new PrintWriter(exampleFile)) {
out.print(param.getValue()); // out.print(param.getValue());
} // }
files[1] = exampleFile; // files[1] = exampleFile;
} // }
} // }
//Return the array with input files // //Return the array with input files
return files; // return files;
} // }
private File[] simpleJsonUnmarshalExample(String message) throws JSONException, FileNotFoundException, IOException { private File[] simpleJsonUnmarshalExample(String message) throws JSONException, FileNotFoundException, IOException {
//Use the JSONObject API to convert json to Object (Message) //Use the JSONObject API to convert json to Object (Message)
...@@ -141,16 +139,16 @@ public class Consumer extends DefaultConsumer { ...@@ -141,16 +139,16 @@ public class Consumer extends DefaultConsumer {
File exampleFile = File.createTempFile("example-", Long.toString(System.nanoTime())); File exampleFile = File.createTempFile("example-", Long.toString(System.nanoTime()));
for (int i = 0; i < parameters.length(); i++) { for (int i = 0; i < parameters.length(); i++) {
JSONObject param = (JSONObject) parameters.get(i); JSONObject param = (JSONObject) parameters.get(i);
String name = (String) param.get(MessageParameter.NAME); String name = (String) param.get("name");
if (name.equals("input")) { if (name.equals("input")) {
try (PrintWriter out = new PrintWriter(inputFile)) { try (PrintWriter out = new PrintWriter(inputFile)) {
out.print(param.get(MessageParameter.VALUE)); out.print(param.get("value"));
} }
files[0] = inputFile; files[0] = inputFile;
} }
if (name.equals("example")) { if (name.equals("example")) {
try (PrintWriter out = new PrintWriter(exampleFile)) { try (PrintWriter out = new PrintWriter(exampleFile)) {
out.print(param.get(MessageParameter.VALUE)); out.print(param.get("value"));
} }
files[1] = exampleFile; files[1] = exampleFile;
} }
...@@ -158,26 +156,26 @@ public class Consumer extends DefaultConsumer { ...@@ -158,26 +156,26 @@ public class Consumer extends DefaultConsumer {
return files; return files;
} }
private String jacksonMarshalExample(List<File> files) throws UnsupportedEncodingException, IOException { // private String jacksonMarshalExample(List<File> files) throws UnsupportedEncodingException, IOException {
//Use the jackson API to convert Object (Message) to json // //Use the jackson API to convert Object (Message) to json
Message responseMessage = new Message(); // Message responseMessage = new Message();
List parameters = new ArrayList(); // List parameters = new ArrayList();
String charset = "UTF-8"; // String charset = "UTF-8";
for (File f : files) { // for (File f : files) {
MessageParameter fileParam = new MessageParameter(); // MessageParameter fileParam = new MessageParameter();
byte[] bytes = Files.readAllBytes(Paths.get(f.getAbsolutePath())); // byte[] bytes = Files.readAllBytes(Paths.get(f.getAbsolutePath()));
fileParam.setValue(new String(bytes, charset)); // fileParam.setValue(new String(bytes, charset));
fileParam.setEncoding(charset); // fileParam.setEncoding(charset);
fileParam.setName(f.getName()); // fileParam.setName(f.getName());
parameters.add(fileParam); // parameters.add(fileParam);
} // }
responseMessage.setParameters(parameters); // responseMessage.setParameters(parameters);
//The creationDate is the only filed that has to be there // //The creationDate is the only filed that has to be there
responseMessage.setCreationDate((System.currentTimeMillis())); // responseMessage.setCreationDate((System.currentTimeMillis()));
//
ObjectMapper mapper = new ObjectMapper(); // ObjectMapper mapper = new ObjectMapper();
return mapper.writeValueAsString(responseMessage); // return mapper.writeValueAsString(responseMessage);
} // }
private String simpleJsonMarshalExample(List<File> files) throws JSONException, IOException { private String simpleJsonMarshalExample(List<File> files) throws JSONException, IOException {
//Use the JSONObject API to convert Object (Message) to json //Use the JSONObject API to convert Object (Message) to json
......
...@@ -24,7 +24,6 @@ import java.io.IOException; ...@@ -24,7 +24,6 @@ import java.io.IOException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
import nl.uva.sne.drip.commons.utils.Converter;
/** /**
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment