31 lines
1.4 KiB
C#
31 lines
1.4 KiB
C#
using Microsoft.Identity.Client.Extensions.Msal;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sledgemapper
|
|
{
|
|
public static class CacheSettings
|
|
{
|
|
// computing the root directory is not very simple on Linux and Mac, so a helper is provided
|
|
private static readonly string s_cacheFilePath =
|
|
Path.Combine(MsalCacheHelper.UserRootDirectory, "sledgemapper.scandysoft.cache");
|
|
|
|
public static readonly string CacheFileName = Path.GetFileName(s_cacheFilePath);
|
|
public static readonly string CacheDir = Path.GetDirectoryName(s_cacheFilePath);
|
|
|
|
|
|
public static readonly string KeyChainServiceName = "Scandysoft.Sledgemapper";
|
|
public static readonly string KeyChainAccountName = "MSALCache";
|
|
|
|
public static readonly string LinuxKeyRingSchema = "com.scandysoft.sledgemappertokencache";
|
|
public static readonly string LinuxKeyRingCollection = MsalCacheHelper.LinuxKeyRingDefaultCollection;
|
|
public static readonly string LinuxKeyRingLabel = "Sledgemapper API token.";
|
|
public static readonly KeyValuePair<string, string> LinuxKeyRingAttr1 = new KeyValuePair<string, string>("Version", "1");
|
|
public static readonly KeyValuePair<string, string> LinuxKeyRingAttr2 = new KeyValuePair<string, string>("ProductGroup", "MyApps");
|
|
}
|
|
}
|