use of fi.otavanopisto.pyramus.dao.students.StudentContactLogEntryCommentDAO in project pyramus by otavanopisto.
the class ManageStudentContactEntriesViewController method process.
/**
* Processes the page request.
*
* In parameters
* - person
*
* Page parameters
* - person - Person object
* - contactEntries - List of StudentContactLogEntry objects
*
* @param pageRequestContext pageRequestContext
*/
public void process(PageRequestContext pageRequestContext) {
StudentDAO studentDAO = DAOFactory.getInstance().getStudentDAO();
PersonDAO personDAO = DAOFactory.getInstance().getPersonDAO();
StudentContactLogEntryDAO logEntryDAO = DAOFactory.getInstance().getStudentContactLogEntryDAO();
StudentContactLogEntryCommentDAO entryCommentDAO = DAOFactory.getInstance().getStudentContactLogEntryCommentDAO();
Long personId = pageRequestContext.getLong("person");
Person person = personDAO.findById(personId);
pageRequestContext.getRequest().setAttribute("person", person);
List<Student> students = studentDAO.listByPerson(person);
Collections.sort(students, new Comparator<Student>() {
@Override
public int compare(Student o1, Student o2) {
/**
* Ordering study programmes as follows
* 1. studies that have start date but no end date (ongoing)
* 2. studies that have no start nor end date
* 3. studies that have ended
* 4. studies that are archived
*/
int o1class = (o1.getArchived()) ? 4 : (o1.getStudyStartDate() != null && o1.getStudyEndDate() == null) ? 1 : (o1.getStudyStartDate() == null && o1.getStudyEndDate() == null) ? 2 : (o1.getStudyEndDate() != null) ? 3 : 5;
int o2class = (o2.getArchived()) ? 4 : (o2.getStudyStartDate() != null && o2.getStudyEndDate() == null) ? 1 : (o2.getStudyStartDate() == null && o2.getStudyEndDate() == null) ? 2 : (o2.getStudyEndDate() != null) ? 3 : 5;
if (o1class == o2class) {
// classes are the same, we try to do last comparison from the start dates
return ((o1.getStudyStartDate() != null) && (o2.getStudyStartDate() != null)) ? o1.getStudyStartDate().compareTo(o2.getStudyStartDate()) : 0;
} else
return o1class < o2class ? -1 : o1class == o2class ? 0 : 1;
}
});
Map<Long, List<StudentContactLogEntry>> contactEntries = new HashMap<>();
final Map<Long, List<StudentContactLogEntryComment>> contactEntryComments = new HashMap<>();
for (int i = 0; i < students.size(); i++) {
Student student = students.get(i);
List<StudentContactLogEntry> listStudentContactEntries = logEntryDAO.listByStudent(student);
for (int j = 0; j < listStudentContactEntries.size(); j++) {
StudentContactLogEntry entry = listStudentContactEntries.get(j);
List<StudentContactLogEntryComment> listComments = entryCommentDAO.listByEntry(entry);
Collections.sort(listComments, new Comparator<StudentContactLogEntryComment>() {
public int compare(StudentContactLogEntryComment o1, StudentContactLogEntryComment o2) {
Date d1 = o1.getCommentDate();
Date d2 = o2.getCommentDate();
int val = d1 == null ? d2 == null ? 0 : 1 : d2 == null ? -1 : d1.compareTo(d2);
if (val == 0)
return o1.getId().compareTo(o2.getId());
else
return val;
}
});
contactEntryComments.put(entry.getId(), listComments);
}
// Now we can sort entries based on date of entry and/or dates of the comments on the entry
Collections.sort(listStudentContactEntries, new Comparator<StudentContactLogEntry>() {
private Date getDateForEntry(StudentContactLogEntry entry) {
Date d = entry.getEntryDate();
List<StudentContactLogEntryComment> comments = contactEntryComments.get(entry.getId());
for (int i = 0; i < comments.size(); i++) {
StudentContactLogEntryComment comment = comments.get(i);
if (d == null) {
d = comment.getCommentDate();
} else {
if (d.before(comment.getCommentDate()))
d = comment.getCommentDate();
}
}
return d;
}
public int compare(StudentContactLogEntry o1, StudentContactLogEntry o2) {
Date d1 = getDateForEntry(o1);
Date d2 = getDateForEntry(o2);
int val = d1 == null ? d2 == null ? 0 : 1 : d2 == null ? -1 : d2.compareTo(d1);
if (val == 0)
return o2.getId().compareTo(o1.getId());
else
return val;
}
});
contactEntries.put(student.getId(), listStudentContactEntries);
}
pageRequestContext.getRequest().setAttribute("students", students);
pageRequestContext.getRequest().setAttribute("contactEntries", contactEntries);
pageRequestContext.getRequest().setAttribute("contactEntryComments", contactEntryComments);
pageRequestContext.setIncludeJSP("/templates/students/managestudentcontactentries.jsp");
}
use of fi.otavanopisto.pyramus.dao.students.StudentContactLogEntryCommentDAO in project pyramus by otavanopisto.
the class ArchiveContactEntryCommentJSONRequestController method process.
public void process(JSONRequestContext requestContext) {
StudentContactLogEntryCommentDAO entryCommentDAO = DAOFactory.getInstance().getStudentContactLogEntryCommentDAO();
Long commentId = requestContext.getLong("commentId");
StudentContactLogEntryComment comment = entryCommentDAO.findById(commentId);
entryCommentDAO.archive(comment);
}
use of fi.otavanopisto.pyramus.dao.students.StudentContactLogEntryCommentDAO in project pyramus by otavanopisto.
the class CreateContactEntryCommentJSONRequestController method process.
/**
* Method to process JSON requests.
*
* In parameters
* - entryId - Id to identify the entry where the comment is being bind into
* - commentText - Textual message or description about the contact
* - commentCreatorName - Name of the person who made the contact
* - commentDate - Date of the entry
*
* Page parameters
* - results Map including
* * id - New comment id
* * entryId - Entry id
* * creatorName - Comment creator
* * timestamp - Comment date
* * text - Comment message
*
* @param jsonRequestContext JSON request context
*/
public void process(JSONRequestContext jsonRequestContext) {
StudentContactLogEntryDAO logEntryDAO = DAOFactory.getInstance().getStudentContactLogEntryDAO();
StudentContactLogEntryCommentDAO entryCommentDAO = DAOFactory.getInstance().getStudentContactLogEntryCommentDAO();
try {
Long entryId = jsonRequestContext.getLong("entryId");
StudentContactLogEntry entry = logEntryDAO.findById(entryId);
String commentText = jsonRequestContext.getRequest().getParameter("commentText");
String commentCreatorName = jsonRequestContext.getRequest().getParameter("commentCreatorName");
Date commentDate = new Date(NumberUtils.createLong(jsonRequestContext.getRequest().getParameter("commentDate")));
StudentContactLogEntryComment comment = entryCommentDAO.create(entry, commentText, commentDate, commentCreatorName);
Map<String, Object> info = new HashMap<>();
info.put("id", comment.getId());
info.put("creatorName", comment.getCreatorName());
info.put("timestamp", comment.getCommentDate().getTime());
info.put("text", comment.getText());
info.put("entryId", entryId);
jsonRequestContext.addResponseParameter("results", info);
} catch (Exception e) {
throw new SmvcRuntimeException(e);
}
}
use of fi.otavanopisto.pyramus.dao.students.StudentContactLogEntryCommentDAO in project pyramus by otavanopisto.
the class EditContactEntryCommentJSONRequestController method process.
/**
* Method to process JSON requests.
*
* In parameters
* - commentId - Id to identify the comment being modified
* - commentText - Textual message or description about the contact
* - commentCreatorName - Name of the person who made the contact
* - commentDate - Date of the entry
*
* Page parameters
* - results Map including
* * id - Comment id
* * entryId - Entry id
* * creatorName - Comment creator
* * timestamp - Comment date
* * text - Comment message
*
* @param jsonRequestContext JSON request context
*/
public void process(JSONRequestContext jsonRequestContext) {
StudentContactLogEntryCommentDAO entryCommentDAO = DAOFactory.getInstance().getStudentContactLogEntryCommentDAO();
try {
Long commentId = jsonRequestContext.getLong("commentId");
StudentContactLogEntryComment comment = entryCommentDAO.findById(commentId);
String commentText = jsonRequestContext.getRequest().getParameter("commentText");
String commentCreatorName = jsonRequestContext.getRequest().getParameter("commentCreatorName");
Date commentDate = new Date(NumberUtils.createLong(jsonRequestContext.getRequest().getParameter("commentDate")));
entryCommentDAO.update(comment, commentText, commentDate, commentCreatorName);
Map<String, Object> info = new HashMap<>();
info.put("id", comment.getId());
info.put("creatorName", comment.getCreatorName());
info.put("timestamp", comment.getCommentDate().getTime());
info.put("text", comment.getText());
info.put("entryId", comment.getEntry().getId());
jsonRequestContext.addResponseParameter("results", info);
} catch (Exception e) {
throw new SmvcRuntimeException(e);
}
}
use of fi.otavanopisto.pyramus.dao.students.StudentContactLogEntryCommentDAO in project pyramus by otavanopisto.
the class GetContactEntryCommentJSONRequestController method process.
/**
* Method to process JSON requests.
*
* In parameters
* - commentId - Long parameter to identify the contact entry comment that is being read
*
* Page parameters
* - results Map including
* * id - Comment id
* * entryId - Entry id
* * creatorName - Comment creator name
* * timestamp - Comment date
* * text - Comment message
*
* @param jsonRequestContext JSON request context
*/
public void process(JSONRequestContext jsonRequestContext) {
StudentContactLogEntryCommentDAO entryCommentDAO = DAOFactory.getInstance().getStudentContactLogEntryCommentDAO();
try {
Long commentId = jsonRequestContext.getLong("commentId");
StudentContactLogEntryComment comment = entryCommentDAO.findById(commentId);
Map<String, Object> info = new HashMap<>();
info.put("id", comment.getId());
info.put("entryId", comment.getEntry().getId());
info.put("creatorName", comment.getCreatorName());
info.put("timestamp", comment.getCommentDate().getTime());
info.put("text", comment.getText());
jsonRequestContext.addResponseParameter("results", info);
} catch (Exception e) {
throw new SmvcRuntimeException(e);
}
}
Aggregations