use of com.zimbra.client.ZFilterCondition.ZBodyCondition in project zm-mailbox by Zimbra.
the class ZFilterRule method parseFilterRule.
public static ZFilterRule parseFilterRule(String[] args) throws ServiceException {
String name = args[0];
boolean all = true;
boolean active = true;
List<ZFilterCondition> conditions = new ArrayList<ZFilterCondition>();
List<ZFilterAction> actions = new ArrayList<ZFilterAction>();
int i = 1;
while (i < args.length) {
String a = args[i++];
if (a.equals("active")) {
active = true;
} else if (a.equals("inactive")) {
active = false;
} else if (a.equals("any")) {
all = false;
} else if (a.equals("all")) {
all = true;
} else if (a.equals("addressbook")) {
if (i + 2 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
String op = args[i++];
String header = args[i++];
conditions.add(new ZAddressBookCondition(AddressBookOp.fromString(op), header));
} else if (a.equals("contact_ranking")) {
if (i + 2 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
String op = args[i++];
String header = args[i++];
conditions.add(new ZContactRankingCondition(ContactRankingOp.fromString(op), header));
} else if (a.equals("me")) {
if (i + 2 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
String op = args[i++];
String header = args[i++];
conditions.add(new ZMeCondition(MeOp.fromString(op), header));
} else if (a.equals("attachment")) {
if (i + 1 > args.length) {
throw ZClientException.CLIENT_ERROR("missing exists arg", null);
}
conditions.add(new ZAttachmentExistsCondition(args[i++].equals("exists")));
} else if (a.equals("body")) {
if (i + 2 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
String op = args[i++];
String nextArg = args[i++];
boolean caseSensitive = false;
if (ZFilterCondition.C_CASE_SENSITIVE.equals(nextArg)) {
caseSensitive = true;
if (i + 1 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
nextArg = args[i++];
}
conditions.add(new ZBodyCondition(BodyOp.fromString(op), caseSensitive, nextArg));
} else if (a.equals("size")) {
if (i + 2 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
conditions.add(new ZSizeCondition(SizeOp.fromString(args[i++]), args[i++]));
} else if (a.equals("date")) {
if (i + 2 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
conditions.add(new ZDateCondition(DateOp.fromString(args[i++]), args[i++]));
} else if (a.equals("current_time")) {
if (i + 2 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
conditions.add(new ZCurrentTimeCondition(DateOp.fromString(args[i++]), args[i++]));
} else if (a.equals("current_day_of_week")) {
if (i + 2 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
conditions.add(new ZCurrentDayOfWeekCondition(SimpleOp.fromString(args[i++]), args[i++]));
} else if (a.equals("header")) {
if (i + 2 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
String headerName = args[i++];
String op = args[i++];
if (op.equals("exists")) {
conditions.add(new ZHeaderExistsCondition(headerName, true));
} else if (op.equals("not_exists")) {
conditions.add(new ZHeaderExistsCondition(headerName, false));
} else {
if (i + 1 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
String nextArg = args[i++];
boolean caseSensitive = false;
if (ZFilterCondition.C_CASE_SENSITIVE.equals(nextArg)) {
caseSensitive = true;
if (i + 1 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
nextArg = args[i++];
}
conditions.add(new ZHeaderCondition(headerName, HeaderOp.fromString(op), caseSensitive, nextArg));
}
} else if (a.equals("mime_header")) {
if (i + 3 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
String headerName = args[i++];
String op = args[i++];
String nextArg = args[i++];
boolean caseSensitive = false;
if (ZFilterCondition.C_CASE_SENSITIVE.equals(nextArg)) {
caseSensitive = true;
if (i + 1 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
nextArg = args[i++];
}
conditions.add(new ZMimeHeaderCondition(headerName, HeaderOp.fromString(op), caseSensitive, nextArg));
} else if (a.equals("address")) {
if (i + 4 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
String headerName = args[i++];
String part = args[i++];
String op = args[i++];
String nextArg = args[i++];
boolean caseSensitive = false;
if (ZFilterCondition.C_CASE_SENSITIVE.equals(nextArg)) {
caseSensitive = true;
if (i + 1 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
nextArg = args[i++];
}
conditions.add(new ZAddressCondition(headerName, Sieve.AddressPart.fromString(part), HeaderOp.fromString(op), caseSensitive, nextArg));
} else if (a.equals("invite")) {
if (i + 1 > args.length) {
throw ZClientException.CLIENT_ERROR("missing exists arg", null);
}
ZInviteCondition cond = new ZInviteCondition(args[i++].equals("exists"));
if (i + 1 < args.length && args[i].equalsIgnoreCase("method")) {
// method
i++;
cond.setMethods(args[i++].split(","));
}
conditions.add(cond);
} else if (a.equals("conversation")) {
if (i + 2 > args.length) {
throw ZClientException.CLIENT_ERROR("missing where arg", null);
}
conditions.add(new ZFilterCondition.ZConversationCondition(ZFilterCondition.ConversationOp.fromString(args[i++]), args[i++]));
} else if (a.equals("facebook")) {
ZFilterCondition.SimpleOp op;
if (i + 1 < args.length && args[i].equalsIgnoreCase("not")) {
// not
i++;
op = ZFilterCondition.SimpleOp.NOT_IS;
} else {
op = ZFilterCondition.SimpleOp.IS;
}
conditions.add(new ZFilterCondition.ZFacebookCondition(op));
} else if (a.equals("linkedin")) {
ZFilterCondition.SimpleOp op;
if (i + 1 < args.length && args[i].equalsIgnoreCase("not")) {
// not
i++;
op = ZFilterCondition.SimpleOp.NOT_IS;
} else {
op = ZFilterCondition.SimpleOp.IS;
}
conditions.add(new ZFilterCondition.ZLinkedInCondition(op));
} else if (a.equals("socialcast")) {
ZFilterCondition.SimpleOp op;
if (i + 1 < args.length && args[i].equalsIgnoreCase("not")) {
// not
i++;
op = ZFilterCondition.SimpleOp.NOT_IS;
} else {
op = ZFilterCondition.SimpleOp.IS;
}
conditions.add(new ZFilterCondition.ZSocialcastCondition(op));
} else if (a.equals("twitter")) {
ZFilterCondition.SimpleOp op;
if (i + 1 < args.length && args[i].equalsIgnoreCase("not")) {
// not
i++;
op = ZFilterCondition.SimpleOp.NOT_IS;
} else {
op = ZFilterCondition.SimpleOp.IS;
}
conditions.add(new ZFilterCondition.ZTwitterCondition(op));
} else if (a.equals("list")) {
ZFilterCondition.SimpleOp op;
if (i + 1 < args.length && args[i].equalsIgnoreCase("not")) {
// not
i++;
op = ZFilterCondition.SimpleOp.NOT_IS;
} else {
op = ZFilterCondition.SimpleOp.IS;
}
conditions.add(new ZFilterCondition.ZListCondition(op));
} else if (a.equals("bulk")) {
ZFilterCondition.SimpleOp op;
if (i + 1 < args.length && args[i].equalsIgnoreCase("not")) {
// not
i++;
op = ZFilterCondition.SimpleOp.NOT_IS;
} else {
op = ZFilterCondition.SimpleOp.IS;
}
conditions.add(new ZFilterCondition.ZBulkCondition(op));
} else if (a.equals("importance")) {
if (i + 2 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
String op = args[i++];
String importance = args[i++];
conditions.add(new ZFilterCondition.ZImportanceCondition(SimpleOp.fromString(op), FilterTest.Importance.fromString(importance)));
} else if (a.equals("flagged")) {
ZFilterCondition.SimpleOp op;
if (i < args.length && args[i].equalsIgnoreCase("not")) {
// not
i++;
op = ZFilterCondition.SimpleOp.NOT_IS;
} else {
op = ZFilterCondition.SimpleOp.IS;
}
if (i >= args.length) {
throw ZClientException.CLIENT_ERROR("missing a flag name after 'flagged'", null);
}
conditions.add(new ZFilterCondition.ZFlaggedCondition(op, Sieve.Flag.fromString(args[i++])));
} else if (a.equals("keep")) {
actions.add(new ZKeepAction());
} else if (a.equals("discard")) {
actions.add(new ZDiscardAction());
} else if (a.equals("fileinto")) {
if (i + 1 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
actions.add(new ZFileIntoAction(args[i++]));
} else if (a.equals("tag")) {
if (i + 1 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
actions.add(new ZTagAction(args[i++]));
} else if (a.equals("mark")) {
if (i + 1 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
actions.add(new ZMarkAction(MarkOp.fromString(args[i++])));
} else if (a.equals("redirect")) {
if (i + 1 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
actions.add(new ZRedirectAction(args[i++]));
} else if (a.equals("reply")) {
if (i + 1 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
actions.add(new ZReplyAction(args[i++]));
} else if (a.equals("notify")) {
if (i + 3 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
if (!"RFC".equalsIgnoreCase(args[i])) {
String emailAddr = args[i++];
String subjectTemplate = args[i++];
String bodyTemplate = args[i++];
int maxBodyBytes = -1;
if (i + 1 <= args.length) {
try {
maxBodyBytes = Integer.valueOf(args[i]);
i++;
} catch (NumberFormatException ignored) {
}
}
actions.add(new ZNotifyAction(emailAddr, subjectTemplate, bodyTemplate, maxBodyBytes));
} else {
// "options".
if (i + 4 > args.length) {
throw ZClientException.CLIENT_ERROR("missing args", null);
}
// skip string "RFC"
i++;
String from = args[i++];
String importance = null;
String options = null;
if (i + 4 == args.length) {
// Now we check whether the notify string contains "importance" and "options" tokens
// If these two tokens are included, the remaining number of tokens at this point is 4,
// otherwise 2.
importance = args[i++];
options = args[i++];
}
String message = args[i++];
String method = args[i++];
if (importance != null && options != null) {
actions.add(new ZRFCCompliantNotifyAction(from, importance, options, message, method));
} else {
actions.add(new ZRFCCompliantNotifyAction(from, message, method));
}
}
} else if (a.equals("stop")) {
actions.add(new ZStopAction());
} else {
throw ZClientException.CLIENT_ERROR("unknown keyword: " + a, null);
}
}
if (name == null || name.length() == 0) {
throw ZClientException.CLIENT_ERROR("missing filter name", null);
}
if (actions.isEmpty()) {
throw ZClientException.CLIENT_ERROR("must have at least one action", null);
}
if (conditions.isEmpty()) {
throw ZClientException.CLIENT_ERROR("must have at least one condition", null);
}
return new ZFilterRule(name, active, all, conditions, actions);
}
use of com.zimbra.client.ZFilterCondition.ZBodyCondition in project zm-mailbox by Zimbra.
the class TestFilter method testCaseSensitiveComparison.
public void testCaseSensitiveComparison() throws Exception {
// Create case sensitive header and body filter rules
List<ZFilterRule> rules = new ArrayList<ZFilterRule>();
List<ZFilterCondition> conditions = new ArrayList<ZFilterCondition>();
List<ZFilterAction> actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("Subject", HeaderOp.CONTAINS, true, "CHECK THIS"));
conditions.add(new ZBodyCondition(BodyOp.CONTAINS, true, "CHECK THIS"));
actions.add(new ZTagAction(mTag1.getName()));
rules.add(new ZFilterRule("testCaseSensitiveComparison", true, false, conditions, actions));
saveIncomingRules(mMbox, new ZFilterRules(rules));
// Deliver message having lower case subject substring and make sure that tag1 was not applied
String subject = NAME_PREFIX + " testCaseSensitiveComparison1 check this";
TestUtil.addMessageLmtp(subject, USER_NAME, USER_NAME);
ZMessage msg = TestUtil.getMessage(mMbox, "in:inbox subject:\"" + subject + "\"");
assertTrue("message should not have been tagged", msg.getTagIds() == null || msg.getTagIds().isEmpty());
// Deliver message having upper case subject substring and make sure that tag1 was applied
subject = NAME_PREFIX + " testCaseSensitiveComparison2 CHECK THIS";
TestUtil.addMessageLmtp(subject, USER_NAME, USER_NAME);
msg = TestUtil.getMessage(mMbox, "in:inbox subject:\"" + subject + "\"");
assertNotNull("message should have been tagged", msg.getTagIds());
Set<String> tagIds = new HashSet<String>();
tagIds.addAll(Arrays.asList(msg.getTagIds().split(",")));
assertTrue("message should have been tagged with tag1", tagIds.contains(mTag1.getId()));
// Deliver message having lower case body content substring and make sure that tag1 was not applied
subject = NAME_PREFIX + " testCaseSensitiveComparison3";
String content = new MessageBuilder().withSubject(subject).withToRecipient(USER_NAME).withBody("Hi check this").create();
TestUtil.addMessageLmtp(new String[] { USER_NAME }, USER_NAME, content);
msg = TestUtil.getMessage(mMbox, "in:inbox subject:\"" + subject + "\"");
assertTrue("message should not have been tagged", msg.getTagIds() == null || msg.getTagIds().isEmpty());
// Deliver message having upper case body content substring and make sure that tag1 was applied
subject = NAME_PREFIX + " testCaseSensitiveComparison4";
content = new MessageBuilder().withSubject(subject).withToRecipient(USER_NAME).withBody("Hi CHECK THIS").create();
TestUtil.addMessageLmtp(new String[] { USER_NAME }, USER_NAME, content);
msg = TestUtil.getMessage(mMbox, "in:inbox subject:\"" + subject + "\"");
assertNotNull("message should have been tagged", msg.getTagIds());
tagIds = new HashSet<String>();
tagIds.addAll(Arrays.asList(msg.getTagIds().split(",")));
assertTrue("message should have been tagged with tag1", tagIds.contains(mTag1.getId()));
}
use of com.zimbra.client.ZFilterCondition.ZBodyCondition in project zm-mailbox by Zimbra.
the class TestFilter method testSpecialCharInBody.
/**
* Tests fix for bug 56019.
*/
@Test
public void testSpecialCharInBody() throws Exception {
assertTrue("To run this test copy data/unittest/TestFilter-testSpecialCharInBody.msg to /opt/zimbra/unittest", Files.exists(Paths.get("/opt/zimbra/unittest/TestFilter-testSpecialCharInBody.msg")));
List<ZFilterCondition> conditions = new ArrayList<ZFilterCondition>();
List<ZFilterAction> actions = new ArrayList<ZFilterAction>();
List<ZFilterRule> rules = new ArrayList<ZFilterRule>();
conditions.add(new ZBodyCondition(BodyOp.CONTAINS, "Andr\u00e9"));
actions.add(new ZMarkAction(MarkOp.FLAGGED));
rules.add(new ZFilterRule("testSpecialCharInBody", true, false, conditions, actions));
ZFilterRules zRules = new ZFilterRules(rules);
saveIncomingRules(mMbox, zRules);
// Add a message and test the flagged state.
String address = TestUtil.getAddress(USER_NAME);
// TestFilter-testSpecialCharInBody.msg's body contains base64 encoded content (containing "Andr\u00e9")
String msgContent = new String(ByteUtil.getContent(new File("/opt/zimbra/unittest/TestFilter-testSpecialCharInBody.msg")));
TestUtil.addMessageLmtp(new String[] { address }, address, msgContent);
ZMessage msg = TestUtil.getMessage(mMbox, "in:inbox subject:testSpecialCharInBody");
assertTrue("Unexpected message flag state", msg.isFlagged());
}
use of com.zimbra.client.ZFilterCondition.ZBodyCondition in project zm-mailbox by Zimbra.
the class TestFilter method testFullMatchAfterPartialMatch.
/**
* Tests fix for bug 55927.
*/
@Test
public void testFullMatchAfterPartialMatch() throws Exception {
List<ZFilterCondition> conditions = new ArrayList<ZFilterCondition>();
List<ZFilterAction> actions = new ArrayList<ZFilterAction>();
List<ZFilterRule> rules = new ArrayList<ZFilterRule>();
conditions.add(new ZBodyCondition(BodyOp.CONTAINS, "MatchThis"));
actions.add(new ZMarkAction(MarkOp.FLAGGED));
rules.add(new ZFilterRule("testFullMatchAfterPartialMatch", true, false, conditions, actions));
ZFilterRules zRules = new ZFilterRules(rules);
saveIncomingRules(mMbox, zRules);
// Add a message and test the flagged state.
String subject = NAME_PREFIX + " testFullMatchAfterPartialMatch";
String content = new MessageBuilder().withSubject(subject).withBody("MatchMatchThis").create();
TestUtil.addMessageLmtp(new String[] { USER_NAME }, USER_NAME, content);
ZMessage msg = TestUtil.getMessage(mMbox, "in:inbox subject:\"" + subject + "\"");
assertTrue("Unexpected message flag state", msg.isFlagged());
}
use of com.zimbra.client.ZFilterCondition.ZBodyCondition in project zm-mailbox by Zimbra.
the class TestFilter method doBodyContainsTest.
private void doBodyContainsTest(String substring, boolean contains) throws Exception {
List<ZFilterCondition> conditions = new ArrayList<ZFilterCondition>();
List<ZFilterAction> actions = new ArrayList<ZFilterAction>();
List<ZFilterRule> rules = new ArrayList<ZFilterRule>();
// If subject matches the first for characters + *, mark as flagged.
conditions.add(new ZBodyCondition(BodyOp.CONTAINS, substring));
actions.add(new ZMarkAction(MarkOp.FLAGGED));
rules.add(new ZFilterRule("testBodyContains", true, false, conditions, actions));
ZFilterRules zRules = new ZFilterRules(rules);
saveIncomingRules(mMbox, zRules);
// Add a message and test the flagged state.
String address = TestUtil.getAddress(USER_NAME);
String msgContent = new String(ByteUtil.getContent(new File("/opt/zimbra/unittest/TestFilter-testBodyContains.msg")));
TestUtil.addMessageLmtp(new String[] { address }, address, msgContent);
ZMessage msg = TestUtil.getMessage(mMbox, "in:inbox subject:testBodyContains");
assertEquals("Unexpected message flag state", contains, msg.isFlagged());
mMbox.deleteMessage(msg.getId());
}
Aggregations