Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
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
蒋勇
zhichan
Commits
d1a82021
Commit
d1a82021
authored
Jan 04, 2021
by
王悦
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
去掉冗余代码
parent
1ec73e28
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
79 additions
and
421 deletions
+79
-421
igirl-channel-gateway/app/base/service/app.base.js
+9
-1
igirl-channel-gateway/app/base/service/impl/utilsSve/utilsNeedSve.js
+70
-420
No files found.
igirl-channel-gateway/app/base/service/app.base.js
View file @
d1a82021
...
@@ -10,7 +10,7 @@ class AppServiceBase {
...
@@ -10,7 +10,7 @@ class AppServiceBase {
}
}
/**
/**
* 验证签名
* 验证签名
* @param {*} params 要验证的参数
* @param {*} params 要验证的参数
* @param {*} app_key 应用的校验key
* @param {*} app_key 应用的校验key
*/
*/
async
verifySign
(
params
,
app_key
)
{
async
verifySign
(
params
,
app_key
)
{
...
@@ -98,5 +98,13 @@ class AppServiceBase {
...
@@ -98,5 +98,13 @@ class AppServiceBase {
}
}
return
uuid
.
join
(
''
);
return
uuid
.
join
(
''
);
}
}
getResult
(
uuid
,
msg
){
return
{
"requestId"
:
uuid
,
"success"
:
!
msg
,
"errorMsg"
:
msg
||
""
,
"errorCode"
:
"ok"
};
}
}
}
module
.
exports
=
AppServiceBase
;
module
.
exports
=
AppServiceBase
;
igirl-channel-gateway/app/base/service/impl/utilsSve/utilsNeedSve.js
View file @
d1a82021
...
@@ -52,12 +52,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -52,12 +52,7 @@ class UtilsNeedSve extends AppServiceBase {
var
self
=
this
;
var
self
=
this
;
var
tokenInfo
=
await
this
.
getCenterToken
();
var
tokenInfo
=
await
this
.
getCenterToken
();
if
(
tokenInfo
.
status
!=
0
)
{
if
(
tokenInfo
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"getTokenInfo fail"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"getTokenInfo fail"
,
"errorCode"
:
"ok"
};
}
}
var
userpin
=
""
;
var
userpin
=
""
;
if
(
pobj
.
phone
&&!
pobj
.
mobile
){
if
(
pobj
.
phone
&&!
pobj
.
mobile
){
...
@@ -96,45 +91,20 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -96,45 +91,20 @@ class UtilsNeedSve extends AppServiceBase {
}
else
{
}
else
{
rtn
=
await
self
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
rtn
=
await
self
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
if
(
rtn
.
status
==
0
)
{
if
(
rtn
.
status
==
0
)
{
return
{
return
this
.
getResult
(
rtn
.
requestId
)
"requestId"
:
rtn
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
else
{
}
else
{
return
{
return
this
.
getResult
(
rtn
.
requestId
,
rtn
.
msg
)
"requestId"
:
rtn
.
requestId
,
"success"
:
false
,
"errorMsg"
:
rtn
.
msg
,
"errorCode"
:
"ok"
};
}
}
}
}
if
(
!
rtn
||
!
rtn
.
stdout
)
{
if
(
!
rtn
||
!
rtn
.
stdout
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
result
.
status
==
0
)
{
if
(
result
.
status
==
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
)
"requestId"
:
result
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
else
{
}
else
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
}
}
...
@@ -167,22 +137,12 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -167,22 +137,12 @@ class UtilsNeedSve extends AppServiceBase {
"actionBody"
:
pobj
"actionBody"
:
pobj
}
}
if
(
!
pobj
.
appInfo
||
!
pobj
.
appInfo
.
uapp_key
||
!
pobj
.
appInfo
.
uapp_secret
){
if
(
!
pobj
.
appInfo
||
!
pobj
.
appInfo
.
uapp_key
||
!
pobj
.
appInfo
.
uapp_secret
){
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"无效应用"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"无效应用"
,
"errorCode"
:
"ok"
};
}
}
var
self
=
this
;
var
self
=
this
;
var
tokenInfo
=
await
this
.
getCenterTokenByApp
(
pobj
.
appInfo
);
var
tokenInfo
=
await
this
.
getCenterTokenByApp
(
pobj
.
appInfo
);
if
(
tokenInfo
.
status
!=
0
)
{
if
(
tokenInfo
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"getTokenInfo fail"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"getTokenInfo fail"
,
"errorCode"
:
"ok"
};
}
}
var
userpin
=
""
;
var
userpin
=
""
;
if
(
pobj
.
phone
&&!
pobj
.
mobile
){
if
(
pobj
.
phone
&&!
pobj
.
mobile
){
...
@@ -221,68 +181,33 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -221,68 +181,33 @@ class UtilsNeedSve extends AppServiceBase {
}
else
{
}
else
{
rtn
=
await
self
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
rtn
=
await
self
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
if
(
rtn
.
status
==
0
)
{
if
(
rtn
.
status
==
0
)
{
return
{
return
this
.
getResult
(
rtn
.
requestId
)
"requestId"
:
rtn
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
else
{
}
else
{
return
{
return
this
.
getResult
(
rtn
.
requestId
,
rtn
.
msg
)
"requestId"
:
rtn
.
requestId
,
"success"
:
false
,
"errorMsg"
:
rtn
.
msg
,
"errorCode"
:
"ok"
};
}
}
}
}
if
(
!
rtn
||
!
rtn
.
stdout
)
{
if
(
!
rtn
||
!
rtn
.
stdout
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
result
.
status
==
0
)
{
if
(
result
.
status
==
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
)
"requestId"
:
result
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
else
{
}
else
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
}
}
//百度icp 2.3 请求
//百度icp 2.3 请求
async
icpOrderStatus
(
pobj
)
{
async
icpOrderStatus
(
pobj
)
{
var
self
=
this
;
var
self
=
this
;
if
(
!
pobj
.
appInfo
||
!
pobj
.
appInfo
.
uapp_key
||
!
pobj
.
appInfo
.
uapp_secret
){
if
(
!
pobj
.
appInfo
||
!
pobj
.
appInfo
.
uapp_key
||
!
pobj
.
appInfo
.
uapp_secret
){
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"无效应用"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"无效应用"
,
"errorCode"
:
"ok"
};
}
}
// 获取app token
// 获取app token
// var tokenInfo = await this.getCenterToken();
// var tokenInfo = await this.getCenterToken();
var
tokenInfo
=
await
this
.
getCenterTokenByApp
(
pobj
.
appInfo
);
var
tokenInfo
=
await
this
.
getCenterTokenByApp
(
pobj
.
appInfo
);
if
(
tokenInfo
.
status
!=
0
)
{
if
(
tokenInfo
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
())
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
var
token
=
tokenInfo
.
data
.
token
;
var
token
=
tokenInfo
.
data
.
token
;
// 引用属性,channel依赖bizId order依赖intentionBizId
// 引用属性,channel依赖bizId order依赖intentionBizId
...
@@ -426,12 +351,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -426,12 +351,7 @@ class UtilsNeedSve extends AppServiceBase {
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
result
=
await
this
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
var
result
=
await
this
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
if
(
result
.
status
!=
0
)
{
if
(
result
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
userparam
.
actionBody
.
channelUserId
=
result
.
data
.
channelUserId
userparam
.
actionBody
.
channelUserId
=
result
.
data
.
channelUserId
userparam
.
actionBody
.
mobile
=
result
.
data
.
publishMobile
userparam
.
actionBody
.
mobile
=
result
.
data
.
publishMobile
...
@@ -445,12 +365,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -445,12 +365,7 @@ class UtilsNeedSve extends AppServiceBase {
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/accessAuth/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/accessAuth/springBoard"
;
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
tokenInfo
.
data
.
token
);
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
tokenInfo
.
data
.
token
);
if
(
userpinResultTmp
.
status
!=
0
)
{
if
(
userpinResultTmp
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
userpinResultTmp
.
requestId
,
userpinResultTmp
.
msg
)
"requestId"
:
userpinResultTmp
.
requestId
,
"success"
:
false
,
"errorMsg"
:
userpinResultTmp
.
msg
,
"errorCode"
:
"ok"
};
}
}
// icpNotify
// icpNotify
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
...
@@ -460,50 +375,25 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -460,50 +375,25 @@ class UtilsNeedSve extends AppServiceBase {
}
}
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpinResultTmp
.
data
.
userpin
);
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpinResultTmp
.
data
.
userpin
);
if
(
!
rtn
||
!
rtn
.
stdout
)
{
if
(
!
rtn
||
!
rtn
.
stdout
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
result
.
status
!=
0
)
{
if
(
result
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
return
{
return
this
.
getResult
(
result
.
requestId
)
"requestId"
:
result
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
//百度icp 2.4 请求 关闭icp订单
//百度icp 2.4 请求 关闭icp订单
async
icpOrderClose
(
pobj
)
{
async
icpOrderClose
(
pobj
)
{
var
self
=
this
;
var
self
=
this
;
if
(
!
pobj
.
appInfo
||
!
pobj
.
appInfo
.
uapp_key
||
!
pobj
.
appInfo
.
uapp_secret
){
if
(
!
pobj
.
appInfo
||
!
pobj
.
appInfo
.
uapp_key
||
!
pobj
.
appInfo
.
uapp_secret
){
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"无效应用"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"无效应用"
,
"errorCode"
:
"ok"
};
}
}
// 获取app token
// 获取app token
// var tokenInfo = await this.getCenterToken();
// var tokenInfo = await this.getCenterToken();
var
tokenInfo
=
await
this
.
getCenterTokenByApp
(
pobj
.
appInfo
);
var
tokenInfo
=
await
this
.
getCenterTokenByApp
(
pobj
.
appInfo
);
if
(
tokenInfo
.
status
!=
0
)
{
if
(
tokenInfo
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
())
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
var
token
=
tokenInfo
.
data
.
token
;
var
token
=
tokenInfo
.
data
.
token
;
var
sobj
=
{
var
sobj
=
{
...
@@ -514,20 +404,10 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -514,20 +404,10 @@ class UtilsNeedSve extends AppServiceBase {
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
result
=
await
this
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
var
result
=
await
this
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
if
(
result
.
status
!=
0
||
!
result
.
data
)
{
if
(
result
.
status
!=
0
||
!
result
.
data
)
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
if
(
!
result
.
data
.
solutionContent
||
!
result
.
data
.
solutionContent
.
customerInfo
||
!
result
.
data
.
solutionContent
.
customerInfo
.
publishMobile
){
if
(
!
result
.
data
.
solutionContent
||
!
result
.
data
.
solutionContent
.
customerInfo
||
!
result
.
data
.
solutionContent
.
customerInfo
.
publishMobile
){
return
{
return
this
.
getResult
(
result
.
requestId
,
"方案客户信息有误"
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
"方案客户信息有误"
,
"errorCode"
:
"ok"
};
}
}
// 获取userpin
// 获取userpin
var
userparam
=
{
var
userparam
=
{
...
@@ -541,12 +421,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -541,12 +421,7 @@ class UtilsNeedSve extends AppServiceBase {
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/accessAuth/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/accessAuth/springBoard"
;
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
token
);
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
token
);
if
(
userpinResultTmp
.
status
!=
0
)
{
if
(
userpinResultTmp
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
userpinResultTmp
.
requestId
,
userpinResultTmp
.
msg
)
"requestId"
:
userpinResultTmp
.
requestId
,
"success"
:
false
,
"errorMsg"
:
userpinResultTmp
.
msg
,
"errorCode"
:
"ok"
};
}
}
var
closeobj
=
{
var
closeobj
=
{
"actionType"
:
"icpOrderClose"
,
"actionType"
:
"icpOrderClose"
,
...
@@ -555,28 +430,13 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -555,28 +430,13 @@ class UtilsNeedSve extends AppServiceBase {
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
closeobj
,
url
,
token
,
userpinResultTmp
.
data
.
userpin
);
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
closeobj
,
url
,
token
,
userpinResultTmp
.
data
.
userpin
);
if
(
!
rtn
||
!
rtn
.
stdout
)
{
if
(
!
rtn
||
!
rtn
.
stdout
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
result
.
status
!=
0
)
{
if
(
result
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
return
{
return
this
.
getResult
(
result
.
requestId
)
"requestId"
:
result
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
// -------------提交Icp需求--------庄冰2020.10.21-------百度Icp接入使用--------end------------------
// -------------提交Icp需求--------庄冰2020.10.21-------百度Icp接入使用--------end------------------
async
paySuccess
(
pobj
)
{
async
paySuccess
(
pobj
)
{
...
@@ -586,12 +446,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -586,12 +446,7 @@ class UtilsNeedSve extends AppServiceBase {
}
}
var
tokenInfo
=
await
this
.
getCenterToken
();
var
tokenInfo
=
await
this
.
getCenterToken
();
if
(
tokenInfo
.
status
!=
0
)
{
if
(
tokenInfo
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
())
"requestId"
:
self
.
getUUID
(),
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
// return { "message": "success", "data": {}, "code": 200 }
// return { "message": "success", "data": {}, "code": 200 }
}
}
var
userpin
=
""
;
var
userpin
=
""
;
...
@@ -612,22 +467,12 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -612,22 +467,12 @@ class UtilsNeedSve extends AppServiceBase {
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
tokenInfo
.
data
.
token
);
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
tokenInfo
.
data
.
token
);
if
(
userpinResultTmp
.
status
!=
0
&&
userpinResultTmp
.
status
!=
2060
)
{
if
(
userpinResultTmp
.
status
!=
0
&&
userpinResultTmp
.
status
!=
2060
)
{
// return { "message": "网络错误", "data": {}, "code": -102 }
// return { "message": "网络错误", "data": {}, "code": -102 }
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
userpin
=
userpinResultTmp
.
data
.
userpin
;
userpin
=
userpinResultTmp
.
data
.
userpin
;
if
(
!
userpin
)
{
if
(
!
userpin
)
{
// return { "message": "网络错误", "data": {}, "code": -102 }
// return { "message": "网络错误", "data": {}, "code": -102 }
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
}
}
//带userpin请求
//带userpin请求
...
@@ -636,30 +481,15 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -636,30 +481,15 @@ class UtilsNeedSve extends AppServiceBase {
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpin
);
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpin
);
if
(
!
rtn
||
!
rtn
.
stdout
)
{
if
(
!
rtn
||
!
rtn
.
stdout
)
{
// return { "message": "网络错误", "data": {}, "code": -102 }
// return { "message": "网络错误", "data": {}, "code": -102 }
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
result
.
status
==
0
)
{
if
(
result
.
status
==
0
)
{
// return { "message": "true", "data": {}, "code": 200 }
// return { "message": "true", "data": {}, "code": 200 }
return
{
return
this
.
getResult
(
result
.
requestId
)
"requestId"
:
result
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
else
{
}
else
{
// return { "message": result.msg, "data": {}, "code": -102 }
// return { "message": result.msg, "data": {}, "code": -102 }
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
}
}
...
@@ -671,43 +501,23 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -671,43 +501,23 @@ class UtilsNeedSve extends AppServiceBase {
var
self
=
this
;
var
self
=
this
;
var
tokenInfo
=
await
this
.
getCenterToken
();
var
tokenInfo
=
await
this
.
getCenterToken
();
if
(
tokenInfo
.
status
!=
0
)
{
if
(
tokenInfo
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
())
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/ic/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/ic/springBoard"
;
var
token
=
tokenInfo
.
data
.
token
;
var
token
=
tokenInfo
.
data
.
token
;
var
rtn
=
await
self
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
var
rtn
=
await
self
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
if
(
rtn
.
status
==
0
)
{
if
(
rtn
.
status
==
0
)
{
return
{
return
this
.
getResult
(
rtn
.
requestId
)
"requestId"
:
rtn
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
else
{
}
else
{
return
{
return
this
.
getResult
(
rtn
.
requestId
,
rtn
.
msg
)
"requestId"
:
rtn
.
requestId
,
"success"
:
false
,
"errorMsg"
:
rtn
.
msg
,
"errorCode"
:
"ok"
};
}
}
}
}
//商标建案后通知启服通保存TM_单号
//商标建案后通知启服通保存TM_单号
async
tmNotifyChannel
(
pobj
){
async
tmNotifyChannel
(
pobj
){
var
tokenInfo
=
await
this
.
getCenterToken
();
var
tokenInfo
=
await
this
.
getCenterToken
();
if
(
tokenInfo
.
status
!=
0
)
{
if
(
tokenInfo
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
())
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
var
token
=
tokenInfo
.
data
.
token
;
var
token
=
tokenInfo
.
data
.
token
;
pobj
.
intentionBizId
=
pobj
.
bizId
pobj
.
intentionBizId
=
pobj
.
bizId
...
@@ -724,12 +534,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -724,12 +534,7 @@ class UtilsNeedSve extends AppServiceBase {
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
result
=
await
this
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
var
result
=
await
this
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
if
(
result
.
status
!=
0
)
{
if
(
result
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
userparam
.
actionBody
.
channelUserId
=
result
.
data
.
channelUserId
userparam
.
actionBody
.
channelUserId
=
result
.
data
.
channelUserId
userparam
.
actionBody
.
mobile
=
result
.
data
.
publishMobile
userparam
.
actionBody
.
mobile
=
result
.
data
.
publishMobile
...
@@ -742,12 +547,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -742,12 +547,7 @@ class UtilsNeedSve extends AppServiceBase {
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/accessAuth/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/accessAuth/springBoard"
;
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
tokenInfo
.
data
.
token
);
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
tokenInfo
.
data
.
token
);
if
(
userpinResultTmp
.
status
!=
0
)
{
if
(
userpinResultTmp
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
userpinResultTmp
.
requestId
,
userpinResultTmp
.
msg
)
"requestId"
:
userpinResultTmp
.
requestId
,
"success"
:
false
,
"errorMsg"
:
userpinResultTmp
.
msg
,
"errorCode"
:
"ok"
};
}
}
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
sobj
=
{
var
sobj
=
{
...
@@ -756,28 +556,13 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -756,28 +556,13 @@ class UtilsNeedSve extends AppServiceBase {
}
}
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpinResultTmp
.
data
.
userpin
);
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpinResultTmp
.
data
.
userpin
);
if
(
!
rtn
||
!
rtn
.
stdout
)
{
if
(
!
rtn
||
!
rtn
.
stdout
)
{
return
{
return
this
.
getResult
(
this
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
result
.
status
!=
0
)
{
if
(
result
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
return
{
return
this
.
getResult
(
result
.
requestId
)
"requestId"
:
result
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
//icp 2.3 请求
//icp 2.3 请求
async
queryOrderState
(
pobj
)
{
async
queryOrderState
(
pobj
)
{
...
@@ -785,12 +570,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -785,12 +570,7 @@ class UtilsNeedSve extends AppServiceBase {
// 获取app token
// 获取app token
var
tokenInfo
=
await
this
.
getCenterToken
();
var
tokenInfo
=
await
this
.
getCenterToken
();
if
(
tokenInfo
.
status
!=
0
)
{
if
(
tokenInfo
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
())
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
var
token
=
tokenInfo
.
data
.
token
;
var
token
=
tokenInfo
.
data
.
token
;
// 引用属性,channel依赖bizId order依赖intentionBizId
// 引用属性,channel依赖bizId order依赖intentionBizId
...
@@ -809,12 +589,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -809,12 +589,7 @@ class UtilsNeedSve extends AppServiceBase {
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
result
=
await
this
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
var
result
=
await
this
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
if
(
result
.
status
!=
0
)
{
if
(
result
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
pobj
.
mobile
=
result
.
data
.
solutionContent
.
customerInfo
.
publishMobile
pobj
.
mobile
=
result
.
data
.
solutionContent
.
customerInfo
.
publishMobile
}
}
...
@@ -834,12 +609,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -834,12 +609,7 @@ class UtilsNeedSve extends AppServiceBase {
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
result
=
await
this
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
var
result
=
await
this
.
execlient
.
execPostTK
(
sobj
,
url
,
token
);
if
(
result
.
status
!=
0
)
{
if
(
result
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
userparam
.
actionBody
.
channelUserId
=
result
.
data
.
channelUserId
userparam
.
actionBody
.
channelUserId
=
result
.
data
.
channelUserId
userparam
.
actionBody
.
mobile
=
result
.
data
.
publishMobile
userparam
.
actionBody
.
mobile
=
result
.
data
.
publishMobile
...
@@ -853,12 +623,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -853,12 +623,7 @@ class UtilsNeedSve extends AppServiceBase {
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/accessAuth/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/accessAuth/springBoard"
;
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
tokenInfo
.
data
.
token
);
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
tokenInfo
.
data
.
token
);
if
(
userpinResultTmp
.
status
!=
0
)
{
if
(
userpinResultTmp
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
userpinResultTmp
.
requestId
,
userpinResultTmp
.
msg
)
"requestId"
:
userpinResultTmp
.
requestId
,
"success"
:
false
,
"errorMsg"
:
userpinResultTmp
.
msg
,
"errorCode"
:
"ok"
};
}
}
// icpNotify
// icpNotify
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/opreceive/need/springBoard"
;
...
@@ -868,40 +633,20 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -868,40 +633,20 @@ class UtilsNeedSve extends AppServiceBase {
}
}
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpinResultTmp
.
data
.
userpin
);
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpinResultTmp
.
data
.
userpin
);
if
(
!
rtn
||
!
rtn
.
stdout
)
{
if
(
!
rtn
||
!
rtn
.
stdout
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
result
.
status
!=
0
)
{
if
(
result
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
return
{
return
this
.
getResult
(
result
.
requestId
)
"requestId"
:
result
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
// 2020 0925 lin 新增 阿里文网文 服务商侧提供接口2.1 提交用户需求给服务商
// 2020 0925 lin 新增 阿里文网文 服务商侧提供接口2.1 提交用户需求给服务商
async
submitNeedAliEsp
(
pobj
)
{
async
submitNeedAliEsp
(
pobj
)
{
var
tokenInfo
=
await
this
.
getCenterToken
();
var
tokenInfo
=
await
this
.
getCenterToken
();
if
(
tokenInfo
.
status
!=
0
)
{
if
(
tokenInfo
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
this
.
getUUID
())
"requestId"
:
self
.
getUUID
(),
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
var
token
=
tokenInfo
.
data
.
token
;
var
token
=
tokenInfo
.
data
.
token
;
var
userpin
=
""
;
var
userpin
=
""
;
...
@@ -920,22 +665,12 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -920,22 +665,12 @@ class UtilsNeedSve extends AppServiceBase {
var
url
=
settings
.
centerChannelUrl
()
+
"/api/auth/accessAuth/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/auth/accessAuth/springBoard"
;
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
tokenInfo
.
data
.
token
);
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
tokenInfo
.
data
.
token
);
if
(
userpinResultTmp
.
status
!=
0
&&
userpinResultTmp
.
status
!=
2060
)
{
if
(
userpinResultTmp
.
status
!=
0
&&
userpinResultTmp
.
status
!=
2060
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
userpin
=
userpinResultTmp
.
data
.
userpin
;
userpin
=
userpinResultTmp
.
data
.
userpin
;
if
(
!
userpin
)
{
if
(
!
userpin
)
{
// return { "message": "网络错误", "data": {}, "code": -102 }
// return { "message": "网络错误", "data": {}, "code": -102 }
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
}
}
//带userpin请求
//带userpin请求
...
@@ -950,28 +685,13 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -950,28 +685,13 @@ class UtilsNeedSve extends AppServiceBase {
}
}
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpin
);
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpin
);
if
(
!
rtn
||
!
rtn
.
stdout
)
{
if
(
!
rtn
||
!
rtn
.
stdout
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
result
.
status
==
0
)
{
if
(
result
.
status
==
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
)
"requestId"
:
result
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
else
{
}
else
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
}
}
...
@@ -979,12 +699,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -979,12 +699,7 @@ class UtilsNeedSve extends AppServiceBase {
async
needCloseAliEsp
(
pobj
)
{
async
needCloseAliEsp
(
pobj
)
{
var
tokenInfo
=
await
this
.
getCenterToken
();
var
tokenInfo
=
await
this
.
getCenterToken
();
if
(
tokenInfo
.
status
!=
0
)
{
if
(
tokenInfo
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
())
"requestId"
:
self
.
getUUID
(),
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
var
token
=
tokenInfo
.
data
.
token
;
var
token
=
tokenInfo
.
data
.
token
;
var
userpin
=
""
;
var
userpin
=
""
;
...
@@ -1002,22 +717,12 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -1002,22 +717,12 @@ class UtilsNeedSve extends AppServiceBase {
var
url
=
settings
.
centerChannelUrl
()
+
"/api/auth/accessAuth/springBoard"
;
var
url
=
settings
.
centerChannelUrl
()
+
"/api/auth/accessAuth/springBoard"
;
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
tokenInfo
.
data
.
token
);
var
userpinResultTmp
=
await
this
.
execlient
.
execPostTK
(
userparam
,
url
,
tokenInfo
.
data
.
token
);
if
(
userpinResultTmp
.
status
!=
0
&&
userpinResultTmp
.
status
!=
2060
)
{
if
(
userpinResultTmp
.
status
!=
0
&&
userpinResultTmp
.
status
!=
2060
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
userpin
=
userpinResultTmp
.
data
.
userpin
;
userpin
=
userpinResultTmp
.
data
.
userpin
;
if
(
!
userpin
)
{
if
(
!
userpin
)
{
// return { "message": "网络错误", "data": {}, "code": -102 }
// return { "message": "网络错误", "data": {}, "code": -102 }
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
}
}
//带userpin请求
//带userpin请求
...
@@ -1028,28 +733,13 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -1028,28 +733,13 @@ class UtilsNeedSve extends AppServiceBase {
}
}
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpin
);
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpin
);
if
(
!
rtn
||
!
rtn
.
stdout
)
{
if
(
!
rtn
||
!
rtn
.
stdout
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
result
.
status
==
0
)
{
if
(
result
.
status
==
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
)
"requestId"
:
result
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
else
{
}
else
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
}
}
...
@@ -1057,12 +747,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -1057,12 +747,7 @@ class UtilsNeedSve extends AppServiceBase {
async
produceNoticeAliEsp
(
pobj
)
{
async
produceNoticeAliEsp
(
pobj
)
{
var
tokenInfo
=
await
this
.
getCenterToken
();
var
tokenInfo
=
await
this
.
getCenterToken
();
if
(
tokenInfo
.
status
!=
0
)
{
if
(
tokenInfo
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
this
.
getUUID
())
"requestId"
:
this
.
getUUID
(),
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
var
token
=
tokenInfo
.
data
.
token
;
var
token
=
tokenInfo
.
data
.
token
;
var
userpin
=
""
;
var
userpin
=
""
;
...
@@ -1074,28 +759,13 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -1074,28 +759,13 @@ class UtilsNeedSve extends AppServiceBase {
}
}
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpin
);
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpin
);
if
(
!
rtn
||
!
rtn
.
stdout
)
{
if
(
!
rtn
||
!
rtn
.
stdout
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
result
.
status
==
0
)
{
if
(
result
.
status
==
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
)
"requestId"
:
result
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
else
{
}
else
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
}
}
...
@@ -1103,12 +773,7 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -1103,12 +773,7 @@ class UtilsNeedSve extends AppServiceBase {
async
soulutionFeebackAliEsp
(
pobj
)
{
async
soulutionFeebackAliEsp
(
pobj
)
{
var
tokenInfo
=
await
this
.
getCenterToken
();
var
tokenInfo
=
await
this
.
getCenterToken
();
if
(
tokenInfo
.
status
!=
0
)
{
if
(
tokenInfo
.
status
!=
0
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
())
"requestId"
:
self
.
getUUID
(),
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
}
var
token
=
tokenInfo
.
data
.
token
;
var
token
=
tokenInfo
.
data
.
token
;
var
userpin
=
""
;
var
userpin
=
""
;
...
@@ -1120,28 +785,13 @@ class UtilsNeedSve extends AppServiceBase {
...
@@ -1120,28 +785,13 @@ class UtilsNeedSve extends AppServiceBase {
}
}
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpin
);
var
rtn
=
await
this
.
execlient
.
execDataPostByTokenUserPin
(
sobj
,
url
,
token
,
userpin
);
if
(
!
rtn
||
!
rtn
.
stdout
)
{
if
(
!
rtn
||
!
rtn
.
stdout
)
{
return
{
return
this
.
getResult
(
self
.
getUUID
(),
"网络错误"
)
"requestId"
:
self
.
getUUID
(),
"success"
:
false
,
"errorMsg"
:
"网络错误"
,
"errorCode"
:
"ok"
};
}
}
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
var
result
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
result
.
status
==
0
)
{
if
(
result
.
status
==
0
)
{
return
{
return
this
.
getResult
(
result
.
requestId
)
"requestId"
:
result
.
requestId
,
"success"
:
true
,
"errorMsg"
:
""
,
"errorCode"
:
"ok"
};
}
else
{
}
else
{
return
{
return
this
.
getResult
(
result
.
requestId
,
result
.
msg
)
"requestId"
:
result
.
requestId
,
"success"
:
false
,
"errorMsg"
:
result
.
msg
,
"errorCode"
:
"ok"
};
}
}
}
}
}
}
...
...
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