| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Net.Http.Headers; |
| | 4 | | using MediaBrowser.Common; |
| | 5 | | using MediaBrowser.Common.Configuration; |
| | 6 | | using MediaBrowser.Common.Plugins; |
| | 7 | | using MediaBrowser.Model.Plugins; |
| | 8 | | using MediaBrowser.Model.Serialization; |
| | 9 | | using MediaBrowser.Providers.Plugins.MusicBrainz.Configuration; |
| | 10 | | using MetaBrainz.MusicBrainz; |
| | 11 | |
|
| | 12 | | namespace MediaBrowser.Providers.Plugins.MusicBrainz; |
| | 13 | |
|
| | 14 | | /// <summary> |
| | 15 | | /// Plugin instance. |
| | 16 | | /// </summary> |
| | 17 | | public class Plugin : BasePlugin<PluginConfiguration>, IHasWebPages |
| | 18 | | { |
| | 19 | | /// <summary> |
| | 20 | | /// Initializes a new instance of the <see cref="Plugin"/> class. |
| | 21 | | /// </summary> |
| | 22 | | /// <param name="applicationPaths">Instance of the <see cref="IApplicationPaths"/> interface.</param> |
| | 23 | | /// <param name="xmlSerializer">Instance of the <see cref="IXmlSerializer"/> interface.</param> |
| | 24 | | /// <param name="applicationHost">Instance of the <see cref="IApplicationHost"/> interface.</param> |
| | 25 | | public Plugin(IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer, IApplicationHost applicationHost) |
| 21 | 26 | | : base(applicationPaths, xmlSerializer) |
| | 27 | | { |
| 21 | 28 | | Instance = this; |
| | 29 | |
|
| | 30 | | // TODO: Change this to "JellyfinMusicBrainzPlugin" once we take it out of the server repo. |
| 21 | 31 | | Query.DefaultUserAgent.Add(new ProductInfoHeaderValue(applicationHost.Name.Replace(' ', '-'), applicationHost.Ap |
| 21 | 32 | | Query.DefaultUserAgent.Add(new ProductInfoHeaderValue($"({applicationHost.ApplicationUserAgentAddress})")); |
| 21 | 33 | | Query.DelayBetweenRequests = Instance.Configuration.RateLimit; |
| 21 | 34 | | Query.DefaultServer = Instance.Configuration.Server; |
| 21 | 35 | | } |
| | 36 | |
|
| | 37 | | /// <summary> |
| | 38 | | /// Gets the current plugin instance. |
| | 39 | | /// </summary> |
| | 40 | | public static Plugin? Instance { get; private set; } |
| | 41 | |
|
| | 42 | | /// <inheritdoc /> |
| 24 | 43 | | public override Guid Id => new Guid("8c95c4d2-e50c-4fb0-a4f3-6c06ff0f9a1a"); |
| | 44 | |
|
| | 45 | | /// <inheritdoc /> |
| 29 | 46 | | public override string Name => "MusicBrainz"; |
| | 47 | |
|
| | 48 | | /// <inheritdoc /> |
| 1 | 49 | | public override string Description => "Get artist and album metadata from any MusicBrainz server."; |
| | 50 | |
|
| | 51 | | /// <inheritdoc /> |
| | 52 | | // TODO remove when plugin removed from server. |
| 64 | 53 | | public override string ConfigurationFileName => "Jellyfin.Plugin.MusicBrainz.xml"; |
| | 54 | |
|
| | 55 | | /// <inheritdoc /> |
| | 56 | | public IEnumerable<PluginPageInfo> GetPages() |
| | 57 | | { |
| | 58 | | yield return new PluginPageInfo |
| | 59 | | { |
| | 60 | | Name = Name, |
| | 61 | | EmbeddedResourcePath = GetType().Namespace + ".Configuration.config.html" |
| | 62 | | }; |
| | 63 | | } |
| | 64 | | } |