mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-16 18:50:13 +00:00
Migrate GetSystemByToken
This commit is contained in:
parent
c927967c3b
commit
1d1b7b8716
1 changed files with 7 additions and 4 deletions
|
|
@ -1,5 +1,8 @@
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
using Dapper;
|
||||||
|
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
|
|
||||||
using PluralKit.Core;
|
using PluralKit.Core;
|
||||||
|
|
@ -10,11 +13,11 @@ namespace PluralKit.API
|
||||||
{
|
{
|
||||||
public PKSystem CurrentSystem { get; set; }
|
public PKSystem CurrentSystem { get; set; }
|
||||||
|
|
||||||
private IDataStore _data;
|
private readonly IDatabase _db;
|
||||||
|
|
||||||
public TokenAuthService(IDataStore data)
|
public TokenAuthService(IDatabase db)
|
||||||
{
|
{
|
||||||
_data = data;
|
_db = db;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task InvokeAsync(HttpContext context, RequestDelegate next)
|
public async Task InvokeAsync(HttpContext context, RequestDelegate next)
|
||||||
|
|
@ -22,7 +25,7 @@ namespace PluralKit.API
|
||||||
var token = context.Request.Headers["Authorization"].FirstOrDefault();
|
var token = context.Request.Headers["Authorization"].FirstOrDefault();
|
||||||
if (token != null)
|
if (token != null)
|
||||||
{
|
{
|
||||||
CurrentSystem = await _data.GetSystemByToken(token);
|
CurrentSystem = await _db.Execute(c => c.QueryFirstOrDefaultAsync("select * from systems where token = @token", new { token }));
|
||||||
}
|
}
|
||||||
|
|
||||||
await next.Invoke(context);
|
await next.Invoke(context);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue