for *some reason*, coravel locks a persistent job queue behind a paywall. this means that if the server ever crashes, all pending jobs are lost. this is... not good, so we're switching to hangfire for that instead. coravel is still used for emails, though. BREAKING CHANGE: Foxnouns.NET now requires Redis to work. the EFCore storage for hangfire doesn't work well enough, unfortunately.
113 lines
3.9 KiB
C#
113 lines
3.9 KiB
C#
// Copyright (C) 2023-present sam/u1f320 (vulpine.solutions)
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published
|
|
// by the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
using Foxnouns.Backend.Database;
|
|
using Foxnouns.Backend.Database.Models;
|
|
using Foxnouns.Backend.Services;
|
|
using Foxnouns.Backend.Utils;
|
|
using Newtonsoft.Json;
|
|
using NodaTime;
|
|
|
|
namespace Foxnouns.Backend.Extensions;
|
|
|
|
public static class KeyCacheExtensions
|
|
{
|
|
public static async Task<string> GenerateAuthStateAsync(this KeyCacheService keyCacheService)
|
|
{
|
|
string state = AuthUtils.RandomToken();
|
|
await keyCacheService.SetKeyAsync($"oauth_state:{state}", "", Duration.FromMinutes(10));
|
|
return state;
|
|
}
|
|
|
|
public static async Task ValidateAuthStateAsync(
|
|
this KeyCacheService keyCacheService,
|
|
string state
|
|
)
|
|
{
|
|
string? val = await keyCacheService.GetKeyAsync($"oauth_state:{state}");
|
|
if (val == null)
|
|
throw new ApiError.BadRequest("Invalid OAuth state");
|
|
}
|
|
|
|
public static async Task<string> GenerateRegisterEmailStateAsync(
|
|
this KeyCacheService keyCacheService,
|
|
string email,
|
|
Snowflake? userId = null
|
|
)
|
|
{
|
|
string state = AuthUtils.RandomToken();
|
|
await keyCacheService.SetKeyAsync(
|
|
$"email_state:{state}",
|
|
new RegisterEmailState(email, userId),
|
|
Duration.FromDays(1)
|
|
);
|
|
return state;
|
|
}
|
|
|
|
public static async Task<RegisterEmailState?> GetRegisterEmailStateAsync(
|
|
this KeyCacheService keyCacheService,
|
|
string state
|
|
) => await keyCacheService.GetKeyAsync<RegisterEmailState>($"email_state:{state}");
|
|
|
|
public static async Task<string> GenerateAddExtraAccountStateAsync(
|
|
this KeyCacheService keyCacheService,
|
|
AuthType authType,
|
|
Snowflake userId,
|
|
string? instance = null
|
|
)
|
|
{
|
|
string state = AuthUtils.RandomToken();
|
|
await keyCacheService.SetKeyAsync(
|
|
$"add_account:{state}",
|
|
new AddExtraAccountState(authType, userId, instance),
|
|
Duration.FromDays(1)
|
|
);
|
|
return state;
|
|
}
|
|
|
|
public static async Task<AddExtraAccountState?> GetAddExtraAccountStateAsync(
|
|
this KeyCacheService keyCacheService,
|
|
string state
|
|
) => await keyCacheService.GetKeyAsync<AddExtraAccountState>($"add_account:{state}", true);
|
|
|
|
public static async Task<string> GenerateForgotPasswordStateAsync(
|
|
this KeyCacheService keyCacheService,
|
|
string email,
|
|
Snowflake userId
|
|
)
|
|
{
|
|
string state = AuthUtils.RandomToken();
|
|
await keyCacheService.SetKeyAsync(
|
|
$"forgot_password:{state}",
|
|
new ForgotPasswordState(email, userId),
|
|
Duration.FromHours(1)
|
|
);
|
|
return state;
|
|
}
|
|
|
|
public static async Task<ForgotPasswordState?> GetForgotPasswordStateAsync(
|
|
this KeyCacheService keyCacheService,
|
|
string state,
|
|
bool delete = true
|
|
) => await keyCacheService.GetKeyAsync<ForgotPasswordState>($"forgot_password:{state}", delete);
|
|
}
|
|
|
|
public record RegisterEmailState(
|
|
string Email,
|
|
[property: JsonProperty(NullValueHandling = NullValueHandling.Ignore)] Snowflake? ExistingUserId
|
|
);
|
|
|
|
public record ForgotPasswordState(string Email, Snowflake UserId);
|
|
|
|
public record AddExtraAccountState(AuthType AuthType, Snowflake UserId, string? Instance = null);
|