PollModule.ascx.cs :  » Content-Management-Systems-CMS » mojoPortal » PollFeature » UI » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Content Management Systems CMS » mojoPortal 
mojoPortal » PollFeature » UI » PollModule.ascx.cs
/// Author:             Christian Fredh
/// Created:            2007-04-25
/// Last Modified:      2010-03-30 Joe Audette

using System;
using System.Collections.Generic;
using System.Data;
using System.Globalization;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Resources;
using mojoPortal.Business;
using mojoPortal.Web;
using mojoPortal.Web.Framework;
using log4net;
using PollFeature.Business;
using PollFeature.UI.Helpers;

namespace PollFeature.UI{
    public partial class PollModule : SiteModuleControl
    {
        private static readonly ILog log = LogManager.GetLogger(typeof(PollModule));

        private Poll poll;
        private SiteUser currentUser = null;
        private bool userHasVoted = false;
        private bool showMyPollHistoryLink = false;
        private string resultBarColor = "#3082af";
        private string instanceCssClass = string.Empty;

        protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            this.Load += new EventHandler(Page_Load);
            this.rblOptions.SelectedIndexChanged += new EventHandler(rblOptions_SelectedIndexChanged);
            this.btnShowResults.Click += new EventHandler(btnShowResults_Click);
            this.btnBackToVote.Click += new EventHandler(btnBackToVote_Click);
            this.dlResults.ItemCreated += new DataListItemEventHandler(dlResults_ItemCreated);
            this.rptResults.ItemDataBound += new RepeaterItemEventHandler(rptResults_ItemDataBound);
            RegisterAsyncPostBackControls();
            Page.EnableViewState = true;
        }

        private void Page_Load(object sender, EventArgs e)
        {
            if (HttpContext.Current == null) { return; }

            LoadSettings();
            
            PopulateLabels();
            PopulateControls();
            
        }

        private void PopulateControls()
        {
            LoadPoll();

            lnkMyPollHistory.Visible = showMyPollHistoryLink && Request.IsAuthenticated;
            lblQuestion.Text = poll.Question;

            if (Page.IsPostBack) return;
            if (Page.IsAsync) return;

            ShowVoting();
        }

        

        private void ShowVoting()
        {
            LoadPoll();

            lblMessage.Text = String.Empty;
            rblOptions.Visible = true;
            dlResults.Visible = false;
            btnBackToVote.Visible = false;
            btnShowResults.Visible = true;

            if (poll.PollGuid == Guid.Empty)
            {
                lblMessage.Text = PollResources.PollNoActivePollLabel;
                btnShowResults.Visible = false;
                return;
            }

            if (!poll.IsActive && poll.ShowResultsWhenDeactivated)
            {
                lblMessage.Text = PollResources.PollDeactivatedLabel;
                userHasVoted = true;
                ShowResult();
                return;
            }

            if (!poll.IsActive)
            {
                lblMessage.Text = PollResources.PollNoActivePollLabel;
                lblQuestion.Text = String.Empty;
                btnShowResults.Visible = false;
                return;
            }

            if (currentUser != null)
            {
                userHasVoted = poll.UserHasVoted(currentUser);
            }
            else
            {
                userHasVoted = CookieHelper.CookieExists(poll.PollGuid.ToString());
            }

            if (userHasVoted)
            {
                ShowResult();
                return;
            }

            if (!poll.AnonymousVoting && !Request.IsAuthenticated)
            {
                rblOptions.Enabled = false;
                lblMessage.Text = PollResources.PollMustLoginToVoteLabel;
            }

            if (!userHasVoted && !poll.AllowViewingResultsBeforeVoting)
            {
                btnShowResults.Visible = false;
            }

            //IDataReader reader;
            List<PollOption> pollOptions = PollOption.GetOptionsByPollGuid(poll.PollGuid);

            if (poll.ShowOrderNumbers)
            {
                //reader = PollOption.GetOptionsByPollGuid(poll.PollGuid);
                DataTable table = new DataTable();
                table.Columns.Add("OptionGuid");
                table.Columns.Add("Answer");
                foreach (PollOption option in pollOptions)
                {
                    table.Rows.Add(
                        option.OptionGuid.ToString(),
                        option.Order.ToString(CultureInfo.InvariantCulture) + ". " + option.Answer);
                }
                //reader.Close();

                rblOptions.DataSource = table;
                rblOptions.DataBind();
            }
            else
            {
                //reader = PollOption.GetOptionsByPollGuid(poll.PollGuid);
                rblOptions.DataSource = pollOptions;
                rblOptions.DataBind();
                //reader.Close();
            }


        }

        private void ShowResult()
        {
            //LoadPoll();
            poll = new Poll(ModuleId);

            if (currentUser != null)
            {
                userHasVoted = poll.UserHasVoted(currentUser);
            }
            else
            {
                userHasVoted = CookieHelper.CookieExists(poll.PollGuid.ToString());
            }

            if (userHasVoted) { lblVotingStatus.Text = PollResources.AlreadyVotedMessage; }

            rblOptions.Visible = false;
            dlResults.Visible = true;
            btnBackToVote.Visible = !userHasVoted;
            btnShowResults.Visible = false;

            lblMessage.Text = PollResources.PollTotalVotesLabel + poll.TotalVotes;
            //IDataReader reader = PollOption.GetOptionsByPollGuid(poll.PollGuid);
            List<PollOption> pollOptions = PollOption.GetOptionsByPollGuid(poll.PollGuid);
            dlResults.DataSource = pollOptions;
            dlResults.DataBind();
            //reader.Close();

            //rptResults.DataSource = PollOption.GetOptionsByPollGuid(poll.PollGuid);
            //rptResults.DataBind();
        }

        private void rblOptions_SelectedIndexChanged(object sender, EventArgs e)
        {
            // this is where the actual voting happens

            if (String.IsNullOrEmpty(rblOptions.SelectedValue)) return;

            LoadPoll();
            userHasVoted = true;
            Guid selectedOptionGuid = new Guid(rblOptions.SelectedValue);
            PollOption selectedOption = new PollOption(selectedOptionGuid);

            Guid userGuid = Guid.Empty;

            if (currentUser != null)
            {
                userGuid = currentUser.UserGuid;
            }
            else
            {
                // Set a cookie and use it to keep anonymous polls from being too easy
                // to skew. Of course they can still do it
                if (poll.AnonymousVoting)
                {
                    CookieHelper.SetCookie(poll.PollGuid.ToString(), poll.PollGuid.ToString(), true);


                }

            }

            selectedOption.IncrementVotes(userGuid);

            ShowResult();
            pnlPollUpdate.Update();
        }

        private void dlResults_ItemCreated(object sender, DataListItemEventArgs e)
        {
            if (e.Item.ItemType == ListItemType.Header) return;
            if (e.Item.ItemType == ListItemType.Footer) return;


            Control spnResultImage = e.Item.FindControl("spnResultImage");
            Guid optionGuid = new Guid(dlResults.DataKeys[e.Item.ItemIndex].ToString());
            PollOption option = new PollOption(optionGuid);

            PollUIHelper.AddResultBarToControl(option, resultBarColor, spnResultImage);
        }

        void rptResults_ItemDataBound(object sender, RepeaterItemEventArgs e)
        {
            if (e.Item.ItemType == ListItemType.Header) return;
            if (e.Item.ItemType == ListItemType.Footer) return;

            Control spnResultImage = e.Item.FindControl("spnResultImage");
            HiddenField hdnID = (HiddenField)e.Item.FindControl("hdnID");
            PollOption option = new PollOption(new Guid(hdnID.Value));

            PollUIHelper.AddResultBarToControl(option, resultBarColor, spnResultImage);
            
            
        }

        private void btnBackToVote_Click(object sender, EventArgs e)
        {
            ShowVoting();
            pnlPollUpdate.Update();
        }

        

        private void btnShowResults_Click(object sender, EventArgs e)
        {
            ShowResult();
            pnlPollUpdate.Update();
        }

        private void LoadPoll()
        {
            if (poll == null) poll = new Poll(ModuleId);
        }

        


        private void RegisterAsyncPostBackControls()
        {
            

            if (ScriptController != null)
            {
                ScriptController.RegisterAsyncPostBackControl(btnShowResults);
                ScriptController.RegisterAsyncPostBackControl(rblOptions);
                ScriptController.RegisterAsyncPostBackControl(btnBackToVote);
            }
            else
            {
                log.Error("ScriptController was null");
            }
        }

        private void PopulateLabels()
        {
            btnBackToVote.Text = PollResources.PollBackToVoteButton;
            btnBackToVote.ToolTip = PollResources.PollBackToVoteToolTip;

            btnShowResults.Text = PollResources.PollShowResultsButton;
            btnShowResults.ToolTip = PollResources.PollShowResultsToolTip;


            lnkMyPollHistory.Text = PollResources.PollMyPollHistoryButton;
            lnkMyPollHistory.NavigateUrl = SiteRoot + "/Poll/MyPollHistory.aspx?pageid="
                + PageId.ToString(CultureInfo.InvariantCulture)
                + "&mid=" + ModuleId.ToString(CultureInfo.InvariantCulture);

            moduleTitle.EditText = PollResources.PollModuleEditText;
            moduleTitle.EditUrl = SiteRoot + "/Poll/PollChoose.aspx";
        }

        

        

        

        private void LoadSettings()
        {
            currentUser = SiteUtils.GetCurrentSiteUser();

            try
            {
                // this keeps the action from changing during ajax postback in folder based sites
                SiteUtils.SetFormAction(Page, Request.RawUrl);
            }
            catch (MissingMethodException)
            {
                //this method was introduced in .NET 3.5 SP1
            }
            
            showMyPollHistoryLink 
                = ConfigHelper.GetBoolProperty("PollShowMyPollHistoryButtonSetting_Default", showMyPollHistoryLink);

            showMyPollHistoryLink = WebUtils.ParseBoolFromHashtable(
                Settings, "PollShowMyPollHistoryButtonSetting", showMyPollHistoryLink);

            if (Settings.Contains("ResultBarColor"))
            {
                resultBarColor = Settings["ResultBarColor"].ToString();
            }

            if (Settings.Contains("CustomCssClassSetting"))
            {
                instanceCssClass = Settings["CustomCssClassSetting"].ToString();
            }
            if (instanceCssClass.Length > 0) { pnlWrapper.CssClass += " " + instanceCssClass; }

        }

        protected String GetOptionResultText(Object oOrder, Object oAnswer, Object oVotes)
        {
            int order = (int)oOrder;
            String answer = oAnswer as String;
            int votes = (int)oVotes;

            String orderNumber = String.Empty;
            if (poll.ShowOrderNumbers)
            {
                orderNumber = order.ToString() + ". ";
            }

            String votesText = (votes == 1) ? PollResources.PollVoteText : PollResources.PollVotesText;

            // TODO: Some pattern based resource...
            String text = orderNumber + answer + ", " + votes + " " + votesText;

            poll = new Poll(ModuleId);
            if (poll.TotalVotes != 0)
            {
                int percent = (int)((double)votes * 100 / poll.TotalVotes + 0.5);
                text += " (" + percent + " %)";
            }

            return text;
        }

        private String GetOptionText(Object oOrder, Object oAnswer)
        {
            int order = (int)oOrder;
            String answer = oAnswer as String;

            String orderNumber = String.Empty;
            if (poll.ShowOrderNumbers)
            {
                orderNumber = order.ToString() + ". ";
            }

            String text = orderNumber + answer;

            return text;
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.