jellyfin/MediaBrowser.Controller/Entities/Year.cs

130 lines
3.5 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2018-12-27 18:27:57 -05:00
using System.Collections.Generic;
using System.Globalization;
2019-10-15 11:49:49 -04:00
using System.Text.Json.Serialization;
2018-12-27 19:11:04 -05:00
using Microsoft.Extensions.Logging;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class Year.
2018-12-27 18:27:57 -05:00
/// </summary>
public class Year : BaseItem, IItemByName
{
public override List<string> GetUserDataKeys()
{
var list = base.GetUserDataKeys();
list.Insert(0, "Year-" + Name);
return list;
}
/// <summary>
/// Returns the folder containing the item.
/// If the item is a folder, it returns the folder itself.
2018-12-27 18:27:57 -05:00
/// </summary>
/// <value>The containing folder path.</value>
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override string ContainingFolderPath => Path;
2018-12-27 18:27:57 -05:00
public override double GetDefaultPrimaryImageAspectRatio()
{
double value = 2;
value /= 3;
return value;
}
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override bool SupportsAncestors => false;
2018-12-27 18:27:57 -05:00
public override bool CanDelete()
{
return false;
}
public override bool IsSaveLocalMetadataEnabled()
{
return true;
}
public IList<BaseItem> GetTaggedItems(InternalItemsQuery query)
{
var usCulture = new CultureInfo("en-US");
if (!int.TryParse(Name, NumberStyles.Integer, usCulture, out var year))
2018-12-27 18:27:57 -05:00
{
return new List<BaseItem>();
}
query.Years = new[] { year };
return LibraryManager.GetItemList(query);
}
public int? GetYearValue()
{
if (int.TryParse(Name, NumberStyles.Integer, CultureInfo.InvariantCulture, out var year))
2018-12-27 18:27:57 -05:00
{
return year;
2018-12-27 18:27:57 -05:00
}
return null;
}
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override bool SupportsPeople => false;
2018-12-27 18:27:57 -05:00
public static string GetPath(string name)
{
return GetPath(name, true);
}
public static string GetPath(string name, bool normalizeName)
{
// Trim the period at the end because windows will have a hard time with that
var validName = normalizeName ?
FileSystem.GetValidFilename(name).Trim().TrimEnd('.') :
name;
return System.IO.Path.Combine(ConfigurationManager.ApplicationPaths.YearPath, validName);
}
private string GetRebasedPath()
{
return GetPath(System.IO.Path.GetFileName(Path), false);
}
public override bool RequiresRefresh()
{
var newPath = GetRebasedPath();
if (!string.Equals(Path, newPath, StringComparison.Ordinal))
{
2018-12-27 19:11:04 -05:00
Logger.LogDebug("{0} path has changed from {1} to {2}", GetType().Name, Path, newPath);
2018-12-27 18:27:57 -05:00
return true;
}
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
return base.RequiresRefresh();
}
/// <summary>
/// This is called before any metadata refresh and returns true or false indicating if changes were made.
2018-12-27 18:27:57 -05:00
/// </summary>
public override bool BeforeMetadataRefresh(bool replaceAllMetdata)
{
var hasChanges = base.BeforeMetadataRefresh(replaceAllMetdata);
var newPath = GetRebasedPath();
if (!string.Equals(Path, newPath, StringComparison.Ordinal))
{
Path = newPath;
hasChanges = true;
}
return hasChanges;
}
}
}