|
@@ -77,7 +77,8 @@ public class AclService {
|
|
|
public R verifySystem(TokenVo tokenEntity, HttpSession session, boolean logVerification) {
|
|
|
log.debug("sessionId: {}", session.getId());
|
|
|
Map<String, String> map = new HashMap<>();
|
|
|
- if (tokenEntity.getFromSystem().equalsIgnoreCase("top")) {
|
|
|
+ if (tokenEntity.getFromSystem().equalsIgnoreCase("top")
|
|
|
+ || tokenEntity.getFromSystem().equalsIgnoreCase("unicom")) {
|
|
|
map.put("redirect", topRedirectUrl);
|
|
|
} else if (tokenEntity.getFromSystem().equalsIgnoreCase("dop")) {
|
|
|
map.put("redirect", dopRedirectUrl);
|
|
@@ -283,7 +284,8 @@ public class AclService {
|
|
|
private TokenFlagVo getVerifyResult(String token, String fromSystem) {
|
|
|
if (fromSystem.trim().equalsIgnoreCase("dop")) {
|
|
|
return dopService.dopReturn(token);
|
|
|
- } else if (fromSystem.trim().equalsIgnoreCase("top")) {
|
|
|
+ } else if (fromSystem.trim().equalsIgnoreCase("top")
|
|
|
+ || fromSystem.trim().equalsIgnoreCase("unicom")) {
|
|
|
return topService.topReturn(token);
|
|
|
} else if (fromSystem.trim().equalsIgnoreCase("woyunwei")) {
|
|
|
return woyunweiService.woyunweiReturn(token);
|