|
@@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.jeecg.modules.okki.account.entity.OkkiAccount;
|
|
|
import org.jeecg.modules.okki.account.mapper.OkkiAccountMapper;
|
|
|
+import org.jeecg.modules.okki.account.param.OkkiAccountResetPwdParam;
|
|
|
import org.jeecg.modules.okki.account.service.IOkkiAccountService;
|
|
|
import org.jeecg.modules.okki.utils.HttpClientUtils;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
@@ -49,6 +50,7 @@ public class OkkiAccountServiceImpl extends ServiceImpl<OkkiAccountMapper, OkkiA
|
|
|
String queryStr = HttpClientUtils.buildQueryString(query);
|
|
|
postData.put("email", okkiAccount.getAccount());
|
|
|
postData.put("pwd", okkiAccount.getPassword());
|
|
|
+ postData.put("user_role", okkiAccount.getUserRole());
|
|
|
|
|
|
String body = HttpClientUtils.toJsonString(postData);
|
|
|
String signStr = queryStr + body;
|
|
@@ -66,11 +68,10 @@ public class OkkiAccountServiceImpl extends ServiceImpl<OkkiAccountMapper, OkkiA
|
|
|
Integer userStatus = (Integer) jsonObject1.get("user_status");
|
|
|
okkiAccount.setUserId(userId);
|
|
|
okkiAccount.setStatus(userStatus);
|
|
|
+ this.save(okkiAccount);
|
|
|
//关联站点
|
|
|
if (!okkiAccount.getSiteIds().equals("")) {
|
|
|
bindSites(okkiAccount);
|
|
|
- }else {
|
|
|
- this.save(okkiAccount);
|
|
|
}
|
|
|
}else {
|
|
|
throw new RuntimeException(jsonObject.get("msg").toString());
|
|
@@ -81,23 +82,26 @@ public class OkkiAccountServiceImpl extends ServiceImpl<OkkiAccountMapper, OkkiA
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void updateAccount(OkkiAccount okkiAccount) {
|
|
|
- // 站点关联
|
|
|
+ public void updateAccount(OkkiAccount okkiAccountParam) {
|
|
|
+ final OkkiAccount okkiAccount = this.getById(okkiAccountParam.getId());
|
|
|
+ okkiAccount.setUserId(okkiAccountParam.getUserId());
|
|
|
+ this.updateById(okkiAccount);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void resetRole(OkkiAccount okkiAccountParam) {
|
|
|
// 请求okki平台接口
|
|
|
Map<String, String> query = new TreeMap<>();
|
|
|
query.put("sign_method", "hmac-md5");
|
|
|
query.put("timestamp", String.valueOf(System.currentTimeMillis()));
|
|
|
query.put("site_id", "sp_weichi");
|
|
|
- query.put("method", "bindSite");
|
|
|
+ query.put("method", "resetRole");
|
|
|
Map<String, Object> postData = new HashMap<>();
|
|
|
try {
|
|
|
String queryStr = HttpClientUtils.buildQueryString(query);
|
|
|
- postData.put("user_id", this.getById(okkiAccount.getId()).getUserId());
|
|
|
- // 字符串转数组
|
|
|
- String siteIds = okkiAccount.getSiteIds();
|
|
|
- String[] split = siteIds.split(",");
|
|
|
- postData.put("site_ids", split);
|
|
|
- postData.put("type", "update");
|
|
|
+ final OkkiAccount okkiAccount = this.getById(okkiAccountParam.getId());
|
|
|
+ postData.put("user_id", okkiAccount.getUserId());
|
|
|
+ postData.put("user_role", okkiAccountParam.getUserRole());
|
|
|
|
|
|
String body = HttpClientUtils.toJsonString(postData);
|
|
|
String signStr = queryStr + body;
|
|
@@ -109,6 +113,7 @@ public class OkkiAccountServiceImpl extends ServiceImpl<OkkiAccountMapper, OkkiA
|
|
|
// {"code":0,"msg":"success","now":"2024-05-06 15:34:54","data":[]}
|
|
|
JSONObject jsonObject= JSONObject.parseObject(res);
|
|
|
if (jsonObject.get("code").equals(0)) {
|
|
|
+ okkiAccount.setUserRole(okkiAccountParam.getUserRole());
|
|
|
this.updateById(okkiAccount);
|
|
|
}else {
|
|
|
throw new RuntimeException(jsonObject.get("msg").toString());
|
|
@@ -118,7 +123,8 @@ public class OkkiAccountServiceImpl extends ServiceImpl<OkkiAccountMapper, OkkiA
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- private void bindSites(OkkiAccount okkiAccount) {
|
|
|
+ @Override
|
|
|
+ public void bindSites(OkkiAccount okkiAccountParam) {
|
|
|
// 请求okki平台接口
|
|
|
Map<String, String> query = new TreeMap<>();
|
|
|
query.put("sign_method", "hmac-md5");
|
|
@@ -128,9 +134,10 @@ public class OkkiAccountServiceImpl extends ServiceImpl<OkkiAccountMapper, OkkiA
|
|
|
Map<String, Object> postData = new HashMap<>();
|
|
|
try {
|
|
|
String queryStr = HttpClientUtils.buildQueryString(query);
|
|
|
+ final OkkiAccount okkiAccount = this.getById(okkiAccountParam.getId());
|
|
|
postData.put("user_id", okkiAccount.getUserId());
|
|
|
// 字符串转数组
|
|
|
- String siteIds = okkiAccount.getSiteIds();
|
|
|
+ String siteIds = okkiAccountParam.getSiteIds();
|
|
|
String[] split = siteIds.split(",");
|
|
|
postData.put("site_ids", split);
|
|
|
postData.put("type", "update");
|
|
@@ -142,10 +149,45 @@ public class OkkiAccountServiceImpl extends ServiceImpl<OkkiAccountMapper, OkkiA
|
|
|
log.info("url:" + okkiUrl + ",body:" + body);
|
|
|
String res = HttpClientUtils.doPost(okkiUrl, body);
|
|
|
log.info(res);
|
|
|
- // {"code":0,"msg":"success","now":"2024-05-06 15:34:54","data":[]}
|
|
|
JSONObject jsonObject= JSONObject.parseObject(res);
|
|
|
if (jsonObject.get("code").equals(0)) {
|
|
|
- this.save(okkiAccount);
|
|
|
+ okkiAccount.setSiteIds(siteIds);
|
|
|
+ this.updateById(okkiAccount);
|
|
|
+ }else {
|
|
|
+ throw new RuntimeException(jsonObject.get("msg").toString());
|
|
|
+ }
|
|
|
+ } catch (Exception e) {
|
|
|
+ throw new RuntimeException(e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void resetPwd(OkkiAccountResetPwdParam okkiAccountResetPwdParam) {
|
|
|
+ // 请求okki平台接口
|
|
|
+ Map<String, String> query = new TreeMap<>();
|
|
|
+ query.put("sign_method", "hmac-md5");
|
|
|
+ query.put("timestamp", String.valueOf(System.currentTimeMillis()));
|
|
|
+ query.put("site_id", "sp_weichi");
|
|
|
+ query.put("method", "resetPwd");
|
|
|
+ Map<String, Object> postData = new HashMap<>();
|
|
|
+ try {
|
|
|
+ String queryStr = HttpClientUtils.buildQueryString(query);
|
|
|
+ final OkkiAccount okkiAccount = this.getById(okkiAccountResetPwdParam.getId());
|
|
|
+ postData.put("user_id", okkiAccount.getUserId());
|
|
|
+ postData.put("old_pwd", okkiAccountResetPwdParam.getOldPassword());
|
|
|
+ postData.put("pwd", okkiAccountResetPwdParam.getNewPassword());
|
|
|
+
|
|
|
+ String body = HttpClientUtils.toJsonString(postData);
|
|
|
+ String signStr = queryStr + body;
|
|
|
+ query.put("signature", HttpClientUtils.generateHmacMD5(signStr, CLIENT_SECRET));
|
|
|
+ String okkiUrl = URL + "?" + HttpClientUtils.buildQueryString(query);
|
|
|
+ log.info("url:" + okkiUrl + ",body:" + body);
|
|
|
+ String res = HttpClientUtils.doPost(okkiUrl, body);
|
|
|
+ log.info(res);
|
|
|
+ JSONObject jsonObject= JSONObject.parseObject(res);
|
|
|
+ if (jsonObject.get("code").equals(0)) {
|
|
|
+ okkiAccount.setPassword(okkiAccountResetPwdParam.getNewPassword());
|
|
|
+ this.updateById(okkiAccount);
|
|
|
}else {
|
|
|
throw new RuntimeException(jsonObject.get("msg").toString());
|
|
|
}
|