aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Roku/RokuControllerFactory.cs
blob: 71f70421a9a08bfc2fe6629499d5b1507c2f7455 (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
using MediaBrowser.Common.Net;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Session;
using MediaBrowser.Model.Serialization;
using System;

namespace MediaBrowser.Server.Implementations.Roku
{
    public class RokuControllerFactory : ISessionControllerFactory
    {
        private readonly IHttpClient _httpClient;
        private readonly IJsonSerializer _json;
        private readonly IServerApplicationHost _appHost;

        public RokuControllerFactory(IHttpClient httpClient, IJsonSerializer json, IServerApplicationHost appHost)
        {
            _httpClient = httpClient;
            _json = json;
            _appHost = appHost;
        }

        public ISessionController GetSessionController(SessionInfo session)
        {
            if (string.Equals(session.Client, "roku", StringComparison.OrdinalIgnoreCase))
            {
                return new RokuSessionController(_httpClient, _json, _appHost, session);
            }

            return null;
        }
    }
}