Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
windows
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhanhai
windows
Commits
50b87e5d
Commit
50b87e5d
authored
Sep 14, 2023
by
liuzicheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
初始化项目
parent
add0113d
Pipeline
#521
canceled with stages
Changes
11
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
1049 additions
and
2 deletions
+1049
-2
RuntimeContext.java
...ain/java/com/jqtx/windows/common/base/RuntimeContext.java
+0
-2
AbstractCommand.java
...java/com/jqtx/windows/common/factory/AbstractCommand.java
+25
-0
ChannelConfig.java
...n/java/com/jqtx/windows/common/factory/ChannelConfig.java
+16
-0
CommandProxy.java
...in/java/com/jqtx/windows/common/factory/CommandProxy.java
+51
-0
RuntimeContext.java
.../java/com/jqtx/windows/common/factory/RuntimeContext.java
+13
-0
RuntimeContextHolder.java
...com/jqtx/windows/common/factory/RuntimeContextHolder.java
+33
-0
AbcBase64Utils.java
src/main/java/com/jqtx/windows/utils/AbcBase64Utils.java
+167
-0
AbcRsaUtil.java
src/main/java/com/jqtx/windows/utils/AbcRsaUtil.java
+671
-0
CreditController.java
src/main/java/com/jqtx/windows/web/CreditController.java
+28
-0
RouterConfig.java
src/main/java/com/jqtx/windows/web/config/RouterConfig.java
+27
-0
AbcRequest.java
src/main/java/com/jqtx/windows/web/request/AbcRequest.java
+18
-0
No files found.
src/main/java/com/jqtx/windows/common/base/RuntimeContext.java
View file @
50b87e5d
...
...
@@ -9,8 +9,6 @@ public class RuntimeContext {
private
String
requestBody
;
private
String
userId
;
private
String
ipAddress
;
}
src/main/java/com/jqtx/windows/common/factory/AbstractCommand.java
0 → 100644
View file @
50b87e5d
package
com
.
jqtx
.
windows
.
common
.
factory
;
import
com.jqtx.windows.infrastructure.enums.ExceptionCodeEnum
;
import
com.jqtx.windows.web.response.JsonResult
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.stereotype.Service
;
@Service
@Slf4j
public
abstract
class
AbstractCommand
{
public
JsonResult
doAction
(){
try
{
return
this
.
execute
();
}
catch
(
Exception
e
){
log
.
error
(
"[处理异常:{}]"
,
e
.
getMessage
(),
e
);
}
return
JsonResult
.
error
(
ExceptionCodeEnum
.
SYSTEM_ERROR
);
}
public
abstract
<
R
>
R
execute
();
}
src/main/java/com/jqtx/windows/common/factory/ChannelConfig.java
0 → 100644
View file @
50b87e5d
package
com
.
jqtx
.
windows
.
common
.
factory
;
import
lombok.Data
;
/*
* @ClassName ChannelConfig
* @Author liuzicheng
* @Description //TODO
* @Date 2021/12/20 14:32
*/
@Data
public
class
ChannelConfig
{
private
String
appId
;
}
src/main/java/com/jqtx/windows/common/factory/CommandProxy.java
0 → 100644
View file @
50b87e5d
package
com
.
jqtx
.
windows
.
common
.
factory
;
import
cn.hutool.core.util.ObjectUtil
;
import
com.alibaba.fastjson.JSONObject
;
import
com.jqtx.windows.common.exception.BizException
;
import
com.jqtx.windows.infrastructure.enums.ExceptionCodeEnum
;
import
com.jqtx.windows.utils.AbcRsaUtil
;
import
com.jqtx.windows.web.config.RouterConfig
;
import
com.jqtx.windows.web.response.JsonResult
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.stereotype.Service
;
@Service
public
class
CommandProxy
{
@Value
(
"${abc.publicKey}"
)
private
String
publicKey
;
@Value
(
"${abc.yy_privateKey}"
)
private
String
YyPpivateKey
;
public
JsonResult
call
(
String
request
,
String
method
){
AbstractCommand
command
=
RouterConfig
.
getCommand
(
method
);
if
(
ObjectUtil
.
isNull
(
command
)){
return
JsonResult
.
success
(
ExceptionCodeEnum
.
SYSTEM_ERROR
);
}
JSONObject
jsonObject
=
JSONObject
.
parseObject
(
request
);
String
requestBody
=
jsonObject
.
getString
(
"content"
);
String
sign
=
jsonObject
.
getString
(
"sign"
);
String
appId
=
jsonObject
.
getString
(
"appId"
);
String
decodeBody
=
AbcRsaUtil
.
decodeParam
(
requestBody
,
sign
,
YyPpivateKey
,
publicKey
);
if
(
StringUtils
.
isBlank
(
decodeBody
)){
throw
new
BizException
(
ExceptionCodeEnum
.
BIZ_AUTH_ERROR
);
}
ChannelConfig
channelConfig
=
new
ChannelConfig
();
channelConfig
.
setAppId
(
appId
);
this
.
setLocalContext
(
requestBody
,
channelConfig
);
return
command
.
doAction
();
}
public
void
setLocalContext
(
String
requestBody
,
ChannelConfig
channelConfig
)
{
RuntimeContext
context
=
RuntimeContextHolder
.
currentRuntimeContext
();
if
(
context
==
null
)
{
context
=
new
RuntimeContext
();
}
context
.
setRequestBody
(
requestBody
);
context
.
setChannelConfig
(
channelConfig
);
RuntimeContextHolder
.
setCurrentRuntimeContext
(
context
);
}
}
src/main/java/com/jqtx/windows/common/factory/RuntimeContext.java
0 → 100644
View file @
50b87e5d
package
com
.
jqtx
.
windows
.
common
.
factory
;
import
lombok.Data
;
import
lombok.extern.slf4j.Slf4j
;
@Slf4j
@Data
public
class
RuntimeContext
{
private
String
requestBody
;
private
ChannelConfig
channelConfig
;
}
src/main/java/com/jqtx/windows/common/factory/RuntimeContextHolder.java
0 → 100644
View file @
50b87e5d
package
com
.
jqtx
.
windows
.
common
.
factory
;
public
class
RuntimeContextHolder
{
/** 上下文信息 */
private
static
final
ThreadLocal
<
RuntimeContext
>
CURRENT_RUNTIME_CONTEXT
=
new
ThreadLocal
<
RuntimeContext
>();
/**
* 获取当前线程下的上下文信息.
* @return 上下文信息
*/
public
static
RuntimeContext
currentRuntimeContext
()
{
return
CURRENT_RUNTIME_CONTEXT
.
get
();
}
/**
* 设置当前线程下的上下文信息
* @param runtimeContext 上下文信息
*/
public
static
void
setCurrentRuntimeContext
(
RuntimeContext
runtimeContext
)
{
CURRENT_RUNTIME_CONTEXT
.
set
(
runtimeContext
);
}
/**
* 清空当前线程下的上下文信息
*/
public
static
void
clear
()
{
CURRENT_RUNTIME_CONTEXT
.
set
(
null
);
}
}
src/main/java/com/jqtx/windows/utils/AbcBase64Utils.java
0 → 100644
View file @
50b87e5d
package
com
.
jqtx
.
windows
.
utils
;
import
org.apache.commons.codec.binary.Base64
;
import
java.io.*
;
public
class
AbcBase64Utils
{
/** *//**
* 文件读取缓冲区大小
*/
private
static
final
int
CACHE_SIZE
=
1024
;
/** *//**
* <p>
* BASE64字符串解码为二进制数据
* </p>
*
* @param base64
* @return
* @throws Exception
*/
public
static
byte
[]
decode
(
String
base64
)
throws
Exception
{
return
new
Base64
().
decode
(
base64
);
}
/** *//**
* <p>
* 二进制数据编码为BASE64字符串
* </p>
*
* @param bytes
* @return
* @throws Exception
*/
public
static
String
encode
(
byte
[]
bytes
)
throws
Exception
{
return
new
Base64
().
encodeToString
(
bytes
);
}
/** *//**
* <p>
* 将文件编码为BASE64字符串
* </p>
* <p>
* 大文件慎用,可能会导致内存溢出
* </p>
*
* @param filePath 文件绝对路径
* @return
* @throws Exception
*/
public
static
String
encodeFile
(
String
filePath
)
throws
Exception
{
byte
[]
bytes
=
fileToByte
(
filePath
);
return
encode
(
bytes
);
}
/** *//**
* <p>
* BASE64字符串转回文件
* </p>
*
* @param filePath 文件绝对路径
* @param base64 编码字符串
* @throws Exception
*/
public
static
void
decodeToFile
(
String
filePath
,
String
base64
)
throws
Exception
{
byte
[]
bytes
=
decode
(
base64
);
byteArrayToFile
(
bytes
,
filePath
);
}
/** *//**
* <p>
* 文件转换为二进制数组
* </p>
*
* @param filePath 文件路径
* @return
* @throws Exception
*/
public
static
byte
[]
fileToByte
(
String
filePath
)
{
byte
[]
data
=
new
byte
[
0
];
File
file
=
new
File
(
filePath
);
if
(
!
file
.
exists
()
)
{
return
data
;
}
FileInputStream
in
=
null
;
ByteArrayOutputStream
out
=
null
;
try
{
in
=
new
FileInputStream
(
file
);
out
=
new
ByteArrayOutputStream
(
2048
);
byte
[]
cache
=
new
byte
[
CACHE_SIZE
];
int
nRead
=
0
;
while
((
nRead
=
in
.
read
(
cache
))
!=
-
1
)
{
out
.
write
(
cache
,
0
,
nRead
);
out
.
flush
();
}
return
out
.
toByteArray
();
}
catch
(
Exception
e
)
{
throw
new
RuntimeException
(
e
);
}
finally
{
if
(
out
!=
null
)
{
try
{
out
.
close
();
}
catch
(
IOException
e
)
{
}
}
if
(
in
!=
null
)
{
try
{
in
.
close
();
}
catch
(
IOException
e
)
{
}
}
}
}
/** *//**
* <p>
* 二进制数据写文件
* </p>
*
* @param bytes 二进制数据
* @param filePath 文件生成目录
*/
public
static
void
byteArrayToFile
(
byte
[]
bytes
,
String
filePath
)
{
InputStream
in
=
new
ByteArrayInputStream
(
bytes
);
File
destFile
=
new
File
(
filePath
);
if
(!
destFile
.
getParentFile
().
exists
())
{
destFile
.
getParentFile
().
mkdirs
();
}
OutputStream
out
=
null
;
try
{
destFile
.
createNewFile
();
out
=
new
FileOutputStream
(
destFile
);
byte
[]
cache
=
new
byte
[
CACHE_SIZE
];
int
nRead
=
0
;
while
((
nRead
=
in
.
read
(
cache
))
!=
-
1
)
{
out
.
write
(
cache
,
0
,
nRead
);
out
.
flush
();
}
}
catch
(
Exception
e
)
{
throw
new
RuntimeException
(
e
);
}
finally
{
if
(
out
!=
null
)
{
try
{
out
.
close
();
}
catch
(
IOException
e
)
{
}
}
if
(
in
!=
null
)
{
try
{
in
.
close
();
}
catch
(
IOException
e
)
{
}
}
}
}
}
src/main/java/com/jqtx/windows/utils/AbcRsaUtil.java
0 → 100644
View file @
50b87e5d
This diff is collapsed.
Click to expand it.
src/main/java/com/jqtx/windows/web/CreditController.java
0 → 100644
View file @
50b87e5d
package
com
.
jqtx
.
windows
.
web
;
import
com.jqtx.windows.common.factory.CommandProxy
;
import
com.jqtx.windows.web.response.JsonResult
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
javax.servlet.http.HttpServletRequest
;
@RestController
@RequestMapping
(
"/zhenong/v1"
)
@Api
(
tags
=
"授信接口"
)
public
class
CreditController
{
@Autowired
private
CommandProxy
commandProxy
;
@ApiOperation
(
value
=
"提交授信"
)
@PostMapping
(
"/credit_submit"
)
public
JsonResult
creditSubmit
(
HttpServletRequest
request
,
String
requestBody
)
{
return
commandProxy
.
call
(
requestBody
,
request
.
getRequestURI
());
}
}
src/main/java/com/jqtx/windows/web/config/RouterConfig.java
0 → 100644
View file @
50b87e5d
package
com
.
jqtx
.
windows
.
web
.
config
;
import
com.jqtx.windows.common.factory.AbstractCommand
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.boot.CommandLineRunner
;
import
org.springframework.stereotype.Component
;
import
java.util.HashMap
;
@Component
@Slf4j
public
class
RouterConfig
implements
CommandLineRunner
{
private
static
HashMap
<
String
,
AbstractCommand
>
commandHashMap
=
new
HashMap
<>();
public
static
AbstractCommand
getCommand
(
String
method
)
{
if
(!
commandHashMap
.
containsKey
(
method
))
{
return
null
;
}
return
commandHashMap
.
get
(
method
);
}
@Override
public
void
run
(
String
...
args
)
throws
Exception
{
commandHashMap
.
put
(
"check_user"
,
null
);
}
}
src/main/java/com/jqtx/windows/web/request/AbcRequest.java
0 → 100644
View file @
50b87e5d
package
com
.
jqtx
.
windows
.
web
.
request
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
@Data
@ApiModel
(
description
=
"调第三方请求参数基类"
)
public
class
AbcRequest
{
@ApiModelProperty
(
name
=
"签名"
)
private
String
sign
;
@ApiModelProperty
(
name
=
"appId"
)
private
String
appId
;
@ApiModelProperty
(
name
=
"内容"
)
private
String
content
;
}
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