|
|
@ -2,12 +2,14 @@ package com.peteralbus.controller;
|
|
|
|
|
|
|
|
|
|
|
|
import com.peteralbus.entity.Activity;
|
|
|
|
import com.peteralbus.entity.Activity;
|
|
|
|
import com.peteralbus.entity.Group;
|
|
|
|
import com.peteralbus.entity.Group;
|
|
|
|
|
|
|
|
import com.peteralbus.entity.Participate;
|
|
|
|
import com.peteralbus.entity.User;
|
|
|
|
import com.peteralbus.entity.User;
|
|
|
|
import com.peteralbus.service.ActivityService;
|
|
|
|
import com.peteralbus.service.ActivityService;
|
|
|
|
import com.peteralbus.service.GroupService;
|
|
|
|
import com.peteralbus.service.GroupService;
|
|
|
|
import com.peteralbus.service.ParticipateService;
|
|
|
|
import com.peteralbus.service.ParticipateService;
|
|
|
|
import com.peteralbus.util.PrincipalUtil;
|
|
|
|
import com.peteralbus.util.PrincipalUtil;
|
|
|
|
import org.apache.shiro.SecurityUtils;
|
|
|
|
import org.apache.shiro.SecurityUtils;
|
|
|
|
|
|
|
|
import org.apache.shiro.authz.UnauthorizedException;
|
|
|
|
import org.apache.shiro.subject.Subject;
|
|
|
|
import org.apache.shiro.subject.Subject;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
@ -48,17 +50,52 @@ public class StudentController
|
|
|
|
public ModelAndView applyActivity(Long activityId)
|
|
|
|
public ModelAndView applyActivity(Long activityId)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
ModelAndView modelAndView=PrincipalUtil.getBasicModelAndView();
|
|
|
|
ModelAndView modelAndView=PrincipalUtil.getBasicModelAndView();
|
|
|
|
|
|
|
|
Subject subject = SecurityUtils.getSubject();
|
|
|
|
|
|
|
|
User user=(User)subject.getPrincipal();
|
|
|
|
Activity activity= activityService.getActivityById(activityId);
|
|
|
|
Activity activity= activityService.getActivityById(activityId);
|
|
|
|
|
|
|
|
Participate participate=participateService.getByUserAndActivity(user.getUserId(), activityId);
|
|
|
|
|
|
|
|
if(participate!=null)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
modelAndView.setViewName("redirect: /student/manageActivity?activityId="+activityId);
|
|
|
|
|
|
|
|
return modelAndView;
|
|
|
|
|
|
|
|
}
|
|
|
|
modelAndView.addObject("activity",activity);
|
|
|
|
modelAndView.addObject("activity",activity);
|
|
|
|
List<Group> groupList=groupService.getGroupListByActivity(activityId);
|
|
|
|
List<Group> groupList=groupService.getGroupListByActivity(activityId);
|
|
|
|
modelAndView.addObject("groupList",groupList);
|
|
|
|
modelAndView.addObject("groupList",groupList);
|
|
|
|
modelAndView.setViewName("/jsp/student/applyActivity.jsp");
|
|
|
|
modelAndView.setViewName("/jsp/student/applyActivity.jsp");
|
|
|
|
return modelAndView;
|
|
|
|
return modelAndView;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping("/manageActivity")
|
|
|
|
public ModelAndView manageActivity(Long activityId)
|
|
|
|
public ModelAndView manageActivity(Long activityId)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
ModelAndView modelAndView=PrincipalUtil.getBasicModelAndView();
|
|
|
|
ModelAndView modelAndView=PrincipalUtil.getBasicModelAndView();
|
|
|
|
modelAndView.setViewName("/jsp/student/manageActivity.jsp");
|
|
|
|
Subject subject = SecurityUtils.getSubject();
|
|
|
|
|
|
|
|
User user=(User)subject.getPrincipal();
|
|
|
|
|
|
|
|
Activity activity= activityService.getActivityById(activityId);
|
|
|
|
|
|
|
|
Participate participate=participateService.getByUserAndActivity(user.getUserId(), activityId);
|
|
|
|
|
|
|
|
if(participate==null)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
throw new UnauthorizedException();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Long memberCount=groupService.getMemberCount(participate.getGroupId());
|
|
|
|
|
|
|
|
if(memberCount<=activity.getMinPeople())
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if(participate.getAccept())
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
modelAndView.addObject("currentStatus","正在等待小组成员数量达到要求");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
modelAndView.addObject("currentStatus","正在等待组长通过您的申请");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
modelAndView.setViewName("/jsp/student/waitGroup.jsp");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
modelAndView.setViewName("/jsp/student/manageActivity.jsp");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
modelAndView.addObject("activity",activity);
|
|
|
|
return modelAndView;
|
|
|
|
return modelAndView;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ResponseBody
|
|
|
|
@ResponseBody
|
|
|
|