aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/HttpHandlers/PluginsHandler.cs
blob: f451832dd44890e2018fd55a4adc600207922b65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 : BaseJsonHandler<IEnumerable<PluginInfo>>
    {
        protected override Task<IEnumerable<PluginInfo>> GetObjectToSerialize()
        {
            return Task.Run(() =>
            {
                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 plugins;
            });
        }
    }
}