-
Notifications
You must be signed in to change notification settings - Fork 758
/
Copy pathRazorEngine.cs
162 lines (149 loc) · 5.82 KB
/
RazorEngine.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
#region Copyright
//
// DotNetNuke® - http://www.dotnetnuke.com
// Copyright (c) 2002-2016
// by DotNetNuke Corporation
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
// documentation files (the "Software"), to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
// to permit persons to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or substantial portions
// of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
// TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
// CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#endregion
#region Using
using System;
using System.Globalization;
using System.IO;
using System.Runtime.CompilerServices;
using System.Web;
using System.Web.Compilation;
using System.Web.WebPages;
using DotNetNuke.Services.Exceptions;
using DotNetNuke.Services.Localization;
using DotNetNuke.UI.Modules;
using DotNetNuke.Web.Razor.Helpers;
#endregion
namespace DotNetNuke.Web.Razor
{
public class RazorEngine
{
public RazorEngine(string razorScriptFile, ModuleInstanceContext moduleContext, string localResourceFile)
{
RazorScriptFile = razorScriptFile;
ModuleContext = moduleContext;
LocalResourceFile = localResourceFile ?? Path.Combine(Path.GetDirectoryName(razorScriptFile), Localization.LocalResourceDirectory, Path.GetFileName(razorScriptFile) + ".resx");
try
{
InitWebpage();
}
catch (HttpParseException)
{
throw;
}
catch (HttpCompileException)
{
throw;
}
catch (Exception exc)
{
Exceptions.LogException(exc);
}
}
protected string RazorScriptFile { get; set; }
protected ModuleInstanceContext ModuleContext { get; set; }
protected string LocalResourceFile { get; set; }
public DotNetNukeWebPage Webpage { get; set; }
protected HttpContextBase HttpContext
{
get { return new HttpContextWrapper(System.Web.HttpContext.Current); }
}
public Type RequestedModelType()
{
if (Webpage != null)
{
var webpageType = Webpage.GetType();
if (webpageType.BaseType.IsGenericType)
{
return webpageType.BaseType.GetGenericArguments()[0];
}
}
return null;
}
public void Render<T>(TextWriter writer, T model)
{
try
{
Webpage.ExecutePageHierarchy(new WebPageContext(HttpContext, Webpage, model), writer, Webpage);
}
catch (Exception exc)
{
Exceptions.LogException(exc);
}
}
public void Render(TextWriter writer)
{
try
{
Webpage.ExecutePageHierarchy(new WebPageContext(HttpContext, Webpage, null), writer, Webpage);
}
catch (Exception exc)
{
Exceptions.LogException(exc);
}
}
public void Render(TextWriter writer, WebPageContext context)
{
try
{
Webpage.ExecutePageHierarchy(context, writer, Webpage);
}
catch (Exception exc)
{
Exceptions.LogException(exc);
}
}
private object CreateWebPageInstance()
{
var compiledType = BuildManager.GetCompiledType(RazorScriptFile);
object objectValue = null;
if (((compiledType != null)))
{
objectValue = RuntimeHelpers.GetObjectValue(Activator.CreateInstance(compiledType));
}
return objectValue;
}
private void InitHelpers(DotNetNukeWebPage webPage)
{
webPage.Dnn = new DnnHelper(ModuleContext);
webPage.Html = new HtmlHelper(ModuleContext, LocalResourceFile);
webPage.Url = new UrlHelper(ModuleContext);
}
private void InitWebpage()
{
if (!string.IsNullOrEmpty(RazorScriptFile))
{
var objectValue = RuntimeHelpers.GetObjectValue(CreateWebPageInstance());
if ((objectValue == null))
{
throw new InvalidOperationException(string.Format(CultureInfo.CurrentCulture, "The webpage found at '{0}' was not created.", new object[] {RazorScriptFile}));
}
Webpage = objectValue as DotNetNukeWebPage;
if ((Webpage == null))
{
throw new InvalidOperationException(string.Format(CultureInfo.CurrentCulture, "The webpage at '{0}' must derive from DotNetNukeWebPage.", new object[] {RazorScriptFile}));
}
Webpage.Context = HttpContext;
Webpage.VirtualPath = VirtualPathUtility.GetDirectory(RazorScriptFile);
InitHelpers(Webpage);
}
}
}
}