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.
60 lines
1.8 KiB
60 lines
1.8 KiB
using MediaBrowser.Common;
|
|
using MediaBrowser.Controller.Sync;
|
|
using MediaBrowser.Model.Dlna;
|
|
using MediaBrowser.Model.Sync;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Server.Implementations.Sync
|
|
{
|
|
public class CloudSyncProvider : IServerSyncProvider
|
|
{
|
|
private readonly ICloudSyncProvider[] _providers = {};
|
|
|
|
public CloudSyncProvider(IApplicationHost appHost)
|
|
{
|
|
_providers = appHost.GetExports<ICloudSyncProvider>().ToArray();
|
|
}
|
|
|
|
public IEnumerable<SyncTarget> GetSyncTargets(string userId)
|
|
{
|
|
return _providers.SelectMany(i => i.GetSyncTargets(userId));
|
|
}
|
|
|
|
public DeviceProfile GetDeviceProfile(SyncTarget target)
|
|
{
|
|
return new DeviceProfile();
|
|
}
|
|
|
|
public string Name
|
|
{
|
|
get { return "Cloud Sync"; }
|
|
}
|
|
|
|
private ICloudSyncProvider GetProvider(SyncTarget target)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public Task<List<string>> GetServerItemIds(string serverId, SyncTarget target, CancellationToken cancellationToken)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task DeleteItem(string serverId, string itemId, SyncTarget target, CancellationToken cancellationToken)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task TransferItemFile(string serverId, string itemId, string inputFile, string[] pathParts, SyncTarget target, CancellationToken cancellationToken)
|
|
{
|
|
var provider = GetProvider(target);
|
|
|
|
return provider.TransferItemFile(serverId, itemId, inputFile, pathParts, target, cancellationToken);
|
|
}
|
|
}
|
|
}
|