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.
38 lines
1.1 KiB
38 lines
1.1 KiB
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Common.Net.Handlers;
|
|
using MediaBrowser.Controller;
|
|
using MediaBrowser.Model.DTO;
|
|
|
|
namespace MediaBrowser.Api.HttpHandlers
|
|
{
|
|
/// <summary>
|
|
/// Provides information about installed plugins
|
|
/// </summary>
|
|
public class PluginsHandler : BaseSerializationHandler<IEnumerable<PluginInfo>>
|
|
{
|
|
protected override Task<IEnumerable<PluginInfo>> GetObjectToSerialize()
|
|
{
|
|
var plugins = Kernel.Instance.Plugins.Select(p =>
|
|
{
|
|
return new PluginInfo()
|
|
{
|
|
Path = p.Path,
|
|
Name = p.Name,
|
|
Enabled = p.Enabled,
|
|
DownloadToUI = p.DownloadToUI,
|
|
Version = p.Version
|
|
};
|
|
});
|
|
|
|
if (QueryString["uionly"] == "1")
|
|
{
|
|
plugins = plugins.Where(p => p.DownloadToUI);
|
|
}
|
|
|
|
return Task.FromResult<IEnumerable<PluginInfo>>(plugins);
|
|
}
|
|
}
|
|
}
|