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.
*/
#pragma warning disable CS0618 // Obsolete with a message
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using Gs2.Core.Model;
using Gs2.Util.LitJson;
#if UNITY_2017_1_OR_NEWER
using UnityEngine.Scripting;
#endif
namespace Gs2.Gs2Identifier.Model
{
#if UNITY_2017_1_OR_NEWER
[Preserve]
#endif
public partial class AttachSecurityPolicy : IComparable
{
public string UserId { set; get; }
public string[] SecurityPolicyIds { set; get; }
public long? AttachedAt { set; get; }
public long? Revision { set; get; }
public AttachSecurityPolicy WithUserId(string userId) {
this.UserId = userId;
return this;
}
public AttachSecurityPolicy WithSecurityPolicyIds(string[] securityPolicyIds) {
this.SecurityPolicyIds = securityPolicyIds;
return this;
}
public AttachSecurityPolicy WithAttachedAt(long? attachedAt) {
this.AttachedAt = attachedAt;
return this;
}
public AttachSecurityPolicy WithRevision(long? revision) {
this.Revision = revision;
return this;
}
private static System.Text.RegularExpressions.Regex _ownerIdRegex = new System.Text.RegularExpressions.Regex(
@"grn:gs2::(?<ownerId>.+):identifier:user:(?<userName>.+)",
System.Text.RegularExpressions.RegexOptions.IgnoreCase
);
public static string GetOwnerIdFromGrn(
string grn
)
{
var match = _ownerIdRegex.Match(grn);
if (!match.Success || !match.Groups["ownerId"].Success)
{
return null;
}
return match.Groups["ownerId"].Value;
}
private static System.Text.RegularExpressions.Regex _userNameRegex = new System.Text.RegularExpressions.Regex(
@"grn:gs2::(?<ownerId>.+):identifier:user:(?<userName>.+)",
System.Text.RegularExpressions.RegexOptions.IgnoreCase
);
public static string GetUserNameFromGrn(
string grn
)
{
var match = _userNameRegex.Match(grn);
if (!match.Success || !match.Groups["userName"].Success)
{
return null;
}
return match.Groups["userName"].Value;
}
#if UNITY_2017_1_OR_NEWER
[Preserve]
#endif
public static AttachSecurityPolicy FromJson(JsonData data)
{
if (data == null) {
return null;
}
return new AttachSecurityPolicy()
.WithUserId(!data.Keys.Contains("userId") || data["userId"] == null ? null : data["userId"].ToString())
.WithSecurityPolicyIds(!data.Keys.Contains("securityPolicyIds") || data["securityPolicyIds"] == null || !data["securityPolicyIds"].IsArray ? null : data["securityPolicyIds"].Cast<JsonData>().Select(v => {
return v.ToString();
}).ToArray())
.WithAttachedAt(!data.Keys.Contains("attachedAt") || data["attachedAt"] == null ? null : (long?)(data["attachedAt"].ToString().Contains(".") ? (long)double.Parse(data["attachedAt"].ToString()) : long.Parse(data["attachedAt"].ToString())))
.WithRevision(!data.Keys.Contains("revision") || data["revision"] == null ? null : (long?)(data["revision"].ToString().Contains(".") ? (long)double.Parse(data["revision"].ToString()) : long.Parse(data["revision"].ToString())));
}
public JsonData ToJson()
{
JsonData securityPolicyIdsJsonData = null;
if (SecurityPolicyIds != null && SecurityPolicyIds.Length > 0)
{
securityPolicyIdsJsonData = new JsonData();
foreach (var securityPolicyId in SecurityPolicyIds)
{
securityPolicyIdsJsonData.Add(securityPolicyId);
}
}
return new JsonData {
["userId"] = UserId,
["securityPolicyIds"] = securityPolicyIdsJsonData,
["attachedAt"] = AttachedAt,
["revision"] = Revision,
};
}
public void WriteJson(JsonWriter writer)
{
writer.WriteObjectStart();
if (UserId != null) {
writer.WritePropertyName("userId");
writer.Write(UserId.ToString());
}
if (SecurityPolicyIds != null) {
writer.WritePropertyName("securityPolicyIds");
writer.WriteArrayStart();
foreach (var securityPolicyId in SecurityPolicyIds)
{
if (securityPolicyId != null) {
writer.Write(securityPolicyId.ToString());
}
}
writer.WriteArrayEnd();
}
if (AttachedAt != null) {
writer.WritePropertyName("attachedAt");
writer.Write((AttachedAt.ToString().Contains(".") ? (long)double.Parse(AttachedAt.ToString()) : long.Parse(AttachedAt.ToString())));
}
if (Revision != null) {
writer.WritePropertyName("revision");
writer.Write((Revision.ToString().Contains(".") ? (long)double.Parse(Revision.ToString()) : long.Parse(Revision.ToString())));
}
writer.WriteObjectEnd();
}
public int CompareTo(object obj)
{
var other = obj as AttachSecurityPolicy;
var diff = 0;
if (UserId == null && UserId == other.UserId)
{
// null and null
}
else
{
diff += UserId.CompareTo(other.UserId);
}
if (SecurityPolicyIds == null && SecurityPolicyIds == other.SecurityPolicyIds)
{
// null and null
}
else
{
diff += SecurityPolicyIds.Length - other.SecurityPolicyIds.Length;
for (var i = 0; i < SecurityPolicyIds.Length; i++)
{
diff += SecurityPolicyIds[i].CompareTo(other.SecurityPolicyIds[i]);
}
}
if (AttachedAt == null && AttachedAt == other.AttachedAt)
{
// null and null
}
else
{
diff += (int)(AttachedAt - other.AttachedAt);
}
if (Revision == null && Revision == other.Revision)
{
// null and null
}
else
{
diff += (int)(Revision - other.Revision);
}
return diff;
}
public void Validate() {
{
if (UserId.Length > 1024) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("attachSecurityPolicy", "identifier.attachSecurityPolicy.userId.error.tooLong"),
});
}
}
{
if (SecurityPolicyIds.Length > 100) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("attachSecurityPolicy", "identifier.attachSecurityPolicy.securityPolicyIds.error.tooMany"),
});
}
}
{
if (AttachedAt < 0) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("attachSecurityPolicy", "identifier.attachSecurityPolicy.attachedAt.error.invalid"),
});
}
if (AttachedAt > 32503680000000) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("attachSecurityPolicy", "identifier.attachSecurityPolicy.attachedAt.error.invalid"),
});
}
}
{
if (Revision < 0) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("attachSecurityPolicy", "identifier.attachSecurityPolicy.revision.error.invalid"),
});
}
if (Revision > 9223372036854775805) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("attachSecurityPolicy", "identifier.attachSecurityPolicy.revision.error.invalid"),
});
}
}
}
public object Clone() {
return new AttachSecurityPolicy {
UserId = UserId,
SecurityPolicyIds = SecurityPolicyIds?.Clone() as string[],
AttachedAt = AttachedAt,
Revision = Revision,
};
}
}
}