use of com.zimbra.client.ZFilterAction.ZDiscardAction 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.ZFilterAction.ZDiscardAction in project zm-mailbox by Zimbra.
the class TestFilter method testNotifyWithDiscard.
@Test
public void testNotifyWithDiscard() throws Exception {
if (mAvailableRFCCompliantNotify) {
fail("Unable to test because 'zimbraSieveNotifyActionRFCCompliant' is set to TRUE");
return;
}
List<ZFilterRule> rules = new ArrayList<ZFilterRule>();
List<ZFilterCondition> conditions = new ArrayList<ZFilterCondition>();
List<ZFilterAction> actions = new ArrayList<ZFilterAction>();
conditions.add(new ZFilterCondition.ZTrueCondition());
// add an action to notify
actions.add(new ZFilterAction.ZNotifyAction(TestUtil.getAddress(REMOTE_USER_NAME), "${SUBJECT}", "From: ${FROM}, Message: ${BODY}"));
// add discard action
actions.add(new ZDiscardAction());
rules.add(new ZFilterRule("testNotifyWithDiscard", true, false, conditions, actions));
saveIncomingRules(mMbox, new ZFilterRules(rules));
String subject = NAME_PREFIX + " testNotifyWithDiscard";
String body = "Hi, How r u?";
String msg = new MessageBuilder().withFrom(REMOTE_USER_NAME).withSubject(subject).withBody(body).create();
// send msg to user1
TestUtil.addMessageLmtp(new String[] { USER_NAME }, REMOTE_USER_NAME, msg);
// check msg not filed into user1's mailbox
List<ZMessage> msgs = TestUtil.search(mMbox, "in:inbox subject:\"" + subject + "\"");
assertTrue("original message should not have been filed", msgs.isEmpty());
}
use of com.zimbra.client.ZFilterAction.ZDiscardAction in project zm-mailbox by Zimbra.
the class TestFilter method getTestIncomingRules.
private ZFilterRules getTestIncomingRules() throws Exception {
List<ZFilterRule> rules = new ArrayList<ZFilterRule>();
List<ZFilterCondition> conditions = new ArrayList<ZFilterCondition>();
List<ZFilterAction> actions = new ArrayList<ZFilterAction>();
// if subject contains "folder1", file into folder1 and tag with tag1
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "folder1"));
actions.add(new ZFileIntoAction(FOLDER1_PATH));
actions.add(new ZTagAction(TAG1_NAME));
rules.add(new ZFilterRule("testMatchMultipleFilters1", true, false, conditions, actions));
// if from contains "multiplefilters", file into folder 2, tag with tag2 and flag
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("from", HeaderOp.CONTAINS, "multiplefilters"));
actions.add(new ZFileIntoAction(FOLDER2_PATH));
actions.add(new ZTagAction(TAG2_NAME));
actions.add(new ZMarkAction(MarkOp.FLAGGED));
rules.add(new ZFilterRule("testMatchMultipleFilters2", true, false, conditions, actions));
// if subject contains bug5455, flag, file into folder1, tag with tag1, file into folder2
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "bug5455"));
actions.add(new ZMarkAction(MarkOp.FLAGGED));
actions.add(new ZFileIntoAction(FOLDER1_PATH));
actions.add(new ZTagAction(TAG1_NAME));
actions.add(new ZFileIntoAction(FOLDER2_PATH));
rules.add(new ZFilterRule("testBug5455", true, false, conditions, actions));
// if subject contains "discard", discard the message
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "doDiscard"));
actions.add(new ZDiscardAction());
rules.add(new ZFilterRule("testDiscard", true, false, conditions, actions));
// if subject contains "mountpointRoot", file into the mountpoint root folder
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "mountpointRoot"));
actions.add(new ZFileIntoAction("/" + MOUNTPOINT_FOLDER_NAME));
rules.add(new ZFilterRule("testMountpoint", true, false, conditions, actions));
// if subject contains "mountpointSub", file into the mountpoint subfolder
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "mountpointSub"));
actions.add(new ZFileIntoAction(MOUNTPOINT_SUBFOLDER_PATH));
rules.add(new ZFilterRule("testMountpointSubfolder", true, false, conditions, actions));
return new ZFilterRules(rules);
}
use of com.zimbra.client.ZFilterAction.ZDiscardAction in project zm-mailbox by Zimbra.
the class TestFilterExisting method saveNewRules.
private void saveNewRules() throws Exception {
List<ZFilterRule> rules = new ArrayList<ZFilterRule>();
// if subject contains "tag", tag
List<ZFilterCondition> conditions = new ArrayList<ZFilterCondition>();
List<ZFilterAction> actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "tag"));
actions.add(new ZTagAction(TAG_NAME));
rules.add(new ZFilterRule(TAG_RULE_NAME, true, false, conditions, actions));
// if subject contains "flag", flag
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "flag"));
actions.add(new ZMarkAction(MarkOp.FLAGGED));
rules.add(new ZFilterRule(FLAG_RULE_NAME, true, false, conditions, actions));
// if subject contains "mark read", mark read
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "mark read"));
actions.add(new ZMarkAction(MarkOp.READ));
rules.add(new ZFilterRule(MARK_READ_RULE_NAME, true, false, conditions, actions));
// if subject contains "keep", keep
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "keep"));
actions.add(new ZKeepAction());
rules.add(new ZFilterRule(KEEP_RULE_NAME, true, false, conditions, actions));
// if subject contains "folder1", file into folder1
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "folder1"));
actions.add(new ZFileIntoAction(FOLDER1_PATH));
rules.add(new ZFilterRule(FOLDER1_RULE_NAME, true, false, conditions, actions));
// if the subject contains "folder1 and flag", file into folder1 and flag
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "folder1 and flag"));
actions.add(new ZFileIntoAction(FOLDER1_PATH));
actions.add(new ZMarkAction(MarkOp.FLAGGED));
rules.add(new ZFilterRule(FOLDER1_AND_FLAG_RULE_NAME, true, false, conditions, actions));
// if subject contains "folder2", file into folder2
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "folder2"));
actions.add(new ZFileIntoAction(FOLDER2_PATH));
rules.add(new ZFilterRule(FOLDER2_RULE_NAME, true, false, conditions, actions));
// if subject contains "folder3", file into folder3. This one uses the
// folder name without the leading slash.
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "folder3"));
actions.add(new ZFileIntoAction(FOLDER3_NAME));
rules.add(new ZFilterRule(FOLDER3_RULE_NAME, true, false, conditions, actions));
// if subject contains "discard", discard
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "discard"));
actions.add(new ZDiscardAction());
rules.add(new ZFilterRule(DISCARD_RULE_NAME, true, false, conditions, actions));
// If subject contains "redirect", redirect to user2. This rule should
// be ignored when applied to existing messages.
conditions = new ArrayList<ZFilterCondition>();
actions = new ArrayList<ZFilterAction>();
conditions.add(new ZHeaderCondition("subject", HeaderOp.CONTAINS, "redirect"));
actions.add(new ZRedirectAction(TestUtil.getAddress(USER_NAME2)));
rules.add(new ZFilterRule(REDIRECT_RULE_NAME, true, false, conditions, actions));
// Save rules
ZMailbox mbox = TestUtil.getZMailbox(USER_NAME);
mbox.saveIncomingFilterRules(new ZFilterRules(rules));
}
Aggregations