コード例 #1
0
        public void SendNotification(string text, string slackWebHook)
        {
            if (string.IsNullOrEmpty(slackWebHook))
            {
                return;
            }
            SlackClientInfo client = null;

            if (!Clients.TryGetValue(slackWebHook, out client))
            {
                Telemetry.Default.TrackEvent("invalid slack webhook", new string[] { "webhook", slackWebHook }, true);
                return;
            }
            client.Client.Send(new SlackMessage().WithMessageText(text));
        }
コード例 #2
0
        public void TryAddUpdateClient(string webHook, bool enabled, object clientId)
        {
            if (string.IsNullOrEmpty(webHook))
            {
                return;
            }
            if (Clients.ContainsKey(webHook))
            {
                return;
            }
            bool update = false;

            foreach (KeyValuePair <string, SlackClientInfo> pair in Clients)
            {
                if (object.Equals(pair.Value.ClientId, clientId))
                {
                    Clients.Remove(pair.Value.WebHook);
                    update = true;
                    break;
                }
            }
            SlackClientInfo info = new SlackClientInfo()
            {
                WebHook = webHook, Enabled = enabled, ClientId = clientId
            };

            info.Client = new SlackClient(webHook);
            Clients.Add(webHook, info);
            if (update)
            {
                Telemetry.Default.TrackEvent("slack webhook updated", new string[] { "webhook", webHook, "id", clientId.ToString() }, true);
            }
            else
            {
                Telemetry.Default.TrackEvent("slack webhook added", new string[] { "webhook", webHook, "id", clientId.ToString() }, true);
            }
        }