| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.ComponentModel; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Reflection; |
| | 6 | | using Jellyfin.Extensions; |
| | 7 | | using Jellyfin.Server.Migrations; |
| | 8 | | using MediaBrowser.Common.Plugins; |
| | 9 | | using MediaBrowser.Controller.Configuration; |
| | 10 | | using MediaBrowser.Controller.Net; |
| | 11 | | using MediaBrowser.Controller.Net.WebSocketMessages; |
| | 12 | | using MediaBrowser.Controller.Net.WebSocketMessages.Outbound; |
| | 13 | | using MediaBrowser.Model.ApiClient; |
| | 14 | | using MediaBrowser.Model.Session; |
| | 15 | | using MediaBrowser.Model.SyncPlay; |
| | 16 | | using Microsoft.OpenApi.Any; |
| | 17 | | using Microsoft.OpenApi.Models; |
| | 18 | | using Swashbuckle.AspNetCore.SwaggerGen; |
| | 19 | |
|
| | 20 | | namespace Jellyfin.Server.Filters |
| | 21 | | { |
| | 22 | | /// <summary> |
| | 23 | | /// Add models not directly used by the API, but used for discovery and websockets. |
| | 24 | | /// </summary> |
| | 25 | | public class AdditionalModelFilter : IDocumentFilter |
| | 26 | | { |
| | 27 | | // Array of options that should not be visible in the api spec. |
| 1 | 28 | | private static readonly Type[] _ignoredConfigurations = { typeof(MigrationOptions), typeof(MediaBrowser.Model.Br |
| | 29 | | private readonly IServerConfigurationManager _serverConfigurationManager; |
| | 30 | |
|
| | 31 | | /// <summary> |
| | 32 | | /// Initializes a new instance of the <see cref="AdditionalModelFilter"/> class. |
| | 33 | | /// </summary> |
| | 34 | | /// <param name="serverConfigurationManager">Instance of the <see cref="IServerConfigurationManager"/> interface |
| | 35 | | public AdditionalModelFilter(IServerConfigurationManager serverConfigurationManager) |
| | 36 | | { |
| 20 | 37 | | _serverConfigurationManager = serverConfigurationManager; |
| 20 | 38 | | } |
| | 39 | |
|
| | 40 | | /// <inheritdoc /> |
| | 41 | | public void Apply(OpenApiDocument swaggerDoc, DocumentFilterContext context) |
| | 42 | | { |
| 1 | 43 | | context.SchemaGenerator.GenerateSchema(typeof(IPlugin), context.SchemaRepository); |
| | 44 | |
|
| 1 | 45 | | var webSocketTypes = typeof(WebSocketMessage).Assembly.GetTypes() |
| 1 | 46 | | .Where(t => t.IsSubclassOf(typeof(WebSocketMessage)) |
| 1 | 47 | | && !t.IsGenericType |
| 1 | 48 | | && t != typeof(WebSocketMessageInfo)) |
| 1 | 49 | | .ToList(); |
| | 50 | |
|
| 1 | 51 | | var inboundWebSocketSchemas = new List<OpenApiSchema>(); |
| 1 | 52 | | var inboundWebSocketDiscriminators = new Dictionary<string, string>(); |
| 18 | 53 | | foreach (var type in webSocketTypes.Where(t => typeof(IInboundWebSocketMessage).IsAssignableFrom(t))) |
| | 54 | | { |
| 8 | 55 | | var messageType = (SessionMessageType?)type.GetProperty(nameof(WebSocketMessage.MessageType))?.GetCustom |
| 8 | 56 | | if (messageType is null) |
| | 57 | | { |
| | 58 | | continue; |
| | 59 | | } |
| | 60 | |
|
| 7 | 61 | | var schema = context.SchemaGenerator.GenerateSchema(type, context.SchemaRepository); |
| 7 | 62 | | inboundWebSocketSchemas.Add(schema); |
| 7 | 63 | | inboundWebSocketDiscriminators[messageType.ToString()!] = schema.Reference.ReferenceV3; |
| | 64 | | } |
| | 65 | |
|
| 1 | 66 | | var inboundWebSocketMessageSchema = new OpenApiSchema |
| 1 | 67 | | { |
| 1 | 68 | | Type = "object", |
| 1 | 69 | | Description = "Represents the list of possible inbound websocket types", |
| 1 | 70 | | Reference = new OpenApiReference |
| 1 | 71 | | { |
| 1 | 72 | | Id = nameof(InboundWebSocketMessage), |
| 1 | 73 | | Type = ReferenceType.Schema |
| 1 | 74 | | }, |
| 1 | 75 | | OneOf = inboundWebSocketSchemas, |
| 1 | 76 | | Discriminator = new OpenApiDiscriminator |
| 1 | 77 | | { |
| 1 | 78 | | PropertyName = nameof(WebSocketMessage.MessageType), |
| 1 | 79 | | Mapping = inboundWebSocketDiscriminators |
| 1 | 80 | | } |
| 1 | 81 | | }; |
| | 82 | |
|
| 1 | 83 | | context.SchemaRepository.AddDefinition(nameof(InboundWebSocketMessage), inboundWebSocketMessageSchema); |
| | 84 | |
|
| 1 | 85 | | var outboundWebSocketSchemas = new List<OpenApiSchema>(); |
| 1 | 86 | | var outboundWebSocketDiscriminators = new Dictionary<string, string>(); |
| 68 | 87 | | foreach (var type in webSocketTypes.Where(t => typeof(IOutboundWebSocketMessage).IsAssignableFrom(t))) |
| | 88 | | { |
| 33 | 89 | | var messageType = (SessionMessageType?)type.GetProperty(nameof(WebSocketMessage.MessageType))?.GetCustom |
| 33 | 90 | | if (messageType is null) |
| | 91 | | { |
| | 92 | | continue; |
| | 93 | | } |
| | 94 | |
|
| | 95 | | // Additional discriminator needed for GroupUpdate models... |
| 32 | 96 | | if (messageType == SessionMessageType.SyncPlayGroupUpdate && type != typeof(SyncPlayGroupUpdateCommandMe |
| | 97 | | { |
| | 98 | | continue; |
| | 99 | | } |
| | 100 | |
|
| 28 | 101 | | var schema = context.SchemaGenerator.GenerateSchema(type, context.SchemaRepository); |
| 28 | 102 | | outboundWebSocketSchemas.Add(schema); |
| 28 | 103 | | outboundWebSocketDiscriminators.Add(messageType.ToString()!, schema.Reference.ReferenceV3); |
| | 104 | | } |
| | 105 | |
|
| 1 | 106 | | var outboundWebSocketMessageSchema = new OpenApiSchema |
| 1 | 107 | | { |
| 1 | 108 | | Type = "object", |
| 1 | 109 | | Description = "Represents the list of possible outbound websocket types", |
| 1 | 110 | | Reference = new OpenApiReference |
| 1 | 111 | | { |
| 1 | 112 | | Id = nameof(OutboundWebSocketMessage), |
| 1 | 113 | | Type = ReferenceType.Schema |
| 1 | 114 | | }, |
| 1 | 115 | | OneOf = outboundWebSocketSchemas, |
| 1 | 116 | | Discriminator = new OpenApiDiscriminator |
| 1 | 117 | | { |
| 1 | 118 | | PropertyName = nameof(WebSocketMessage.MessageType), |
| 1 | 119 | | Mapping = outboundWebSocketDiscriminators |
| 1 | 120 | | } |
| 1 | 121 | | }; |
| | 122 | |
|
| 1 | 123 | | context.SchemaRepository.AddDefinition(nameof(OutboundWebSocketMessage), outboundWebSocketMessageSchema); |
| 1 | 124 | | context.SchemaRepository.AddDefinition( |
| 1 | 125 | | nameof(WebSocketMessage), |
| 1 | 126 | | new OpenApiSchema |
| 1 | 127 | | { |
| 1 | 128 | | Type = "object", |
| 1 | 129 | | Description = "Represents the possible websocket types", |
| 1 | 130 | | Reference = new OpenApiReference |
| 1 | 131 | | { |
| 1 | 132 | | Id = nameof(WebSocketMessage), |
| 1 | 133 | | Type = ReferenceType.Schema |
| 1 | 134 | | }, |
| 1 | 135 | | OneOf = new[] |
| 1 | 136 | | { |
| 1 | 137 | | inboundWebSocketMessageSchema, |
| 1 | 138 | | outboundWebSocketMessageSchema |
| 1 | 139 | | } |
| 1 | 140 | | }); |
| | 141 | |
|
| | 142 | | // Manually generate sync play GroupUpdate messages. |
| 1 | 143 | | if (!context.SchemaRepository.Schemas.TryGetValue(nameof(GroupUpdate), out var groupUpdateSchema)) |
| | 144 | | { |
| 0 | 145 | | groupUpdateSchema = context.SchemaGenerator.GenerateSchema(typeof(GroupUpdate), context.SchemaRepository |
| | 146 | | } |
| | 147 | |
|
| 1 | 148 | | var groupUpdateOfGroupInfoSchema = context.SchemaGenerator.GenerateSchema(typeof(GroupUpdate<GroupInfoDto>), |
| 1 | 149 | | var groupUpdateOfGroupStateSchema = context.SchemaGenerator.GenerateSchema(typeof(GroupUpdate<GroupStateUpda |
| 1 | 150 | | var groupUpdateOfStringSchema = context.SchemaGenerator.GenerateSchema(typeof(GroupUpdate<string>), context. |
| 1 | 151 | | var groupUpdateOfPlayQueueSchema = context.SchemaGenerator.GenerateSchema(typeof(GroupUpdate<PlayQueueUpdate |
| | 152 | |
|
| 1 | 153 | | groupUpdateSchema.OneOf = new List<OpenApiSchema> |
| 1 | 154 | | { |
| 1 | 155 | | groupUpdateOfGroupInfoSchema, |
| 1 | 156 | | groupUpdateOfGroupStateSchema, |
| 1 | 157 | | groupUpdateOfStringSchema, |
| 1 | 158 | | groupUpdateOfPlayQueueSchema |
| 1 | 159 | | }; |
| | 160 | |
|
| 1 | 161 | | groupUpdateSchema.Discriminator = new OpenApiDiscriminator |
| 1 | 162 | | { |
| 1 | 163 | | PropertyName = nameof(GroupUpdate.Type), |
| 1 | 164 | | Mapping = new Dictionary<string, string> |
| 1 | 165 | | { |
| 1 | 166 | | { GroupUpdateType.UserJoined.ToString(), groupUpdateOfStringSchema.Reference.ReferenceV3 }, |
| 1 | 167 | | { GroupUpdateType.UserLeft.ToString(), groupUpdateOfStringSchema.Reference.ReferenceV3 }, |
| 1 | 168 | | { GroupUpdateType.GroupJoined.ToString(), groupUpdateOfGroupInfoSchema.Reference.ReferenceV3 }, |
| 1 | 169 | | { GroupUpdateType.GroupLeft.ToString(), groupUpdateOfStringSchema.Reference.ReferenceV3 }, |
| 1 | 170 | | { GroupUpdateType.StateUpdate.ToString(), groupUpdateOfGroupStateSchema.Reference.ReferenceV3 }, |
| 1 | 171 | | { GroupUpdateType.PlayQueue.ToString(), groupUpdateOfPlayQueueSchema.Reference.ReferenceV3 }, |
| 1 | 172 | | { GroupUpdateType.NotInGroup.ToString(), groupUpdateOfStringSchema.Reference.ReferenceV3 }, |
| 1 | 173 | | { GroupUpdateType.GroupDoesNotExist.ToString(), groupUpdateOfStringSchema.Reference.ReferenceV3 }, |
| 1 | 174 | | { GroupUpdateType.LibraryAccessDenied.ToString(), groupUpdateOfStringSchema.Reference.ReferenceV3 } |
| 1 | 175 | | } |
| 1 | 176 | | }; |
| | 177 | |
|
| 1 | 178 | | context.SchemaGenerator.GenerateSchema(typeof(ServerDiscoveryInfo), context.SchemaRepository); |
| | 179 | |
|
| 20 | 180 | | foreach (var configuration in _serverConfigurationManager.GetConfigurationStores()) |
| | 181 | | { |
| 9 | 182 | | if (_ignoredConfigurations.IndexOf(configuration.ConfigurationType) != -1) |
| | 183 | | { |
| | 184 | | continue; |
| | 185 | | } |
| | 186 | |
|
| 7 | 187 | | context.SchemaGenerator.GenerateSchema(configuration.ConfigurationType, context.SchemaRepository); |
| | 188 | | } |
| | 189 | |
|
| 1 | 190 | | context.SchemaRepository.AddDefinition(nameof(TranscodeReason), new OpenApiSchema |
| 1 | 191 | | { |
| 1 | 192 | | Type = "string", |
| 1 | 193 | | Enum = Enum.GetNames<TranscodeReason>() |
| 1 | 194 | | .Select(e => new OpenApiString(e)) |
| 1 | 195 | | .Cast<IOpenApiAny>() |
| 1 | 196 | | .ToArray() |
| 1 | 197 | | }); |
| 1 | 198 | | } |
| | 199 | | } |
| | 200 | | } |