-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVotingHub.cs
102 lines (88 loc) · 2.45 KB
/
VotingHub.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using SignalR.Hubs;
namespace VoteR
{
[HubName("votingHub")]
public class VotingHub : Hub
{
private readonly Poll _poll;
public VotingHub() : this(Poll.Instance) { }
public VotingHub(Poll poll)
{
_poll = poll;
}
public IEnumerable<VotingOption> GetVotingOptions()
{
return _poll.GetVotingOptions();
}
public string GetPollTitle()
{
return _poll.Title;
}
public int GetTotleVotes()
{
return _poll.TotalVotes;
}
public string GetPollState()
{
return _poll.PollState.ToString();
}
public void OpenPoll()
{
_poll.Open();
}
public void ClosePoll()
{
_poll.Close();
}
public void ResetPoll()
{
_poll.Reset();
}
public void ExportPoll()
{
_poll.Export();
}
/// <summary>
/// Places a vote in the poll.
/// </summary>
/// <param name="name">Name of voting option to vote for.</param>
public void PlaceVote(string name)
{
// only inform clients of vote if it is successfully placed
if (_poll.PlaceVote(name, Context.ConnectionId))
{
Clients.votePlaced();
}
}
/// <summary>
/// Changes title of the poll.
/// </summary>
/// <param name="title">New title for poll.</param>
public void ChangeTitle(string title)
{
// only inform clients of title change if title is different to existing title
if (title != _poll.Title )
{
_poll.Title = title;
Clients.titleChanged(Context.ConnectionId, title);
}
}
/// <summary>
/// Adds a voting option to the poll.
/// </summary>
/// <param name="name">Name of voting option.</param>
public void AddVotingOption(string name)
{
// only inform clients of new voting option if it is successfully added
if (!string.IsNullOrWhiteSpace(name) &&
_poll.AddVotingOption(name))
{
Clients.votingOptionAdded(Context.ConnectionId, name);
}
}
}
}