jellyfin-server/MediaBrowser.Api/HttpHandlers/PluginsHandler.cs

42 lines
1.3 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Net.Handlers;
using MediaBrowser.Controller;
using MediaBrowser.Model.DTO;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
namespace MediaBrowser.Api.HttpHandlers
{
/// <summary>
/// Provides information about installed plugins
/// </summary>
[Export(typeof(BaseHandler))]
2012-09-02 05:30:25 +00:00
public class PluginsHandler : BaseSerializationHandler<IEnumerable<PluginInfo>>
{
public override bool HandlesRequest(HttpListenerRequest request)
{
return ApiService.IsApiUrlMatch("plugins", request);
}
protected override Task<IEnumerable<PluginInfo>> GetObjectToSerialize()
{
2012-08-22 02:50:59 +00:00
var plugins = Kernel.Instance.Plugins.Select(p =>
{
2012-08-22 02:50:59 +00:00
return new PluginInfo()
{
2012-08-22 02:50:59 +00:00
Name = p.Name,
Enabled = p.Enabled,
DownloadToUI = p.DownloadToUI,
2012-09-03 19:12:02 +00:00
Version = p.Version.ToString(),
2012-09-03 21:56:30 +00:00
AssemblyFileName = p.AssemblyFileName,
ConfigurationDateLastModified = p.ConfigurationDateLastModified
2012-08-22 02:50:59 +00:00
};
});
2012-08-22 02:50:59 +00:00
return Task.FromResult<IEnumerable<PluginInfo>>(plugins);
}
}
}