mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			78 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Common.Configuration;
 | 
						|
using MediaBrowser.Controller.Entities;
 | 
						|
using System;
 | 
						|
using System.IO;
 | 
						|
using System.Linq;
 | 
						|
using CommonIO;
 | 
						|
using MediaBrowser.Common.IO;
 | 
						|
 | 
						|
namespace MediaBrowser.Server.Implementations.Devices
 | 
						|
{
 | 
						|
    public class CameraUploadsFolder : BasePluginFolder
 | 
						|
    {
 | 
						|
        public CameraUploadsFolder()
 | 
						|
        {
 | 
						|
            Name = "Camera Uploads";
 | 
						|
        }
 | 
						|
 | 
						|
        public override bool IsVisible(User user)
 | 
						|
        {
 | 
						|
            if (!user.Policy.EnableAllFolders && !user.Policy.EnabledFolders.Contains(Id.ToString("N"), StringComparer.OrdinalIgnoreCase))
 | 
						|
            {
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
            
 | 
						|
            return GetChildren(user, true).Any() &&
 | 
						|
                base.IsVisible(user);
 | 
						|
        }
 | 
						|
 | 
						|
        public override bool IsHidden
 | 
						|
        {
 | 
						|
            get
 | 
						|
            {
 | 
						|
                return base.IsHidden || !Children.Any();
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        public override bool IsHiddenFromUser(User user)
 | 
						|
        {
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
 | 
						|
        public override string CollectionType
 | 
						|
        {
 | 
						|
            get { return Model.Entities.CollectionType.Photos; }
 | 
						|
        }
 | 
						|
 | 
						|
        public override string GetClientTypeName()
 | 
						|
        {
 | 
						|
            return typeof(CollectionFolder).Name;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public class CameraUploadsDynamicFolder : IVirtualFolderCreator
 | 
						|
    {
 | 
						|
        private readonly IApplicationPaths _appPaths;
 | 
						|
        private readonly IFileSystem _fileSystem;
 | 
						|
 | 
						|
        public CameraUploadsDynamicFolder(IApplicationPaths appPaths, IFileSystem fileSystem)
 | 
						|
        {
 | 
						|
            _appPaths = appPaths;
 | 
						|
            _fileSystem = fileSystem;
 | 
						|
        }
 | 
						|
 | 
						|
        public BasePluginFolder GetFolder()
 | 
						|
        {
 | 
						|
            var path = Path.Combine(_appPaths.DataPath, "camerauploads");
 | 
						|
 | 
						|
			_fileSystem.CreateDirectory(path);
 | 
						|
 | 
						|
            return new CameraUploadsFolder
 | 
						|
            {
 | 
						|
                Path = path
 | 
						|
            };
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
}
 |