use of com.stardata.starshop2.sharedcontext.domain.MobileNumber in project starshop by beautautumn.
the class StarshopAuthDecryptingTests method should_get_mobile_phone_correctly_given_exists_userid_and_correct_encrypted_data_iv_by_domain_service.
// 1.1. 正常的已有用户、加密数据encryptedData、iv,成功解密手机号,并更新用户对象手机号
@Test
@Transactional
@Rollback(true)
void should_get_mobile_phone_correctly_given_exists_userid_and_correct_encrypted_data_iv_by_domain_service() {
// given: 正常的已有用户、加密数据encryptedData、iv
String code = "011NXJ000zQ8VN1iJZ000DWjjS2NXJ0e";
String rawData = "{\"nickName\":\"深清秋\",\"gender\":0,\"language\":\"zh_CN\",\"city\":\"\",\"province\":\"\",\"country\":\"\",\"avatarUrl\":\"https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKq2CRmib1mpu4hOFYtcIHgAmS7DicCEfYkUHoPmPQn74BXH5GerjoMOxIqib7iafNNBw2ZAicBj6gZGUQ/132\"}";
String signature = "3901b7322c7920ef4a5077eeba54b0d633585eef";
WxAuthInfo wxAuthInfo = new WxAuthInfo(rawData, signature);
User requestUser = User.of("深清秋", 1).avatarUrl("https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKq2CRmib1mpu4hOFYtcIHgAmS7DicCEfYkUHoPmPQn74BXH5GerjoMOxIqib7iafNNBw2ZAicBj6gZGUQ/132").country("中国").province("江苏").city("南京").language("zh_CN");
User user = loginWithTokenService.loginWithToken(code, wxAuthInfo, requestUser);
userRepository.add(user);
entityManager.flush();
LongIdentity userId = user.getId();
String encryptedData = "NkSHcnyy8jJZwvsTBpb8Kw7jKIdYz1UnVqJ9Gf2NGFAn3DEeObh7W2Vh5hlgvs5zvtfNsV/IW+oHxEtzN4DY1E/tsGWnhiZYN+pYQun/8gNPrUNsjlR8saZIYoTGNcKpchNp+QEPzP/JFtGqIH+Etpk11RVRWepNJdYNzG3aNLUVmYQRqgCom7kYRrbM7g7GDu/jnqzvMn65ps48GawfQA==";
String iv = "S2r8F/Gr0aUEs7BoerD5ZQ==";
// when: 解密手机号
MobileNumber mobileNumber = mobileNumberDecryptingService.decryptWxMobileNumber(userId, encryptedData, iv);
userRepository.update(user);
entityManager.flush();
User loadedUser = userRepository.instanceOf(userId);
// then: 判定解密手机号是否正确
assertNotNull(mobileNumber);
assertEquals(mobileNumber.value(), "18652012976");
assertEquals(loadedUser.getMobileNumber().value(), "18652012976");
}
use of com.stardata.starshop2.sharedcontext.domain.MobileNumber in project starshop by beautautumn.
the class StarshopAuthDecryptingTests method should_throw_exception_given_not_exists_user_and_correct_encrypted_data_iv_by_domain_service.
// 1.2. 系统中不存在该用户,解密报业务异常 ApplicationValidationException
@Test
@Transactional
@Rollback(true)
void should_throw_exception_given_not_exists_user_and_correct_encrypted_data_iv_by_domain_service() {
// given: 正确的加密数据encryptedData、iv,不存在的userId
String code = "011NXJ000zQ8VN1iJZ000DWjjS2NXJ0e";
String rawData = "{\"nickName\":\"深清秋\",\"gender\":0,\"language\":\"zh_CN\",\"city\":\"\",\"province\":\"\",\"country\":\"\",\"avatarUrl\":\"https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKq2CRmib1mpu4hOFYtcIHgAmS7DicCEfYkUHoPmPQn74BXH5GerjoMOxIqib7iafNNBw2ZAicBj6gZGUQ/132\"}";
String signature = "3901b7322c7920ef4a5077eeba54b0d633585eef";
WxAuthInfo wxAuthInfo = new WxAuthInfo(rawData, signature);
User requestUser = User.of("深清秋", 1).avatarUrl("https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKq2CRmib1mpu4hOFYtcIHgAmS7DicCEfYkUHoPmPQn74BXH5GerjoMOxIqib7iafNNBw2ZAicBj6gZGUQ/132").country("中国").province("江苏").city("南京").language("zh_CN");
User user = loginWithTokenService.loginWithToken(code, wxAuthInfo, requestUser);
userRepository.add(user);
entityManager.flush();
LongIdentity userId = LongIdentity.snowflakeId();
String encryptedData = "NkSHcnyy8jJZwvsTBpb8Kw7jKIdYz1UnVqJ9Gf2NGFAn3DEeObh7W2Vh5hlgvs5zvtfNsV/IW+oHxEtzN4DY1E/tsGWnhiZYN+pYQun/8gNPrUNsjlR8saZIYoTGNcKpchNp+QEPzP/JFtGqIH+Etpk11RVRWepNJdYNzG3aNLUVmYQRqgCom7kYRrbM7g7GDu/jnqzvMn65ps48GawfQA==";
String iv = "S2r8F/Gr0aUEs7BoerD5ZQ==";
try {
// when: 解密手机号
MobileNumber mobileNumber = mobileNumberDecryptingService.decryptWxMobileNumber(userId, encryptedData, iv);
// 下面这些不应该被执行到
userRepository.update(user);
entityManager.flush();
User loadedUser = userRepository.instanceOf(userId);
// then: 判定解密手机号是否正确
assertNotNull(mobileNumber);
assertEquals(mobileNumber.value(), "18652012976");
assertEquals(loadedUser.getMobileNumber().value(), "18652012976");
} catch (ApplicationValidationException e) {
assertNotNull(e);
assertEquals(e.getErrCode(), ApplicationValidationException.INVALID_REQUEST_ENTITY);
}
}
use of com.stardata.starshop2.sharedcontext.domain.MobileNumber in project starshop by beautautumn.
the class StarshopAuthDecryptingTests method should_throw_exception_given_exists_user_and_incorrect_encrypted_data_iv_by_domain_service.
// 1.3. 加密数据encryptedData、iv内容不合格,解密报业务异常 ApplicationValidationException
@Test
@Transactional
@Rollback(true)
void should_throw_exception_given_exists_user_and_incorrect_encrypted_data_iv_by_domain_service() {
// given: 正常的已有用户,不正确的加密数据encryptedData、iv
String code = "011NXJ000zQ8VN1iJZ000DWjjS2NXJ0e";
String rawData = "{\"nickName\":\"深清秋\",\"gender\":0,\"language\":\"zh_CN\",\"city\":\"\",\"province\":\"\",\"country\":\"\",\"avatarUrl\":\"https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKq2CRmib1mpu4hOFYtcIHgAmS7DicCEfYkUHoPmPQn74BXH5GerjoMOxIqib7iafNNBw2ZAicBj6gZGUQ/132\"}";
String signature = "3901b7322c7920ef4a5077eeba54b0d633585eef";
WxAuthInfo wxAuthInfo = new WxAuthInfo(rawData, signature);
User requestUser = User.of("深清秋", 1).avatarUrl("https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKq2CRmib1mpu4hOFYtcIHgAmS7DicCEfYkUHoPmPQn74BXH5GerjoMOxIqib7iafNNBw2ZAicBj6gZGUQ/132").country("中国").province("江苏").city("南京").language("zh_CN");
User user = loginWithTokenService.loginWithToken(code, wxAuthInfo, requestUser);
userRepository.add(user);
entityManager.flush();
LongIdentity userId = user.getId();
String encryptedData = "NkSHcnyy88jJZwvsTBpb8Kw7jKIdYz1UnVqJ9Gf2NGFAn3DEeObh7W2Vh5hlgvs5zvtfNsV/IW+oHxEtzN4DY1E/tsGWnhiZYN+pYQun/8gNPrUNsjlR8saZIYoTGNcKpchNp+QEPzP/JFtGqIH+Etpk11RVRWepNJdYNzG3aNLUVmYQRqgCom7kYRrbM7g7GDu/jnqzvMn65ps48GawfQA==";
String iv = "S2r8F/Gr0aUEs7BoerD5ZQ==";
try {
// when: 解密手机号
MobileNumber mobileNumber = mobileNumberDecryptingService.decryptWxMobileNumber(userId, encryptedData, iv);
// 下面这些不应该被执行到
userRepository.update(user);
entityManager.flush();
User loadedUser = userRepository.instanceOf(userId);
// then: 判定解密手机号是否正确
assertNotNull(mobileNumber);
assertEquals(mobileNumber.value(), "18652012976");
assertEquals(loadedUser.getMobileNumber().value(), "18652012976");
} catch (ApplicationValidationException e) {
assertNotNull(e);
assertEquals(e.getErrCode(), ApplicationValidationException.INVALID_REQUEST_DATA);
}
}
use of com.stardata.starshop2.sharedcontext.domain.MobileNumber in project starshop by beautautumn.
the class MobileNumberDecryptingService method decryptWxMobileNumber.
public MobileNumber decryptWxMobileNumber(LongIdentity userId, String encryptedData, String iv) {
User user = repository.instanceOf(userId);
if (user == null) {
throw new ApplicationValidationException(ApplicationValidationException.INVALID_REQUEST_ENTITY, "The user is not exists.");
}
MobileNumber mobileNumber = decryptingClient.decryptMobileNumber(user.currentToken(), encryptedData, iv);
user.updateMobileNumber(mobileNumber);
repository.update(user);
return mobileNumber;
}
use of com.stardata.starshop2.sharedcontext.domain.MobileNumber in project starshop by beautautumn.
the class AuthAppService method decryptWxMobileNumber.
public MobileNumberResponse decryptWxMobileNumber(SessionUser loginUser, WxEncryptedUserInfo encryptedUserInfo) {
LongIdentity userId = LongIdentity.from(loginUser.getId());
String encryptedData = encryptedUserInfo.getEncryptedData();
String iv = encryptedUserInfo.getIv();
MobileNumber mobileNumber = decryptService.decryptWxMobileNumber(userId, encryptedData, iv);
return MobileNumberResponse.from(mobileNumber);
}
Aggregations