Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
civil-bigdata
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
civil
civil-bigdata
Commits
64a47c99
Commit
64a47c99
authored
Nov 30, 2021
by
袁伟铭
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
cf9aa86c
b252f26d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
sys-server/src/main/java/com/zq/system/modules/system/service/SingleService.java
+10
-10
No files found.
sys-server/src/main/java/com/zq/system/modules/system/service/SingleService.java
View file @
64a47c99
...
...
@@ -145,12 +145,12 @@ public class SingleService {
public
Object
login
(
SingleLoginVo
vo
,
HttpServletRequest
request
,
HttpServletResponse
response
)
{
try
{
String
appId
=
request
.
getParameter
(
"appId
"
);
AssertUtils
.
hasText
(
appId
,
"APPID
为空"
);
String
toUrl
=
request
.
getParameter
(
"service
"
);
AssertUtils
.
hasText
(
toUrl
,
"跳转地址
为空"
);
SysInfo
sysInfo
=
sysInfoDao
.
selectOne
(
Wrappers
.
lambdaQuery
(
SysInfo
.
builder
().
appId
(
appId
).
build
()));
/*
SysInfo sysInfo = sysInfoDao.selectOne(Wrappers.lambdaQuery(SysInfo.builder().appId(appId).build()));
AssertUtils.notNull(sysInfo, "APPID不存在");
AssertUtils
.
hasText
(
sysInfo
.
getHomeUrl
(),
"业务系统主页地址未配置"
);
AssertUtils.hasText(sysInfo.getHomeUrl(), "业务系统主页地址未配置");
*/
String
passwd
=
RsaUtils
.
decryptByPrivateKey
(
RsaProperties
.
privateKey
,
vo
.
getPasswd
());
...
...
@@ -168,7 +168,7 @@ public class SingleService {
redisUtils
.
setStr
(
token
,
key
,
properties
.
getTokenValidityInSeconds
()
/
1000
,
TimeUnit
.
SECONDS
);
Map
<
String
,
Object
>
data
=
new
HashMap
<>();
data
.
put
(
"toUrl"
,
sysInfo
.
getHomeUrl
()
+
"?"
+
properties
.
getHeader
()
+
"="
+
token
+
"&key="
+
key
);
data
.
put
(
"toUrl"
,
toUrl
+
"?"
+
properties
.
getHeader
()
+
"="
+
token
+
"&key="
+
key
);
data
.
put
(
properties
.
getHeader
(),
properties
.
getTokenStartWith
()
+
token
);
return
data
;
// response.sendRedirect(sysInfo.getHomeUrl() + "?" + properties.getHeader() + "=" + token + "&key=" + key);
...
...
@@ -180,18 +180,18 @@ public class SingleService {
}
public
Object
tokenLogin
(
HttpServletRequest
request
,
HttpServletResponse
response
)
{
String
appId
=
request
.
getParameter
(
"appId
"
);
AssertUtils
.
hasText
(
appId
,
"APPID
为空"
);
String
toUrl
=
request
.
getParameter
(
"service
"
);
AssertUtils
.
hasText
(
toUrl
,
"跳转地址
为空"
);
SysInfo
sysInfo
=
sysInfoDao
.
selectOne
(
Wrappers
.
lambdaQuery
(
SysInfo
.
builder
().
appId
(
appId
).
build
()));
/*
SysInfo sysInfo = sysInfoDao.selectOne(Wrappers.lambdaQuery(SysInfo.builder().appId(appId).build()));
AssertUtils.notNull(sysInfo, "APPID不存在");
AssertUtils
.
hasText
(
sysInfo
.
getHomeUrl
(),
"业务系统主页地址未配置"
);
AssertUtils.hasText(sysInfo.getHomeUrl(), "业务系统主页地址未配置");
*/
String
token
=
tokenProvider
.
getToken
(
request
);
String
key
=
redisUtils
.
getStr
(
token
);
Map
<
String
,
Object
>
data
=
new
HashMap
<>();
data
.
put
(
"toUrl"
,
sysInfo
.
getHomeUrl
()
+
"?"
+
properties
.
getHeader
()
+
"="
+
token
+
"&key="
+
key
);
data
.
put
(
"toUrl"
,
toUrl
+
"?"
+
properties
.
getHeader
()
+
"="
+
token
+
"&key="
+
key
);
data
.
put
(
properties
.
getHeader
(),
properties
.
getTokenStartWith
()
+
token
);
return
data
;
// response.sendRedirect(sysInfo.getHomeUrl() + "?" + properties.getHeader() + "=" + token + "&key=" + key);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment