forked from ventrian/News-Articles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathucImportFeed.ascx.vb
executable file
·286 lines (198 loc) · 10.1 KB
/
ucImportFeed.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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
Imports DotNetNuke.Common.Utilities
Imports DotNetNuke.Services.Exceptions
Imports DotNetNuke.Services.Localization
Imports DotNetNuke.Entities.Users
Imports Ventrian.NewsArticles.Base
Imports Ventrian.NewsArticles.Import
Namespace Ventrian.NewsArticles
Partial Public Class ucImportFeed
Inherits NewsArticleModuleBase
#Region " Private Members "
Private _feedID As Integer = Null.NullInteger
#End Region
#Region " Private Methods "
Private Sub BindAutoExpiry()
For Each value As Integer In System.Enum.GetValues(GetType(FeedExpiryType))
Dim li As New ListItem
li.Value = value.ToString()
li.Text = Localization.GetString(System.Enum.GetName(GetType(FeedExpiryType), value), Me.LocalResourceFile)
drpAutoExpire.Items.Add(li)
Next
End Sub
Private Sub BindCategories()
Dim objCategoryController As CategoryController = New CategoryController
lstCategories.DataSource = objCategoryController.GetCategoriesAll(ModuleId, Null.NullInteger, ArticleSettings.CategorySortType)
lstCategories.DataBind()
Me.lstCategories.Height = Unit.Parse(ArticleSettings.CategorySelectionHeight.ToString())
End Sub
Private Sub BindDateModes()
For Each value As Integer In System.Enum.GetValues(GetType(FeedDateMode))
Dim li As New ListItem
li.Value = value.ToString()
li.Text = Localization.GetString(System.Enum.GetName(GetType(FeedDateMode), value), Me.LocalResourceFile)
lstDateMode.Items.Add(li)
Next
End Sub
Private Sub BindFeed()
If (_feedID = Null.NullInteger) Then
chkIsActive.Checked = True
lblAuthor.Text = Me.UserInfo.Username
lstDateMode.SelectedValue = Convert.ToInt32(FeedDateMode.ImportDate).ToString()
drpAutoExpire.SelectedValue = Null.NullInteger.ToString()
cmdDelete.Visible = False
Else
cmdDelete.Visible = True
cmdDelete.Attributes.Add("onClick", "javascript:return confirm('" & Localization.GetString("Confirmation", LocalResourceFile) & "');")
Dim objFeedController As New FeedController
Dim objFeed As FeedInfo = objFeedController.Get(_feedID)
If Not (objFeed Is Nothing) Then
txtTitle.Text = objFeed.Title
txtUrl.Text = objFeed.Url
chkAutoFeature.Checked = objFeed.AutoFeature
chkIsActive.Checked = objFeed.IsActive
lstDateMode.SelectedValue = Convert.ToInt32(objFeed.DateMode).ToString()
If (objFeed.AutoExpire <> Null.NullInteger) Then
txtAutoExpire.Text = objFeed.AutoExpire.ToString()
End If
drpAutoExpire.SelectedValue = Convert.ToInt32(objFeed.AutoExpireUnit).ToString()
Dim objUser As UserInfo = UserController.Instance.GetUser(PortalId, objFeed.UserID)
If (objUser IsNot Nothing) Then
lblAuthor.Text = objUser.Username
Else
lblAuthor.Text = Me.UserInfo.Username
End If
For Each objCategory As CategoryInfo In objFeed.Categories
For Each li As ListItem In lstCategories.Items
If (li.Value = objCategory.CategoryID.ToString()) Then
li.Selected = True
End If
Next
Next
Else
Response.Redirect(EditUrl("ImportFeeds"), True)
End If
End If
End Sub
Private Sub ReadQueryString()
If Not (Request("FeedID") Is Nothing) Then
_feedID = Convert.ToInt32(Request("FeedID"))
End If
End Sub
#End Region
#Region " Event Handlers "
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Try
ReadQueryString()
If (IsPostBack = False) Then
BindAutoExpiry()
BindCategories()
BindDateModes()
BindFeed()
End If
Catch exc As Exception 'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
Private Sub cmdUpdate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdUpdate.Click
Try
If (Page.IsValid) Then
Dim objFeedController As New FeedController
Dim objFeed As New FeedInfo
If (_feedID <> Null.NullInteger) Then
objFeed = objFeedController.Get(_feedID)
Else
objFeed = CType(CBO.InitializeObject(objFeed, GetType(FeedInfo)), FeedInfo)
End If
objFeed.ModuleID = Me.ModuleId
objFeed.Title = txtTitle.Text
objFeed.Url = txtUrl.Text
objFeed.AutoFeature = chkAutoFeature.Checked
objFeed.IsActive = chkIsActive.Checked
objFeed.DateMode = CType(System.Enum.Parse(GetType(FeedDateMode), lstDateMode.SelectedValue), FeedDateMode)
objFeed.AutoExpire = Null.NullInteger
If (txtAutoExpire.Text <> "") Then
If (IsNumeric(txtAutoExpire.Text)) Then
If (Convert.ToInt32(txtAutoExpire.Text) > 0) Then
objFeed.AutoExpire = Convert.ToInt32(txtAutoExpire.Text)
End If
End If
End If
objFeed.AutoExpireUnit = CType(System.Enum.Parse(GetType(FeedExpiryType), drpAutoExpire.SelectedValue), FeedExpiryType)
If (pnlAuthor.Visible) Then
Dim objUser As UserInfo = UserController.GetUserByName(Me.PortalId, txtAuthor.Text)
If (objUser IsNot Nothing) Then
objFeed.UserID = objUser.UserID
Else
objFeed.UserID = Me.UserId
End If
Else
Dim objUser As UserInfo = UserController.GetUserByName(Me.PortalId, lblAuthor.Text)
If (objUser IsNot Nothing) Then
objFeed.UserID = objUser.UserID
Else
objFeed.UserID = Me.UserId
End If
End If
Dim objCategories As New List(Of CategoryInfo)
For Each li As ListItem In lstCategories.Items
If (li.Selected) Then
Dim objCategory As New CategoryInfo
objCategory.CategoryID = Convert.ToInt32(li.Value)
objCategories.Add(objCategory)
End If
Next
objFeed.Categories = objCategories
If (_feedID = Null.NullInteger) Then
objFeedController.Add(objFeed)
Else
objFeedController.Update(objFeed)
End If
Response.Redirect(EditUrl("ImportFeeds"), True)
End If
Catch exc As Exception 'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
Private Sub cmdDelete_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdDelete.Click
Try
Dim objFeedController As New FeedController
objFeedController.Delete(_feedID)
Response.Redirect(EditUrl("ImportFeeds"), True)
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(EditUrl("ImportFeeds"), True)
Catch exc As Exception 'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
Protected Sub cmdSelectAuthor_Click(ByVal sender As Object, ByVal e As EventArgs) Handles cmdSelectAuthor.Click
Try
cmdSelectAuthor.Visible = False
lblAuthor.Visible = False
pnlAuthor.Visible = True
txtAuthor.Text = lblAuthor.Text
txtAuthor.Focus()
Catch exc As Exception 'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
Private Sub valAuthor_ServerValidate(ByVal source As System.Object, ByVal args As System.Web.UI.WebControls.ServerValidateEventArgs) Handles valAuthor.ServerValidate
Try
args.IsValid = False
If (txtAuthor.Text <> "") Then
Dim objUser As UserInfo = UserController.GetUserByName(Me.PortalId, txtAuthor.Text)
If (objUser IsNot Nothing) Then
args.IsValid = True
End If
End If
Catch exc As Exception 'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
#End Region
End Class
End Namespace