parent
093f5a3b20
commit
d7743355f3
@ -0,0 +1,41 @@ |
||||
package com.community.pocket.api.web; |
||||
|
||||
import com.community.pocket.entity.po.Visitor; |
||||
import com.community.pocket.entity.vo.Page; |
||||
import com.community.pocket.entity.vo.Result; |
||||
import com.community.pocket.entity.vo.web.VisitorForm; |
||||
import com.community.pocket.entity.vo.web.VisitorQuery; |
||||
import com.community.pocket.entity.vo.web.VisitorResponse; |
||||
import com.community.pocket.repository.android.VisitorDao; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.RequestBody; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
@RestController |
||||
//访客预约管理
|
||||
public class WebVisitorController { |
||||
|
||||
@Autowired |
||||
private VisitorDao visitorDao; |
||||
|
||||
//加载访客信息
|
||||
@GetMapping("/api/visitor") |
||||
public VisitorResponse loadAll(VisitorQuery visitorQuery) { |
||||
Page<Visitor> visitorList = visitorDao.loadAllVisitor(visitorQuery); |
||||
VisitorResponse visitorResponse = new VisitorResponse(Result.OK, VisitorResponse.Msg.ok); |
||||
visitorResponse.setVisitorList(visitorList); |
||||
return visitorResponse; |
||||
} |
||||
|
||||
//访客预约放行
|
||||
@PostMapping("/api/visitor") |
||||
public VisitorResponse update(@RequestBody VisitorForm visitorForm) { |
||||
if (visitorDao.updateVisitor(visitorForm)) { |
||||
return new VisitorResponse(Result.OK, VisitorResponse.Msg.check_ok); |
||||
} else { |
||||
return new VisitorResponse(Result.FAIL, VisitorResponse.Msg.check_fail); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,37 @@ |
||||
package com.community.pocket.entity.vo.web; |
||||
|
||||
/** |
||||
* 访客预约表单 |
||||
*/ |
||||
public class VisitorForm { |
||||
//访客id
|
||||
private String id; |
||||
//审核状态
|
||||
private VisitorStatus status; |
||||
//审核管理员
|
||||
private String managerName; |
||||
|
||||
public String getId() { |
||||
return id; |
||||
} |
||||
|
||||
public void setId(String id) { |
||||
this.id = id; |
||||
} |
||||
|
||||
public VisitorStatus getStatus() { |
||||
return status; |
||||
} |
||||
|
||||
public void setStatus(VisitorStatus status) { |
||||
this.status = status; |
||||
} |
||||
|
||||
public String getManagerName() { |
||||
return managerName; |
||||
} |
||||
|
||||
public void setManagerName(String managerName) { |
||||
this.managerName = managerName; |
||||
} |
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.community.pocket.entity.vo.web; |
||||
|
||||
/** |
||||
* 访客查询条件 |
||||
*/ |
||||
public class VisitorQuery { |
||||
private Long currentPage; |
||||
|
||||
public Long getCurrentPage() { |
||||
return currentPage; |
||||
} |
||||
|
||||
public void setCurrentPage(Long currentPage) { |
||||
this.currentPage = currentPage; |
||||
} |
||||
} |
@ -0,0 +1,30 @@ |
||||
package com.community.pocket.entity.vo.web; |
||||
|
||||
import com.community.pocket.entity.po.Visitor; |
||||
import com.community.pocket.entity.vo.Page; |
||||
import com.community.pocket.entity.vo.Response; |
||||
import com.community.pocket.entity.vo.Result; |
||||
import com.community.pocket.entity.vo.android.CustomMessage; |
||||
|
||||
public class VisitorResponse extends Response<VisitorResponse.Msg> { |
||||
private Page<Visitor> visitorList; |
||||
|
||||
public VisitorResponse(Result result, Msg message, Object... args) { |
||||
super(result, message, args); |
||||
} |
||||
|
||||
public Page<Visitor> getVisitorList() { |
||||
return visitorList; |
||||
} |
||||
|
||||
public void setVisitorList(Page<Visitor> visitorList) { |
||||
this.visitorList = visitorList; |
||||
} |
||||
|
||||
public enum Msg implements CustomMessage { |
||||
ok, |
||||
fail, |
||||
check_ok, |
||||
check_fail |
||||
} |
||||
} |
@ -0,0 +1,7 @@ |
||||
package com.community.pocket.entity.vo.web; |
||||
|
||||
public enum VisitorStatus { |
||||
uncheck, |
||||
ok, |
||||
fail |
||||
} |
@ -0,0 +1,30 @@ |
||||
package com.community.pocket.util; |
||||
|
||||
import org.springframework.beans.factory.annotation.Value; |
||||
import org.springframework.boot.web.servlet.FilterRegistrationBean; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.web.cors.CorsConfiguration; |
||||
import org.springframework.web.cors.UrlBasedCorsConfigurationSource; |
||||
import org.springframework.web.filter.CorsFilter; |
||||
|
||||
@Configuration |
||||
public class CrosConfiguration { |
||||
|
||||
@Value("${cros.allow-origin}") |
||||
private String allowOrigin; |
||||
|
||||
@Bean |
||||
public FilterRegistrationBean<CorsFilter> corsFilter() { |
||||
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); |
||||
CorsConfiguration config = new CorsConfiguration(); |
||||
config.setAllowCredentials(true); |
||||
config.addAllowedOrigin(allowOrigin); |
||||
config.addAllowedHeader("*"); |
||||
config.addAllowedMethod("*"); |
||||
source.registerCorsConfiguration("/api/**", config); |
||||
FilterRegistrationBean<CorsFilter> bean = new FilterRegistrationBean<>(new CorsFilter(source)); |
||||
bean.setOrder(0); |
||||
return bean; |
||||
} |
||||
} |
Loading…
Reference in new issue