コード例 #1
0
        private RuleRow GetRuleObject()
        {
            RuleRow result = null;

            if (this.ServiceUrl != null)
            {
                if (null == this.ObjectIdentity)
                {
                    throw new BadQueryParameterException("id");
                }
                IEnumerable enumerable = (IEnumerable)this.ServiceUrl.GetObject(this.ObjectIdentity);
                IEnumerator enumerator = enumerable.GetEnumerator();
                if (enumerator.MoveNext())
                {
                    result = (RuleRow)enumerator.Current;
                }
            }
            return(result);
        }
コード例 #2
0
        protected override void CreateChildControls()
        {
            base.CreateChildControls();
            RuleRow ruleObject = this.GetRuleObject();

            if (ruleObject == null)
            {
                return;
            }
            if (!ruleObject.Supported && !this.UnsupportedRuleDescription.IsNullOrBlank())
            {
                Label label = new Label();
                label.Text     = this.UnsupportedRuleDescription;
                label.CssClass = "RuleDetailsPanel_SectionHeader";
                label.ID       = "lblTitle";
                this.Controls.Add(label);
                return;
            }
            Label label2 = new Label();

            label2.Text     = HttpUtility.HtmlEncode(ruleObject.Name);
            label2.CssClass = "RuleDetailsPanel_RuleName";
            label2.ID       = "lblTitle";
            this.Controls.Add(label2);
            Panel child;

            if (ruleObject.ConditionDescriptions.Length > 0)
            {
                child = this.CreateDescriptionsPane("divCondition", this.ConditionHeaderString, ruleObject.ConditionDescriptions, Strings.RuleDescriptionAndDelimiter);
            }
            else
            {
                string[] descriptionArray = new string[]
                {
                    this.ApplyToAllRuleDescription
                };
                child = this.CreateDescriptionsPane("divCondition", this.ConditionHeaderString, descriptionArray, Strings.RuleDescriptionAndDelimiter);
            }
            this.Controls.Add(child);
            if (ruleObject.ActionDescriptions.Length > 0)
            {
                Panel child2 = this.CreateDescriptionsPane("divAction", Strings.RuleActionSectionHeader, ruleObject.ActionDescriptions, Strings.RuleDescriptionAndDelimiter);
                this.Controls.Add(child2);
                if (ruleObject is TransportRule)
                {
                    TransportRule transportRule = (TransportRule)ruleObject;
                    if (null != transportRule.GenerateIncidentReport && RbacPrincipal.Current.IsInRole("OWA") && MailboxPermissions.CanAccessMailboxOf(transportRule.GenerateIncidentReport.RawIdentity))
                    {
                        this.CreateIncidentManagementLink(transportRule);
                    }
                }
            }
            if (ruleObject.ExceptionDescriptions.Length > 0)
            {
                Panel child3 = this.CreateDescriptionsPane("divException", Strings.RuleExceptionSectionHeader, ruleObject.ExceptionDescriptions, Strings.RuleDescriptionOrDelimiter);
                this.Controls.Add(child3);
            }
            if (!string.IsNullOrEmpty(ruleObject.DlpPolicy))
            {
                Label label3 = new Label();
                label3.Text     = HttpUtility.HtmlEncode(Strings.DLPPolicyMailFlowNameColumn);
                label3.CssClass = "RuleDetailsPanel_SectionHeader";
                label3.ID       = "lblDLPPolicy";
                this.Controls.Add(label3);
                HtmlGenericControl htmlGenericControl = new HtmlGenericControl(HtmlTextWriterTag.Div.ToString());
                htmlGenericControl.Attributes.Add("class", "RuleDetailsPanel_Description");
                htmlGenericControl.ID        = "dlppolicy_description";
                htmlGenericControl.InnerText = ruleObject.DlpPolicy;
                this.Controls.Add(htmlGenericControl);
            }
            List <string> list = new List <string>();

            if (ruleObject is TransportRule)
            {
                TransportRule transportRule2 = (TransportRule)ruleObject;
                if (transportRule2.Comments != null)
                {
                    Label label4 = new Label();
                    label4.Text     = HttpUtility.HtmlEncode(Strings.RuleCommentsLabel);
                    label4.CssClass = "RuleDetailsPanel_SectionHeader";
                    label4.ID       = "lblRuleComment";
                    this.Controls.Add(label4);
                    HtmlGenericControl htmlGenericControl2 = new HtmlGenericControl(HtmlTextWriterTag.Div.ToString());
                    htmlGenericControl2.Attributes.Add("class", "RuleDetailsPanel_Description");
                    htmlGenericControl2.ID        = "lblRuleComment_description";
                    htmlGenericControl2.InnerText = transportRule2.Comments;
                    this.Controls.Add(htmlGenericControl2);
                }
                if (!string.IsNullOrEmpty(transportRule2.Mode))
                {
                    Label label5 = new Label();
                    label5.Text     = HttpUtility.HtmlEncode(Strings.RuleMode);
                    label5.CssClass = "RuleDetailsPanel_SectionHeader";
                    label5.ID       = "lblRuleMode";
                    this.Controls.Add(label5);
                    HtmlGenericControl htmlGenericControl3 = new HtmlGenericControl(HtmlTextWriterTag.Div.ToString());
                    htmlGenericControl3.Attributes.Add("class", "RuleDetailsPanel_Description");
                    htmlGenericControl3.ID        = "dlppolicy_mode";
                    htmlGenericControl3.InnerText = LocalizedDescriptionAttribute.FromEnum(typeof(RuleMode), (RuleMode)Enum.Parse(typeof(RuleMode), transportRule2.Mode, true));
                    this.Controls.Add(htmlGenericControl3);
                }
                string format;
                if (EacRbacPrincipal.Instance.DateFormat != null && EacRbacPrincipal.Instance.TimeFormat != null)
                {
                    format = EacRbacPrincipal.Instance.DateFormat + " " + EacRbacPrincipal.Instance.TimeFormat;
                }
                else
                {
                    format = "yyyy/MM/dd HH:mm:ss";
                }
                if (transportRule2.ActivationDate != null)
                {
                    list.Add(ruleObject.ActivationDateDescription + " " + transportRule2.ActivationDate.Value.ToString(format));
                }
                if (transportRule2.ExpiryDate != null)
                {
                    list.Add(ruleObject.ExpiryDateDescription + " " + transportRule2.ExpiryDate.Value.ToString(format));
                }
                if (transportRule2.SenderAddressLocation != null)
                {
                    list.Add(string.Format(Strings.RuleSenderAddressMatches, LocalizedDescriptionAttribute.FromEnum(typeof(SenderAddressLocation), Enum.Parse(typeof(SenderAddressLocation), transportRule2.SenderAddressLocation, true))));
                }
                if (transportRule2.RuleErrorAction != null)
                {
                    RuleErrorAction ruleErrorAction = (RuleErrorAction)Enum.Parse(typeof(RuleErrorAction), transportRule2.RuleErrorAction, true);
                    if (ruleErrorAction == RuleErrorAction.Defer)
                    {
                        list.Add(string.Format(Strings.RuleBusinessContinuity, LocalizedDescriptionAttribute.FromEnum(typeof(RuleErrorAction), ruleErrorAction)));
                    }
                }
            }
            if (list.Count > 0)
            {
                Label label6 = new Label();
                label6.Text     = HttpUtility.HtmlEncode(Strings.RuleProperties);
                label6.CssClass = "RuleDetailsPanel_SectionHeader";
                label6.ID       = "lblAdditionalProps";
                this.Controls.Add(label6);
                HtmlGenericControl htmlGenericControl4 = new HtmlGenericControl(HtmlTextWriterTag.Div.ToString());
                htmlGenericControl4.Attributes.Add("class", "RuleDetailsPanel_Description");
                htmlGenericControl4.ID        = "properties_description";
                htmlGenericControl4.InnerHtml = string.Join(string.Empty, from s in list
                                                            select HttpUtility.HtmlEncode(s) + "<br />");
                this.Controls.Add(htmlGenericControl4);
            }
            if (null != ruleObject.RuleVersion)
            {
                Panel panel = new Panel();
                panel.Attributes.Add("class", "RuleDetailsPanel_Description");
                panel.Controls.Add(new Label
                {
                    Text = string.Format(Strings.RuleVersion, ruleObject.RuleVersion.ToString())
                });
                this.Controls.Add(panel);
            }
        }