using System;
using System.Globalization;
using TVDBSharp.Models.Enums;
namespace TVDBSharp.Utilities
{
///
/// Provides static utility methods.
///
public static class Utils
{
///
/// Parses a string of format yyyy-MM-dd to a object.
///
/// String to be parsed.
/// Returns a representation.
public static DateTime ParseDate(string value)
{
DateTime date;
DateTime.TryParseExact(value, "yyyy-MM-dd", CultureInfo.CurrentCulture, DateTimeStyles.AssumeLocal, out date);
return date;
}
///
/// Parses a string of format hh:mm tt to a object.
///
/// String to be parsed.
/// Returns a representation.
public static TimeSpan ParseTime(string value)
{
DateTime date;
if (!DateTime.TryParse(value, out date))
{
return new TimeSpan();
}
return date.TimeOfDay;
}
///
/// Translates the incoming string to a enum, if applicable.
///
/// The rating in string format.
/// Returns the appropriate value.
/// Throws an exception if no conversion could be applied.
public static ContentRating GetContentRating(string rating)
{
switch (rating)
{
case "TV-14":
return ContentRating.TV14;
case "TV-PG":
return ContentRating.TVPG;
case "TV-Y":
return ContentRating.TVY;
case "TV-Y7":
return ContentRating.TVY7;
case "TV-G":
return ContentRating.TVG;
case "TV-MA":
return ContentRating.TVMA;
default:
return ContentRating.Unknown;
}
}
}
}