-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathProgram.cs
164 lines (146 loc) · 6.31 KB
/
Program.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
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.IO;
using System.Threading.Tasks;
using Microsoft.Azure.SignalR.Management;
using Microsoft.Extensions.CommandLineUtils;
using Microsoft.Extensions.Configuration;
namespace Microsoft.Azure.SignalR.Samples.Management
{
public class Program
{
public static void Main(string[] args)
{
var app = new CommandLineApplication
{
FullName = "Azure SignalR Management Sample: Message Publisher"
};
app.HelpOption("--help");
app.Description = "Message publisher using Azure SignalR Service Management SDK.";
var connectionStringOption = app.Option("-c|--connectionstring", "Set connection string.", CommandOptionType.SingleValue, true);
var serviceTransportTypeOption = app.Option("-t|--transport", "Set service transport type. Options: <transient>|<persistent>. Default value: transient. Transient: calls REST API for each message. Persistent: Establish a WebSockets connection and send all messages in the connection.", CommandOptionType.SingleValue, true); // todo: description
var stronglyTypedOption = app.Option("-s|--strongly-typed", "Use strongly typed hub.", CommandOptionType.NoValue);
var configuration = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddUserSecrets<Program>()
.AddEnvironmentVariables()
.Build();
app.OnExecute(async () =>
{
var connectionString = connectionStringOption.Value() ?? configuration["Azure:SignalR:ConnectionString"];
if (string.IsNullOrEmpty(connectionString))
{
MissOptions();
return -1;
}
ServiceTransportType serviceTransportType;
if (string.IsNullOrEmpty(serviceTransportTypeOption.Value()))
{
serviceTransportType = ServiceTransportType.Transient;
}
else
{
serviceTransportType = Enum.Parse<ServiceTransportType>(serviceTransportTypeOption.Value(), true);
}
IMessagePublisher publisher;
if (stronglyTypedOption.HasValue())
{
publisher = new StronglyTypedMessagePublisher(connectionString, serviceTransportType);
}
else
{
publisher = new MessagePublisher(connectionString, serviceTransportType);
}
await publisher.InitAsync();
await StartAsync(publisher);
return 0;
});
app.Execute(args);
}
private static async Task StartAsync(IMessagePublisher publisher)
{
Console.CancelKeyPress += async (sender, e) =>
{
await publisher.DisposeAsync();
Environment.Exit(0);
};
ShowHelp();
try
{
while (true)
{
var argLine = Console.ReadLine();
if (argLine == null)
{
continue;
}
var args = argLine.Split(' ');
if (args.Length == 2 && args[0].Equals("broadcast"))
{
await publisher.SendMessages(args[0], null, args[1]);
Console.WriteLine($"broadcast message '{args[1]}'");
}
else if (args.Length == 4 && args[0].Equals("send"))
{
await publisher.SendMessages(args[1], args[2], args[3]);
Console.WriteLine($"{args[0]} message '{args[3]}' to '{args[2]}'");
}
else if (args.Length == 4 && args[0] == "usergroup")
{
await publisher.ManageUserGroup(args[1], args[2], args[3]);
var preposition = args[1] == "add" ? "to" : "from";
Console.WriteLine($"{args[1]} user '{args[2]}' {preposition} group '{args[3]}'");
}
else if (args.Length == 3 && args[0] == "close")
{
await publisher.CloseConnection(args[1], args[2]);
Console.WriteLine($"closed connection '{args[1]}' because '{args[2]}'");
//If you want client side see the reason, you need to turn on 'EnableDetailedErrors' option during client negotiation.
}
else if (args.Length == 3 && args[0] == "checkexist")
{
var exist = await publisher.CheckExist(args[1].ToLowerInvariant(), args[2]);
Console.WriteLine(exist ? "exists" : "not exist");
}
else if (args.Length == 2 && args[0] == "close")
{
await publisher.CloseConnection(args[1], null);
Console.WriteLine("closed");
}
else
{
Console.WriteLine($"Can't recognize command {argLine}");
}
Console.Write("> ");
}
}
finally
{
await publisher.DisposeAsync();
}
}
private static void ShowHelp()
{
Console.Write(
@"*********Usage*********
send user <UserId> <Message>
send users <User1>,<User2>,... <Message>
send group <GroupName> <Message>
send groups <Group1>,<Group2>,... <Message>
usergroup add <User1>,<User2>,... <GroupName>
usergroup remove <UserId> <GroupName>
broadcast <Message>
close <ConnectionID> <Reason>?
checkexist connection <ConnectionID>
checkexist user <UserID>
checkexist group <GroupName>
***********************
> ");
}
private static void MissOptions()
{
Console.WriteLine("Miss required options: Connection string must be set");
}
}
}