93 lines
2.5 KiB
C#
93 lines
2.5 KiB
C#
using RestSharp;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using UptimeSharp.Models;
|
|
|
|
namespace UptimeSharp
|
|
{
|
|
/// <summary>
|
|
/// UptimeClient
|
|
/// </summary>
|
|
public partial class UptimeClient
|
|
{
|
|
/// <summary>
|
|
/// Retrieves alerts from UptimeRobot
|
|
/// </summary>
|
|
/// <param name="alertIDs">Retrieve specified alert contacts by supplying IDs for them.</param>
|
|
/// <returns></returns>
|
|
public List<Alert> GetAlerts(string[] alertIDs = null)
|
|
{
|
|
Parameter alerts = Parameter("alertcontacts", alertIDs != null ? string.Join("-", alertIDs) : null);
|
|
|
|
return Get<AlertResponse>("getAlertContacts", alerts).Items;
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Retrieves an alert from UptimeRobot
|
|
/// </summary>
|
|
/// <param name="alertID">The alertID.</param>
|
|
/// <returns></returns>
|
|
public Alert GetAlert(string alertID)
|
|
{
|
|
List<Alert> alerts = GetAlerts(new string[] { alertID });
|
|
|
|
return alerts.ToArray().Length > 0 ? alerts[0] : null;
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Adds an alert.
|
|
/// mobile/SMS alert contacts are not supported yet, see: http://www.uptimerobot.com/api.asp#methods
|
|
/// </summary>
|
|
/// <param name="type">The type.</param>
|
|
/// <param name="value">The value.</param>
|
|
/// <returns></returns>
|
|
public bool AddAlert(AlertType type, string value)
|
|
{
|
|
if (type == AlertType.SMS || type == AlertType.Twitter)
|
|
{
|
|
throw new UptimeSharpException("AlertType.SMS and AlertType.Twitter are not supported by the UptimeRobot API");
|
|
}
|
|
|
|
return Get<DefaultResponse>("newAlertContact",
|
|
Parameter("alertContactType", (int)type),
|
|
Parameter("alertContactValue", value)
|
|
).Status;
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Adds an alert.
|
|
/// mobile/SMS alert contacts are not supported yet, see: http://www.uptimerobot.com/api.asp#methods
|
|
/// </summary>
|
|
/// <param name="alert">The alert.</param>
|
|
/// <returns></returns>
|
|
public bool AddAlert(Alert alert)
|
|
{
|
|
return AddAlert(alert.Type, alert.Value);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Removes an alert.
|
|
/// </summary>
|
|
/// <param name="alertID">The alert ID.</param>
|
|
/// <returns></returns>
|
|
public bool DeleteAlert(string alertID)
|
|
{
|
|
return Get<DefaultResponse>("deleteAlertContact", Parameter("alertContactID", alertID)).Status;
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Removes an alert.
|
|
/// </summary>
|
|
/// <param name="alert">The alert.</param>
|
|
/// <returns></returns>
|
|
public bool DeleteAlert(Alert alert)
|
|
{
|
|
return DeleteAlert(alert.ID);
|
|
}
|
|
}
|
|
} |