mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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;
 | |
|         }
 | |
|     }
 | |
| }
 |