Repository URL to install this package:
Version:
2025.5.1 ▾
|
/*
* Copyright 2016 Game Server Services, Inc. or its affiliates. All Rights
* Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*
* deny overwrite
*/
// ReSharper disable RedundantNameQualifier
// ReSharper disable RedundantUsingDirective
// ReSharper disable CheckNamespace
// ReSharper disable PartialTypeWithSinglePart
// ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedAutoPropertyAccessor.Global
// ReSharper disable UseObjectOrCollectionInitializer
// ReSharper disable ArrangeThisQualifier
// ReSharper disable NotAccessedField.Local
#pragma warning disable 1998
#pragma warning disable CS0169, CS0168
using System;
using System.Linq;
using System.Text.RegularExpressions;
using Gs2.Core.Model;
using Gs2.Core.Net;
using Gs2.Gs2Account.Domain.Iterator;
using Gs2.Gs2Account.Model.Cache;
using Gs2.Gs2Account.Request;
using Gs2.Gs2Account.Result;
using Gs2.Gs2Auth.Model;
using Gs2.Util.LitJson;
using Gs2.Core;
using Gs2.Core.Domain;
using Gs2.Core.Exception;
using Gs2.Core.Util;
#if UNITY_2017_1_OR_NEWER
using UnityEngine;
using UnityEngine.Scripting;
using System.Collections;
#if GS2_ENABLE_UNITASK
using Cysharp.Threading;
using Cysharp.Threading.Tasks;
using Cysharp.Threading.Tasks.Linq;
using System.Collections.Generic;
#endif
#else
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
#endif
namespace Gs2.Gs2Account.Domain.Model
{
public partial class AccountDomain {
private readonly Gs2.Core.Domain.Gs2 _gs2;
private readonly Gs2AccountRestClient _client;
public string NamespaceName { get; } = null!;
public string UserId { get; } = null!;
public Gs2.Gs2Account.Model.BanStatus[] BanStatuses { get; set; } = null!;
public string Body { get; set; } = null!;
public string Signature { get; set; } = null!;
public string AuthorizationUrl { get; set; } = null!;
public string NextPageToken { get; set; } = null!;
public AccountDomain(
Gs2.Core.Domain.Gs2 gs2,
string namespaceName,
string userId
) {
this._gs2 = gs2;
this._client = new Gs2AccountRestClient(
gs2.RestSession
);
this.NamespaceName = namespaceName;
this.UserId = userId;
}
#if UNITY_2017_1_OR_NEWER
public Gs2Iterator<Gs2.Gs2Account.Model.TakeOver> TakeOvers(
string timeOffsetToken = null
)
{
return new DescribeTakeOversByUserIdIterator(
this._gs2,
this._client,
this.NamespaceName,
this.UserId,
timeOffsetToken
);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if GS2_ENABLE_UNITASK
public IUniTaskAsyncEnumerable<Gs2.Gs2Account.Model.TakeOver> TakeOversAsync(
#else
public DescribeTakeOversByUserIdIterator TakeOversAsync(
#endif
string timeOffsetToken = null
)
{
return new DescribeTakeOversByUserIdIterator(
this._gs2,
this._client,
this.NamespaceName,
this.UserId,
timeOffsetToken
#if GS2_ENABLE_UNITASK
).GetAsyncEnumerator();
#else
);
#endif
}
#endif
public ulong SubscribeTakeOvers(
Action<Gs2.Gs2Account.Model.TakeOver[]> callback
)
{
return this._gs2.Cache.ListSubscribe<Gs2.Gs2Account.Model.TakeOver>(
(null as Gs2.Gs2Account.Model.TakeOver).CacheParentKey(
this.NamespaceName,
this.UserId
),
callback,
() =>
{
#if UNITY_2017_1_OR_NEWER && GS2_ENABLE_UNITASK
async UniTask Impl() {
try {
await UniTask.SwitchToMainThread();
callback.Invoke(await TakeOversAsync().ToArrayAsync());
}
catch (System.Exception) {
// ignored
}
}
Impl().Forget();
#endif
}
);
}
#if UNITY_2017_1_OR_NEWER && GS2_ENABLE_UNITASK
public async UniTask<ulong> SubscribeTakeOversWithInitialCallAsync(
Action<Gs2.Gs2Account.Model.TakeOver[]> callback
)
{
var items = await TakeOversAsync(
).ToArrayAsync();
var callbackId = SubscribeTakeOvers(
callback
);
callback.Invoke(items);
return callbackId;
}
#endif
public void UnsubscribeTakeOvers(
ulong callbackId
)
{
this._gs2.Cache.ListUnsubscribe<Gs2.Gs2Account.Model.TakeOver>(
(null as Gs2.Gs2Account.Model.TakeOver).CacheParentKey(
this.NamespaceName,
this.UserId
),
callbackId
);
}
public void InvalidateTakeOvers(
)
{
this._gs2.Cache.ClearListCache<Gs2.Gs2Account.Model.TakeOver>(
(null as Gs2.Gs2Account.Model.TakeOver).CacheParentKey(
this.NamespaceName,
this.UserId
)
);
}
public Gs2.Gs2Account.Domain.Model.TakeOverDomain TakeOver(
int? type
) {
return new Gs2.Gs2Account.Domain.Model.TakeOverDomain(
this._gs2,
this.NamespaceName,
this.UserId,
type
);
}
public Gs2.Gs2Account.Domain.Model.DataOwnerDomain DataOwner(
) {
return new Gs2.Gs2Account.Domain.Model.DataOwnerDomain(
this._gs2,
this.NamespaceName,
this.UserId
);
}
#if UNITY_2017_1_OR_NEWER
public Gs2Iterator<Gs2.Gs2Account.Model.PlatformId> PlatformIds(
string timeOffsetToken = null
)
{
return new DescribePlatformIdsByUserIdIterator(
this._gs2,
this._client,
this.NamespaceName,
this.UserId,
timeOffsetToken
);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if GS2_ENABLE_UNITASK
public IUniTaskAsyncEnumerable<Gs2.Gs2Account.Model.PlatformId> PlatformIdsAsync(
#else
public DescribePlatformIdsByUserIdIterator PlatformIdsAsync(
#endif
string timeOffsetToken = null
)
{
return new DescribePlatformIdsByUserIdIterator(
this._gs2,
this._client,
this.NamespaceName,
this.UserId,
timeOffsetToken
#if GS2_ENABLE_UNITASK
).GetAsyncEnumerator();
#else
);
#endif
}
#endif
public ulong SubscribePlatformIds(
Action<Gs2.Gs2Account.Model.PlatformId[]> callback
)
{
return this._gs2.Cache.ListSubscribe<Gs2.Gs2Account.Model.PlatformId>(
(null as Gs2.Gs2Account.Model.PlatformId).CacheParentKey(
this.NamespaceName,
this.UserId
),
callback,
() =>
{
#if UNITY_2017_1_OR_NEWER && GS2_ENABLE_UNITASK
async UniTask Impl() {
try {
await UniTask.SwitchToMainThread();
callback.Invoke(await PlatformIdsAsync().ToArrayAsync());
}
catch (System.Exception) {
// ignored
}
}
Impl().Forget();
#endif
}
);
}
#if UNITY_2017_1_OR_NEWER && GS2_ENABLE_UNITASK
public async UniTask<ulong> SubscribePlatformIdsWithInitialCallAsync(
Action<Gs2.Gs2Account.Model.PlatformId[]> callback
)
{
var items = await PlatformIdsAsync(
).ToArrayAsync();
var callbackId = SubscribePlatformIds(
callback
);
callback.Invoke(items);
return callbackId;
}
#endif
public void UnsubscribePlatformIds(
ulong callbackId
)
{
this._gs2.Cache.ListUnsubscribe<Gs2.Gs2Account.Model.PlatformId>(
(null as Gs2.Gs2Account.Model.PlatformId).CacheParentKey(
this.NamespaceName,
this.UserId
),
callbackId
);
}
public void InvalidatePlatformIds(
)
{
this._gs2.Cache.ClearListCache<Gs2.Gs2Account.Model.PlatformId>(
(null as Gs2.Gs2Account.Model.PlatformId).CacheParentKey(
this.NamespaceName,
this.UserId
)
);
}
public Gs2.Gs2Account.Domain.Model.PlatformIdDomain PlatformId(
int? type
) {
return new Gs2.Gs2Account.Domain.Model.PlatformIdDomain(
this._gs2,
this.NamespaceName,
this.UserId,
type
);
}
}
public partial class AccountDomain {
#if UNITY_2017_1_OR_NEWER
public IFuture<Gs2.Gs2Account.Domain.Model.AccountDomain> UpdateTimeOffsetFuture(
UpdateTimeOffsetRequest request
) {
IEnumerator Impl(IFuture<Gs2.Gs2Account.Domain.Model.AccountDomain> self)
{
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var future = request.InvokeFuture(
_gs2.Cache,
this.UserId,
() => this._client.UpdateTimeOffsetFuture(request)
);
yield return future;
if (future.Error != null) {
self.OnError(future.Error);
yield break;
}
var result = future.Result;
var domain = this;
self.OnComplete(domain);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Domain.Model.AccountDomain>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<Gs2.Gs2Account.Domain.Model.AccountDomain> UpdateTimeOffsetAsync(
#else
public async Task<Gs2.Gs2Account.Domain.Model.AccountDomain> UpdateTimeOffsetAsync(
#endif
UpdateTimeOffsetRequest request
) {
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var result = await request.InvokeAsync(
_gs2.Cache,
this.UserId,
() => this._client.UpdateTimeOffsetAsync(request)
);
var domain = this;
return domain;
}
#endif
#if UNITY_2017_1_OR_NEWER
public IFuture<Gs2.Gs2Account.Domain.Model.AccountDomain> UpdateBannedFuture(
UpdateBannedRequest request
) {
IEnumerator Impl(IFuture<Gs2.Gs2Account.Domain.Model.AccountDomain> self)
{
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var future = request.InvokeFuture(
_gs2.Cache,
this.UserId,
() => this._client.UpdateBannedFuture(request)
);
yield return future;
if (future.Error != null) {
self.OnError(future.Error);
yield break;
}
var result = future.Result;
var domain = this;
self.OnComplete(domain);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Domain.Model.AccountDomain>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<Gs2.Gs2Account.Domain.Model.AccountDomain> UpdateBannedAsync(
#else
public async Task<Gs2.Gs2Account.Domain.Model.AccountDomain> UpdateBannedAsync(
#endif
UpdateBannedRequest request
) {
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var result = await request.InvokeAsync(
_gs2.Cache,
this.UserId,
() => this._client.UpdateBannedAsync(request)
);
var domain = this;
return domain;
}
#endif
#if UNITY_2017_1_OR_NEWER
public IFuture<Gs2.Gs2Account.Domain.Model.AccountDomain> AddBanFuture(
AddBanRequest request
) {
IEnumerator Impl(IFuture<Gs2.Gs2Account.Domain.Model.AccountDomain> self)
{
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var future = request.InvokeFuture(
_gs2.Cache,
this.UserId,
() => this._client.AddBanFuture(request)
);
yield return future;
if (future.Error != null) {
self.OnError(future.Error);
yield break;
}
var result = future.Result;
var domain = this;
self.OnComplete(domain);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Domain.Model.AccountDomain>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<Gs2.Gs2Account.Domain.Model.AccountDomain> AddBanAsync(
#else
public async Task<Gs2.Gs2Account.Domain.Model.AccountDomain> AddBanAsync(
#endif
AddBanRequest request
) {
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var result = await request.InvokeAsync(
_gs2.Cache,
this.UserId,
() => this._client.AddBanAsync(request)
);
var domain = this;
return domain;
}
#endif
#if UNITY_2017_1_OR_NEWER
public IFuture<Gs2.Gs2Account.Domain.Model.AccountDomain> RemoveBanFuture(
RemoveBanRequest request
) {
IEnumerator Impl(IFuture<Gs2.Gs2Account.Domain.Model.AccountDomain> self)
{
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var future = request.InvokeFuture(
_gs2.Cache,
this.UserId,
() => this._client.RemoveBanFuture(request)
);
yield return future;
if (future.Error != null) {
self.OnError(future.Error);
yield break;
}
var result = future.Result;
var domain = this;
self.OnComplete(domain);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Domain.Model.AccountDomain>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<Gs2.Gs2Account.Domain.Model.AccountDomain> RemoveBanAsync(
#else
public async Task<Gs2.Gs2Account.Domain.Model.AccountDomain> RemoveBanAsync(
#endif
RemoveBanRequest request
) {
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var result = await request.InvokeAsync(
_gs2.Cache,
this.UserId,
() => this._client.RemoveBanAsync(request)
);
var domain = this;
return domain;
}
#endif
#if UNITY_2017_1_OR_NEWER
private IFuture<Gs2.Gs2Account.Model.Account> GetFuture(
GetAccountRequest request
) {
IEnumerator Impl(IFuture<Gs2.Gs2Account.Model.Account> self)
{
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var future = request.InvokeFuture(
_gs2.Cache,
this.UserId,
() => this._client.GetAccountFuture(request)
);
yield return future;
if (future.Error != null) {
self.OnError(future.Error);
yield break;
}
var result = future.Result;
self.OnComplete(result?.Item);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Model.Account>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
private async UniTask<Gs2.Gs2Account.Model.Account> GetAsync(
#else
private async Task<Gs2.Gs2Account.Model.Account> GetAsync(
#endif
GetAccountRequest request
) {
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var result = await request.InvokeAsync(
_gs2.Cache,
this.UserId,
() => this._client.GetAccountAsync(request)
);
return result?.Item;
}
#endif
#if UNITY_2017_1_OR_NEWER
public IFuture<Gs2.Gs2Account.Domain.Model.AccountDomain> DeleteFuture(
DeleteAccountRequest request
) {
IEnumerator Impl(IFuture<Gs2.Gs2Account.Domain.Model.AccountDomain> self)
{
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var future = request.InvokeFuture(
_gs2.Cache,
this.UserId,
() => this._client.DeleteAccountFuture(request)
);
yield return future;
if (future.Error != null) {
if (!(future.Error is NotFoundException)) {
self.OnError(future.Error);
yield break;
}
}
var result = future.Result;
var domain = this;
self.OnComplete(domain);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Domain.Model.AccountDomain>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<Gs2.Gs2Account.Domain.Model.AccountDomain> DeleteAsync(
#else
public async Task<Gs2.Gs2Account.Domain.Model.AccountDomain> DeleteAsync(
#endif
DeleteAccountRequest request
) {
try {
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var result = await request.InvokeAsync(
_gs2.Cache,
this.UserId,
() => this._client.DeleteAccountAsync(request)
);
}
catch (NotFoundException e) {}
var domain = this;
return domain;
}
#endif
#if UNITY_2017_1_OR_NEWER
public IFuture<Gs2.Gs2Account.Domain.Model.AccountDomain> AuthenticationFuture(
AuthenticationRequest request
) {
IEnumerator Impl(IFuture<Gs2.Gs2Account.Domain.Model.AccountDomain> self)
{
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var future = request.InvokeFuture(
_gs2.Cache,
this.UserId,
() => this._client.AuthenticationFuture(request)
);
yield return future;
if (future.Error != null) {
self.OnError(future.Error);
yield break;
}
var result = future.Result;
var domain = this;
domain.BanStatuses = result?.BanStatuses;
domain.Body = result?.Body;
domain.Signature = result?.Signature;
self.OnComplete(domain);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Domain.Model.AccountDomain>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<Gs2.Gs2Account.Domain.Model.AccountDomain> AuthenticationAsync(
#else
public async Task<Gs2.Gs2Account.Domain.Model.AccountDomain> AuthenticationAsync(
#endif
AuthenticationRequest request
) {
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var result = await request.InvokeAsync(
_gs2.Cache,
this.UserId,
() => this._client.AuthenticationAsync(request)
);
var domain = this;
domain.BanStatuses = result?.BanStatuses;
domain.Body = result?.Body;
domain.Signature = result?.Signature;
return domain;
}
#endif
#if UNITY_2017_1_OR_NEWER
public IFuture<Gs2.Gs2Account.Domain.Model.TakeOverDomain> CreateTakeOverOpenIdConnectAndFuture(
CreateTakeOverOpenIdConnectAndByUserIdRequest request
) {
IEnumerator Impl(IFuture<Gs2.Gs2Account.Domain.Model.TakeOverDomain> self)
{
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var future = request.InvokeFuture(
_gs2.Cache,
this.UserId,
() => this._client.CreateTakeOverOpenIdConnectAndByUserIdFuture(request)
);
yield return future;
if (future.Error != null) {
self.OnError(future.Error);
yield break;
}
var result = future.Result;
var domain = new Gs2.Gs2Account.Domain.Model.TakeOverDomain(
this._gs2,
this.NamespaceName,
result?.Item?.UserId,
result?.Item?.Type
);
self.OnComplete(domain);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Domain.Model.TakeOverDomain>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<Gs2.Gs2Account.Domain.Model.TakeOverDomain> CreateTakeOverOpenIdConnectAndAsync(
#else
public async Task<Gs2.Gs2Account.Domain.Model.TakeOverDomain> CreateTakeOverOpenIdConnectAndAsync(
#endif
CreateTakeOverOpenIdConnectAndByUserIdRequest request
) {
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var result = await request.InvokeAsync(
_gs2.Cache,
this.UserId,
() => this._client.CreateTakeOverOpenIdConnectAndByUserIdAsync(request)
);
var domain = new Gs2.Gs2Account.Domain.Model.TakeOverDomain(
this._gs2,
this.NamespaceName,
result?.Item?.UserId,
result?.Item?.Type
);
return domain;
}
#endif
#if UNITY_2017_1_OR_NEWER
public IFuture<Gs2.Gs2Account.Domain.Model.TakeOverDomain> DeleteTakeOverByUserIdentifierFuture(
DeleteTakeOverByUserIdentifierRequest request
) {
IEnumerator Impl(IFuture<Gs2.Gs2Account.Domain.Model.TakeOverDomain> self)
{
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName);
var future = request.InvokeFuture(
_gs2.Cache,
this.UserId,
() => this._client.DeleteTakeOverByUserIdentifierFuture(request)
);
yield return future;
if (future.Error != null) {
if (!(future.Error is NotFoundException)) {
self.OnError(future.Error);
yield break;
}
}
var result = future.Result;
var domain = new Gs2.Gs2Account.Domain.Model.TakeOverDomain(
this._gs2,
this.NamespaceName,
result?.Item?.UserId,
result?.Item?.Type
);
self.OnComplete(domain);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Domain.Model.TakeOverDomain>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<Gs2.Gs2Account.Domain.Model.TakeOverDomain> DeleteTakeOverByUserIdentifierAsync(
#else
public async Task<Gs2.Gs2Account.Domain.Model.TakeOverDomain> DeleteTakeOverByUserIdentifierAsync(
#endif
DeleteTakeOverByUserIdentifierRequest request
) {
try {
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName);
var result = await request.InvokeAsync(
_gs2.Cache,
this.UserId,
() => this._client.DeleteTakeOverByUserIdentifierAsync(request)
);
var domain = new Gs2.Gs2Account.Domain.Model.TakeOverDomain(
this._gs2,
this.NamespaceName,
result?.Item?.UserId,
result?.Item?.Type
);
return domain;
}
catch (NotFoundException e) {
return null;
}
}
#endif
#if UNITY_2017_1_OR_NEWER
public IFuture<Gs2.Gs2Account.Domain.Model.TakeOverDomain> DeleteTakeOverFuture(
DeleteTakeOverByUserIdRequest request
) {
IEnumerator Impl(IFuture<Gs2.Gs2Account.Domain.Model.TakeOverDomain> self)
{
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var future = request.InvokeFuture(
_gs2.Cache,
this.UserId,
() => this._client.DeleteTakeOverByUserIdFuture(request)
);
yield return future;
if (future.Error != null) {
if (!(future.Error is NotFoundException)) {
self.OnError(future.Error);
yield break;
}
}
var result = future.Result;
var domain = new Gs2.Gs2Account.Domain.Model.TakeOverDomain(
this._gs2,
this.NamespaceName,
result?.Item?.UserId,
result?.Item?.Type
);
self.OnComplete(domain);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Domain.Model.TakeOverDomain>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<Gs2.Gs2Account.Domain.Model.TakeOverDomain> DeleteTakeOverAsync(
#else
public async Task<Gs2.Gs2Account.Domain.Model.TakeOverDomain> DeleteTakeOverAsync(
#endif
DeleteTakeOverByUserIdRequest request
) {
try {
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var result = await request.InvokeAsync(
_gs2.Cache,
this.UserId,
() => this._client.DeleteTakeOverByUserIdAsync(request)
);
var domain = new Gs2.Gs2Account.Domain.Model.TakeOverDomain(
this._gs2,
this.NamespaceName,
result?.Item?.UserId,
result?.Item?.Type
);
return domain;
}
catch (NotFoundException e) {
return null;
}
}
#endif
#if UNITY_2017_1_OR_NEWER
public IFuture<Gs2.Gs2Account.Domain.Model.DataOwnerDomain> DeleteDataOwnerFuture(
DeleteDataOwnerByUserIdRequest request
) {
IEnumerator Impl(IFuture<Gs2.Gs2Account.Domain.Model.DataOwnerDomain> self)
{
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var future = request.InvokeFuture(
_gs2.Cache,
this.UserId,
() => this._client.DeleteDataOwnerByUserIdFuture(request)
);
yield return future;
if (future.Error != null) {
if (!(future.Error is NotFoundException)) {
self.OnError(future.Error);
yield break;
}
}
var result = future.Result;
var domain = new Gs2.Gs2Account.Domain.Model.DataOwnerDomain(
this._gs2,
this.NamespaceName,
result?.Item?.UserId
);
self.OnComplete(domain);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Domain.Model.DataOwnerDomain>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<Gs2.Gs2Account.Domain.Model.DataOwnerDomain> DeleteDataOwnerAsync(
#else
public async Task<Gs2.Gs2Account.Domain.Model.DataOwnerDomain> DeleteDataOwnerAsync(
#endif
DeleteDataOwnerByUserIdRequest request
) {
try {
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var result = await request.InvokeAsync(
_gs2.Cache,
this.UserId,
() => this._client.DeleteDataOwnerByUserIdAsync(request)
);
var domain = new Gs2.Gs2Account.Domain.Model.DataOwnerDomain(
this._gs2,
this.NamespaceName,
result?.Item?.UserId
);
return domain;
}
catch (NotFoundException e) {
return null;
}
}
#endif
#if UNITY_2017_1_OR_NEWER
public IFuture<Gs2.Gs2Account.Domain.Model.PlatformIdDomain> DeletePlatformIdFuture(
DeletePlatformIdByUserIdRequest request
) {
IEnumerator Impl(IFuture<Gs2.Gs2Account.Domain.Model.PlatformIdDomain> self)
{
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var future = request.InvokeFuture(
_gs2.Cache,
this.UserId,
() => this._client.DeletePlatformIdByUserIdFuture(request)
);
yield return future;
if (future.Error != null) {
if (!(future.Error is NotFoundException)) {
self.OnError(future.Error);
yield break;
}
}
var result = future.Result;
var domain = new Gs2.Gs2Account.Domain.Model.PlatformIdDomain(
this._gs2,
this.NamespaceName,
result?.Item?.UserId,
result?.Item?.Type
);
self.OnComplete(domain);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Domain.Model.PlatformIdDomain>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<Gs2.Gs2Account.Domain.Model.PlatformIdDomain> DeletePlatformIdAsync(
#else
public async Task<Gs2.Gs2Account.Domain.Model.PlatformIdDomain> DeletePlatformIdAsync(
#endif
DeletePlatformIdByUserIdRequest request
) {
try {
request = request
.WithContextStack(string.IsNullOrEmpty(request.ContextStack) ? this._gs2.DefaultContextStack : request.ContextStack)
.WithNamespaceName(this.NamespaceName)
.WithUserId(this.UserId);
var result = await request.InvokeAsync(
_gs2.Cache,
this.UserId,
() => this._client.DeletePlatformIdByUserIdAsync(request)
);
var domain = new Gs2.Gs2Account.Domain.Model.PlatformIdDomain(
this._gs2,
this.NamespaceName,
result?.Item?.UserId,
result?.Item?.Type
);
return domain;
}
catch (NotFoundException e) {
return null;
}
}
#endif
}
public partial class AccountDomain {
#if UNITY_2017_1_OR_NEWER
public IFuture<Gs2.Gs2Account.Model.Account> ModelFuture()
{
IEnumerator Impl(IFuture<Gs2.Gs2Account.Model.Account> self)
{
var (value, find) = (null as Gs2.Gs2Account.Model.Account).GetCache(
this._gs2.Cache,
this.NamespaceName,
this.UserId
);
if (find) {
self.OnComplete(value);
yield break;
}
var future = (null as Gs2.Gs2Account.Model.Account).FetchFuture(
this._gs2.Cache,
this.NamespaceName,
this.UserId,
() => this.GetFuture(
new GetAccountRequest()
)
);
yield return future;
if (future.Error != null) {
self.OnError(future.Error);
yield break;
}
self.OnComplete(future.Result);
}
return new Gs2InlineFuture<Gs2.Gs2Account.Model.Account>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<Gs2.Gs2Account.Model.Account> ModelAsync()
#else
public async Task<Gs2.Gs2Account.Model.Account> ModelAsync()
#endif
{
using (await this._gs2.Cache.GetLockObject<Gs2.Gs2Account.Model.Account>(
(null as Gs2.Gs2Account.Model.Account).CacheParentKey(
this.NamespaceName
),
(null as Gs2.Gs2Account.Model.Account).CacheKey(
this.UserId
)
).LockAsync()) {
var (value, find) = (null as Gs2.Gs2Account.Model.Account).GetCache(
this._gs2.Cache,
this.NamespaceName,
this.UserId
);
if (find) {
return value;
}
return await (null as Gs2.Gs2Account.Model.Account).FetchAsync(
this._gs2.Cache,
this.NamespaceName,
this.UserId,
() => this.GetAsync(
new GetAccountRequest()
)
);
}
}
#endif
#if UNITY_2017_1_OR_NEWER
#if GS2_ENABLE_UNITASK
[Obsolete("The name has been changed to ModelAsync.")]
public async UniTask<Gs2.Gs2Account.Model.Account> Model()
{
return await ModelAsync();
}
#else
[Obsolete("The name has been changed to ModelFuture.")]
public IFuture<Gs2.Gs2Account.Model.Account> Model()
{
return ModelFuture();
}
#endif
#else
[Obsolete("The name has been changed to ModelAsync.")]
public async Task<Gs2.Gs2Account.Model.Account> Model()
{
return await ModelAsync();
}
#endif
public void Invalidate()
{
(null as Gs2.Gs2Account.Model.Account).DeleteCache(
this._gs2.Cache,
this.NamespaceName,
this.UserId
);
}
public ulong Subscribe(Action<Gs2.Gs2Account.Model.Account> callback)
{
return this._gs2.Cache.Subscribe(
(null as Gs2.Gs2Account.Model.Account).CacheParentKey(
this.NamespaceName
),
(null as Gs2.Gs2Account.Model.Account).CacheKey(
this.UserId
),
callback,
() =>
{
#if UNITY_2017_1_OR_NEWER && GS2_ENABLE_UNITASK
async UniTask Impl() {
try {
await UniTask.SwitchToMainThread();
await ModelAsync();
}
catch (System.Exception) {
// ignored
}
}
Impl().Forget();
#endif
}
);
}
public void Unsubscribe(ulong callbackId)
{
this._gs2.Cache.Unsubscribe<Gs2.Gs2Account.Model.Account>(
(null as Gs2.Gs2Account.Model.Account).CacheParentKey(
this.NamespaceName
),
(null as Gs2.Gs2Account.Model.Account).CacheKey(
this.UserId
),
callbackId
);
}
#if UNITY_2017_1_OR_NEWER
public Gs2Future<ulong> SubscribeWithInitialCallFuture(Action<Gs2.Gs2Account.Model.Account> callback)
{
IEnumerator Impl(IFuture<ulong> self)
{
var future = ModelFuture();
yield return future;
if (future.Error != null) {
self.OnError(future.Error);
yield break;
}
var item = future.Result;
var callbackId = Subscribe(callback);
callback.Invoke(item);
self.OnComplete(callbackId);
}
return new Gs2InlineFuture<ulong>(Impl);
}
#endif
#if !UNITY_2017_1_OR_NEWER || GS2_ENABLE_UNITASK
#if UNITY_2017_1_OR_NEWER
public async UniTask<ulong> SubscribeWithInitialCallAsync(Action<Gs2.Gs2Account.Model.Account> callback)
#else
public async Task<ulong> SubscribeWithInitialCallAsync(Action<Gs2.Gs2Account.Model.Account> callback)
#endif
{
var item = await ModelAsync();
var callbackId = Subscribe(callback);
callback.Invoke(item);
return callbackId;
}
#endif
}
}