mirror of
				https://github.com/nsnail/IGeekFan.AspNetCore.Knife4jUI.git
				synced 2025-11-04 22:30:51 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Threading.Tasks;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using Microsoft.AspNetCore.Mvc;
 | 
						|
using IdentityServer4.Stores;
 | 
						|
using IdentityServer4.Services;
 | 
						|
using IdentityServer4.Models;
 | 
						|
 | 
						|
namespace OAuth2Integration.AuthServer.Controllers
 | 
						|
{
 | 
						|
    [ApiExplorerSettings(IgnoreApi = true)]
 | 
						|
    public class ConsentController : Controller
 | 
						|
    {
 | 
						|
        private readonly IIdentityServerInteractionService _interaction;
 | 
						|
        private readonly IClientStore _clientStore;
 | 
						|
        private readonly IResourceStore _resourceStore;
 | 
						|
 | 
						|
        public ConsentController(
 | 
						|
            IIdentityServerInteractionService interaction,
 | 
						|
            IClientStore clientStore,
 | 
						|
            IResourceStore resourceStore)
 | 
						|
        {
 | 
						|
            _interaction = interaction;
 | 
						|
            _clientStore = clientStore;
 | 
						|
            _resourceStore = resourceStore;
 | 
						|
        }
 | 
						|
 | 
						|
        [HttpGet("consent")]
 | 
						|
        public async Task<IActionResult> Consent(string returnUrl)
 | 
						|
        {
 | 
						|
            var request = await _interaction.GetAuthorizationContextAsync(returnUrl);
 | 
						|
            var client = await _clientStore.FindEnabledClientByIdAsync(request.ClientId);
 | 
						|
            var resource = await _resourceStore.FindApiResourceAsync("api");
 | 
						|
 | 
						|
            var viewModel = new ConsentViewModel
 | 
						|
            {
 | 
						|
                ReturnUrl = returnUrl,
 | 
						|
                ClientName = client.ClientName,
 | 
						|
                ScopesRequested = resource.Scopes.Where(s => request.ScopesRequested.Contains(s.Name))
 | 
						|
            };
 | 
						|
 | 
						|
            return View("/AuthServer/Views/Consent.cshtml", viewModel);
 | 
						|
        }
 | 
						|
 | 
						|
        [HttpPost("consent")]
 | 
						|
        public async Task<IActionResult> Consent([FromForm]ConsentViewModel viewModel)
 | 
						|
        {
 | 
						|
            var request = await _interaction.GetAuthorizationContextAsync(viewModel.ReturnUrl);
 | 
						|
 | 
						|
            // Communicate outcome of consent back to identityserver
 | 
						|
            var consentResponse = new ConsentResponse
 | 
						|
            {
 | 
						|
                ScopesConsented = viewModel.ScopesConsented
 | 
						|
            };
 | 
						|
            await _interaction.GrantConsentAsync(request, consentResponse);
 | 
						|
 | 
						|
            return Redirect(viewModel.ReturnUrl);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public class ConsentViewModel
 | 
						|
    {
 | 
						|
        public string ReturnUrl { get; set; }
 | 
						|
        public string ClientName { get; set; }
 | 
						|
        public IEnumerable<Scope> ScopesRequested { get; set; }
 | 
						|
        public string[] ScopesConsented { get; set; }
 | 
						|
    }
 | 
						|
}
 |