use of fi.otavanopisto.muikku.plugins.forum.model.ForumArea in project muikku by otavanopisto.
the class WorkspaceForumRESTService method listThreads.
@GET
@Path("/workspaces/{WORKSPACEENTITYID}/forumAreas/{AREAID}/threads")
@RESTPermit(handling = Handling.INLINE)
public Response listThreads(@PathParam("WORKSPACEENTITYID") Long workspaceEntityId, @PathParam("AREAID") Long areaId, @QueryParam("firstResult") @DefaultValue("0") Integer firstResult, @QueryParam("maxResults") @DefaultValue("10") Integer maxResults) {
WorkspaceEntity workspaceEntity = workspaceEntityController.findWorkspaceEntityById(workspaceEntityId);
if (workspaceEntity == null) {
return Response.status(Status.NOT_FOUND).entity(String.format("Workspace entity %d not found", workspaceEntityId)).build();
}
ForumArea forumArea = forumController.getForumArea(areaId);
if (forumArea == null) {
return Response.status(Status.NOT_FOUND).entity("Forum area not found").build();
}
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)) {
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.ForumArea in project muikku by otavanopisto.
the class ForumController method listLatestForumThreads.
public List<ForumThread> listLatestForumThreads(int firstResult, int maxResults) {
List<EnvironmentForumArea> environmentForums = listEnvironmentForums();
// List<WorkspaceForumArea> workspaceForums = listCourseForums();
List<ForumArea> forumAreas = new ArrayList<ForumArea>();
for (EnvironmentForumArea ef : environmentForums) {
forumAreas.add(ef);
}
// 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.ForumArea in project muikku by otavanopisto.
the class ForumPermissionResolver method hasEveryonePermission.
@Override
public boolean hasEveryonePermission(String permission, ContextReference contextReference) {
ForumArea forumArea = getForumArea(contextReference);
RoleEntity userRole = getEveryoneRole();
Permission perm = permissionDAO.findByName(permission);
if (forumArea == null)
return false;
return resourceUserRolePermissionDAO.hasResourcePermissionAccess(resourceRightsController.findResourceRightsById(forumArea.getRights()), userRole, perm);
}
use of fi.otavanopisto.muikku.plugins.forum.model.ForumArea in project muikku by otavanopisto.
the class AcceptanceTestsRESTService method deleteDiscussion.
@DELETE
@Path("/discussiongroups/{GROUPID}/discussions/{DISCUSSIONID}")
@RESTPermit(handling = Handling.UNSECURED)
public Response deleteDiscussion(@PathParam("GROUPID") Long groupId, @PathParam("DISCUSSIONID") Long discussionId) {
ForumAreaGroup group = forumController.findForumAreaGroup(groupId);
if (group == null) {
return Response.status(Status.NOT_FOUND).entity("Group not found").build();
}
ForumArea forumArea = forumController.getForumArea(discussionId);
if (forumArea == null) {
return Response.status(Status.NOT_FOUND).entity("Discussion not found").build();
}
List<ForumThread> threads = forumController.listForumThreads(forumArea, 0, Integer.MAX_VALUE, true);
for (ForumThread thread : threads) {
List<ForumThreadReply> replies = forumController.listForumThreadReplies(thread, 0, Integer.MAX_VALUE, true);
for (ForumThreadReply reply : replies) {
forumController.deleteReply(reply);
}
forumController.deleteThread(thread);
}
forumController.deleteArea(forumArea);
return Response.noContent().build();
}
use of fi.otavanopisto.muikku.plugins.forum.model.ForumArea in project muikku by otavanopisto.
the class AcceptanceTestsRESTService method createWorkspaceDiscussionThread.
@POST
@Path("/workspaces/{WORKSPACEENTITYID}/discussiongroups/{GROUPID}/discussions/{DISCUSSIONID}/threads")
@RESTPermit(handling = Handling.UNSECURED)
public Response createWorkspaceDiscussionThread(@PathParam("WORKSPACEENTITYID") Long workspaceEntityId, @PathParam("GROUPID") Long groupId, @PathParam("DISCUSSIONID") Long discussionId, fi.otavanopisto.muikku.atests.DiscussionThread payload) {
WorkspaceEntity workspaceEntity = workspaceEntityController.findWorkspaceEntityById(workspaceEntityId);
if (workspaceEntity == null) {
return Response.status(Status.NOT_FOUND).entity("WorkspaceEntity not found").build();
}
ForumAreaGroup group = forumController.findForumAreaGroup(groupId);
if (group == null) {
return Response.status(Status.NOT_FOUND).entity("Group not found").build();
}
ForumArea discussion = forumController.getForumArea(discussionId);
if (discussion == null) {
return Response.status(Status.NOT_FOUND).entity("Discussion not found").build();
}
return Response.ok(createRestEntity(forumController.createForumThread(discussion, payload.getTitle(), payload.getMessage(), payload.getSticky(), payload.getLocked()))).build();
}
Aggregations