♻️ Replaced the SetCultureInfo with the new localization engine
This commit is contained in:
@@ -142,7 +142,7 @@ public class ChatRoomController(
|
|||||||
|
|
||||||
var invitedMember = dmRoom.Members.First(m => m.AccountId == request.RelatedUserId);
|
var invitedMember = dmRoom.Members.First(m => m.AccountId == request.RelatedUserId);
|
||||||
invitedMember.ChatRoom = dmRoom;
|
invitedMember.ChatRoom = dmRoom;
|
||||||
await _SendInviteNotify(invitedMember, currentUser);
|
await SendInviteNotify(invitedMember, currentUser);
|
||||||
|
|
||||||
return Ok(dmRoom);
|
return Ok(dmRoom);
|
||||||
}
|
}
|
||||||
@@ -583,7 +583,7 @@ public class ChatRoomController(
|
|||||||
existingMember.JoinedAt = null;
|
existingMember.JoinedAt = null;
|
||||||
db.ChatMembers.Update(existingMember);
|
db.ChatMembers.Update(existingMember);
|
||||||
await db.SaveChangesAsync();
|
await db.SaveChangesAsync();
|
||||||
await _SendInviteNotify(existingMember, currentUser);
|
await SendInviteNotify(existingMember, currentUser);
|
||||||
|
|
||||||
_ = als.CreateActionLogAsync(new CreateActionLogRequest
|
_ = als.CreateActionLogAsync(new CreateActionLogRequest
|
||||||
{
|
{
|
||||||
@@ -612,7 +612,7 @@ public class ChatRoomController(
|
|||||||
await db.SaveChangesAsync();
|
await db.SaveChangesAsync();
|
||||||
|
|
||||||
newMember.ChatRoom = chatRoom;
|
newMember.ChatRoom = chatRoom;
|
||||||
await _SendInviteNotify(newMember, currentUser);
|
await SendInviteNotify(newMember, currentUser);
|
||||||
|
|
||||||
_ = als.CreateActionLogAsync(new CreateActionLogRequest
|
_ = als.CreateActionLogAsync(new CreateActionLogRequest
|
||||||
{
|
{
|
||||||
@@ -1003,10 +1003,9 @@ public class ChatRoomController(
|
|||||||
return NoContent();
|
return NoContent();
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task _SendInviteNotify(SnChatMember member, Account sender)
|
private async Task SendInviteNotify(SnChatMember member, Account sender)
|
||||||
{
|
{
|
||||||
var account = await accounts.GetAccountAsync(new GetAccountRequest { Id = member.AccountId.ToString() });
|
var account = await accounts.GetAccountAsync(new GetAccountRequest { Id = member.AccountId.ToString() });
|
||||||
CultureService.SetCultureInfo(account);
|
|
||||||
var title = "Chat Invite";
|
var title = "Chat Invite";
|
||||||
var body = member.ChatRoom.Type == ChatRoomType.DirectMessage
|
var body = member.ChatRoom.Type == ChatRoomType.DirectMessage
|
||||||
? $"{sender.Nick} sent you a direct message"
|
? $"{sender.Nick} sent you a direct message"
|
||||||
|
|||||||
@@ -302,9 +302,9 @@ public class AccountEventService(
|
|||||||
|
|
||||||
private const string CheckInLockKey = "checkin:lock:";
|
private const string CheckInLockKey = "checkin:lock:";
|
||||||
|
|
||||||
public async Task<SnCheckInResult> CheckInDaily(SnAccount user, Instant? backdated = null)
|
public async Task<SnCheckInResult> CheckInDaily(SnAccount account, Instant? backdated = null)
|
||||||
{
|
{
|
||||||
var lockKey = $"{CheckInLockKey}{user.Id}";
|
var lockKey = $"{CheckInLockKey}{account.Id}";
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -322,12 +322,9 @@ public class AccountEventService(
|
|||||||
await using var lockObj =
|
await using var lockObj =
|
||||||
await cache.AcquireLockAsync(lockKey, TimeSpan.FromMinutes(1), TimeSpan.FromSeconds(5)) ??
|
await cache.AcquireLockAsync(lockKey, TimeSpan.FromMinutes(1), TimeSpan.FromSeconds(5)) ??
|
||||||
throw new InvalidOperationException("Check-in was in progress.");
|
throw new InvalidOperationException("Check-in was in progress.");
|
||||||
var cultureInfo = new CultureInfo(user.Language, false);
|
|
||||||
CultureInfo.CurrentCulture = cultureInfo;
|
|
||||||
CultureInfo.CurrentUICulture = cultureInfo;
|
|
||||||
|
|
||||||
var accountProfile = await db.AccountProfiles
|
var accountProfile = await db.AccountProfiles
|
||||||
.Where(x => x.AccountId == user.Id)
|
.Where(x => x.AccountId == account.Id)
|
||||||
.Select(x => new { x.Birthday, x.TimeZone })
|
.Select(x => new { x.Birthday, x.TimeZone })
|
||||||
.FirstOrDefaultAsync();
|
.FirstOrDefaultAsync();
|
||||||
|
|
||||||
@@ -360,7 +357,7 @@ public class AccountEventService(
|
|||||||
{
|
{
|
||||||
IsPositive = true,
|
IsPositive = true,
|
||||||
Title = localizer.Get("fortuneTipSpecialTitleBirthday"),
|
Title = localizer.Get("fortuneTipSpecialTitleBirthday"),
|
||||||
Content = localizer.Get("fortuneTipSpecialContentBirthday", args: new { user.Nick }),
|
Content = localizer.Get("fortuneTipSpecialContentBirthday", args: new { account.Nick }),
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
@@ -374,8 +371,8 @@ public class AccountEventService(
|
|||||||
tips = positiveIndices.Select(index => new CheckInFortuneTip
|
tips = positiveIndices.Select(index => new CheckInFortuneTip
|
||||||
{
|
{
|
||||||
IsPositive = true,
|
IsPositive = true,
|
||||||
Title = localizer.Get($"fortuneTipPositiveTitle{index}"),
|
Title = localizer.Get($"fortuneTipPositiveTitle{index}", account.Language),
|
||||||
Content = localizer.Get($"fortuneTipPositiveContent{index}")
|
Content = localizer.Get($"fortuneTipPositiveContent{index}", account.Language)
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
// Generate 2 negative tips
|
// Generate 2 negative tips
|
||||||
@@ -387,8 +384,8 @@ public class AccountEventService(
|
|||||||
tips.AddRange(negativeIndices.Select(index => new CheckInFortuneTip
|
tips.AddRange(negativeIndices.Select(index => new CheckInFortuneTip
|
||||||
{
|
{
|
||||||
IsPositive = false,
|
IsPositive = false,
|
||||||
Title = localizer.Get($"fortuneTipNegativeTitle{index}"),
|
Title = localizer.Get($"fortuneTipNegativeTitle{index}", account.Language),
|
||||||
Content = localizer.Get($"fortuneTipNegativeContent{index}")
|
Content = localizer.Get($"fortuneTipNegativeContent{index}", account.Language)
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// The 5 is specialized, keep it alone.
|
// The 5 is specialized, keep it alone.
|
||||||
@@ -409,7 +406,7 @@ public class AccountEventService(
|
|||||||
{
|
{
|
||||||
Tips = tips,
|
Tips = tips,
|
||||||
Level = checkInLevel,
|
Level = checkInLevel,
|
||||||
AccountId = user.Id,
|
AccountId = account.Id,
|
||||||
RewardExperience = 100,
|
RewardExperience = 100,
|
||||||
RewardPoints = backdated.HasValue ? null : 10,
|
RewardPoints = backdated.HasValue ? null : 10,
|
||||||
BackdatedFrom = backdated.HasValue ? SystemClock.Instance.GetCurrentInstant() : null,
|
BackdatedFrom = backdated.HasValue ? SystemClock.Instance.GetCurrentInstant() : null,
|
||||||
@@ -421,7 +418,7 @@ public class AccountEventService(
|
|||||||
if (result.RewardPoints.HasValue)
|
if (result.RewardPoints.HasValue)
|
||||||
await payment.CreateTransactionWithAccount(
|
await payment.CreateTransactionWithAccount(
|
||||||
null,
|
null,
|
||||||
user.Id.ToString(),
|
account.Id.ToString(),
|
||||||
WalletCurrency.SourcePoint,
|
WalletCurrency.SourcePoint,
|
||||||
result.RewardPoints.Value.ToString(CultureInfo.InvariantCulture),
|
result.RewardPoints.Value.ToString(CultureInfo.InvariantCulture),
|
||||||
$"Check-in reward on {now:yyyy/MM/dd}"
|
$"Check-in reward on {now:yyyy/MM/dd}"
|
||||||
@@ -439,7 +436,7 @@ public class AccountEventService(
|
|||||||
"check-in",
|
"check-in",
|
||||||
$"Check-in reward on {now:yyyy/MM/dd}",
|
$"Check-in reward on {now:yyyy/MM/dd}",
|
||||||
result.RewardExperience.Value,
|
result.RewardExperience.Value,
|
||||||
user.Id
|
account.Id
|
||||||
);
|
);
|
||||||
|
|
||||||
// The lock will be automatically released by the await using statement
|
// The lock will be automatically released by the await using statement
|
||||||
|
|||||||
@@ -34,18 +34,6 @@ public class AccountService(
|
|||||||
INatsConnection nats
|
INatsConnection nats
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
public static void SetCultureInfo(SnAccount account)
|
|
||||||
{
|
|
||||||
SetCultureInfo(account.Language);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SetCultureInfo(string? languageCode)
|
|
||||||
{
|
|
||||||
var info = new CultureInfo(languageCode ?? "en-us", false);
|
|
||||||
CultureInfo.CurrentCulture = info;
|
|
||||||
CultureInfo.CurrentUICulture = info;
|
|
||||||
}
|
|
||||||
|
|
||||||
public const string AccountCachePrefix = "account:";
|
public const string AccountCachePrefix = "account:";
|
||||||
|
|
||||||
public async Task PurgeAccountCache(SnAccount account)
|
public async Task PurgeAccountCache(SnAccount account)
|
||||||
|
|||||||
@@ -87,7 +87,6 @@ public class MagicSpellService(
|
|||||||
.Where(a => a.Id == spell.AccountId)
|
.Where(a => a.Id == spell.AccountId)
|
||||||
.Select(a => a.Language)
|
.Select(a => a.Language)
|
||||||
.FirstOrDefaultAsync();
|
.FirstOrDefaultAsync();
|
||||||
AccountService.SetCultureInfo(accountLanguage);
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ using System.ComponentModel.DataAnnotations;
|
|||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using NodaTime;
|
using NodaTime;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using DysonNetwork.Pass.Localization;
|
|
||||||
using DysonNetwork.Shared.Geometry;
|
using DysonNetwork.Shared.Geometry;
|
||||||
using DysonNetwork.Shared.Proto;
|
using DysonNetwork.Shared.Proto;
|
||||||
using DysonNetwork.Shared.Localization;
|
using DysonNetwork.Shared.Localization;
|
||||||
@@ -231,7 +230,6 @@ public class AuthController(
|
|||||||
|
|
||||||
if (challenge.StepRemain == 0)
|
if (challenge.StepRemain == 0)
|
||||||
{
|
{
|
||||||
AccountService.SetCultureInfo(challenge.Account);
|
|
||||||
await pusher.SendPushNotificationToUserAsync(new SendPushNotificationToUserRequest
|
await pusher.SendPushNotificationToUserAsync(new SendPushNotificationToUserRequest
|
||||||
{
|
{
|
||||||
Notification = new PushNotification
|
Notification = new PushNotification
|
||||||
|
|||||||
@@ -46,8 +46,6 @@ public class RealmService(
|
|||||||
|
|
||||||
if (account == null) throw new InvalidOperationException("Account not found");
|
if (account == null) throw new InvalidOperationException("Account not found");
|
||||||
|
|
||||||
CultureService.SetCultureInfo(account.Language);
|
|
||||||
|
|
||||||
await pusher.SendPushNotificationToUserAsync(
|
await pusher.SendPushNotificationToUserAsync(
|
||||||
new SendPushNotificationToUserRequest
|
new SendPushNotificationToUserRequest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -118,8 +118,6 @@ public class RealmServiceGrpc(
|
|||||||
|
|
||||||
if (account == null) throw new RpcException(new Status(StatusCode.NotFound, "Account not found"));
|
if (account == null) throw new RpcException(new Status(StatusCode.NotFound, "Account not found"));
|
||||||
|
|
||||||
CultureService.SetCultureInfo(account.Language);
|
|
||||||
|
|
||||||
await pusher.SendPushNotificationToUserAsync(
|
await pusher.SendPushNotificationToUserAsync(
|
||||||
new SendPushNotificationToUserRequest
|
new SendPushNotificationToUserRequest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
using System.Globalization;
|
|
||||||
using DysonNetwork.Shared.Proto;
|
|
||||||
|
|
||||||
namespace DysonNetwork.Shared;
|
|
||||||
|
|
||||||
public static class CultureService
|
|
||||||
{
|
|
||||||
public static void SetCultureInfo(string? languageCode)
|
|
||||||
{
|
|
||||||
var info = new CultureInfo(languageCode ?? "en-us", false);
|
|
||||||
CultureInfo.CurrentCulture = info;
|
|
||||||
CultureInfo.CurrentUICulture = info;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SetCultureInfo(Account account)
|
|
||||||
{
|
|
||||||
SetCultureInfo(account.Language);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -222,7 +222,6 @@ public partial class PostService(
|
|||||||
foreach (var member in queryResponse.Accounts)
|
foreach (var member in queryResponse.Accounts)
|
||||||
{
|
{
|
||||||
if (member is null) continue;
|
if (member is null) continue;
|
||||||
CultureService.SetCultureInfo(member);
|
|
||||||
await nty.SendPushNotificationToUserAsync(
|
await nty.SendPushNotificationToUserAsync(
|
||||||
new SendPushNotificationToUserRequest
|
new SendPushNotificationToUserRequest
|
||||||
{
|
{
|
||||||
@@ -230,7 +229,7 @@ public partial class PostService(
|
|||||||
Notification = new PushNotification
|
Notification = new PushNotification
|
||||||
{
|
{
|
||||||
Topic = "post.replies",
|
Topic = "post.replies",
|
||||||
Title = localizer.Get("postReplyTitle", args: new { user = sender!.Nick }),
|
Title = localizer.Get("postReplyTitle", locale: member.Language, args: new { user = sender!.Nick }),
|
||||||
Body = ChopPostForNotification(post).content,
|
Body = ChopPostForNotification(post).content,
|
||||||
IsSavable = true,
|
IsSavable = true,
|
||||||
ActionUri = $"/posts/{post.Id}"
|
ActionUri = $"/posts/{post.Id}"
|
||||||
@@ -695,7 +694,6 @@ public partial class PostService(
|
|||||||
foreach (var member in queryResponse.Accounts)
|
foreach (var member in queryResponse.Accounts)
|
||||||
{
|
{
|
||||||
if (member is null) continue;
|
if (member is null) continue;
|
||||||
CultureService.SetCultureInfo(member);
|
|
||||||
|
|
||||||
await nty.SendPushNotificationToUserAsync(
|
await nty.SendPushNotificationToUserAsync(
|
||||||
new SendPushNotificationToUserRequest
|
new SendPushNotificationToUserRequest
|
||||||
@@ -704,10 +702,10 @@ public partial class PostService(
|
|||||||
Notification = new PushNotification
|
Notification = new PushNotification
|
||||||
{
|
{
|
||||||
Topic = "posts.reactions.new",
|
Topic = "posts.reactions.new",
|
||||||
Title = localizer.Get("postReactTitle", args: new { user = sender.Nick }),
|
Title = localizer.Get("postReactTitle", locale: member.Language, args: new { user = sender.Nick }),
|
||||||
Body = string.IsNullOrWhiteSpace(post.Title)
|
Body = string.IsNullOrWhiteSpace(post.Title)
|
||||||
? localizer.Get("postReactBody", args: new { user = sender.Nick, reaction = reaction.Symbol })
|
? localizer.Get("postReactBody", locale: member.Language, args: new { user = sender.Nick, reaction = reaction.Symbol })
|
||||||
: localizer.Get("postReactContentBody", args: new { user = sender.Nick, reaction = reaction.Symbol, title = post.Title }),
|
: localizer.Get("postReactContentBody", locale: member.Language, args: new { user = sender.Nick, reaction = reaction.Symbol, title = post.Title }),
|
||||||
IsSavable = true,
|
IsSavable = true,
|
||||||
ActionUri = $"/posts/{post.Id}"
|
ActionUri = $"/posts/{post.Id}"
|
||||||
}
|
}
|
||||||
@@ -961,7 +959,7 @@ public partial class PostService(
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (post.Visibility == Shared.Models.PostVisibility.Friends &&
|
if (post.Visibility == Shared.Models.PostVisibility.Friends &&
|
||||||
!(post.Publisher.AccountId.HasValue && userFriends.Contains(post.Publisher.AccountId.Value) || isMember))
|
!(post.Publisher is not null && post.Publisher.AccountId.HasValue && userFriends.Contains(post.Publisher.AccountId.Value) || isMember))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Public and Unlisted are allowed
|
// Public and Unlisted are allowed
|
||||||
@@ -1148,7 +1146,6 @@ public partial class PostService(
|
|||||||
foreach (var member in queryResponse.Accounts)
|
foreach (var member in queryResponse.Accounts)
|
||||||
{
|
{
|
||||||
if (member is null) continue;
|
if (member is null) continue;
|
||||||
CultureService.SetCultureInfo(member);
|
|
||||||
|
|
||||||
await nty.SendPushNotificationToUserAsync(
|
await nty.SendPushNotificationToUserAsync(
|
||||||
new SendPushNotificationToUserRequest
|
new SendPushNotificationToUserRequest
|
||||||
@@ -1157,10 +1154,10 @@ public partial class PostService(
|
|||||||
Notification = new PushNotification
|
Notification = new PushNotification
|
||||||
{
|
{
|
||||||
Topic = "posts.awards.new",
|
Topic = "posts.awards.new",
|
||||||
Title = localizer.Get("postAwardedTitle", args: new { user = sender.Nick }),
|
Title = localizer.Get("postAwardedTitle", locale: member.Language, args: new { user = sender.Nick }),
|
||||||
Body = string.IsNullOrWhiteSpace(post.Title)
|
Body = string.IsNullOrWhiteSpace(post.Title)
|
||||||
? localizer.Get("postAwardedBody", args: new { user = sender.Nick, amount })
|
? localizer.Get("postAwardedBody", locale: member.Language, args: new { user = sender.Nick, amount })
|
||||||
: localizer.Get("postAwardedContentBody", args: new { user = sender.Nick, amount, title = post.Title }),
|
: localizer.Get("postAwardedContentBody", locale: member.Language, args: new { user = sender.Nick, amount, title = post.Title }),
|
||||||
IsSavable = true,
|
IsSavable = true,
|
||||||
ActionUri = $"/posts/{post.Id}"
|
ActionUri = $"/posts/{post.Id}"
|
||||||
}
|
}
|
||||||
@@ -1209,9 +1206,9 @@ public static class PostQueryExtensions
|
|||||||
.Where(e => (e.PublishedAt != null && now >= e.PublishedAt) ||
|
.Where(e => (e.PublishedAt != null && now >= e.PublishedAt) ||
|
||||||
(e.PublisherId.HasValue && publishersId.Contains(e.PublisherId.Value)))
|
(e.PublisherId.HasValue && publishersId.Contains(e.PublisherId.Value)))
|
||||||
.Where(e => e.Visibility != Shared.Models.PostVisibility.Private ||
|
.Where(e => e.Visibility != Shared.Models.PostVisibility.Private ||
|
||||||
publishersId.Contains(e.PublisherId.Value))
|
publishersId.Contains(e.PublisherId!.Value))
|
||||||
.Where(e => e.Visibility != Shared.Models.PostVisibility.Friends ||
|
.Where(e => e.Visibility != Shared.Models.PostVisibility.Friends ||
|
||||||
(e.Publisher.AccountId != null && userFriends.Contains(e.Publisher.AccountId.Value)) ||
|
(e.Publisher!.AccountId != null && userFriends.Contains(e.Publisher.AccountId.Value)) ||
|
||||||
publishersId.Contains(e.PublisherId.Value));
|
publishersId.Contains(e.PublisherId!.Value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -114,11 +114,10 @@ public class PublisherSubscriptionService(
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
CultureService.SetCultureInfo(target.Key);
|
|
||||||
var notification = new PushNotification
|
var notification = new PushNotification
|
||||||
{
|
{
|
||||||
Topic = "posts.new",
|
Topic = "posts.new",
|
||||||
Title = localizer.Get("postSubscriptionTitle", args: new { publisher = post.Publisher!.Nick, title }),
|
Title = localizer.Get("postSubscriptionTitle", locale: target.Key, args: new { publisher = post.Publisher!.Nick, title }),
|
||||||
Body = message,
|
Body = message,
|
||||||
Meta = GrpcTypeHelper.ConvertObjectToByteString(data),
|
Meta = GrpcTypeHelper.ConvertObjectToByteString(data),
|
||||||
IsSavable = true,
|
IsSavable = true,
|
||||||
|
|||||||
Reference in New Issue
Block a user