-
Notifications
You must be signed in to change notification settings - Fork 0
/
SampleActivator.cs
245 lines (210 loc) · 13.8 KB
/
SampleActivator.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
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Sample OnTopic Site
\=============================================================================================================================*/
using System;
using Ignia.Topics;
using Ignia.Topics.AspNetCore.Mvc;
using Ignia.Topics.AspNetCore.Mvc.Components;
using Ignia.Topics.AspNetCore.Mvc.Controllers;
using Ignia.Topics.Data.Caching;
using Ignia.Topics.Data.Sql;
using Ignia.Topics.Mapping;
using Ignia.Topics.Reflection;
using Ignia.Topics.Repositories;
using Ignia.Topics.ViewModels;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Controllers;
using Microsoft.AspNetCore.Mvc.ViewComponents;
using OnTopicTest.Components;
using OnTopicTest.Controllers;
namespace OnTopicTest {
/*============================================================================================================================
| CLASS: SAMPLE ACTIVATOR
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Responsible for creating instances of factories in response to web requests. Represents the Composition Root for
/// Dependency Injection.
/// </summary>
public class SampleActivator : IControllerActivator, IViewComponentActivator {
/*==========================================================================================================================
| PRIVATE INSTANCES
\-------------------------------------------------------------------------------------------------------------------------*/
private readonly string _connectionString = null;
private readonly ITypeLookupService _typeLookupService = null;
private readonly ITopicMappingService _topicMappingService = null;
private readonly ITopicRepository _topicRepository = null;
private readonly Topic _rootTopic = null;
/*==========================================================================================================================
| HIERARCHICAL TOPIC MAPPING SERVICE
\-------------------------------------------------------------------------------------------------------------------------*/
private readonly IHierarchicalTopicMappingService<NavigationTopicViewModel> _hierarchicalMappingService = null;
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a new instance of the <see cref="SampleControllerFactory"/>, including any shared dependencies to be used
/// across instances of controllers.
/// </summary>
/// <remarks>
/// The constructor is responsible for establishing dependencies with the singleton lifestyle so that they are available
/// to all requests.
/// </remarks>
public SampleActivator(string connectionString) {
/*------------------------------------------------------------------------------------------------------------------------
| Initialize Topic Repository
\-----------------------------------------------------------------------------------------------------------------------*/
_connectionString = connectionString;
var sqlTopicRepository = new SqlTopicRepository(connectionString);
var cachedTopicRepository = new CachedTopicRepository(sqlTopicRepository);
var topicViewModel = new PageTopicViewModel();
/*------------------------------------------------------------------------------------------------------------------------
| Preload repository
\-----------------------------------------------------------------------------------------------------------------------*/
_topicRepository = cachedTopicRepository;
_typeLookupService = new DynamicTopicViewModelLookupService();
_topicMappingService = new TopicMappingService(_topicRepository, _typeLookupService);
_rootTopic = _topicRepository.Load();
/*------------------------------------------------------------------------------------------------------------------------
| Establish hierarchical topic mapping service
\-----------------------------------------------------------------------------------------------------------------------*/
_hierarchicalMappingService = new CachedHierarchicalTopicMappingService<NavigationTopicViewModel>(
new HierarchicalTopicMappingService<NavigationTopicViewModel>(
_topicRepository,
_topicMappingService
)
);
}
/*==========================================================================================================================
| METHOD: CREATE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Registers dependencies, and injects them into new instances of controllers in response to each request.
/// </summary>
/// <returns>A concrete instance of an <see cref="IController"/>.</returns>
public object Create(ControllerContext context) {
/*------------------------------------------------------------------------------------------------------------------------
| Determine controller type
\-----------------------------------------------------------------------------------------------------------------------*/
Type type = context.ActionDescriptor.ControllerTypeInfo.AsType();
/*------------------------------------------------------------------------------------------------------------------------
| Configure and return appropriate controller
\-----------------------------------------------------------------------------------------------------------------------*/
if (type == typeof(HomeController)) {
return CreateHomeController();
}
else if (type == typeof(TopicController)) {
return CreateTopicController(context);
}
else {
throw new Exception($"Unknown controller {type.Name}");
}
}
/// <summary>
/// Registers dependencies, and injects them into new instances of view components in response to each request.
/// </summary>
/// <returns>A concrete instance of an <see cref="IController"/>.</returns>
public object Create(ViewComponentContext context) {
/*------------------------------------------------------------------------------------------------------------------------
| Determine view component type
\-----------------------------------------------------------------------------------------------------------------------*/
Type type = context.ViewComponentDescriptor.TypeInfo.AsType();
/*------------------------------------------------------------------------------------------------------------------------
| Configure and return appropriate view component
\-----------------------------------------------------------------------------------------------------------------------*/
if (type == typeof(MenuViewComponent)) {
return CreateMenuViewComponent(context);
}
else if (type == typeof(PageLevelNavigationViewComponent)) {
return CreatePageLevelNavigationViewComponent(context);
}
else {
throw new Exception($"Unknown view component {type.Name}");
}
}
/*==========================================================================================================================
| METHOD: CREATE HOME CONTROLLER
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Responds to a request to create a <see cref="HomeController"/> instance, the default controller for the site.
/// </summary>
private HomeController CreateHomeController() {
/*------------------------------------------------------------------------------------------------------------------------
| Return HomeController
\-----------------------------------------------------------------------------------------------------------------------*/
return new HomeController();
}
/*==========================================================================================================================
| METHOD: CREATE TOPIC CONTROLLER
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Responds to a request to create a <see cref="TopicController"/> instance, the default controller for the site.
/// </summary>
private TopicController CreateTopicController(ControllerContext context) {
/*------------------------------------------------------------------------------------------------------------------------
| Register
\-----------------------------------------------------------------------------------------------------------------------*/
var mvcTopicRoutingService = new MvcTopicRoutingService(
_topicRepository,
new Uri($"https://{context.HttpContext.Request.Host}/{context.HttpContext.Request.Path}"),
context.RouteData
);
/*------------------------------------------------------------------------------------------------------------------------
| Return TopicController
\-----------------------------------------------------------------------------------------------------------------------*/
return new TopicController(_topicRepository, mvcTopicRoutingService, _topicMappingService);
}
/*==========================================================================================================================
| METHOD: CREATE MENU VIEW COMPONENT
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Responds to a request to create a <see cref="MenuViewComponent"/> instance.
/// </summary>
private MenuViewComponent CreateMenuViewComponent(ViewComponentContext context) {
/*------------------------------------------------------------------------------------------------------------------------
| Register
\-----------------------------------------------------------------------------------------------------------------------*/
var mvcTopicRoutingService = new MvcTopicRoutingService(
_topicRepository,
new Uri($"https://{context.ViewContext.HttpContext.Request.Host}/{context.ViewContext.HttpContext.Request.Path}"),
context.ViewContext.RouteData
);
/*------------------------------------------------------------------------------------------------------------------------
| Return MenuViewComponent
\-----------------------------------------------------------------------------------------------------------------------*/
return new MenuViewComponent(mvcTopicRoutingService, _hierarchicalMappingService);
}
/*==========================================================================================================================
| METHOD: CREATE PAGE-LEVEL NAVIGATION VIEW COMPONENT
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Responds to a request to create a <see cref="MenuViewComponent"/> instance.
/// </summary>
private PageLevelNavigationViewComponent CreatePageLevelNavigationViewComponent(ViewComponentContext context) {
/*------------------------------------------------------------------------------------------------------------------------
| Register
\-----------------------------------------------------------------------------------------------------------------------*/
var mvcTopicRoutingService = new MvcTopicRoutingService(
_topicRepository,
new Uri($"https://{context.ViewContext.HttpContext.Request.Host}/{context.ViewContext.HttpContext.Request.Path}"),
context.ViewContext.RouteData
);
/*------------------------------------------------------------------------------------------------------------------------
| Return MenuViewComponent
\-----------------------------------------------------------------------------------------------------------------------*/
return new PageLevelNavigationViewComponent(mvcTopicRoutingService, _hierarchicalMappingService);
}
/*==========================================================================================================================
| METHOD: RELEASE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Responds to a request to release resources associated with a particular controller.
/// </summary>
public void Release(ControllerContext context, object controller) { }
/// <summary>
/// Responds to a request to release resources associated with a particular view component.
/// </summary>
public void Release(ViewComponentContext context, object viewComponent) { }
} //Class
} //Namespace