-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathImportTemplateDefinition.ascx.vb
executable file
·267 lines (185 loc) · 9.5 KB
/
ImportTemplateDefinition.ascx.vb
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
Imports DotNetNuke.Common
Imports DotNetNuke.Services.Exceptions
Imports DotNetNuke.Services.Localization
Imports ICSharpCode.SharpZipLib.Zip
Imports System.IO
Imports System.Xml
Namespace Ventrian.PropertyAgent
Partial Public Class ImportTemplateDefinition
Inherits PropertyAgentBase
#Region " Private Methods "
Private Sub BindCrumbs()
Dim crumbs As New ArrayList
Dim objCrumbMain As New CrumbInfo
objCrumbMain.Caption = PropertySettings.MainLabel
objCrumbMain.Url = NavigateURL()
crumbs.Add(objCrumbMain)
Dim objTemplateDefinitions As New CrumbInfo
objTemplateDefinitions.Caption = Localization.GetString("EditTemplateDefinitions", LocalResourceFile)
objTemplateDefinitions.Url = NavigateURL(Me.TabId, "", PropertySettings.SEOAgentType & "=EditTemplateDefinitions")
crumbs.Add(objTemplateDefinitions)
Dim objImport As New CrumbInfo
objImport.Caption = Localization.GetString("ImportNewTemplate", LocalResourceFile)
objImport.Url = Request.RawUrl.ToString()
crumbs.Add(objImport)
If (PropertySettings.BreadcrumbPlacement = BreadcrumbType.Portal) Then
For i As Integer = 0 To crumbs.Count - 1
Dim objCrumb As CrumbInfo = crumbs(i)
If (i > 0) Then
Dim objTab As New DotNetNuke.Entities.Tabs.TabInfo
objTab.TabID = -8888 + i
objTab.TabName = objCrumb.Caption
objTab.Url = objCrumb.Url
PortalSettings.ActiveTab.BreadCrumbs.Add(objTab)
End If
Next
End If
If (PropertySettings.BreadcrumbPlacement = BreadcrumbType.Module) Then
rptBreadCrumbs.DataSource = crumbs
rptBreadCrumbs.DataBind()
End If
End Sub
Private Sub ImportTemplate()
Dim fileName As String = ExtractFileName(cmdBrowse.PostedFile.FileName)
Dim folder As String = fileName.Replace(".zip", "")
Dim unzip As New ZipInputStream(cmdBrowse.PostedFile.InputStream)
Dim entry As ZipEntry = unzip.GetNextEntry()
While Not (entry Is Nothing)
If Not entry.IsDirectory Then
Dim name As String = ""
Dim path As String = ""
Dim buffer() As Byte
Dim s As String = entry.Name
Dim i As Integer = s.LastIndexOf("\"c)
If (i < 0) Then
i = s.LastIndexOf("/"c)
End If
If i < 0 Then
name = s.Substring(0, s.Length)
path = ""
Else
name = s.Substring(i + 1, s.Length - (i + 1))
path = s.Substring(0, i)
End If
buffer = New [Byte](Convert.ToInt32(entry.Size) - 1) {}
Dim size As Integer = 0
While size < buffer.Length
size += unzip.Read(buffer, size, buffer.Length - size)
End While
' create the actual file folder which includes any relative filepath info
Dim fileFolder As String = System.IO.Path.Combine(Globals.ApplicationMapPath & "\DesktopModules\PropertyAgent\Templates\" & folder, path)
If Not Directory.Exists(fileFolder) Then
Directory.CreateDirectory(fileFolder)
End If
' save file
Dim FullFileName As String = System.IO.Path.Combine(fileFolder, name)
If System.IO.File.Exists(FullFileName) Then
System.IO.File.SetAttributes(FullFileName, FileAttributes.Normal)
End If
Dim fs As New FileStream(FullFileName, FileMode.Create, FileAccess.Write)
fs.Write(buffer, 0, buffer.Length)
fs.Close()
End If
entry = unzip.GetNextEntry
End While
Dim objTemplate As New TemplateInfo
Dim doc As New XmlDocument
doc.Load(Globals.ApplicationMapPath & "\DesktopModules\PropertyAgent\Templates\" & folder & "\Template.xml")
Dim nodeRoot As XmlNode = doc.DocumentElement
Dim objNodes As XmlNodeList = nodeRoot.SelectNodes("Name")
If (objNodes.Count = 1) Then
objTemplate.Title = objNodes.Item(0).InnerXml
Else
Throw New Exception("Missing Node Value!")
End If
objNodes = nodeRoot.SelectNodes("Description")
If (objNodes.Count = 1) Then
objTemplate.Description = objNodes.Item(0).InnerXml
Else
Throw New Exception("Missing Node Value!")
End If
objTemplate.IsPremium = False
objTemplate.Folder = folder
Dim objTemplateController As New TemplateController
objTemplateController.Add(objTemplate)
Response.Redirect(NavigateURL(Me.TabId, "", PropertySettings.SEOAgentType & "=EditTemplateDefinitions"), True)
End Sub
Private Function ExtractFileName(ByVal path As String) As String
Dim extractPos As Integer = path.LastIndexOf("\") + 1
Return path.Substring(extractPos, path.Length - extractPos).Replace("/", "_").Replace("..", ".")
End Function
#End Region
#Region " Event Handlers "
Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
Try
BindCrumbs()
Catch exc As Exception 'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
Private Sub cmdUploadFile_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdUploadFile.Click
Try
If (Page.IsValid) Then
ImportTemplate()
End If
cmdCancel.CssClass = PropertySettings.ButtonClass
cmdUploadFile.CssClass = PropertySettings.ButtonClass
Catch exc As Exception 'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
Private Sub cmdCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdCancel.Click
Try
Response.Redirect(NavigateURL(TabId, "", PropertySettings.SEOAgentType & "=EditTemplateDefinitions"), True)
Catch exc As Exception 'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
Private Sub valFile_ServerValidate(ByVal source As System.Object, ByVal args As System.Web.UI.WebControls.ServerValidateEventArgs) Handles valFile.ServerValidate
Try
If Not (cmdBrowse.PostedFile Is Nothing) Then
If (cmdBrowse.PostedFile.ContentLength > 0) Then
args.IsValid = True
Return
End If
End If
args.IsValid = False
Catch exc As Exception 'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
Private Sub valType_ServerValidate(ByVal source As System.Object, ByVal args As System.Web.UI.WebControls.ServerValidateEventArgs) Handles valType.ServerValidate
Try
If Not (cmdBrowse.PostedFile Is Nothing) Then
Dim arr As String() = cmdBrowse.PostedFile.FileName.Split(Convert.ToChar("."))
Dim fileType As String = arr(arr.Length - 1).ToLower()
If (fileType = "zip") Then
args.IsValid = True
Return
End If
End If
args.IsValid = False
Catch exc As Exception 'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
Private Sub valFolderAlreadyExists_ServerValidate(ByVal source As System.Object, ByVal args As System.Web.UI.WebControls.ServerValidateEventArgs) Handles valFolderAlreadyExists.ServerValidate
Try
If Not (cmdBrowse.PostedFile Is Nothing) Then
Dim fileName As String = ExtractFileName(cmdBrowse.PostedFile.FileName)
Dim folder As String = fileName.Replace(".zip", "")
Dim objTemplateController As New TemplateController
Dim objTemplate As TemplateInfo = objTemplateController.GetByFolder(folder)
If (objTemplate Is Nothing) Then
args.IsValid = True
Return
End If
End If
args.IsValid = False
Catch exc As Exception 'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
#End Region
End Class
End Namespace