-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathChatUserCollection.cs
More file actions
166 lines (138 loc) · 5.04 KB
/
ChatUserCollection.cs
File metadata and controls
166 lines (138 loc) · 5.04 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using DevChatter.Bot.Core.Data;
using DevChatter.Bot.Core.Data.Model;
using DevChatter.Bot.Core.Data.Specifications;
using DevChatter.Bot.Core.Extensions;
using DevChatter.Bot.Core.Systems.Chat;
namespace DevChatter.Bot.Core
{
public class ChatUserCollection : IChatUserCollection
{
private readonly IRepository _repository;
private readonly IKnownBotService _knownBotService;
private readonly object _userCreationLock = new object();
private readonly object _activeChatUsersLock = new object();
private readonly object _currencyLock = new object();
private readonly List<string> _activeChatUsers = new List<string>();
public ChatUserCollection(IRepository repository, IKnownBotService knownBotService)
{
_repository = repository;
_knownBotService = knownBotService;
}
public bool NeedToWatchUser(string displayName)
{
ChatUser chatUserFromDb = GetOrCreateChatUser(displayName);
if (chatUserFromDb.IsKnownBot == null)
{
lock (_activeChatUsersLock)
{
bool isKnownBot = _knownBotService.IsKnownBot(chatUserFromDb.DisplayName).GetAwaiter().GetResult();
chatUserFromDb.IsKnownBot = isKnownBot;
_repository.Update(chatUserFromDb);
}
}
if (chatUserFromDb.IsKnownBot.Value)
return false;
// Don't lock in here
// ReSharper disable once InconsistentlySynchronizedField
return _activeChatUsers.All(name => name != displayName);
}
public void WatchUser(string displayName)
{
if (NeedToWatchUser(displayName))
{
lock (_activeChatUsersLock)
{
if (NeedToWatchUser(displayName))
{
_activeChatUsers.Add(displayName);
}
}
}
}
public void UpdateEachChatter(Action<ChatUser> updateToApply)
{
UpdateSpecificChatters(updateToApply, ChatUserPolicy.ByDisplayName(_activeChatUsers));
}
public void UpdateSpecificChatters(Action<ChatUser> updateToApply, ISpecification<ChatUser> filter)
{
lock (_activeChatUsersLock)
{
List<ChatUser> usersToUpdate = _repository.List(filter);
foreach (ChatUser chatUser in usersToUpdate)
{
updateToApply(chatUser);
}
_repository.Update(usersToUpdate);
}
}
public void StopWatching(string displayName)
{
if (_activeChatUsers.Contains(displayName))
{
lock (_activeChatUsersLock)
{
_activeChatUsers.RemoveAll(x => x == displayName);
}
}
}
public bool UserHasAtLeast(string username, int tokensToRemove)
{
ChatUser chatUser = GetOrCreateChatUser(username);
WatchUser(chatUser.DisplayName);
return chatUser.Tokens >= tokensToRemove;
}
public ChatUser GetOrCreateChatUser(string displayName, ChatUser chatUser = null)
{
lock (_userCreationLock)
{
ChatUser userFromDb = _repository.Single(ChatUserPolicy.ByDisplayName(displayName));
userFromDb = userFromDb ?? _repository.Create(chatUser);
return userFromDb;
}
}
public bool UserExists(string username)
{
return _activeChatUsers.Any(x => x.EqualsIns(username))
|| _repository.Single(ChatUserPolicy.ByDisplayName(username)) != null;
}
public bool TryGiveCoins(string coinGiver, string coinReceiver, int coinsToGive)
{
lock (_currencyLock)
{
if (!UserHasAtLeast(coinGiver, coinsToGive))
{
return false;
}
if (!UserExists(coinReceiver))
{
return false;
}
ChatUser giver = GetOrCreateChatUser(coinGiver);
ChatUser receiver = GetOrCreateChatUser(coinReceiver);
giver.Tokens -= coinsToGive;
receiver.Tokens += coinsToGive;
return true;
}
}
public bool ReduceCoins(string username, int coinsToTake)
{
lock (_activeChatUsersLock)
{
if (!UserExists(username))
{
return false;
}
ChatUser user = GetOrCreateChatUser(username);
user.Tokens -= coinsToTake;
if (user.Tokens < 0)
{
user.Tokens = 0;
}
return true;
}
}
}
}