summary refs log tree commit diff
path: root/src/util
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-23 21:59:22 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-23 21:59:22 +0100
commit3bdbd9340edf4f3edd728624499dbcaaf08a25ed (patch)
treebe3bd0fe7cf65635d4351a585aa8b10db022ed1b /src/util
parent[Member] fix -> make id required (diff)
downloadserver-3bdbd9340edf4f3edd728624499dbcaaf08a25ed.tar.xz
:bug: fix populate. finally 😅
Diffstat (limited to 'src/util')
-rw-r--r--src/util/MongoBigInt.ts18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/util/MongoBigInt.ts b/src/util/MongoBigInt.ts
index e16d087a..28818212 100644
--- a/src/util/MongoBigInt.ts
+++ b/src/util/MongoBigInt.ts
@@ -16,13 +16,13 @@ class LongSchema extends mongoose.SchemaType {
 	};
 
 	handleSingle(val: any) {
-		return this.cast(val);
+		return this.cast(val, null, null, "handle");
 	}
 
 	handleArray(val: any) {
 		var self = this;
 		return val.map(function (m: any) {
-			return self.cast(m);
+			return self.cast(m, null, null, "handle");
 		});
 	}
 
@@ -30,11 +30,17 @@ class LongSchema extends mongoose.SchemaType {
 		return null != val;
 	}
 
-	cast(val: any, scope?: any, init?: any) {
+	cast(val: any, scope?: any, init?: any, type?: string) {
 		if (null === val) return val;
 		if ("" === val) return null;
-		if (typeof val === "bigint") return mongoose.mongo.Long.fromString(val.toString());
-		if (val instanceof mongoose.mongo.Long) return BigInt(val.toString());
+		if (typeof val === "bigint" && type === "query") {
+			return mongoose.mongo.Long.fromString(val.toString());
+		}
+
+		if (val instanceof mongoose.mongo.Long) {
+			if (type === "handle" || init == false) return val;
+			return BigInt(val.toString());
+		}
 		if (val instanceof Number || "number" == typeof val) return BigInt(val);
 		if (!Array.isArray(val) && val.toString) return BigInt(val.toString());
 
@@ -52,7 +58,7 @@ class LongSchema extends mongoose.SchemaType {
 			}
 			return handler.call(this, value);
 		} else {
-			return this.cast($conditional);
+			return this.cast($conditional, null, null, "query");
 		}
 	}
 }