mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 15:32:37 -07:00
42 lines
1.4 KiB
C#
42 lines
1.4 KiB
C#
using System;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
|
|
namespace PlexRequests.Helpers
|
|
{
|
|
public static class DateTimeHelper
|
|
{
|
|
public static DateTimeOffset OffsetUTCDateTime(DateTime utcDateTime, int minuteOffset)
|
|
{
|
|
//TimeSpan ts = TimeSpan.FromMinutes(-minuteOffset);
|
|
//return new DateTimeOffset(utcDateTime).ToOffset(ts);
|
|
|
|
// this is a workaround below to work with MONO
|
|
var tzi = FindTimeZoneFromOffset(minuteOffset);
|
|
var utcOffset = tzi.GetUtcOffset(utcDateTime);
|
|
var newDate = utcDateTime + utcOffset;
|
|
return new DateTimeOffset(newDate.Ticks, utcOffset);
|
|
}
|
|
|
|
public static void CustomParse(string date, out DateTime dt)
|
|
{
|
|
// Try and parse it
|
|
if (DateTime.TryParse(date, out dt))
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Maybe it's only a year?
|
|
if (DateTime.TryParseExact(date, "yyyy", CultureInfo.CurrentCulture, DateTimeStyles.None, out dt))
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
private static TimeZoneInfo FindTimeZoneFromOffset(int minuteOffset)
|
|
{
|
|
var tzc = TimeZoneInfo.GetSystemTimeZones();
|
|
return tzc.FirstOrDefault(x => x.BaseUtcOffset.TotalMinutes == -minuteOffset);
|
|
}
|
|
}
|
|
}
|