Beispiel #1
0
def construct_simple(base, var_type):
    identifier = "%s_%s" % (var_type.identifier, base.identifier_suffix)
    class_name = str(camel_case(identifier))
    suffixed_type_name = lazy(lambda s: "%s %s" % (var_type.name, s), six.text_type)
    class_ns = {
        "bindings": {
            "v1": Binding(suffixed_type_name("1"), type=var_type),
            "v2": Binding(suffixed_type_name("2"), type=var_type, constant_use=ConstantUse.VARIABLE_OR_CONSTANT),
        },
        "identifier": identifier
    }
    return type(class_name, (base,), class_ns)
Beispiel #2
0
class Empty(Condition):
    identifier = "empty"
    description = _(u"Check whether the bound value `value` is empty or zero.")
    name = _("Empty")
    v = Binding("Value")

    def test(self, context):
        return not bool(self.get_value(context, "v"))
Beispiel #3
0
class NonEmpty(Condition):
    identifier = "non_empty"
    description = _(u"Check whether the bound value `value` exists and is non-empty and non-zero.")
    name = _("Non-Empty")
    v = Binding("Value")

    def test(self, context):
        return bool(self.get_value(context, "v"))
Beispiel #4
0
class AddNotification(Action):
    identifier = "add_notification"
    recipient_type = Binding("Recipient Type",
                             type=Enum(RecipientType),
                             constant_use=ConstantUse.CONSTANT_ONLY,
                             default=RecipientType.ADMINS)
    recipient = Binding("Recipient",
                        type=Model(settings.AUTH_USER_MODEL),
                        constant_use=ConstantUse.VARIABLE_OR_CONSTANT,
                        required=False)
    priority = Binding("Priority",
                       type=Enum(Priority),
                       constant_use=ConstantUse.CONSTANT_ONLY,
                       default=Priority.NORMAL)
    message = TemplatedBinding("Message",
                               type=Text,
                               constant_use=ConstantUse.CONSTANT_ONLY,
                               required=True)
    message_identifier = Binding("Message Identifier",
                                 Text,
                                 constant_use=ConstantUse.CONSTANT_ONLY,
                                 required=False)
    url = Binding("URL",
                  type=URL,
                  constant_use=ConstantUse.VARIABLE_OR_CONSTANT)

    def execute(self, context):
        """
        :type context: shoop.notify.script.Context
        """
        values = self.get_values(context)
        if values["recipient_type"] == RecipientType.SPECIFIC_USER:
            if not values["recipient"]:
                context.log(
                    logging.WARN,
                    "Misconfigured AddNotification -- no recipient for specific user"
                )
                return
        Notification.objects.create(
            recipient_type=values["recipient_type"],
            recipient=values["recipient"],
            priority=values["priority"],
            identifier=values.get("message_identifier"),
            message=values["message"][:140],
            url=values["url"])
Beispiel #5
0
class SetDebugFlag(Action):
    identifier = "set_debug_flag"
    flag_name = Binding("Flag Name",
                        Text,
                        constant_use=ConstantUse.CONSTANT_ONLY,
                        default="debug")

    def execute(self, context):
        context.set(self.get_value(context, "flag_name"), True)
Beispiel #6
0
class AddOrderLogEntry(Action):
    identifier = "add_order_log_entry"
    order = Binding("Order",
                    Model("shoop.Order"),
                    constant_use=ConstantUse.VARIABLE_ONLY)
    message = Binding("Message",
                      Text,
                      constant_use=ConstantUse.VARIABLE_OR_CONSTANT)
    message_identifier = Binding("Message Identifier",
                                 Text,
                                 constant_use=ConstantUse.VARIABLE_OR_CONSTANT)

    def execute(self, context):
        order = self.get_value(context, "order")
        if not order:  # pragma: no cover
            return
        message = self.get_value(context, "message")
        message_identifier = self.get_value(context,
                                            "message_identifier") or None
        assert isinstance(order, Order)
        order.add_log_entry(message=message, identifier=message_identifier)
Beispiel #7
0
def test_binding_fallthrough():
    ctx = Context.from_variables()
    b = Binding("x", default="foo")
    assert b.get_value(ctx, {"variable": "var"}) == "foo"
    assert b.get_value(ctx, {}) == "foo"
Beispiel #8
0
class SendEmail(Action):
    identifier = "send_email"
    template_use = TemplateUse.MULTILINGUAL
    template_fields = {
        "subject":
        forms.CharField(required=True, label=_(u"Subject")),
        "body":
        forms.CharField(required=True,
                        label=_(u"Email Body"),
                        widget=forms.Textarea()),
    }

    recipient = Binding(_("Recipient"),
                        type=Email,
                        constant_use=ConstantUse.VARIABLE_OR_CONSTANT,
                        required=True)
    language = Binding(_("Language"),
                       type=Language,
                       constant_use=ConstantUse.VARIABLE_OR_CONSTANT,
                       required=True)
    fallback_language = Binding(_("Fallback language"),
                                type=Language,
                                constant_use=ConstantUse.CONSTANT_ONLY,
                                default="en")
    send_identifier = Binding(
        _("Send Identifier"),
        type=Text,
        constant_use=ConstantUse.CONSTANT_ONLY,
        required=False,
        help_text=_(
            "If set, this identifier will be logged into the event's log target. If the identifier has already "
            "been logged, the e-mail won't be sent again."))

    def execute(self, context):
        """
        :param context: Script Context
        :type context: shoop.notify.script.Context
        """
        recipient = self.get_value(context, "recipient")
        if not recipient:
            context.log(logging.INFO, "%s: Not sending mail, no recipient",
                        self.identifier)
            return

        send_identifier = self.get_value(context, "send_identifier")
        if send_identifier and context.log_entry_queryset.filter(
                identifier=send_identifier).exists():
            context.log(logging.INFO,
                        "%s: Not sending mail, have sent it already (%r)",
                        self.identifier, send_identifier)
            return

        languages = [
            language for language in [
                self.get_value(context, "language"),
                self.get_value(context, "fallback_language"),
            ] if language
        ]
        strings = self.get_template_values(context, languages)

        subject = strings.get("subject")
        body = strings.get("body")
        if not (subject and body):
            context.log(
                logging.INFO,
                "%s: Not sending mail to %s, either subject or body empty",
                self.identifier, recipient)
            return

        subject = " ".join(
            subject.splitlines())  # Email headers may not contain newlines
        message = EmailMessage(subject=subject, body=body, to=[recipient])
        message.send()
        context.log(logging.INFO, "%s: Mail sent to %s :)", self.identifier,
                    recipient)

        if send_identifier:
            context.add_log_entry_on_log_target(
                "Email sent to %s: %s" % (recipient, subject), send_identifier)
Beispiel #9
0
def test_binding_fallthrough():
    ctx = Context.from_variables()
    b = Binding("x", default="foo")
    assert b.get_value(ctx, {"variable": "var"}) == "foo"
    assert b.get_value(ctx, {}) == "foo"
Beispiel #10
0
def test_model_type_matching():
    assert empty_iterable(Binding("x", type=Model("shoop.Contact")).get_matching_types(TestEvent.variables))
    assert Binding("x", type=Model("shoop.Order")).get_matching_types(TestEvent.variables) == {"order"}
Beispiel #11
0
def test_text_type_matches_all():
    assert Binding("x", type=Text).get_matching_types(TestEvent.variables) == set(TestEvent.variables.keys())
Beispiel #12
0
def test_simple_type_matching():
    assert Binding("x", type=Language).get_matching_types(TestEvent.variables) == {"order_language"}