Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gjjh5
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
data_server
gjjh5
Commits
9efa73a9
Commit
9efa73a9
authored
Mar 28, 2020
by
姜登
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
加密解密
parent
daa42889
Pipeline
#21140
passed with stage
in 16 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
task.js
app/controller/task.js
+6
-0
helper.js
app/extend/helper.js
+17
-2
No files found.
app/controller/task.js
View file @
9efa73a9
...
@@ -63,6 +63,12 @@ class TaskController extends Controller {
...
@@ -63,6 +63,12 @@ class TaskController extends Controller {
const
{
ctx
,
service
,
config
}
=
this
;
const
{
ctx
,
service
,
config
}
=
this
;
ctx
.
validate
(
this
.
submitRule
);
ctx
.
validate
(
this
.
submitRule
);
const
{
taskId
}
=
ctx
.
params
;
const
{
taskId
}
=
ctx
.
params
;
let
key
=
taskId
+
ctx
.
request
.
body
.
timestamp
;
if
(
key
.
length
<
16
)
{
while
(
key
.
length
<
16
)
key
+=
'0'
;
}
key
=
key
.
substring
(
0
,
16
);
ctx
.
request
.
body
=
ctx
.
helper
.
aesDecrypt
({
algorithm
:
'aes-128-ecb'
,
key
,
data
:
ctx
.
request
.
body
});
await
service
.
cache
.
set
({
await
service
.
cache
.
set
({
key
:
String
(
taskId
),
key
:
String
(
taskId
),
value
:
{
status
:
'login'
,
note
:
{
message
:
'login'
}
},
value
:
{
status
:
'login'
,
note
:
{
message
:
'login'
}
},
...
...
app/extend/helper.js
View file @
9efa73a9
...
@@ -13,7 +13,7 @@ function process(data) {
...
@@ -13,7 +13,7 @@ function process(data) {
return
sign_str
;
return
sign_str
;
}
}
module
.
exports
.
getUuid
=
function
()
{
module
.
exports
.
getUuid
=
function
()
{
return
uuid
();
return
uuid
();
};
};
...
@@ -23,7 +23,7 @@ module.exports.getUuid = function() {
...
@@ -23,7 +23,7 @@ module.exports.getUuid = function() {
* @param {Object} content: 需要发送的预警信息模板
* @param {Object} content: 需要发送的预警信息模板
* @return {Boolean} 信息发送状态
* @return {Boolean} 信息发送状态
*/
*/
module
.
exports
.
sendMsg
=
async
function
(
content
)
{
module
.
exports
.
sendMsg
=
async
function
(
content
)
{
if
(
!
content
)
return
false
;
if
(
!
content
)
return
false
;
const
{
app
}
=
this
;
const
{
app
}
=
this
;
const
{
baseURL
,
settingid
,
appSecret
}
=
app
.
config
.
JBnotifyCenter
;
const
{
baseURL
,
settingid
,
appSecret
}
=
app
.
config
.
JBnotifyCenter
;
...
@@ -50,3 +50,18 @@ module.exports.sendMsg = async function(content) {
...
@@ -50,3 +50,18 @@ module.exports.sendMsg = async function(content) {
});
});
return
result
;
return
result
;
};
};
module
.
exports
.
aesDecrypt
=
function
({
algorithm
,
key
,
data
,
iv
=
''
})
{
const
{
ctx
}
=
this
;
try
{
const
decipher
=
crypto
.
createDecipheriv
(
algorithm
,
key
,
iv
);
decipher
.
setAutoPadding
(
true
);
const
cipherChunks
=
[];
cipherChunks
.
push
(
decipher
.
update
(
data
,
'base64'
,
'utf8'
));
cipherChunks
.
push
(
decipher
.
final
(
'utf8'
));
return
cipherChunks
.
join
(
''
);
}
catch
(
err
)
{
ctx
.
logger
.
error
(
'aesdecrupt_ERROR'
,
err
,
JSON
.
stringify
({
algorithm
,
key
,
data
,
iv
}));
ctx
.
throw
(
'参数解密有误'
);
}
}
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