|
@@ -24,6 +24,8 @@ public class TokenService {
|
|
|
public static Map<String, List<ProBasicEquipment>> sessionWtMap = new ConcurrentHashMap<>();
|
|
|
public static Map<String, List<ProBasicPowerstation>> sessionWpMap = new ConcurrentHashMap<>();
|
|
|
public static Map<String, List<ProBasicSubStation>> sessionSubMap = new ConcurrentHashMap<>();
|
|
|
+
|
|
|
+ public static Map<String, List<ProBasicWeatherStation>> sessionWsMap = new ConcurrentHashMap<>();
|
|
|
public static Map<String, List<ProBasicWeatherStation>> sessionWeMap = new ConcurrentHashMap<>();
|
|
|
|
|
|
public static Map<String, TokenVo> sessionMap = new ConcurrentHashMap<>();
|
|
@@ -344,4 +346,79 @@ public class TokenService {
|
|
|
}
|
|
|
return wplist;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ public List<ProBasicWeatherStation> getWswpls(HttpServletRequest request) {
|
|
|
+ String token = request.getHeader("token");
|
|
|
+ String userId = request.getHeader("userId");
|
|
|
+ List<ProBasicWeatherStation> wplist = new ArrayList<>();
|
|
|
+
|
|
|
+ if (StringUtils.notEmp(token) && StringUtils.notEmp(userId)) {
|
|
|
+ if (!sessionWsMap.containsKey(token)) {
|
|
|
+
|
|
|
+ List<String> depls = sysUserService.getUserByuserId(Long.valueOf(userId));
|
|
|
+ if (!depls.isEmpty()) {
|
|
|
+ String depId = depls.get(0);
|
|
|
+
|
|
|
+ if (CacheContext.wpmap.containsKey(depId)) {
|
|
|
+ for (ProBasicWeatherStation subStation : CacheContext.weawpls) {
|
|
|
+ if (subStation.getWindpowerstationId().equals(depId)) {
|
|
|
+ ProBasicWeatherStation newSub = new ProBasicWeatherStation();
|
|
|
+ BeanUtil.copyProperties(subStation, newSub);
|
|
|
+ wplist.add(newSub);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else if (CacheContext.cpwpmap.containsKey(depId)) {
|
|
|
+ List<ProBasicPowerstation> wpls = CacheContext.cpwpmap.get(depId);
|
|
|
+
|
|
|
+ for (ProBasicPowerstation wp : wpls) {
|
|
|
+ for (ProBasicWeatherStation subStation : CacheContext.weawpls) {
|
|
|
+ if (subStation.getWindpowerstationId().equals(wp.getId())) {
|
|
|
+ ProBasicWeatherStation newSub = new ProBasicWeatherStation();
|
|
|
+ BeanUtil.copyProperties(subStation, newSub);
|
|
|
+ wplist.add(newSub);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else if (CacheContext.rgmap.containsKey(depId)) {
|
|
|
+ List<ProBasicCompany> rgcpls = CacheContext.rgcpmap.get(depId);
|
|
|
+ for (ProBasicCompany cp : rgcpls) {
|
|
|
+ List<ProBasicPowerstation> wpls = CacheContext.cpwpmap.get(cp.getId());
|
|
|
+
|
|
|
+ for (ProBasicPowerstation wp : wpls) {
|
|
|
+ for (ProBasicWeatherStation subStation : CacheContext.weawpls) {
|
|
|
+ if (subStation.getWindpowerstationId().equals(wp.getId())) {
|
|
|
+ ProBasicWeatherStation newSub = new ProBasicWeatherStation();
|
|
|
+ BeanUtil.copyProperties(subStation, newSub);
|
|
|
+ wplist.add(newSub);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else if (depId.equals("0")) {
|
|
|
+ for (ProBasicWeatherStation subStation : CacheContext.weawpls) {
|
|
|
+ ProBasicWeatherStation newSub = new ProBasicWeatherStation();
|
|
|
+ BeanUtil.copyProperties(subStation, newSub);
|
|
|
+ wplist.add(newSub);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ sessionWsMap.put(token, wplist);
|
|
|
+ } else if (sessionMap.containsKey(token) && sessionWsMap.containsKey(token)) {
|
|
|
+ wplist = sessionWsMap.get(token);
|
|
|
+
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ for (ProBasicWeatherStation subStation : CacheContext.weawpls) {
|
|
|
+ ProBasicWeatherStation newSub = new ProBasicWeatherStation();
|
|
|
+ BeanUtil.copyProperties(subStation, newSub);
|
|
|
+ wplist.add(newSub);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return wplist;
|
|
|
+ }
|
|
|
}
|