aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/HttpHandlers/StudioHandler.cs
blob: b44970ea50e3ad67a9851dd5b58bfc493a87e8ce (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using MediaBrowser.Common.Net.Handlers;
using MediaBrowser.Controller;
using MediaBrowser.Model.DTO;
using MediaBrowser.Model.Entities;

namespace MediaBrowser.Api.HttpHandlers
{
    /// <summary>
    /// Gets a single studio
    /// </summary>
    public class StudioHandler : BaseJsonHandler<IBNItem<Studio>>
    {
        protected async override Task<IBNItem<Studio>> GetObjectToSerialize()
        {
            Folder parent = ApiService.GetItemById(QueryString["id"]) as Folder;
            Guid userId = Guid.Parse(QueryString["userid"]);
            User user = Kernel.Instance.Users.First(u => u.Id == userId);

            string name = QueryString["name"];

            return await GetStudio(parent, user, name);
        }

        /// <summary>
        /// Gets a Studio
        /// </summary>
        private async Task<IBNItem<Studio>> GetStudio(Folder parent, User user, string name)
        {
            int count = 0;

            // Get all the allowed recursive children
            IEnumerable<BaseItem> allItems = parent.GetParentalAllowedRecursiveChildren(user);

            foreach (var item in allItems)
            {
                if (item.Studios != null && item.Studios.Any(s => s.Equals(name, StringComparison.OrdinalIgnoreCase)))
                {
                    count++;
                }
            }

            // Get the original entity so that we can also supply the PrimaryImagePath
            return new IBNItem<Studio>()
            {
                Item = await Kernel.Instance.ItemController.GetStudio(name),
                BaseItemCount = count
            };
        }
    }
}