< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Entities.Studio
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Entities/Studio.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 32
Coverable lines: 32
Total lines: 125
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 8
Branch coverage: 0%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

File(s)

/srv/git/jellyfin/MediaBrowser.Controller/Entities/Studio.cs

#LineLine coverage
 1#nullable disable
 2
 3#pragma warning disable CS1591
 4
 5using System;
 6using System.Collections.Generic;
 7using System.Text.Json.Serialization;
 8using Jellyfin.Extensions;
 9using Microsoft.Extensions.Logging;
 10
 11namespace MediaBrowser.Controller.Entities
 12{
 13    /// <summary>
 14    /// Class Studio.
 15    /// </summary>
 16    [Common.RequiresSourceSerialisation]
 17    public class Studio : BaseItem, IItemByName
 18    {
 19        /// <summary>
 20        /// Gets the folder containing the item.
 21        /// If the item is a folder, it returns the folder itself.
 22        /// </summary>
 23        /// <value>The containing folder path.</value>
 24        [JsonIgnore]
 025        public override string ContainingFolderPath => Path;
 26
 27        [JsonIgnore]
 028        public override bool IsDisplayedAsFolder => true;
 29
 30        [JsonIgnore]
 031        public override bool SupportsAncestors => false;
 32
 33        [JsonIgnore]
 034        public override bool SupportsPeople => false;
 35
 36        public override List<string> GetUserDataKeys()
 37        {
 038            var list = base.GetUserDataKeys();
 39
 040            list.Insert(0, GetType().Name + "-" + (Name ?? string.Empty).RemoveDiacritics());
 041            return list;
 42        }
 43
 44        public override string CreatePresentationUniqueKey()
 45        {
 046            return GetUserDataKeys()[0];
 47        }
 48
 49        public override double GetDefaultPrimaryImageAspectRatio()
 50        {
 051            double value = 16;
 052            value /= 9;
 53
 054            return value;
 55        }
 56
 57        public override bool CanDelete()
 58        {
 059            return false;
 60        }
 61
 62        public override bool IsSaveLocalMetadataEnabled()
 63        {
 064            return true;
 65        }
 66
 67        public IReadOnlyList<BaseItem> GetTaggedItems(InternalItemsQuery query)
 68        {
 069            query.StudioIds = new[] { Id };
 70
 071            return LibraryManager.GetItemList(query);
 72        }
 73
 74        public static string GetPath(string name)
 75        {
 076            return GetPath(name, true);
 77        }
 78
 79        public static string GetPath(string name, bool normalizeName)
 80        {
 81            // Trim the period at the end because windows will have a hard time with that
 082            var validName = normalizeName ?
 083                FileSystem.GetValidFilename(name).Trim().TrimEnd('.') :
 084                name;
 85
 086            return System.IO.Path.Combine(ConfigurationManager.ApplicationPaths.StudioPath, validName);
 87        }
 88
 89        private string GetRebasedPath()
 90        {
 091            return GetPath(System.IO.Path.GetFileName(Path), false);
 92        }
 93
 94        public override bool RequiresRefresh()
 95        {
 096            var newPath = GetRebasedPath();
 097            if (!string.Equals(Path, newPath, StringComparison.Ordinal))
 98            {
 099                Logger.LogDebug("{0} path has changed from {1} to {2}", GetType().Name, Path, newPath);
 0100                return true;
 101            }
 102
 0103            return base.RequiresRefresh();
 104        }
 105
 106        /// <summary>
 107        /// This is called before any metadata refresh and returns true or false indicating if changes were made.
 108        /// </summary>
 109        /// <param name="replaceAllMetadata"><c>true</c> to replace all metadata, <c>false</c> to not.</param>
 110        /// <returns><c>true</c> if changes were made, <c>false</c> if not.</returns>
 111        public override bool BeforeMetadataRefresh(bool replaceAllMetadata)
 112        {
 0113            var hasChanges = base.BeforeMetadataRefresh(replaceAllMetadata);
 114
 0115            var newPath = GetRebasedPath();
 0116            if (!string.Equals(Path, newPath, StringComparison.Ordinal))
 117            {
 0118                Path = newPath;
 0119                hasChanges = true;
 120            }
 121
 0122            return hasChanges;
 123        }
 124    }
 125}