-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTopicQueryService.cs
More file actions
205 lines (176 loc) · 10.2 KB
/
TopicQueryService.cs
File metadata and controls
205 lines (176 loc) · 10.2 KB
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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using OnTopic.Collections;
namespace OnTopic.Editor.AspNetCore.Models.Queryable {
/*============================================================================================================================
| CLASS: TOPIC QUERY SERVICE
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Constructs a hierarchy of <see cref="QueryResultTopicViewModel"/> objects based on a root <see cref="Topic"/> and a set
/// of options as specified in a <see cref="TopicQueryOptions"/> object.
/// </summary>
public class TopicQueryService {
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Initializes a new instance of the <see cref="TopicQueryService"/> class.
/// </summary>
public TopicQueryService() { }
/*==========================================================================================================================
| QUERY
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Generates and returns a list of <see cref="QueryResultTopicViewModel"/> objects based on a root <see cref="Topic"/> as
/// well as a set of options as specified in a <see cref="TopicQueryOptions"/> object.
/// </summary>
public Collection<QueryResultTopicViewModel> Query(
Topic rootTopic,
TopicQueryOptions options,
ReadOnlyTopicCollection? related = null
) {
/*------------------------------------------------------------------------------------------------------------------------
| Validate parameters
\-----------------------------------------------------------------------------------------------------------------------*/
Contract.Requires(rootTopic, nameof(rootTopic));
Contract.Requires(options, nameof(options));
/*------------------------------------------------------------------------------------------------------------------------
| Establish containers for mapped objects, tasks
\-----------------------------------------------------------------------------------------------------------------------*/
var topicViewModels = new Collection<QueryResultTopicViewModel>();
/*------------------------------------------------------------------------------------------------------------------------
| Establish counter
\-----------------------------------------------------------------------------------------------------------------------*/
var remainingResults = options.ResultLimit;
/*------------------------------------------------------------------------------------------------------------------------
| Bootstrap mapping process
\-----------------------------------------------------------------------------------------------------------------------*/
if (options.ShowRoot) {
MapQueryResult(topicViewModels, rootTopic, options, ref remainingResults, related?? new());
}
else {
foreach (var topic in rootTopic.Children) {
MapQueryResult(topicViewModels, topic, options, ref remainingResults, related?? new());
}
}
/*------------------------------------------------------------------------------------------------------------------------
| Return results
\-----------------------------------------------------------------------------------------------------------------------*/
return topicViewModels;
}
/*==========================================================================================================================
| MAP QUERY RESULT
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Private helper function that maps a successfully validated <see cref="Topic"/> to a <see
/// cref="QueryResultTopicViewModel"/>.
/// </summary>
private void MapQueryResult(
Collection<QueryResultTopicViewModel> topicList,
Topic topic,
TopicQueryOptions options,
ref int remainingResults,
ReadOnlyTopicCollection related
)
{
/*------------------------------------------------------------------------------------------------------------------------
| Loop through children
\-----------------------------------------------------------------------------------------------------------------------*/
var isValid = IsValidTopic(topic, options, remainingResults);
/*------------------------------------------------------------------------------------------------------------------------
| Map topic
\-----------------------------------------------------------------------------------------------------------------------*/
if (isValid) {
//Decrement counter
remainingResults--;
//Map topic
var mappedTopic = new QueryResultTopicViewModel(
topic.Id,
topic.Key,
options.UseKeyAsText ? topic.Key : topic.Title,
topic.GetUniqueKey(),
topic.GetWebPath(),
options.EnableCheckboxes ? (!options.MarkRelated || related.Contains(topic)) : new bool?(),
!topic.Attributes.GetBoolean("DisableDelete") && !topic.Attributes.GetBoolean("IsProtected"),
options.ExpandRelated && related.Any(r => r.GetUniqueKey().StartsWith(topic.GetUniqueKey(), StringComparison.Ordinal))
);
//Add topic to topic list
topicList.Add(mappedTopic);
//Handle recursion, if appropriate
topicList = options.FlattenStructure ? topicList : mappedTopic.Children;
}
/*------------------------------------------------------------------------------------------------------------------------
| Loop through children (asynchronously)
\-----------------------------------------------------------------------------------------------------------------------*/
if (isValid && options.IsRecursive || options.FlattenStructure ) {
foreach (var childTopic in topic.Children) {
MapQueryResult(
topicList,
childTopic,
options,
ref remainingResults,
related
);
}
}
}
/*==========================================================================================================================
| IS VALID TOPIC
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Static method confirms whether a topic is valid based on the <see cref="TopicQueryOptions"/>.
/// </summary>
public static bool IsValidTopic(Topic topic, TopicQueryOptions options, int remainingResults) {
/*------------------------------------------------------------------------------------------------------------------------
| Validate parameters
\-----------------------------------------------------------------------------------------------------------------------*/
Contract.Requires(topic, nameof(topic));
Contract.Requires(options, nameof(options));
/*------------------------------------------------------------------------------------------------------------------------
| Establish variables
\-----------------------------------------------------------------------------------------------------------------------*/
var searchTerms = (options.Query ?? "").Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries).ToList();
/*------------------------------------------------------------------------------------------------------------------------
| Validate basic properties
\-----------------------------------------------------------------------------------------------------------------------*/
if (!options.ShowAll && !topic.IsVisible()) return false;
if (!options.ShowNestedTopics && topic.ContentType is "List") return false;
if (remainingResults is 0) return false;
/*------------------------------------------------------------------------------------------------------------------------
| Validate filtered attribute
\-----------------------------------------------------------------------------------------------------------------------*/
if (!String.IsNullOrEmpty(options.AttributeName)) {
var attributeValue = topic.Attributes.GetValue(options.AttributeName, "");
if (options.AttributeName is "ContentType") {
attributeValue = topic.ContentType;
}
if (options.UsePartialMatch && !String.IsNullOrEmpty(options.AttributeValue)) {
if (attributeValue.IndexOf(options.AttributeValue, StringComparison.Ordinal) is -1) {
return false;
}
}
if (!attributeValue.Equals(options.AttributeValue, StringComparison.Ordinal)) {
return false;
}
}
/*------------------------------------------------------------------------------------------------------------------------
| Validate search results
\-----------------------------------------------------------------------------------------------------------------------*/
if (searchTerms.Count > 0) {
if (!searchTerms.All(
searchTerm =>
topic.Attributes.Any(
a => a.Value?.IndexOf(searchTerm, 0, StringComparison.OrdinalIgnoreCase) >= 0
) ||
topic.Key.IndexOf(searchTerm, 0, StringComparison.OrdinalIgnoreCase) >= 0
)) {
return false;
}
}
return true;
}
} // Class
} // Namespace