use of com.remswork.project.alice.model.Project in project classify-system by anverliedoit.
the class ProjectServiceImpl method getProjectList.
@Override
public List<Project> getProjectList() throws GradingFactorException {
final List<Project> projectList = new ArrayList<>();
try {
return new AsyncTask<String, List<Project>, List<Project>>() {
@Override
protected List<Project> doInBackground(String... args) {
try {
String link = "".concat(domain).concat("/").concat(baseUri).concat("/").concat(payload);
URL url = new URL(link);
Gson gson = new Gson();
HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
httpURLConnection.setRequestMethod("GET");
httpURLConnection.setRequestProperty("Content-Type", "application/json");
httpURLConnection.setRequestProperty("Accept", "application/json");
httpURLConnection.connect();
if (httpURLConnection.getResponseCode() == 200) {
InputStream inputStream = httpURLConnection.getInputStream();
String jsonData = "";
int data;
while ((data = inputStream.read()) != -1) {
jsonData += (char) data;
}
JSONArray jsonArray = new JSONArray(jsonData);
for (int ctr = 0; ctr < jsonArray.length(); ctr++) {
projectList.add(gson.fromJson(jsonArray.get(ctr).toString(), Project.class));
}
return projectList;
} else if (httpURLConnection.getResponseCode() == 404) {
InputStream inputStream = httpURLConnection.getInputStream();
String jsonData = "";
int data;
while ((data = inputStream.read()) != -1) {
jsonData += (char) data;
}
Message message = gson.fromJson(jsonData, Message.class);
Log.i("ServiceTAG", "Service : Project");
Log.i("ServiceTAG", "Status : " + message.getStatus());
Log.i("ServiceTAG", "Type : " + message.getType());
Log.i("ServiceTAG", "Message : " + message.getMessage());
return projectList;
} else
throw new GradingFactorException("Server Error");
} catch (GradingFactorException e) {
e.printStackTrace();
return null;
} catch (IOException e) {
e.printStackTrace();
return null;
} catch (JSONException e) {
e.printStackTrace();
return null;
}
}
}.execute((String) null).get();
} catch (InterruptedException e) {
e.printStackTrace();
return null;
} catch (ExecutionException e) {
e.printStackTrace();
return null;
}
}
use of com.remswork.project.alice.model.Project in project classify-system by anverliedoit.
the class ProjectResource method deleteProjectById.
@DELETE
@Path("{projectId}")
public Response deleteProjectById(@PathParam("projectId") long id) {
try {
ProjectResourceLinks resourceLinks = new ProjectResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
Project project = projectService.deleteProjectById(id);
project.addLink(resourceLinks.self(project.getId()));
if (project.get_class() != null)
project.get_class().addLink(classResourceLinks.self(project.get_class().getId()));
return Response.status(Response.Status.OK).entity(project).build();
} catch (GradingFactorException e) {
e.printStackTrace();
Message message = new Message(400, "Bad Request", e.getMessage());
return Response.status(Response.Status.BAD_REQUEST).entity(message).build();
}
}
use of com.remswork.project.alice.model.Project in project classify-system by anverliedoit.
the class ProjectResource method getProjectList.
@GET
public Response getProjectList() {
try {
List<Project> projectList;
ProjectResourceLinks resourceLinks = new ProjectResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
if (classId != 0 && termId != 0)
projectList = projectService.getProjectListByClassId(classId, termId);
else if (classId != 0)
projectList = projectService.getProjectListByClassId(classId);
else if (studentId != 0 && termId != 0)
projectList = projectService.getProjectListByStudentId(studentId, termId);
else if (studentId != 0)
projectList = projectService.getProjectListByStudentId(studentId);
else
projectList = projectService.getProjectList();
for (Project project : projectList) {
project.addLink(resourceLinks.self(project.getId()));
if (project.get_class() != null)
project.get_class().addLink(classResourceLinks.self(project.get_class().getId()));
}
GenericEntity<List<Project>> entity = new GenericEntity<List<Project>>(projectList) {
};
return Response.status(Response.Status.OK).entity(entity).build();
} catch (GradingFactorException e) {
e.printStackTrace();
Message message = new Message(404, "Not Found", e.getMessage());
return Response.status(Response.Status.NOT_FOUND).entity(message).build();
}
}
Aggregations