| | 1 | | #nullable disable |
| | 2 | | #pragma warning disable CS1591 |
| | 3 | |
|
| | 4 | | using System; |
| | 5 | | using System.Collections.Generic; |
| | 6 | | using MediaBrowser.Common.Configuration; |
| | 7 | | using MediaBrowser.Common.Plugins; |
| | 8 | | using MediaBrowser.Model.Plugins; |
| | 9 | | using MediaBrowser.Model.Serialization; |
| | 10 | |
|
| | 11 | | namespace MediaBrowser.Providers.Plugins.Omdb |
| | 12 | | { |
| | 13 | | public class Plugin : BasePlugin<PluginConfiguration>, IHasWebPages |
| | 14 | | { |
| | 15 | | public Plugin(IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer) |
| 21 | 16 | | : base(applicationPaths, xmlSerializer) |
| | 17 | | { |
| 21 | 18 | | Instance = this; |
| 21 | 19 | | } |
| | 20 | |
|
| | 21 | | public static Plugin Instance { get; private set; } |
| | 22 | |
|
| 24 | 23 | | public override Guid Id => new Guid("a628c0da-fac5-4c7e-9d1a-7134223f14c8"); |
| | 24 | |
|
| 29 | 25 | | public override string Name => "OMDb"; |
| | 26 | |
|
| 1 | 27 | | public override string Description => "Get metadata for movies and other video content from OMDb."; |
| | 28 | |
|
| | 29 | | // TODO remove when plugin removed from server. |
| 1 | 30 | | public override string ConfigurationFileName => "Jellyfin.Plugin.Omdb.xml"; |
| | 31 | |
|
| | 32 | | public IEnumerable<PluginPageInfo> GetPages() |
| | 33 | | { |
| | 34 | | yield return new PluginPageInfo |
| | 35 | | { |
| | 36 | | Name = Name, |
| | 37 | | EmbeddedResourcePath = GetType().Namespace + ".Configuration.config.html" |
| | 38 | | }; |
| | 39 | | } |
| | 40 | | } |
| | 41 | | } |