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.
65 lines
1.9 KiB
65 lines
1.9 KiB
using System;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Security.AccessControl;
|
|
using System.Security.Principal;
|
|
using NLog;
|
|
|
|
namespace NzbDrone.Common.EnvironmentInfo
|
|
{
|
|
public interface IAppFolderInfo
|
|
{
|
|
string AppDataFolder { get; }
|
|
string TempFolder { get; }
|
|
string StartUpFolder { get; }
|
|
}
|
|
|
|
public class AppFolderInfo : IAppFolderInfo
|
|
{
|
|
private readonly IDiskProvider _diskProvider;
|
|
private readonly Logger _logger;
|
|
private readonly Environment.SpecialFolder DATA_SPECIAL_FOLDER = Environment.SpecialFolder.CommonApplicationData;
|
|
|
|
|
|
public AppFolderInfo(IDiskProvider diskProvider)
|
|
{
|
|
_diskProvider = diskProvider;
|
|
|
|
if (OsInfo.IsLinux)
|
|
{
|
|
DATA_SPECIAL_FOLDER = Environment.SpecialFolder.ApplicationData;
|
|
}
|
|
|
|
_logger = LogManager.GetCurrentClassLogger();
|
|
|
|
AppDataFolder = Path.Combine(Environment.GetFolderPath(DATA_SPECIAL_FOLDER, Environment.SpecialFolderOption.Create), "NzbDrone");
|
|
StartUpFolder = new FileInfo(Assembly.GetExecutingAssembly().Location).Directory.FullName;
|
|
TempFolder = Path.GetTempPath();
|
|
|
|
diskProvider.EnsureFolder(AppDataFolder);
|
|
|
|
if (!OsInfo.IsLinux)
|
|
{
|
|
SetPermissions();
|
|
}
|
|
}
|
|
|
|
private void SetPermissions()
|
|
{
|
|
try
|
|
{
|
|
_diskProvider.SetPermissions(AppDataFolder, WellKnownSidType.WorldSid, FileSystemRights.FullControl, AccessControlType.Allow);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.WarnException("Coudn't set app folder permission", ex);
|
|
}
|
|
}
|
|
|
|
public string AppDataFolder { get; private set; }
|
|
|
|
public string StartUpFolder { get; private set; }
|
|
|
|
public String TempFolder { get; private set; }
|
|
}
|
|
} |