aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/InvalidAuthProvider.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2019-06-09 15:36:25 -0400
committerGitHub <noreply@github.com>2019-06-09 15:36:25 -0400
commit06834fefef66b5fe29d0edf039c40dacb132af42 (patch)
tree119ef894b06c1380f6172b05ef54a844a416adab /Emby.Server.Implementations/Library/InvalidAuthProvider.cs
parent6f99ed39551facba97e12224f099dc557bffaee0 (diff)
parent2946ae10092cddadade4c84cfa000129bf117e03 (diff)
Merge pull request #1447 from joshuaboniface/implement-invalidauth
Implement InvalidAuthProvider
Diffstat (limited to 'Emby.Server.Implementations/Library/InvalidAuthProvider.cs')
-rw-r--r--Emby.Server.Implementations/Library/InvalidAuthProvider.cs47
1 files changed, 47 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Library/InvalidAuthProvider.cs b/Emby.Server.Implementations/Library/InvalidAuthProvider.cs
new file mode 100644
index 000000000..25d233137
--- /dev/null
+++ b/Emby.Server.Implementations/Library/InvalidAuthProvider.cs
@@ -0,0 +1,47 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Threading.Tasks;
+using MediaBrowser.Controller.Authentication;
+using MediaBrowser.Controller.Entities;
+using MediaBrowser.Controller.Net;
+
+namespace Emby.Server.Implementations.Library
+{
+ public class InvalidAuthProvider : IAuthenticationProvider
+ {
+ public string Name => "InvalidOrMissingAuthenticationProvider";
+
+ public bool IsEnabled => true;
+
+ public Task<ProviderAuthenticationResult> Authenticate(string username, string password)
+ {
+ throw new SecurityException("User Account cannot login with this provider. The Normal provider for this user cannot be found");
+ }
+
+ public Task<bool> HasPassword(User user)
+ {
+ return Task.FromResult(true);
+ }
+
+ public Task ChangePassword(User user, string newPassword)
+ {
+ return Task.CompletedTask;
+ }
+
+ public void ChangeEasyPassword(User user, string newPassword, string newPasswordHash)
+ {
+ // Nothing here
+ }
+
+ public string GetPasswordHash(User user)
+ {
+ return string.Empty;
+ }
+
+ public string GetEasyPasswordHash(User user)
+ {
+ return string.Empty;
+ }
+ }
+}