/usr/lib/python2.7/dist-packages/sievelib/commands.py is in python-sievelib 0.9.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 | # coding: utf-8
"""
SIEVE commands representation
This module contains classes that represent known commands. They all
inherit from the Command class which provides generic method for
command manipulation or parsing.
There are three command types (each one represented by a class):
* control (ControlCommand) : Control structures are needed to allow
for multiple and conditional actions
* action (ActionCommand) : Actions that can be applied on emails
* test (TestCommand) : Tests are used in conditionals to decide which
part(s) of the conditional to execute
Finally, each known command is represented by its own class which
provides extra information such as:
* expected arguments,
* completion callback,
* etc.
"""
from __future__ import unicode_literals
from collections import Iterable
import sys
from future.utils import python_2_unicode_compatible
@python_2_unicode_compatible
class UnknownCommand(Exception):
"""Specific exception raised when an unknown command is encountered"""
def __init__(self, name):
self.name = name
def __str__(self):
return "unknown command %s" % self.name
@python_2_unicode_compatible
class BadArgument(Exception):
"""Specific exception raised when a bad argument is encountered"""
def __init__(self, command, seen, expected):
self.command = command
self.seen = seen
self.expected = expected
def __str__(self):
return "bad argument %s for command %s (%s expected)" \
% (self.seen, self.command, self.expected)
@python_2_unicode_compatible
class BadValue(Exception):
"""Specific exception raised when a bad argument value is encountered"""
def __init__(self, argument, value):
self.argument = argument
self.value = value
def __str__(self):
return "bad value %s for argument %s" \
% (self.value, self.argument)
# Statement elements (see RFC, section 8.3)
# They are used in different commands.
comparator = {"name": "comparator",
"type": ["tag"],
"values": [":comparator"],
"extra_arg": {"type": "string",
"values": ['"i;octet"', '"i;ascii-casemap"']},
"required": False}
address_part = {"name": "address-part",
"values": [":localpart", ":domain", ":all"],
"type": ["tag"],
"required": False}
match_type = {"name": "match-type",
"values": [":is", ":contains", ":matches"],
"type": ["tag"],
"required": False}
class Command(object):
"""Generic command representation.
A command is described as follow:
* A name
* A type
* A description of supported arguments
* Does it accept an unknown quantity of arguments? (ex: anyof, allof)
* Does it accept children? (ie. subcommands)
* Is it an extension?
* Must follow only certain commands
"""
_type = None
variable_args_nb = False
accept_children = False
must_follow = None
is_extension = False
def __init__(self, parent=None):
self.parent = parent
self.arguments = {}
self.children = []
self.nextargpos = 0
self.required_args = -1
self.rargs_cnt = 0
self.curarg = None # for arguments that expect an argument :p (ex: :comparator)
self.name = self.__class__.__name__.replace("Command", "")
self.name = self.name.lower()
self.hash_comments = []
def __repr__(self):
return "%s (type: %s)" % (self.name, self._type)
def tosieve(self, indentlevel=0, target=sys.stdout):
"""Generate the sieve syntax corresponding to this command
Recursive method.
:param indentlevel: current indentation level
:param target: opened file pointer where the content will be printed
"""
self.__print(self.name, indentlevel, nocr=True, target=target)
if self.has_arguments():
for arg in self.args_definition:
if not arg["name"] in self.arguments:
continue
target.write(" ")
value = self.arguments[arg["name"]]
if "tag" in arg["type"] and arg.get("write_tag", False):
target.write("%s " % arg["values"][0])
if type(value) == list:
if self.__get_arg_type(arg["name"]) == ["testlist"]:
target.write("(")
for t in value:
t.tosieve(target=target)
if value.index(t) != len(value) - 1:
target.write(", ")
target.write(")")
else:
target.write("[" + ((", ".join(['"%s"' % v.strip('"') for v in value]))) + "]")
continue
if isinstance(value, Command):
value.tosieve(indentlevel, target=target)
continue
if "string" in arg["type"]:
target.write(value)
if not value.startswith('"'):
target.write("\n")
else:
target.write(value)
if not self.accept_children:
if self.get_type() != "test":
target.write(";\n")
return
if self.get_type() != "control":
return
target.write(" {\n")
for ch in self.children:
ch.tosieve(indentlevel + 4, target=target)
self.__print("}", indentlevel, target=target)
def __print(self, data, indentlevel, nocr=False, target=sys.stdout):
text = "%s%s" % (" " * indentlevel, data)
if nocr:
target.write(text)
else:
target.write(text + "\n")
def __get_arg_type(self, arg):
"""Return the type corresponding to the given name.
:param arg: a defined argument name
"""
for a in self.args_definition:
if a["name"] == arg:
return a["type"]
return None
def complete_cb(self):
"""Completion callback
Called when a command is considered as complete by the parser.
"""
pass
def get_expected_first(self):
"""Return the first expected token for this command"""
return None
def has_arguments(self):
return len(self.args_definition) != 0
def dump(self, indentlevel=0, target=sys.stdout):
"""Display the command
Pretty printing of this command and its eventual arguments and
children. (recursively)
:param indentlevel: integer that indicates indentation level to apply
"""
self.__print(self, indentlevel, target=target)
indentlevel += 4
if self.has_arguments():
for arg in self.args_definition:
if not arg["name"] in self.arguments:
continue
value = self.arguments[arg["name"]]
if type(value) == list:
if self.__get_arg_type(arg["name"]) == ["testlist"]:
for t in value:
t.dump(indentlevel, target)
else:
self.__print("[" + (",".join(value)) + "]", indentlevel, target=target)
continue
if isinstance(value, Command):
value.dump(indentlevel, target)
continue
self.__print(str(value), indentlevel, target=target)
for ch in self.children:
ch.dump(indentlevel, target)
def addchild(self, child):
"""Add a new child to the command
A child corresponds to a command located into a block (this
command's block). It can be either an action or a control.
:param child: the new child
:return: True on succes, False otherwise
"""
if not self.accept_children:
return False
self.children += [child]
return True
def iscomplete(self):
"""Check if the command is complete
Check if all required arguments have been encountered. For
commands that allow an undefined number of arguments, this
method always returns False.
:return: True if command is complete, False otherwise
"""
if self.variable_args_nb:
return False
if self.required_args == -1:
self.required_args = 0
for arg in self.args_definition:
if arg["required"]:
self.required_args += 1
return (not self.curarg or "extra_arg" not in self.curarg) \
and (self.rargs_cnt == self.required_args)
def get_type(self):
"""Return the command's type"""
if self._type is None:
raise NotImplementedError
return self._type
def __is_valid_value_for_arg(self, arg, value):
"""Check if value is allowed for arg
Some commands only allow a limited set of values. The method
always returns True for methods that do not provide such a
set.
:param arg: the argument's name
:param value: the value to check
:return: True on succes, False otherwise
"""
if "values" not in arg:
return True
return value.lower() in arg["values"]
def check_next_arg(self, atype, avalue, add=True):
"""Argument validity checking
This method is usually used by the parser to check if detected
argument is allowed for this command.
We make a distinction between required and optional
arguments. Optional (or tagged) arguments can be provided
unordered but not the required ones.
A special handling is also done for arguments that require an
argument (example: the :comparator argument expects a string
argument).
The "testlist" type is checked separately as we can't know in
advance how many arguments will be provided.
If the argument is incorrect, the method raises the
appropriate exception, or return False to let the parser
handle the exception.
:param atype: the argument's type
:param avalue: the argument's value
:param add: indicates if this argument should be recorded on success
:return: True on success, False otherwise
"""
if not self.has_arguments():
return False
if self.iscomplete():
return False
if self.curarg is not None and "extra_arg" in self.curarg:
if atype == self.curarg["extra_arg"]["type"]:
if "values" not in self.curarg["extra_arg"] \
or avalue in self.curarg["extra_arg"]["values"]:
if add:
self.arguments[self.curarg["name"]] = avalue
self.curarg = None
return True
raise BadValue(self.curarg["name"], avalue)
failed = False
pos = self.nextargpos
while pos < len(self.args_definition):
curarg = self.args_definition[pos]
if curarg["required"]:
if curarg["type"] == ["testlist"]:
if atype != "test":
failed = True
elif add:
if not curarg["name"] in self.arguments:
self.arguments[curarg["name"]] = []
self.arguments[curarg["name"]] += [avalue]
elif atype not in curarg["type"] or \
not self.__is_valid_value_for_arg(curarg, avalue):
failed = True
else:
self.curarg = curarg
self.rargs_cnt += 1
self.nextargpos = pos + 1
if add:
self.arguments[curarg["name"]] = avalue
break
if atype in curarg["type"]:
if self.__is_valid_value_for_arg(curarg, avalue):
if "extra_arg" in curarg:
self.curarg = curarg
break
if add:
self.arguments[curarg["name"]] = avalue
break
pos += 1
if failed:
raise BadArgument(self.name, avalue,
self.args_definition[pos]["type"])
return True
def __getitem__(self, name):
"""Shorcut to access a command argument
:param name: the argument's name
"""
found = False
for ad in self.args_definition:
if ad["name"] == name:
found = True
break
if not found:
raise KeyError(name)
if name not in self.arguments:
raise KeyError(name)
return self.arguments[name]
class ControlCommand(Command):
"""Indermediate class to represent "control" commands"""
_type = "control"
class RequireCommand(ControlCommand):
"""The 'require' command
This class has one big difference with others as it is used to
store loaded extension names. (The result is we can check for
unloaded extensions during the parsing)
"""
args_definition = [
{"name": "capabilities",
"type": ["string", "stringlist"],
"required": True}
]
loaded_extensions = []
def complete_cb(self):
if type(self.arguments["capabilities"]) == str:
exts = [self.arguments["capabilities"]]
else:
exts = self.arguments["capabilities"]
for ext in exts:
ext = ext.strip('"')
if ext not in RequireCommand.loaded_extensions:
RequireCommand.loaded_extensions += [ext]
class StopCommand(ControlCommand):
args_definition = []
class IfCommand(ControlCommand):
accept_children = True
args_definition = [
{"name": "test",
"type": ["test"],
"required": True}
]
def get_expected_first(self):
return ["identifier"]
class ElsifCommand(ControlCommand):
accept_children = True
must_follow = ["if", "elsif"]
args_definition = [
{"name": "test",
"type": ["test"],
"required": True}
]
def get_expected_first(self):
return ["identifier"]
class ElseCommand(ControlCommand):
accept_children = True
must_follow = ["if", "elsif"]
args_definition = []
class ActionCommand(Command):
"""Indermediate class to represent "action" commands"""
_type = "action"
class FileintoCommand(ActionCommand):
is_extension = True
args_definition = [
{"name": "mailbox",
"type": ["string"],
"required": True}
]
class RedirectCommand(ActionCommand):
args_definition = [
{"name": "address",
"type": ["string"],
"required": True}
]
class RejectCommand(ActionCommand):
is_extension = True
args_definition = [
{"name": "text",
"type": ["string"],
"required": True}
]
class KeepCommand(ActionCommand):
args_definition = []
class DiscardCommand(ActionCommand):
args_definition = []
class TestCommand(Command):
"""Indermediate class to represent "test" commands"""
_type = "test"
class AddressCommand(TestCommand):
args_definition = [
comparator,
address_part,
match_type,
{"name": "header-list",
"type": ["string", "stringlist"],
"required": True},
{"name": "key-list",
"type": ["string", "stringlist"],
"required": True}
]
class AllofCommand(TestCommand):
accept_children = True
variable_args_nb = True
args_definition = [
{"name": "tests",
"type": ["testlist"],
"required": True}
]
def get_expected_first(self):
return ["left_parenthesis"]
class AnyofCommand(TestCommand):
accept_children = True
variable_args_nb = True
args_definition = [
{"name": "tests",
"type": ["testlist"],
"required": True}
]
def get_expected_first(self):
return ["left_parenthesis"]
class EnvelopeCommand(TestCommand):
args_definition = [
comparator,
address_part,
match_type,
{"name": "header-list",
"type": ["string", "stringlist"],
"required": True},
{"name": "key-list",
"type": ["string", "stringlist"],
"required": True}
]
class ExistsCommand(TestCommand):
args_definition = [
{"name": "header-names",
"type": ["stringlist"],
"required": True}
]
class TrueCommand(TestCommand):
args_definition = []
class FalseCommand(TestCommand):
args_definition = []
class HeaderCommand(TestCommand):
args_definition = [
comparator,
match_type,
{"name": "header-names",
"type": ["string", "stringlist"],
"required": True},
{"name": "key-list",
"type": ["string", "stringlist"],
"required": True}
]
class NotCommand(TestCommand):
accept_children = True
args_definition = [
{"name": "test",
"type": ["test"],
"required": True}
]
def get_expected_first(self):
return ["identifier"]
class SizeCommand(TestCommand):
args_definition = [
{"name": "comparator",
"type": ["tag"],
"values": [":over", ":under"],
"required": True},
{"name": "limit",
"type": ["number"],
"required": True},
]
class VacationCommand(ActionCommand):
args_definition = [
{"name": "subject",
"type": ["tag"],
"write_tag": True,
"values": [":subject"],
"extra_arg": {"type": "string"},
"required": False},
{"name": "days",
"type": ["tag"],
"write_tag": True,
"values": [":days"],
"extra_arg": {"type": "number"},
"required": False},
{"name": "from",
"type": ["tag"],
"write_tag": True,
"values": [":from"],
"extra_arg": {"type": "string"},
"required": False},
{"name": "addresses",
"type": ["tag"],
"write_tag": True,
"values": [":addresses"],
"extra_arg": {"type": "stringlist"},
"required": False},
{"name": "handle",
"type": ["tag"],
"write_tag": True,
"values": [":handle"],
"extra_arg": {"type": "string"},
"required": False},
{"name": "mime",
"type": ["tag"],
"write_tag": True,
"values": [":mime"],
"required": False},
{"name": "reason",
"type": ["string"],
"required": True},
]
class SetCommand(ControlCommand):
"""currentdate command, part of the variables extension
http://tools.ietf.org/html/rfc5229
"""
is_extension = True
args_definition = [
{"name": "startend",
"type": ["string"],
"required": True},
{"name": "date",
"type": ["string"],
"required": True}
]
class CurrentdateCommand(ControlCommand):
"""currentdate command, part of the date extension
http://tools.ietf.org/html/rfc5260#section-5
"""
is_extension = True
accept_children = True
args_definition = [
{"name": "zone",
"type": ["tag"],
"write_tag": True,
"values": [":zone"],
"extra_arg": {"type": "string"},
"required": False},
{"name": "match-value",
"type": ["tag"],
"required": True},
{"name": "comparison",
"type": ["string"],
"required": True},
{"name": "match-against",
"type": ["string"],
"required": True},
{"name": "match-against-field",
"type": ["string"],
"required": True}
]
def add_commands(cmds):
"""
Adds one or more commands to the module namespace.
Commands must end in "Command" to be added.
Example (see tests/parser.py):
sievelib.commands.add_commands(MytestCommand)
:param cmds: a single Command Object or list of Command Objects
"""
if not isinstance(cmds, Iterable):
cmds = [cmds]
for command in cmds:
if command.__name__.endswith("Command"):
globals()[command.__name__] = command
def get_command_instance(name, parent=None, checkexists=True):
"""Try to guess and create the appropriate command instance
Given a command name (encountered by the parser), construct the
associated class name and, if known, return a new instance.
If the command is not known or has not been loaded using require,
an UnknownCommand exception is raised.
:param name: the command's name
:param parent: the eventual parent command
:return: a new class instance
"""
# Mapping between extension names and command names
extension_map = {
'date': set(['currentdate']),
'variables': set(['set'])
}
extname = name
for extension in extension_map:
if name in extension_map[extension]:
extname = extension
break
cname = "%sCommand" % name.lower().capitalize()
if cname not in globals() or \
(checkexists and globals()[cname].is_extension and
extname not in RequireCommand.loaded_extensions):
raise UnknownCommand(name)
return globals()[cname](parent)
|