-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViewForum.aspx.cs
175 lines (144 loc) · 4.93 KB
/
ViewForum.aspx.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class ViewForum : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack)
return;
Forum forum = ForumFromQueryString();
(Master as Layout).GenerateBreadCrumb(forum);
Page.Title = forum.Name;
LiteralForumNaam.Text = forum.Name;
LiteralForumBeschrijving.Text = forum.Description != null ? forum.Description : forum.Name;
PanelSubforums.Visible = forum.Children.Count > 0;
PanelTopicList.Visible = !forum.IsCategory;
if (PanelSubforums.Visible)
{
ListViewSubforums.DataSource = forum.Children;
ListViewSubforums.DataBind();
}
if (PanelTopicList.Visible)
{
string moderators = string.Join(", ", forum.ForumModerators.Select(fm => fm.Member.Name));
LabelForumModerators.Text = (moderators.Length > 0) ? moderators : "Administrators";
HyperLinkNewTopic.NavigateUrl = "NewTopic.aspx?forumId=" + forum.Id;
GridViewTopics.AutoGenerateColumns = false;
GridViewTopics.ShowHeader = false;
GridViewTopics.AllowPaging = true;
GridViewTopics.PagerSettings.Mode = PagerButtons.NumericFirstLast;
GridViewTopics.DataSource = forum.Topics.OrderByDescending(topic => topic.IsPinned).ThenByDescending(topic => topic.LaatstePost.CreatedDate).ToList();
GridViewTopics.DataBind();
Member member = Session["member"] as Member;
if(member == null)
{
HyperLinkNewTopic.Enabled = false;
HyperLinkNewTopic.Attributes.Add("disabled", "disabled");
HyperLinkNewTopic.ToolTip = "Only registered members can start new topics.";
}
else
{
if(member.IsForumModerator(forum))
{
ListItem[] listItems =
{
new ListItem("Pin"),
new ListItem("Unpin"),
new ListItem("Lock"),
new ListItem("Unlock"),
new ListItem("Delete")
};
DropDownListTopicAction.Items.AddRange(listItems);
PanelTopicOptions.Visible = true;
}
}
}
}
protected Forum ForumFromQueryString()
{
int forumId;
if (!int.TryParse(Request.QueryString["id"], out forumId))
throw new HttpException(400, "Bad Request");
Forum forum = new BLForum().GetForumById(forumId);
if (forum == null)
throw new HttpException(404, "Not Found");
return forum;
}
protected void ListViewSubforums_ItemDataBound(object sender, ListViewItemEventArgs e)
{
Forum forum = e.Item.DataItem as Forum;
if (forum.Topics.Count > 0)
{
BLForum blForum = new BLForum();
Literal topicCount = (Literal)e.Item.FindControl("LiteralTopicCount");
topicCount.Text = blForum.CountAllTopics(forum).ToString();
Literal postCount = (Literal)e.Item.FindControl("LiteralPostCount");
postCount.Text = blForum.CountAllPosts(forum).ToString();
}
}
protected void GridViewTopics_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
Topic topic = e.Row.DataItem as Topic;
Member member = Session["member"] as Member;
(e.Row.FindControl("LabelTopicPinned") as Label).Visible = topic.IsPinned;
(e.Row.FindControl("ImageTopicLocked") as Image).Visible = topic.IsLocked;
(e.Row.FindControl("HiddenFieldTopicId") as HiddenField).Value = topic.Id.ToString();
if(member != null && member.IsForumModerator(topic.Forum))
{
(e.Row.FindControl("CheckBoxSelectTopic") as CheckBox).Visible = true;
}
Label labelPostsInTopic = e.Row.FindControl("LabelPostsInTopic") as Label;
int replies = topic.Posts.Count - 1;
labelPostsInTopic.Text = replies.ToString() + " ";
labelPostsInTopic.Text += (replies == 1) ? "reply" : "replies";
}
}
protected void GridViewTopics_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
Forum forum = ForumFromQueryString();
GridViewTopics.PageIndex = e.NewPageIndex;
GridViewTopics.DataSource = forum.Topics.OrderByDescending(topic => topic.IsPinned).ThenByDescending(topic => topic.LaatstePost.CreatedDate).ToList();
GridViewTopics.DataBind();
}
protected void ButtonTopicAction_Click(object sender, EventArgs e)
{
List<int> geselecteerdeTopics = new List<int>();
foreach(GridViewRow row in GridViewTopics.Rows)
{
if((row.FindControl("CheckBoxSelectTopic") as CheckBox).Checked)
{
geselecteerdeTopics.Add(int.Parse((row.FindControl("HiddenFieldTopicId") as HiddenField).Value));
}
}
if (geselecteerdeTopics.Count > 0)
{
BLTopic blTopic = new BLTopic();
List<Topic> topics = blTopic.GetTopicsById(geselecteerdeTopics);
switch (DropDownListTopicAction.SelectedValue.ToLowerInvariant())
{
case "pin":
blTopic.SetPinned(topics, true);
break;
case "unpin":
blTopic.SetPinned(topics, false);
break;
case "lock":
blTopic.SetLocked(topics, true);
break;
case "unlock":
blTopic.SetLocked(topics, false);
break;
case "delete":
blTopic.Delete(topics);
break;
}
Response.Redirect(Request.RawUrl);
}
}
}