Пример #1
0
    /// <summary>
    /// Chats the specified identifier.
    /// </summary>
    /// <param name="id">The identifier.</param>
    /// <returns>ActionResult.</returns>
    public async Task<ActionResult> Chat(string id)
    {
      var user = await _userManager.FindByIdAsync(User.Identity.GetUserId());
      var hipChat = new HipChatClient(new ApiConnection(new Credentials(user.HipChatPersonalV2Token)));

      // create default message and notification hooks if they do not exist
      var hooks = await hipChat.Rooms.GetWebhooks(id);
      if (!hooks.Model.Items.Any(h => h.Name == "HipChatDotNet_Default" && h.Event == "room_notification"))
        await hipChat.Rooms.CreateWebhookAsync(id, new CreateWebhook {Event = WebhookEvent.RoomNotification, Url = ConfigurationManager.AppSettings["BaseUri"] + "api/notification/" + id});
      if (!hooks.Model.Items.Any(h => h.Name == "HipChatDotNet_Default" && h.Event == "room_message"))
        await hipChat.Rooms.CreateWebhookAsync(id, new CreateWebhook { Event = WebhookEvent.RoomMessage, Url = ConfigurationManager.AppSettings["BaseUri"] + "api/message/" + id });
      
      // get the latest message history
      var history = await hipChat.Rooms.GetHistoryAsync(id);

      var contextList = history.Model.Items.Select(h => new MessageContext
      {
        Id = h.Id,
        Message = h.MessageText,
        Color = h.Color,
        From = h.From is string ? h.From : h.From.name,
        FileUrl = h.File != null ? h.File.Url : null
      }).ToList();

      ViewBag.roomId = id;
      
      return View(contextList);
    }
        /// <summary>
        /// Executed when this Publisher is Invoked.
        /// </summary>
        /// <param name="result">The result of the Integration being ran.</param>
        public void Run(IIntegrationResult result)
        {
            Tuple<bool, SendNotification> evaluatedIntergration = EvaluateIntegration(result, this.NotifyOnlyOnError);

            if (evaluatedIntergration.Item1)
            {
                var hipchatClient =
                    new HipChatClient(new ApiConnection(new Credentials(this.AuthToken)));

                // Support for publishing to multiple rooms
                var roomNotifications =
                    this.RoomNames
                        .Split(';')
                        .Select(currentRoom => hipchatClient.Rooms.SendNotificationAsync(currentRoom, evaluatedIntergration.Item2))
                        .ToArray();

                // Wait for the messages to be posted before returning
                System.Threading.Tasks.Task.WaitAll(roomNotifications);
            }
        }
Пример #3
0
    /// <summary>
    /// Indexes this instance.
    /// </summary>
    /// <returns>Task&lt;ActionResult&gt;.</returns>
    public async Task<ActionResult> Index()
    {
      var user = await _userManager.FindByIdAsync(User.Identity.GetUserId());
      var hipChat = new HipChatClient(new ApiConnection(new Credentials(user.HipChatPersonalV2Token)));
      var rooms = await hipChat.Rooms.GetAllAsync();

      var contextList = new List<RoomContext>();
      foreach (var r in rooms.Model.Items)
      {
        var context = new RoomContext
        {
          Name = r.Name,
          Id = r.Id,
          MemberCount = r.Links.Members != null ? (await hipChat.Rooms.GetMembersAsync(r.Id)).Model.Items.Count() : 0
        };
        contextList.Add(context);
      }

      return View(contextList);
    }
Пример #4
0
 public async Task<JsonResult> SendNotification(string id, string message, string color = "gray")
 {
   var user = await _userManager.FindByIdAsync(User.Identity.GetUserId());
   var hipChat = new HipChatClient(new ApiConnection(new Credentials(user.HipChatPersonalV2Token)));
   await hipChat.Rooms.SendNotificationAsync(id, HttpUtility.HtmlDecode(message));
   return Json(true);
 }