-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPlugin.cs
55 lines (45 loc) · 1.8 KB
/
Plugin.cs
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.IO;
using ComSkipper.Configuration;
using MediaBrowser.Common.Configuration;
using MediaBrowser.Common.Plugins;
using MediaBrowser.Model.Drawing;
using MediaBrowser.Model.Plugins;
using MediaBrowser.Model.Serialization;
namespace ComSkipper
{
public class Plugin : BasePlugin<PluginConfiguration>, IHasWebPages, IHasThumbImage
{
public Plugin(IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer) : base(applicationPaths, xmlSerializer)
{
Instance = this;
}
public override string Name => "Com Skipper";
public override string Description => "Commercial Skipper for Emby";
public static Plugin Instance { get; private set; }
private Guid _id = new Guid("1024CC72-802F-4EFB-89FB-F190AFF2A42E");
public override Guid Id => _id;
public Stream GetThumbImage()
{
var type = GetType();
return type.Assembly.GetManifestResourceStream(type.Namespace + ".logo.png");
}
public ImageFormat ThumbImageFormat => ImageFormat.Png;
public IEnumerable<PluginPageInfo> GetPages() => new[]
{
new PluginPageInfo
{
Name = "ComSkipperConfigurationPage",
EmbeddedResourcePath = GetType().Namespace + ".Configuration.ComSkipper.html"
},
new PluginPageInfo
{
Name = "ComSkipperConfigurationPageJS",
EmbeddedResourcePath = GetType().Namespace + ".Configuration.ComSkipper.js",
}
};
}
}