mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.3 KiB
38 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Volo.Abp.AspNetCore.Mvc;
|
|
using Volo.Abp.Authorization.Permissions;
|
|
using Volo.Abp.Json;
|
|
|
|
namespace BackendAdminApp.Host.Controllers
|
|
{
|
|
public class TestController : AbpController
|
|
{
|
|
private readonly IJsonSerializer _jsonSerializer;
|
|
private readonly IPermissionChecker _permissionChecker;
|
|
|
|
public TestController(IJsonSerializer jsonSerializer, IPermissionChecker permissionChecker)
|
|
{
|
|
_jsonSerializer = jsonSerializer;
|
|
_permissionChecker = permissionChecker;
|
|
}
|
|
|
|
[HttpGet]
|
|
public async Task<ActionResult> Index()
|
|
{
|
|
var newLine = Environment.NewLine + Environment.NewLine;
|
|
|
|
return Content(
|
|
"Claims: " + User.Claims.Select(c => $"{c.Type} = {c.Value}").JoinAsString(" | ") + newLine +
|
|
"CurrentUser: " + _jsonSerializer.Serialize(CurrentUser) + newLine +
|
|
"access_token: " + await HttpContext.GetTokenAsync("access_token") + newLine +
|
|
"isGranted: AbpIdentity.Users: " + await _permissionChecker.IsGrantedAsync("AbpIdentity.Users")
|
|
);
|
|
}
|
|
}
|
|
}
|