2011-06-18 10:19:24 -07:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2011-10-15 11:36:09 -07:00
|
|
|
using System.IO;
|
|
|
|
using System.Runtime.InteropServices;
|
2011-06-18 10:19:24 -07:00
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core
|
|
|
|
{
|
|
|
|
public static class Fluent
|
|
|
|
{
|
|
|
|
public static string WithDefault(this string actual, object defaultValue)
|
|
|
|
{
|
|
|
|
if (defaultValue == null)
|
|
|
|
throw new ArgumentNullException("defaultValue");
|
|
|
|
if (String.IsNullOrWhiteSpace(actual))
|
|
|
|
{
|
|
|
|
return defaultValue.ToString();
|
|
|
|
}
|
|
|
|
|
|
|
|
return actual;
|
|
|
|
}
|
2011-07-17 12:32:58 -07:00
|
|
|
|
2011-07-17 16:15:37 -07:00
|
|
|
public static Int64 Megabytes(this int megabytes)
|
2011-07-17 12:32:58 -07:00
|
|
|
{
|
2011-09-13 19:25:33 -07:00
|
|
|
return megabytes * 1048576L;
|
2011-07-17 12:32:58 -07:00
|
|
|
}
|
2011-07-17 16:15:37 -07:00
|
|
|
|
|
|
|
public static Int64 Gigabytes(this int gigabytes)
|
|
|
|
{
|
2011-09-13 19:25:33 -07:00
|
|
|
return gigabytes * 1073741824L;
|
2011-07-17 16:15:37 -07:00
|
|
|
}
|
2011-09-27 17:10:08 -07:00
|
|
|
|
|
|
|
public static string ToBestDateString(this DateTime dateTime)
|
|
|
|
{
|
|
|
|
if (dateTime == DateTime.Today.AddDays(-1))
|
|
|
|
return "Yesterday";
|
|
|
|
|
|
|
|
if (dateTime == DateTime.Today)
|
|
|
|
return "Today";
|
|
|
|
|
|
|
|
if (dateTime == DateTime.Today.AddDays(1))
|
|
|
|
return "Tomorrow";
|
|
|
|
|
|
|
|
if (dateTime > DateTime.Today.AddDays(1) && dateTime < DateTime.Today.AddDays(7))
|
|
|
|
return dateTime.DayOfWeek.ToString();
|
|
|
|
|
|
|
|
return dateTime.ToShortDateString();
|
|
|
|
}
|
2011-10-15 11:36:09 -07:00
|
|
|
|
2011-11-12 11:53:36 -08:00
|
|
|
public static string ParentUriString(this Uri uri)
|
2011-10-15 11:36:09 -07:00
|
|
|
{
|
2011-11-12 12:21:19 -08:00
|
|
|
return uri.AbsoluteUri.Remove(uri.AbsoluteUri.Length - String.Join("", uri.Segments).Length - uri.Query.Length);
|
2011-10-15 11:36:09 -07:00
|
|
|
}
|
2011-06-18 10:19:24 -07:00
|
|
|
}
|
|
|
|
}
|