Iceshrimp.NET/Iceshrimp.Frontend/Core/ControllerModels/ProfileControllerModel.cs

38 lines
No EOL
1.4 KiB
C#

using Iceshrimp.Frontend.Core.Services;
using Iceshrimp.Shared.Schemas.Web;
using Microsoft.AspNetCore.Components.Forms;
namespace Iceshrimp.Frontend.Core.ControllerModels;
internal class ProfileControllerModel(ApiClient api)
{
public Task<UserProfileEntity> GetProfileAsync() =>
api.CallAsync<UserProfileEntity>(HttpMethod.Get, "/profile");
public Task UpdateProfileAsync(UserProfileEntity request) =>
api.CallAsync(HttpMethod.Put, "/profile", data: request);
public Task<string> GetAvatarUrlAsync() =>
api.CallAsync<string>(HttpMethod.Get, "/profile/avatar");
public Task UpdateAvatarAsync(IBrowserFile file) =>
api.CallAsync(HttpMethod.Post, "/profile/avatar", data: file);
public Task DeleteAvatarAsync() =>
api.CallAsync(HttpMethod.Delete, "/profile/avatar");
public Task<string> GetBannerUrlAsync() =>
api.CallAsync<string>(HttpMethod.Get, "/profile/banner");
public Task UpdateBannerAsync(IBrowserFile file) =>
api.CallAsync(HttpMethod.Post, "/profile/banner", data: file);
public Task DeleteBannerAsync() =>
api.CallAsync(HttpMethod.Delete, "/profile/banner");
public Task<string> GetDisplayNameAsync() =>
api.CallAsync<string>(HttpMethod.Get, "/profile/display_name");
public Task<string?> UpdateDisplayNameAsync(string displayName) =>
api.CallNullableAsync<string>(HttpMethod.Post, "/profile/display_name", data: displayName);
}