Improve rule address validation

pull/207/head
M66B 4 years ago
parent 146f2bb8a8
commit 55ad97ad4d

@ -539,8 +539,14 @@ public class EntityRule {
String to = jargs.optString("to"); String to = jargs.optString("to");
if (TextUtils.isEmpty(to)) if (TextUtils.isEmpty(to))
throw new IllegalArgumentException(context.getString(R.string.title_rule_answer_missing)); throw new IllegalArgumentException(context.getString(R.string.title_rule_answer_missing));
else if (!Helper.EMAIL_ADDRESS.matcher(to).matches()) else
try {
InternetAddress[] addresses = MessageHelper.parseAddresses(context, to);
if (addresses == null || addresses.length == 0)
throw new IllegalArgumentException(context.getString(R.string.title_no_email));
} catch (AddressException ex) {
throw new IllegalArgumentException(context.getString(R.string.title_email_invalid, to)); throw new IllegalArgumentException(context.getString(R.string.title_email_invalid, to));
}
} else { } else {
EntityAnswer answer = db.answer().getAnswer(aid); EntityAnswer answer = db.answer().getAnswer(aid);
if (answer == null) if (answer == null)

Loading…
Cancel
Save