-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
237 lines (209 loc) · 7.6 KB
/
Copy pathProgram.cs
File metadata and controls
237 lines (209 loc) · 7.6 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
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
using Hedgey.Extensions.NetCoreServer;
using Hedgey.Extensions.SimpleInjector;
using Hedgey.Extensions.Telegram;
using Hedgey.Extensions.Types;
using Hedgey.Sirena.Bot;
using Hedgey.Sirena.Bot.DI;
using Hedgey.Sirena.Bot.DI.HTTP;
using Hedgey.Sirena.HTTP.Server;
using MongoDB.Driver;
using RxTelegram.Bot;
using RxTelegram.Bot.Api;
using RxTelegram.Bot.Exceptions;
using RxTelegram.Bot.Interface.BaseTypes;
using RxTelegram.Bot.Interface.BaseTypes.Requests.Callbacks;
using RxTelegram.Bot.Interface.Setup;
using SimpleInjector;
using System.Reactive.Disposables;
using System.Reactive.Linq;
using Hedgey.Telegram.Bot;
using Hedgey.Sirena.MongoDB.DI;
namespace Hedgey.Sirena;
static internal class Program
{
private static async Task Main(string[] args)
{
Container container = new Container();
Installer installer = new CoreInstaller(container);
installer.Install();
installer = new ServerInstaller(container);
installer.Install();
installer = new SharedCommandServicesInstaller(container);
installer.Install();
InstallCommands(container);
container.Verify();
var botProxyRequests = container.GetInstance<AbstractBotMessageSender>();
var bot = container.GetInstance<TelegramBot>();
var me = await bot.GetMe();
Console.WriteLine($"Bot name: @{me.Username}");
//HTTP(s) server initialization
var server = container.GetInstance<HttpsServer>();
StartServer(server);
SetWebhook setWebhook = container.GetInstance<SetWebhook>();
try
{
await bot.SetWebhook(setWebhook);
await bot.DisplayWebhookInfo();
}
catch (Exception ex)
{
ExceptionHandler.OnError(ex);
if (server.IsStarted)
server.Stop();
await SwitchToLongpolling();
}
var observableMessages = bot.Updates.Message
.Catch((Exception _ex) =>
{
Console.WriteLine("Exception on observing Update.Message");
ExceptionHandler.OnError(_ex);
return Observable.Empty<Message>().Delay(TimeSpan.FromSeconds(1));
})
.Repeat()
.Select(_message => (IRequestContext)new MessageRequestContext(_message));
var observableCallbackPublisher = bot.Updates.CallbackQuery
.Catch((Exception _ex) =>
{
Console.WriteLine("Exception on observing Updates.CallbackQuery");
ExceptionHandler.OnError(_ex);
return Observable.Empty<CallbackQuery>().Delay(TimeSpan.FromSeconds(1));
})
.Repeat()
.Publish();
var requestHandler = container.GetInstance<RequestHandler>();
var constexStream = observableCallbackPublisher
.Select(_query => new CallbackRequestContext(_query))
.Merge(observableMessages)
.Subscribe(requestHandler.Process, ExceptionHandler.OnError);
var approveCallbackStream = observableCallbackPublisher
.SelectMany(SendCallbackApprove)
.Catch((Exception _ex) =>
{
Console.WriteLine("Exception on sending Callback Approve");
ExceptionHandler.OnError(_ex);
return Observable.Empty<bool>();
})
.Repeat()
.Subscribe();
var callbackStream = observableCallbackPublisher.Connect();
//Plan scheduler subscriptions
var planScheduler = container.GetInstance<PlanScheduler>();
var schedulerTrackPublisher = planScheduler.Track()
.Catch((Exception _ex) =>
{
ExceptionHandler.OnError(_ex);
return Observable.Empty<CommandPlan.Report>();
})
.Repeat()
.Publish();
var planProcessingStream = schedulerTrackPublisher
.Subscribe(requestHandler.ProcessPlanReport);
#pragma warning disable CS8604 // Possible null reference argument.
var sendMessagesStream = schedulerTrackPublisher
.Where(_report => _report.StepReport.MessageBuilder != null)
.SelectMany(_report => botProxyRequests.ObservableSend(_report.StepReport.MessageBuilder))
.Catch((Exception _ex) =>
{
ExceptionHandler.OnError(_ex);
return Observable.Empty<Message>();
})
.Repeat()
.Subscribe();
var editMessagesStream = schedulerTrackPublisher
.Where(_report => _report.StepReport.EditMessageBuilder != null)
.SelectMany(_report => botProxyRequests.Edit(_report.StepReport.EditMessageBuilder))
.Catch((Exception _ex) =>
{
ExceptionHandler.OnError(_ex);
return Observable.Empty<Message>();
})
.Repeat()
.Subscribe();
var editReplyMarkupStream = schedulerTrackPublisher
.Where(_report => _report.StepReport.EditMessageReplyMarkupBuilder != null)
.SelectMany(_report => botProxyRequests.Edit(_report.StepReport.EditMessageReplyMarkupBuilder))
.Catch((Exception _ex) =>
{
ExceptionHandler.OnError(_ex);
return Observable.Empty<Message>();
})
.Repeat()
.Subscribe();
var fallbackStream = schedulerTrackPublisher
.Where(_report => _report.StepReport.Fallback != null)
.Subscribe(_report => requestHandler.Process(_report.StepReport.Fallback), ExceptionHandler.OnError);
#pragma warning restore CS8604 // Possible null reference argument.
var schedulerTrackStream = schedulerTrackPublisher.Connect();
IDisposable subscription = new CompositeDisposable(callbackStream
, constexStream, approveCallbackStream, planProcessingStream
, sendMessagesStream, schedulerTrackStream, editMessagesStream
, editReplyMarkupStream, fallbackStream);
string? input;
do
{
input = Console.ReadLine();
switch (input)
{
case "set wh": { await SwitchToWebHook(); } break;
case "set lp": { await SwitchToLongpolling(); } break;
default: break;
}
} while (input != "exit");
planScheduler.Dispose();
planProcessingStream.Dispose();
subscription.Dispose();
server.Stop();
await bot.DeleteWebhook();
IObservable<bool> SendCallbackApprove(CallbackQuery query)
{
var callbackAnswer = new AnswerCallbackQuery()
{
CallbackQueryId = query.Id,
};
return Observable.FromAsync(() => bot.AnswerCallbackQuery(callbackAnswer))
.Catch((ApiException _ex) =>
throw new InvalidOperationException($"Error on callback answer to user {query.From.Id} on request: \"{query.Data}\"", _ex)
);
}
async Task SwitchToLongpolling()
{
Console.WriteLine("Switching to Longpolling requests");
await bot.DeleteWebhook();
if (server.IsStarted)
server.Stop();
var tracker = new LongPollingUpdateTracker(bot);
bot.Updates.Set(tracker);
}
async Task SwitchToWebHook()
{
StartServer(server);
var updateHandler = container.GetInstance<UpdateHandler>();
bot.Updates.Set(updateHandler.Update);
await bot.SetWebhook(setWebhook);
await bot.DisplayWebhookInfo();
}
}
private static void StartServer(HttpsServer server)
{
if (server.IsStarted)
{
Console.WriteLine("Server is already launched");
return;
}
bool httpStarted = server.Start();
Console.WriteLine($"Starting HTTP server on port {server.Port}...");
if (!httpStarted)
throw new ActivationException("Server is not started");
}
private static void InstallCommands(Container container)
{
var installerTypes = System.Reflection.Assembly.GetExecutingAssembly()
.GetTypes()
.Where(_type => !_type.IsGenericType && _type.HasParent(typeof(CommandInstaller<>)));
foreach (var type in installerTypes)
{
var instance = Activator.CreateInstance(type, container) as Installer;
instance?.Install();
}
}
}