forked from DNN-Connect/CKEditorProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tabs.ashx.cs
87 lines (72 loc) · 3.31 KB
/
Tabs.ashx.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
using System.Text;
using System.Text.RegularExpressions;
using System.Web;
using DotNetNuke.Entities.Modules;
using DotNetNuke.Entities.Portals;
using DotNetNuke.Entities.Tabs;
using Microsoft.JScript;
using Globals = DotNetNuke.Common.Globals;
namespace DNNConnect.CKEditorProvider
{
/// <summary>
/// Renders the Tab Java Script
/// </summary>
public class Tabs : PortalModuleBase, IHttpHandler
{
/// <summary>
/// Gets a value indicating whether another request can use the <see cref="T:System.Web.IHttpHandler"/> instance.
/// </summary>
/// <returns>true if the <see cref="T:System.Web.IHttpHandler"/> instance is reusable; otherwise, false.</returns>
public bool IsReusable
{
get
{
return false;
}
}
/// <summary>
/// Enables processing of HTTP Web requests by a custom HttpHandler that implements the <see cref="T:System.Web.IHttpHandler"/> interface.
/// </summary>
/// <param name="context">An <see cref="T:System.Web.HttpContext"/> object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.</param>
public void ProcessRequest(HttpContext context)
{
var portalId = PortalSettings.PortalId;
// Generate Pages Array
var pagesArray = new StringBuilder();
pagesArray.Append("var dnnpagesSelectBox = new Array(");
var domainName = string.Format("http://{0}", Globals.GetDomainName(context.Request, true));
foreach (TabInfo tab in TabController.GetPortalTabs(
portalId, -1, false, null, true, false, true, true, true))
{
var tabUrl = PortalController.GetPortalSettingAsBoolean("ContentLocalizationEnabled", portalId, false)
&& !string.IsNullOrEmpty(tab.CultureCode)
? Globals.FriendlyUrl(
tab,
string.Format("{0}&language={1}", Globals.ApplicationURL(tab.TabID), tab.CultureCode))
: Globals.FriendlyUrl(tab, Globals.ApplicationURL(tab.TabID));
tabUrl = Globals.ResolveUrl(Regex.Replace(tabUrl, domainName, "~", RegexOptions.IgnoreCase));
var tabName = GlobalObject.escape(tab.TabName);
if (tab.Level.Equals(0))
{
pagesArray.AppendFormat("new Array('| {0}','{1}'),", tabName, tabUrl);
}
else
{
var separator = new StringBuilder();
for (int index = 0; index < tab.Level; index++)
{
separator.Append("--");
}
pagesArray.AppendFormat("new Array('|{0} {1}','{2}'),", separator, tabName, tabUrl);
}
}
if (pagesArray.ToString().EndsWith(","))
{
pagesArray.Remove(pagesArray.Length - 1, 1);
}
pagesArray.Append(");");
context.Response.ContentType = "text/javascript";
context.Response.Write(pagesArray.ToString());
}
}
}