use of fi.otavanopisto.muikku.plugins.forum.model.ForumThread in project muikku by otavanopisto.
the class ForumRESTService method listThreads.
@GET
@Path("/areas/{AREAID}/threads")
@RESTPermit(handling = Handling.INLINE)
public Response listThreads(@PathParam("AREAID") Long areaId, @QueryParam("firstResult") @DefaultValue("0") Integer firstResult, @QueryParam("maxResults") @DefaultValue("10") Integer maxResults) {
ForumArea forumArea = forumController.getForumArea(areaId);
if (forumArea == null) {
return Response.status(Status.NOT_FOUND).entity("Forum area not found").build();
}
if (!(forumArea instanceof EnvironmentForumArea)) {
logger.severe(String.format("Trying to list non environment forum area (%d) threads from environment endpoint", forumArea.getId()));
return Response.status(Status.BAD_REQUEST).build();
}
if (sessionController.hasEnvironmentPermission(ForumResourcePermissionCollection.FORUM_READ_ENVIRONMENT_MESSAGES)) {
List<ForumThread> threads = forumController.listForumThreads(forumArea, firstResult, maxResults);
List<ForumThreadRESTModel> result = new ArrayList<ForumThreadRESTModel>();
for (ForumThread thread : threads) {
long numReplies = forumController.getThreadReplyCount(thread);
result.add(new ForumThreadRESTModel(thread.getId(), thread.getTitle(), thread.getMessage(), thread.getCreator(), thread.getCreated(), thread.getForumArea().getId(), thread.getSticky(), thread.getLocked(), thread.getUpdated(), numReplies, thread.getLastModified()));
}
return Response.ok(result).build();
} else {
return Response.status(Status.FORBIDDEN).build();
}
}
use of fi.otavanopisto.muikku.plugins.forum.model.ForumThread in project muikku by otavanopisto.
the class WorkspaceForumRESTService method findThread.
@GET
@Path("/workspaces/{WORKSPACEENTITYID}/forumAreas/{AREAID}/threads/{THREADID}")
@RESTPermit(handling = Handling.INLINE)
public Response findThread(@PathParam("WORKSPACEENTITYID") Long workspaceEntityId, @PathParam("AREAID") Long areaId, @PathParam("THREADID") Long threadId) {
WorkspaceEntity workspaceEntity = workspaceEntityController.findWorkspaceEntityById(workspaceEntityId);
if (workspaceEntity == null) {
return Response.status(Status.NOT_FOUND).entity(String.format("Workspace entity %d not found", workspaceEntityId)).build();
}
ForumThread thread = forumController.getForumThread(threadId);
if (thread == null) {
return Response.status(Status.NOT_FOUND).entity("Forum thread not found").build();
}
ForumArea forumArea = thread.getForumArea();
if (!(forumArea instanceof WorkspaceForumArea)) {
logger.severe(String.format("Trying to access forum %d via incorrect REST endpoint", forumArea.getId()));
return Response.status(Status.NOT_FOUND).build();
}
if (!workspaceEntity.getId().equals(((WorkspaceForumArea) forumArea).getWorkspace())) {
return Response.status(Status.NOT_FOUND).entity(String.format("WorkspaceForumArea %d does not belong to workspace entity %d", forumArea.getId(), workspaceEntity.getId())).build();
}
if (sessionController.hasWorkspacePermission(ForumResourcePermissionCollection.FORUM_READ_WORKSPACE_MESSAGES, workspaceEntity)) {
long numReplies = forumController.getThreadReplyCount(thread);
ForumThreadRESTModel result = new ForumThreadRESTModel(thread.getId(), thread.getTitle(), thread.getMessage(), thread.getCreator(), thread.getCreated(), thread.getForumArea().getId(), thread.getSticky(), thread.getLocked(), thread.getUpdated(), numReplies, thread.getLastModified());
return Response.ok(result).build();
} else {
return Response.status(Status.FORBIDDEN).build();
}
}
use of fi.otavanopisto.muikku.plugins.forum.model.ForumThread in project muikku by otavanopisto.
the class ForumController method listLatestForumThreadsFromWorkspace.
public List<ForumThread> listLatestForumThreadsFromWorkspace(WorkspaceEntity workspaceEntity, Integer firstResult, Integer maxResults) {
List<WorkspaceForumArea> workspaceForums = listWorkspaceForumAreas(workspaceEntity);
List<ForumArea> forumAreas = new ArrayList<ForumArea>();
// TODO: This could use some optimization
for (WorkspaceForumArea wf : workspaceForums) {
forumAreas.add(wf);
}
List<ForumThread> threads;
if (!forumAreas.isEmpty())
threads = forumThreadDAO.listLatestOrdered(forumAreas, firstResult, maxResults);
else
threads = new ArrayList<ForumThread>();
return threads;
}
use of fi.otavanopisto.muikku.plugins.forum.model.ForumThread in project muikku by otavanopisto.
the class ForumThreadDAO method countByArea.
public Long countByArea(ForumArea area) {
EntityManager entityManager = getEntityManager();
CriteriaBuilder criteriaBuilder = entityManager.getCriteriaBuilder();
CriteriaQuery<Long> criteria = criteriaBuilder.createQuery(Long.class);
Root<ForumThread> root = criteria.from(ForumThread.class);
criteria.select(criteriaBuilder.count(root));
criteria.where(criteriaBuilder.and(criteriaBuilder.equal(root.get(ForumThread_.forumArea), area), criteriaBuilder.equal(root.get(ForumThread_.archived), Boolean.FALSE)));
return entityManager.createQuery(criteria).getSingleResult();
}
use of fi.otavanopisto.muikku.plugins.forum.model.ForumThread in project muikku by otavanopisto.
the class ForumRESTService method listLatestThreads.
@GET
@Path("/latest")
@RESTPermit(handling = Handling.INLINE)
public Response listLatestThreads(@QueryParam("firstResult") @DefaultValue("0") Integer firstResult, @QueryParam("maxResults") @DefaultValue("10") Integer maxResults) {
if (!sessionController.isLoggedIn()) {
return Response.status(Status.UNAUTHORIZED).build();
}
if (!sessionController.hasEnvironmentPermission(ForumResourcePermissionCollection.FORUM_READ_ENVIRONMENT_MESSAGES)) {
return Response.status(Status.FORBIDDEN).build();
}
List<ForumThread> threads = forumController.listLatestForumThreads(firstResult, maxResults);
List<ForumThreadRESTModel> result = new ArrayList<ForumThreadRESTModel>();
for (ForumThread thread : threads) {
long numReplies = forumController.getThreadReplyCount(thread);
result.add(new ForumThreadRESTModel(thread.getId(), thread.getTitle(), thread.getMessage(), thread.getCreator(), thread.getCreated(), thread.getForumArea().getId(), thread.getSticky(), thread.getLocked(), thread.getUpdated(), numReplies, thread.getLastModified()));
}
return Response.ok(result).build();
}
Aggregations