jellyfin/MediaBrowser.Server.Implementations/Devices/CameraUploadsFolder.cs

68 lines
2 KiB
C#
Raw Normal View History

2014-10-11 22:38:13 +02:00
using MediaBrowser.Common.Configuration;
using MediaBrowser.Controller.Entities;
2015-03-02 06:16:29 +01:00
using System;
2014-10-11 22:38:13 +02:00
using System.IO;
using System.Linq;
2015-11-03 05:34:47 +01:00
using System.Threading;
using System.Threading.Tasks;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.IO;
using MediaBrowser.Model.IO;
2015-11-03 05:34:47 +01:00
using MediaBrowser.Controller.Providers;
2016-11-11 04:29:51 +01:00
using MediaBrowser.Model.Serialization;
2014-10-11 22:38:13 +02:00
namespace MediaBrowser.Server.Implementations.Devices
{
2015-11-14 17:58:01 +01:00
public class CameraUploadsFolder : BasePluginFolder, ISupportsUserSpecificView
2014-10-11 22:38:13 +02:00
{
public CameraUploadsFolder()
{
Name = "Camera Uploads";
}
public override bool IsVisible(User user)
{
2015-03-02 06:16:29 +01:00
if (!user.Policy.EnableAllFolders && !user.Policy.EnabledFolders.Contains(Id.ToString("N"), StringComparer.OrdinalIgnoreCase))
{
return false;
}
2015-10-30 16:23:06 +01:00
return base.IsVisible(user) && HasChildren();
2014-10-11 22:38:13 +02:00
}
2016-05-25 04:06:56 +02:00
[IgnoreDataMember]
2015-10-30 16:23:06 +01:00
public override string CollectionType
2014-10-11 22:38:13 +02:00
{
2015-10-30 16:23:06 +01:00
get { return Model.Entities.CollectionType.Photos; }
2014-10-11 22:38:13 +02:00
}
2015-10-30 16:23:06 +01:00
public override string GetClientTypeName()
2014-10-11 22:38:13 +02:00
{
2015-10-30 16:23:06 +01:00
return typeof(CollectionFolder).Name;
2014-10-11 22:38:13 +02:00
}
2015-10-30 16:23:06 +01:00
private bool? _hasChildren;
private bool HasChildren()
2014-10-11 22:38:13 +02:00
{
2015-10-30 16:23:06 +01:00
if (!_hasChildren.HasValue)
{
_hasChildren = LibraryManager.GetItemIds(new InternalItemsQuery { ParentId = Id }).Count > 0;
}
return _hasChildren.Value;
2014-10-11 22:38:13 +02:00
}
2015-11-03 05:34:47 +01:00
protected override Task ValidateChildrenInternal(IProgress<double> progress, CancellationToken cancellationToken, bool recursive, bool refreshChildMetadata, MetadataRefreshOptions refreshOptions, IDirectoryService directoryService)
2014-10-11 22:38:13 +02:00
{
2015-10-30 16:23:06 +01:00
_hasChildren = null;
return base.ValidateChildrenInternal(progress, cancellationToken, recursive, refreshChildMetadata, refreshOptions, directoryService);
2014-10-11 22:38:13 +02:00
}
2015-11-14 17:58:01 +01:00
[IgnoreDataMember]
public bool EnableUserSpecificView
{
get { return true; }
}
2014-10-11 22:38:13 +02:00
}
}