-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathAutoQueryMetadataFeature.cs
More file actions
231 lines (192 loc) · 8.67 KB
/
Copy pathAutoQueryMetadataFeature.cs
File metadata and controls
231 lines (192 loc) · 8.67 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
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using ServiceStack.DataAnnotations;
using ServiceStack.NativeTypes;
namespace ServiceStack
{
public class AutoQueryMetadataFeature : IPlugin, Model.IHasStringId
{
public string Id { get; set; } = Plugins.AutoQueryMetadata;
public AutoQueryViewerConfig AutoQueryViewerConfig { get; set; }
public Action<AutoQueryMetadataResponse> MetadataFilter { get; set; }
public List<Type> ExportTypes { get; set; }
public int? MaxLimit { get; set; }
public AutoQueryMetadataFeature()
{
this.AutoQueryViewerConfig = GetAutoQueryViewerConfigDefaults();
this.ExportTypes = new List<Type> {
typeof(RequestLogEntry)
};
}
internal static AutoQueryViewerConfig GetAutoQueryViewerConfigDefaults()
{
return new AutoQueryViewerConfig
{
Formats = new[] { "json", "xml", "csv" },
ImplicitConventions = new List<AutoQueryConvention>
{
new AutoQueryConvention { Name = "=", Value = "%" },
new AutoQueryConvention { Name = "!=", Value = "%!" },
new AutoQueryConvention { Name = ">=", Value = ">%" },
new AutoQueryConvention { Name = ">", Value = "%>" },
new AutoQueryConvention { Name = "<=", Value = "%<" },
new AutoQueryConvention { Name = "<", Value = "<%" },
new AutoQueryConvention { Name = "In", Value = "%In" },
new AutoQueryConvention { Name = "Between", Value = "%Between" },
new AutoQueryConvention { Name = "Starts With", Value = "%StartsWith", Types = "string" },
new AutoQueryConvention { Name = "Contains", Value = "%Contains", Types = "string" },
new AutoQueryConvention { Name = "Ends With", Value = "%EndsWith", Types = "string" },
}
};
}
public void Register(IAppHost appHost)
{
if (MaxLimit != null)
AutoQueryViewerConfig.MaxLimit = MaxLimit;
appHost.RegisterService<AutoQueryMetadataService>();
}
}
public class AutoQueryViewerConfig : AppInfo
{
/// <summary>
/// The BaseUrl of the ServiceStack instance (inferred)
/// </summary>
public string ServiceBaseUrl { get; set; }
/// <summary>
/// The different Content Type formats to display
/// </summary>
public string[] Formats { get; set; }
/// <summary>
/// The configured MaxLimit for AutoQuery
/// </summary>
public int? MaxLimit { get; set; }
/// <summary>
/// Whether to publish this Service to the public Services registry
/// </summary>
public bool IsPublic { get; set; }
/// <summary>
/// Only show AutoQuery Services attributed with [AutoQueryViewer]
/// </summary>
public bool OnlyShowAnnotatedServices { get; set; }
/// <summary>
/// List of different Search Filters available
/// </summary>
public List<AutoQueryConvention> ImplicitConventions { get; set; }
/// <summary>
/// The Column which should be selected by default
/// </summary>
public string DefaultSearchField { get; set; }
/// <summary>
/// The Query Type filter which should be selected by default
/// </summary>
public string DefaultSearchType { get; set; }
/// <summary>
/// The search text which should be populated by default
/// </summary>
public string DefaultSearchText { get; set; }
}
[ExcludeMetadata]
[Route("/autoquery/metadata")]
public class AutoQueryMetadata : IReturn<AutoQueryMetadataResponse> { }
public class AutoQueryViewerUserInfo : IMeta
{
/// <summary>
/// Returns true if the User Is Authenticated
/// </summary>
public bool IsAuthenticated { get; set; }
/// <summary>
/// How many queries are available to this user
/// </summary>
public int QueryCount { get; set; }
public Dictionary<string, string> Meta { get; set; }
}
public class AutoQueryOperation : IMeta
{
public string Request { get; set; }
public List<MetadataRoute> Routes { get; set; }
public string From { get; set; }
public string To { get; set; }
public Dictionary<string, string> Meta { get; set; }
}
public class AutoQueryMetadataResponse : IMeta
{
public AutoQueryViewerConfig Config { get; set; }
public AutoQueryViewerUserInfo UserInfo { get; set; }
public List<AutoQueryOperation> Operations { get; set; }
public List<MetadataType> Types { get; set; }
public ResponseStatus ResponseStatus { get; set; }
public Dictionary<string, string> Meta { get; set; }
}
[Restrict(VisibilityTo = RequestAttributes.None)]
public class AutoQueryMetadataService : Service
{
public INativeTypesMetadata NativeTypesMetadata { get; set; }
public async Task<object> AnyAsync(AutoQueryMetadata request)
{
if (NativeTypesMetadata == null)
throw new NotSupportedException("AutoQueryViewer requires NativeTypesFeature");
var feature = HostContext.GetPlugin<AutoQueryMetadataFeature>();
var config = feature.AutoQueryViewerConfig;
if (config == null)
throw new NotSupportedException("AutoQueryViewerConfig is missing");
if (config.ServiceBaseUrl == null)
config.ServiceBaseUrl = base.Request.GetBaseUrl();
if (config.ServiceName == null)
config.ServiceName = HostContext.ServiceName;
var userSession = await Request.GetSessionAsync();
var typesConfig = NativeTypesMetadata.GetConfig(new TypesMetadata { BaseUrl = Request.GetBaseUrl() });
foreach (var type in feature.ExportTypes)
{
typesConfig.ExportTypes.Add(type);
}
var metadataTypes = NativeTypesMetadata.GetMetadataTypes(Request, typesConfig,
op => HostContext.Metadata.IsAuthorized(op, Request, userSession));
var response = new AutoQueryMetadataResponse {
Config = config,
UserInfo = new AutoQueryViewerUserInfo {
IsAuthenticated = userSession.IsAuthenticated,
},
Operations = new List<AutoQueryOperation>(),
Types = new List<MetadataType>(),
};
var includeTypeNames = new HashSet<string>();
foreach (var op in metadataTypes.Operations)
{
if (op.Request.Inherits != null
&& (op.Request.Inherits.Name.StartsWith("QueryDb`") ||
op.Request.Inherits.Name.StartsWith("QueryData`"))
)
{
if (config.OnlyShowAnnotatedServices)
{
var serviceAttrs = op.Request.Attributes.Safe();
var attr = serviceAttrs.FirstOrDefault(x => x.Name + "Attribute" == nameof(AutoQueryViewerAttribute));
if (attr == null)
continue;
}
var inheritArgs = op.Request.Inherits.GenericArgs.Safe().ToArray();
response.Operations.Add(new AutoQueryOperation {
Request = op.Request.Name,
Routes = op.Routes,
From = inheritArgs.First(),
To = inheritArgs.Last(),
});
response.Types.Add(op.Request);
op.Request.GetReferencedTypeNames(metadataTypes).Each(x => includeTypeNames.Add(x));
}
}
var allTypes = metadataTypes.GetAllTypes();
var types = allTypes.Where(x => includeTypeNames.Contains(x.Name)).ToList();
//Add referenced types to type name search
types.SelectMany(x => x.GetReferencedTypeNames(metadataTypes)).Each(x => includeTypeNames.Add(x));
//Only need to seek 1-level deep in AutoQuery's (db.LoadSelect)
types = allTypes.Where(x => includeTypeNames.Contains(x.Name)).ToList();
response.Types.AddRange(types);
response.UserInfo.QueryCount = response.Operations.Count;
feature.MetadataFilter?.Invoke(response);
return response;
}
}
}