Skip to content
Snippets Groups Projects
Commit ae80be24 authored by Thomas Schnaak's avatar Thomas Schnaak
Browse files

feat: Added Rest for project description, fix: Typo in Visibility enum

parent cb182d17
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,9 @@ package unipotsdam.gf.modules.journal.model; ...@@ -2,6 +2,9 @@ package unipotsdam.gf.modules.journal.model;
import unipotsdam.gf.modules.assessment.controller.StudentIdentifier; import unipotsdam.gf.modules.assessment.controller.StudentIdentifier;
/**
* Model Class for the learnig journal of the e-portfolio
*/
public class Journal { public class Journal {
long id; long id;
......
package unipotsdam.gf.modules.journal.model;
import unipotsdam.gf.core.management.project.Project;
import unipotsdam.gf.modules.assessment.controller.StudentIdentifier;
import java.util.ArrayList;
import java.util.Map;
/**
* Model class for the project description of the e portfolio
*/
public class ProjectDescription {
long id;
String name;
String description;
Project project;
ArrayList<Map<String,String>> links ;
ArrayList<StudentIdentifier> group;
long timestamp;
public ProjectDescription() {
}
public ProjectDescription(long id, String name, String description, Project project, ArrayList<Map<String, String>> links, ArrayList<StudentIdentifier> group, long timestamp) {
this.id = id;
this.name = name;
this.description = description;
this.project = project;
this.links = links;
this.group = group;
this.timestamp = timestamp;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Project getProject() {
return project;
}
public void setProject(Project project) {
this.project = project;
}
public ArrayList<Map<String, String>> getLinks() {
return links;
}
public void setLinks(ArrayList<Map<String, String>> links) {
this.links = links;
}
public ArrayList<StudentIdentifier> getGroup() {
return group;
}
public void setGroup(ArrayList<StudentIdentifier> group) {
this.group = group;
}
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
@Override
public String toString() {
return "ProjectDescription{" +
"id=" + id +
", name='" + name + '\'' +
", description='" + description + '\'' +
", project=" + project +
", links=" + links +
", group=" + group +
", timestamp=" + timestamp +
'}';
}
}
package unipotsdam.gf.modules.journal.model; package unipotsdam.gf.modules.journal.model;
public enum Visibility { All, GROUP, DOZENT, NONE public enum Visibility { ALL, GROUP, DOZENT, NONE
} }
...@@ -54,7 +54,7 @@ public class DummyJournalService implements JournalService { ...@@ -54,7 +54,7 @@ public class DummyJournalService implements JournalService {
}else{ }else{
// if Visibility All, show if Filter allows it // if Visibility All, show if Filter allows it
if (j.getVisibility() == Visibility.All && filter==JournalFilter.ALL){ if (j.getVisibility() == Visibility.ALL && filter==JournalFilter.ALL){
result.add(j); result.add(j);
} }
...@@ -125,7 +125,7 @@ public class DummyJournalService implements JournalService { ...@@ -125,7 +125,7 @@ public class DummyJournalService implements JournalService {
StudentIdentifier studentIdentifier = new StudentIdentifier("0","0"); StudentIdentifier studentIdentifier = new StudentIdentifier("0","0");
StudentIdentifier studentIdentifier2 = new StudentIdentifier("0","1"); StudentIdentifier studentIdentifier2 = new StudentIdentifier("0","1");
Journal j1 = new Journal(0,studentIdentifier,"test", cal.getTimeInMillis() , Visibility.All, "test1"); Journal j1 = new Journal(0,studentIdentifier,"test", cal.getTimeInMillis() , Visibility.ALL, "test1");
Journal j2 = new Journal(1,studentIdentifier,"test2", cal.getTimeInMillis() , Visibility.NONE, "test2"); Journal j2 = new Journal(1,studentIdentifier,"test2", cal.getTimeInMillis() , Visibility.NONE, "test2");
Journal j3 = new Journal(2,studentIdentifier,"test3", cal.getTimeInMillis() , Visibility.GROUP, "test3"); Journal j3 = new Journal(2,studentIdentifier,"test3", cal.getTimeInMillis() , Visibility.GROUP, "test3");
Journal j4 = new Journal(3,studentIdentifier,"test4", cal.getTimeInMillis() , Visibility.DOZENT ,"test4"); Journal j4 = new Journal(3,studentIdentifier,"test4", cal.getTimeInMillis() , Visibility.DOZENT ,"test4");
......
package unipotsdam.gf.modules.journal.service;
import unipotsdam.gf.core.management.project.Project;
import unipotsdam.gf.modules.assessment.controller.StudentIdentifier;
import unipotsdam.gf.modules.journal.model.Journal;
import unipotsdam.gf.modules.journal.model.ProjectDescription;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
public class DummyProjectDescription implements ProjectDescriptionService {
ArrayList<Map<String,String>> links;
ArrayList<StudentIdentifier> group;
ProjectDescription testProject;
public DummyProjectDescription(){
links = new ArrayList();
HashMap<String,String> l1 = new HashMap<>();
HashMap<String,String> l2 = new HashMap<>();
l1.put("Test", "www.test.de");
l2.put("Google", "www.google.de");
links.add(l1);
links.add(l2);
group = new ArrayList<>();
group.add(new StudentIdentifier("0","0"));
group.add(new StudentIdentifier("0","1"));
testProject = new ProjectDescription(0,"Test","Testdesription", new Project(), links, group, new Date().getTime());
}
@Override
public ProjectDescription getProject(String project) {
return testProject;
}
@Override
public void saveProjectText(String text) {
testProject.setDescription(text);
}
@Override
public void saveProjectLinks(String text) {
//convert String to List
//setLinks
}
}
package unipotsdam.gf.modules.journal.service;
import unipotsdam.gf.modules.journal.model.Journal;
import unipotsdam.gf.modules.journal.model.ProjectDescription;
/**
* Service for learning Journal
*/
public interface ProjectDescriptionService {
ProjectDescription getProject(String project);
void saveProjectText(String text);
void saveProjectLinks(String text);
}
package unipotsdam.gf.modules.journal.view;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import sun.security.krb5.internal.MethodData;
import unipotsdam.gf.modules.journal.model.Journal;
import unipotsdam.gf.modules.journal.model.JournalFilter;
import unipotsdam.gf.modules.journal.model.ProjectDescription;
import unipotsdam.gf.modules.journal.service.DummyJournalService;
import unipotsdam.gf.modules.journal.service.DummyProjectDescription;
import unipotsdam.gf.modules.journal.service.JournalService;
import unipotsdam.gf.modules.journal.service.ProjectDescriptionService;
import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import java.lang.invoke.MethodType;
import java.util.ArrayList;
/**
* View for the project description
*
* TODO error handling
*/
@Path("/prejectdescription")
public class ProjectDescriptionView {
Logger log = LoggerFactory.getLogger(ProjectDescriptionView.class);
ProjectDescriptionService descriptionService = new DummyProjectDescription();
//get Description
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("{project}")
public Response getProjectDescription(@PathParam("project") String project){
log.debug(">>> getProjectDescription: " + project);
ProjectDescription result = descriptionService.getProject(project);
log.debug(">>> getProjectDescription");
return Response.ok(result).build();
}
//save Description
@POST
@Consumes(MediaType.TEXT_HTML)
@Path("/saveText/{text}")
public Response saveProjectText(@PathParam("text")String text){
log.debug(">>> saveText: " + text);
descriptionService.saveProjectText(text);
log.debug(">>> saveText");
return Response.ok().build();
}
//save Link
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Path("/saveLinks/{links}")
public Response saveProjectLinks(@PathParam("links")String text){
log.debug(">>> saveLinks: " + text);
descriptionService.saveProjectLinks(text);
log.debug(">>> saveLinks");
return Response.ok().build();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment