You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.9 KiB
78 lines
1.9 KiB
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
|
|
};
|
|
}
|
|
}
|
|
|
|
}
|