gpt4 book ai didi

javascript - SignalR 服务 : Get message depending on user role

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:15:53 29 4
gpt4 key购买 nike

我创造

  1. MVC 应用(已安装 -Install-Package Microsoft.AspNet.SignalR.JS)(引用 here)

  2. 网络服务(//从 Nuget Package 窗口安装//安装包 Microsoft ASP.NET SignalR .NET 客户端//安装包 Microsoft ASP.NET SignalR 核心组件)

  3. Signalr 服务(已安装 -Install-Package Microsoft.AspNet.SignalR.SelfHost 和 Install-Package Microsoft.Owin.Cors)

我在做什么:我正在调用 MVC 页面,并在使用 Web 服务处理一项任务之后。在该 Web 服务中,当任务正在处理时,我想通知用户看到的类似任务正在处理或使用 Signalr 服务完成的背后发生了什么。

我单独创建了所有项目。

使用网络服务,我正在调用 signalr hubs(参见 here)

面临的挑战:我想向该用户广播消息,如果没有。用户在那里取决于我想发送消息的 Angular 色。

enter image description here

已编辑:在我的项目中添加了额外的增强功能:我没有。 MVC 应用程序及其相应的 Web 服务和我的单一 signalR 服务,因此我如何识别哪个 MVC 应用程序调用它相应的服务和服务推送给所有或它的应用程序用户或特定用户。喜欢pusher将为应用程序创建应用程序 ID 和用户的 token 数量。这是可能的。

最佳答案

总结:

我不确定是否可以让集线器存在于 WCF SignalR 服务上。最好让 MVC 项目充当客户端和 Web 服务之间的代理。如果这是您的要求之一,您可以稍后使用其他客户端(例如桌面客户端)连接到 SignalR,还可以从您的 Web 服务连接到此中心以向指定组中的客户端和/或用户发送更新。


工作流程:

首先,流程看起来更像这样: SignalR Workflow

管理客户端连接:

如果您使用内存中的方法来管理连接的用户,那么您可以首先将连接 ID 和用户 ID 添加到您用来处理此问题的任何集合中。例如:

    public static ConcurrentDictionary<String, String> UsersOnline = new ConcurrentDictionary<String, String>();

public override System.Threading.Tasks.Task OnConnected()
{
UsersOnline.TryAdd(Context.ConnectionId, Context.User.Identity.GetUserId());
return base.OnConnected();
}

请注意:The Context.User will be null unless you map SignalR after the authentication.

将连接 ID 存储在客户端的变量中也可能是有益的,这样您可以稍后将其传递给您的方法。

        var connectionId;

var testHub = $.connection.testHub;

$.connection.hub.start().done(function () {
connectionId = $.connection.hub.id;
}

中心:

集线器可用于与网络服务通信。在这个例子中,我将把它用作 soap 服务,但其余的应该是一样的。

    public void LongRunningTask(String ConnectionId)
{
using (var svc = new Services.MyWebService.SignalRTestServiceClient())
{
svc.LongRunningTask(ConnectionId);
} // end using
} // end LongRunningTask

请注意,我们还将连接 ID 传递给服务。当服务开始将消息发送回 MVC 项目以交付给客户端时,这就会发挥作用。


监听器或 Web API:

在 MVC 站点上设置监听器 Controller 或 Web API 以接收来自 Web 服务的消息。

    public ActionResult SignalR(String Message, String Type, String ConnectionId)
{
if (!String.IsNullOrWhiteSpace(Message) && !String.IsNullOrWhiteSpace(Type) && !String.IsNullOrWhiteSpace(ConnectionId))
{
if (Type == "ShowAlert")
{
// Determine if the user that started the process is still online
bool UserIsOnline = Hubs.TestHub.UsersOnline.ContainsKey(ConnectionId);

// We need this to execute our client methods
IHubContext TestHub = GlobalHost.ConnectionManager.GetHubContext<Hubs.TestHub>();
if (UserIsOnline)
{
// Show the alert to only the client that started the process.
TestHub.Clients.Client(ConnectionId).showAlert(Message);
} // end if
else
{
List<String> UserIdsInRole = new List<String>();
using (var connection = new System.Data.SqlClient.SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["DefaultConnection"].ToString()))
{
// Assuming you're using Identity framework since it is an MVC project, get all the ids for users in a given role.
// This is using Dapper
UserIdsInRole = connection.Query<String>(@"
SELECT ur.UserId
FROM AspNetUserRoles ur
JOIN AspNetRoles r ON ur.RoleId = r.Id
WHERE r.Name = @rolename
", new { rolename = "SpecialRole" }).ToList();
} // end using

// Find what users from that role are currently connected
List<String> ActiveUsersInRoleConnectionIds = Hubs.TestHub.UsersOnline.Where(x => UserIdsInRole.Contains(x.Value)).Select(y => y.Key).ToList();

// Send the message to the users in that role who are currently connected
TestHub.Clients.Clients(ActiveUsersInRoleConnectionIds).showAlert(Message);
} // end else (user is not online)
} // end if type show alert
} // end if nothing is null or whitespace
return new HttpStatusCodeResult(200);
} // end SignalR

网络服务:

执行长时间运行工作的 Web 服务方法也应该接受客户端 ID,以便它可以将其发送回监听器 Controller 或 Web API。它可以使用类似于此的方法(使用 RestSharp )连接回 MVC 项目:

    public void ShowAlert(String Message, String ConnectionId)
{
RestClient Client = new RestClient("http://localhost:8888");
RestRequest Request = new RestRequest("/Listener/SignalR", Method.POST);
Request.Parameters.Add(new Parameter() { Name = "Message", Type = ParameterType.QueryString, Value = Message });
Request.Parameters.Add(new Parameter() { Name = "Type", Type = ParameterType.QueryString, Value = "ShowAlert" });
Request.Parameters.Add(new Parameter() { Name = "ConnectionId", Type = ParameterType.QueryString, Value = ConnectionId });
IRestResponse Response = Client.Execute(Request);
} // end Show Alert

演示:

我做了一个概念验证并将其上传到 Github .

关于javascript - SignalR 服务 : Get message depending on user role,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31294887/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com