aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/Handlers/BaseSerializationHandler.cs
blob: a0696d4a6134646a09d068b58bd6da397e877c05 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
using System;
using System.IO;
using System.Threading.Tasks;
using MediaBrowser.Common.Serialization;

namespace MediaBrowser.Common.Net.Handlers
{
    public abstract class BaseSerializationHandler<T> : BaseHandler
    {
        public SerializationFormat SerializationFormat
        {
            get
            {
                string format = QueryString["dataformat"];

                if (string.IsNullOrEmpty(format))
                {
                    return Handlers.SerializationFormat.Json;
                }

                return (SerializationFormat)Enum.Parse(typeof(SerializationFormat), format, true);
            }
        }
        
        public override Task<string> GetContentType()
        {
            switch (SerializationFormat)
            {
                case Handlers.SerializationFormat.Jsv:
                    return Task.FromResult<string>("text/plain");
                case Handlers.SerializationFormat.Protobuf:
                    return Task.FromResult<string>("application/x-protobuf");
                default:
                    return Task.FromResult<string>(MimeTypes.JsonMimeType);
            }
        }

        private bool _ObjectToSerializeEnsured = false;
        private T _ObjectToSerialize;
     
        private async Task EnsureObjectToSerialize()
        {
            if (!_ObjectToSerializeEnsured)
            {
                _ObjectToSerialize = await GetObjectToSerialize().ConfigureAwait(false);

                if (_ObjectToSerialize == null)
                {
                    StatusCode = 404;
                }

                _ObjectToSerializeEnsured = true;
            }
        }

        protected abstract Task<T> GetObjectToSerialize();

        protected override Task PrepareResponse()
        {
            return EnsureObjectToSerialize();
        }

        protected async override Task WriteResponseToOutputStream(Stream stream)
        {
            await EnsureObjectToSerialize();

            switch (SerializationFormat)
            {
                case Handlers.SerializationFormat.Jsv:
                    JsvSerializer.SerializeToStream<T>(_ObjectToSerialize, stream);
                    break;
                case Handlers.SerializationFormat.Protobuf:
                    ProtobufSerializer.SerializeToStream<T>(_ObjectToSerialize, stream);
                    break;
                default:
                    JsonSerializer.SerializeToStream<T>(_ObjectToSerialize, stream);
                    break;
            }
        }
    }

    public enum SerializationFormat
    {
        Json,
        Jsv,
        Protobuf
    }

}