forked from DotNetOpenAuth/DotNetOpenAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReportingElement.cs
155 lines (136 loc) · 5.7 KB
/
ReportingElement.cs
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
//-----------------------------------------------------------------------
// <copyright file="ReportingElement.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Configuration {
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Diagnostics.Contracts;
using System.Linq;
using System.Text;
/// <summary>
/// Represents the <reporting> element in the host's .config file.
/// </summary>
internal class ReportingElement : ConfigurationSection {
/// <summary>
/// The name of the @enabled attribute.
/// </summary>
private const string EnabledAttributeName = "enabled";
/// <summary>
/// The name of the @minimumReportingInterval attribute.
/// </summary>
private const string MinimumReportingIntervalAttributeName = "minimumReportingInterval";
/// <summary>
/// The name of the @minimumFlushInterval attribute.
/// </summary>
private const string MinimumFlushIntervalAttributeName = "minimumFlushInterval";
/// <summary>
/// The name of the @includeFeatureUsage attribute.
/// </summary>
private const string IncludeFeatureUsageAttributeName = "includeFeatureUsage";
/// <summary>
/// The name of the @includeEventStatistics attribute.
/// </summary>
private const string IncludeEventStatisticsAttributeName = "includeEventStatistics";
/// <summary>
/// The name of the @includeLocalRequestUris attribute.
/// </summary>
private const string IncludeLocalRequestUrisAttributeName = "includeLocalRequestUris";
/// <summary>
/// The name of the @includeCultures attribute.
/// </summary>
private const string IncludeCulturesAttributeName = "includeCultures";
/// <summary>
/// The name of the <reporting> sub-element.
/// </summary>
private const string ReportingElementName = DotNetOpenAuthSection.SectionName + "/reporting";
/// <summary>
/// The default value for the @minimumFlushInterval attribute.
/// </summary>
#if DEBUG
private const string MinimumFlushIntervalDefault = "0";
#else
private const string MinimumFlushIntervalDefault = "0:15";
#endif
/// <summary>
/// Initializes a new instance of the <see cref="ReportingElement"/> class.
/// </summary>
internal ReportingElement() {
}
/// <summary>
/// Gets the configuration section from the .config file.
/// </summary>
public static ReportingElement Configuration {
get {
Contract.Ensures(Contract.Result<ReportingElement>() != null);
return (ReportingElement)ConfigurationManager.GetSection(ReportingElementName) ?? new ReportingElement();
}
}
/// <summary>
/// Gets or sets a value indicating whether this reporting is enabled.
/// </summary>
/// <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
[ConfigurationProperty(EnabledAttributeName, DefaultValue = true)]
internal bool Enabled {
get { return (bool)this[EnabledAttributeName]; }
set { this[EnabledAttributeName] = value; }
}
/// <summary>
/// Gets or sets the maximum frequency that reports will be published.
/// </summary>
[ConfigurationProperty(MinimumReportingIntervalAttributeName, DefaultValue = "1")] // 1 day default
internal TimeSpan MinimumReportingInterval {
get { return (TimeSpan)this[MinimumReportingIntervalAttributeName]; }
set { this[MinimumReportingIntervalAttributeName] = value; }
}
/// <summary>
/// Gets or sets the maximum frequency the set can be flushed to disk.
/// </summary>
[ConfigurationProperty(MinimumFlushIntervalAttributeName, DefaultValue = MinimumFlushIntervalDefault)]
internal TimeSpan MinimumFlushInterval {
get { return (TimeSpan)this[MinimumFlushIntervalAttributeName]; }
set { this[MinimumFlushIntervalAttributeName] = value; }
}
/// <summary>
/// Gets or sets a value indicating whether to include a list of library features used in the report.
/// </summary>
/// <value><c>true</c> to include a report of features used; otherwise, <c>false</c>.</value>
[ConfigurationProperty(IncludeFeatureUsageAttributeName, DefaultValue = true)]
internal bool IncludeFeatureUsage {
get { return (bool)this[IncludeFeatureUsageAttributeName]; }
set { this[IncludeFeatureUsageAttributeName] = value; }
}
/// <summary>
/// Gets or sets a value indicating whether to include statistics of certain events such as
/// authentication success and failure counting, and can include remote endpoint URIs.
/// </summary>
/// <value>
/// <c>true</c> to include event counters in the report; otherwise, <c>false</c>.
/// </value>
[ConfigurationProperty(IncludeEventStatisticsAttributeName, DefaultValue = true)]
internal bool IncludeEventStatistics {
get { return (bool)this[IncludeEventStatisticsAttributeName]; }
set { this[IncludeEventStatisticsAttributeName] = value; }
}
/// <summary>
/// Gets or sets a value indicating whether to include a few URLs to pages on the hosting
/// web site that host DotNetOpenAuth components.
/// </summary>
[ConfigurationProperty(IncludeLocalRequestUrisAttributeName, DefaultValue = true)]
internal bool IncludeLocalRequestUris {
get { return (bool)this[IncludeLocalRequestUrisAttributeName]; }
set { this[IncludeLocalRequestUrisAttributeName] = value; }
}
/// <summary>
/// Gets or sets a value indicating whether to include the cultures requested by the user agent
/// on pages that host DotNetOpenAuth components.
/// </summary>
[ConfigurationProperty(IncludeCulturesAttributeName, DefaultValue = true)]
internal bool IncludeCultures {
get { return (bool)this[IncludeCulturesAttributeName]; }
set { this[IncludeCulturesAttributeName] = value; }
}
}
}