Skip to content

Commit 7a7c9ed

Browse files
fix: using parseGuidString as validator function
1 parent 706ce3c commit 7a7c9ed

File tree

8 files changed

+41
-56
lines changed

8 files changed

+41
-56
lines changed

packages/abstractions/src/multipartBody.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
* -------------------------------------------------------------------------------------------
66
*/
77
import type { RequestAdapter } from "./requestAdapter";
8-
import type { ModelSerializerFunction, Parsable, ParseNode, SerializationWriter
9-
} from "./serialization";
8+
import type { ModelSerializerFunction, Parsable, ParseNode, SerializationWriter } from "./serialization";
109
import { createGuid } from "./utils/guidUtils";
1110

1211
/**

packages/abstractions/src/requestInformation.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import type { RequestConfiguration } from "./requestConfiguration";
1818
import type { RequestOption } from "./requestOption";
1919
import type { ModelSerializerFunction, Parsable, SerializationWriter } from "./serialization";
2020
import { TimeOnly } from "./timeOnly";
21-
import { Guid } from "guid-typescript";
2221

2322
/** This class represents an abstract HTTP request. */
2423
export class RequestInformation implements RequestInformationSetContent {
@@ -241,7 +240,7 @@ export class RequestInformation implements RequestInformationSetContent {
241240
};
242241

243242
private normalizeValue(value: unknown): unknown {
244-
if (value instanceof Guid || value instanceof DateOnly || value instanceof TimeOnly) {
243+
if (value instanceof DateOnly || value instanceof TimeOnly) {
245244
return value.toString();
246245
}
247246
if (value instanceof Date) {
@@ -268,7 +267,7 @@ export class RequestInformation implements RequestInformationSetContent {
268267
}
269268
}
270269
if (typeof v === "boolean" || typeof v === "number" || typeof v === "string" || Array.isArray(v)) this.queryParameters[key] = v;
271-
else if (v instanceof Guid || v instanceof DateOnly || v instanceof TimeOnly) this.queryParameters[key] = v.toString();
270+
else if (v instanceof DateOnly || v instanceof TimeOnly) this.queryParameters[key] = v.toString();
272271
else if (v instanceof Date) this.queryParameters[key] = v.toISOString();
273272
else if (v === undefined) this.queryParameters[key] = undefined;
274273
});

packages/abstractions/src/utils/guidUtils.ts

+33-12
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,38 @@
44
* See License in the project root for license information.
55
* -------------------------------------------------------------------------------------------
66
*/
7-
export type Guid = string
7+
export type Guid = string;
88

9-
export function createGuid(): Guid {
10-
return ([gen(2), gen(1), gen(1), gen(1), gen(3)].join("-"));
11-
}
9+
const guidValidator = new RegExp("^[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}$", "i");
1210

13-
function gen(count: number) {
14-
let out: string = "";
15-
for (let i: number = 0; i < count; i++) {
16-
// tslint:disable-next-line:no-bitwise
17-
out += (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
18-
}
19-
return out;
20-
}
11+
/**
12+
* Checks if the string is a valid GUID.
13+
* @param source the string to check.
14+
* @returns unchanged string if it is a valid GUID; otherwise, undefined.
15+
*/
16+
export const parseGuidString = (source?: string) => {
17+
if (source && guidValidator.test(source)) {
18+
return source;
19+
}
20+
return undefined;
21+
};
22+
23+
/**
24+
* Generates a GUID.
25+
* @returns a GUID.
26+
*/
27+
export const createGuid = () => [gen(2), gen(1), gen(1), gen(1), gen(3)].join("-");
28+
29+
/**
30+
* Generates a part of a GUID.
31+
* @param count the number of 2 byte chunks to generate.
32+
* @returns a part of a GUID.
33+
*/
34+
export const gen = (count: number) => {
35+
let out = "";
36+
for (let i = 0; i < count; i++) {
37+
// eslint-disable-next-line no-bitwise
38+
out += (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
39+
}
40+
return out;
41+
};

packages/abstractions/test/common/requestInformation.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@
77

88
import { assert, describe, it } from "vitest";
99

10-
import { DateOnly, HttpMethod, type Parsable, parseGuidString, type RequestAdapter, RequestInformation, type SerializationWriter, type SerializationWriterFactory, TimeOnly } from "../../src";
10+
import { DateOnly, HttpMethod, type Guid, type Parsable, parseGuidString, type RequestAdapter, RequestInformation, type SerializationWriter, type SerializationWriterFactory, TimeOnly } from "../../src";
1111
import { MultipartBody } from "../../src/multipartBody";
1212
import { TestEnum } from "./store/testEnum";
13-
import { Guid } from "guid-typescript";
1413

1514
interface GetQueryParameters {
1615
select?: string[];
@@ -225,7 +224,7 @@ describe("RequestInformation", () => {
225224
const expected: string = `http://localhost/users/33933a8d-32bb-c6a8-784a-f60b5a1dd66a/2021-12-12?objectId=83afbf49-5583-152c-d7fb-176105d518bc&startDate=2021-12-12&startTime=23%3A12%3A00.0000000&timeStamp=2024-06-11T00%3A00%3A00.000Z`;
226225
const requestInformation = new RequestInformation(HttpMethod.GET);
227226
requestInformation.pathParameters["baseurl"] = baseUrl;
228-
requestInformation.pathParameters["userId"] = Guid.parse("33933a8d-32bb-c6a8-784a-f60b5a1dd66a");
227+
requestInformation.pathParameters["userId"] = parseGuidString("33933a8d-32bb-c6a8-784a-f60b5a1dd66a");
229228
requestInformation.pathParameters["date"] = DateOnly.parse("2021-12-12");
230229
requestInformation.urlTemplate = "http://localhost/users/{userId}/{date}{?objectId,startDate,startTime,endDate,endTime,timeStamp}";
231230
requestInformation.setQueryStringParametersFromRawObject<GetQueryParameters>({ objectId: parseGuidString("83afbf49-5583-152c-d7fb-176105d518bc"), startDate: new DateOnly({ year: 2021, month: 12, day: 12 }), startTime: new TimeOnly({ hours: 23, minutes: 12 }), timeStamp: new Date("2024-06-11T00:00:00.000Z") }, getQueryParameterMapper);

packages/http/fetch/test/common/mockParseNodeFactory.ts

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
/* eslint-disable @typescript-eslint/no-unused-vars */
99
import type { DateOnly, Duration, Guid, Parsable, ParsableFactory, ParseNode, ParseNodeFactory, TimeOnly } from "@microsoft/kiota-abstractions";
1010

11-
1211
export class MockParseNodeFactory implements ParseNodeFactory {
1312
parseNodeValue: ParseNode;
1413
/**

packages/serialization/form/src/formSerializationWriter.ts

+1-9
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,7 @@
66
*/
77

88
/* eslint-disable @typescript-eslint/no-unused-expressions */
9-
import {
10-
DateOnly,
11-
Duration,
12-
type ModelSerializerFunction,
13-
type Parsable,
14-
type SerializationWriter,
15-
type Guid,
16-
TimeOnly
17-
} from "@microsoft/kiota-abstractions";
9+
import { DateOnly, Duration, type Guid, type ModelSerializerFunction, type Parsable, type SerializationWriter, TimeOnly } from "@microsoft/kiota-abstractions";
1810

1911
export class FormSerializationWriter implements SerializationWriter {
2012
public writeByteArrayValue(

packages/serialization/json/src/jsonSerializationWriter.ts

+1-17
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,7 @@
66
*/
77

88
/* eslint-disable @typescript-eslint/no-unused-expressions */
9-
import {
10-
DateOnly,
11-
Duration,
12-
type Guid,
13-
isUntypedNode,
14-
type ModelSerializerFunction,
15-
type Parsable,
16-
type SerializationWriter,
17-
TimeOnly,
18-
type UntypedNode,
19-
isUntypedBoolean,
20-
isUntypedString,
21-
isUntypedNull,
22-
isUntypedNumber,
23-
isUntypedObject,
24-
isUntypedArray,
25-
inNodeEnv} from "@microsoft/kiota-abstractions";
9+
import { DateOnly, Duration, type Guid, isUntypedNode, type ModelSerializerFunction, type Parsable, type SerializationWriter, TimeOnly, type UntypedNode, isUntypedBoolean, isUntypedString, isUntypedNull, isUntypedNumber, isUntypedObject, isUntypedArray, inNodeEnv } from "@microsoft/kiota-abstractions";
2610

2711
export class JsonSerializationWriter implements SerializationWriter {
2812
public writeByteArrayValue(key?: string, value?: ArrayBuffer): void {

packages/serialization/multipart/src/multipartSerializationWriter.ts

+1-9
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,7 @@
66
*/
77

88
/* eslint-disable @typescript-eslint/no-unused-expressions */
9-
import {
10-
type DateOnly,
11-
type Duration,
12-
type Guid,
13-
MultipartBody,
14-
type Parsable,
15-
type SerializationWriter,
16-
type ModelSerializerFunction,
17-
type TimeOnly } from "@microsoft/kiota-abstractions";
9+
import { type DateOnly, type Duration, type Guid, MultipartBody, type Parsable, type SerializationWriter, type ModelSerializerFunction, type TimeOnly } from "@microsoft/kiota-abstractions";
1810

1911
/** Serialization writer for multipart/form-data */
2012
export class MultipartSerializationWriter implements SerializationWriter {

0 commit comments

Comments
 (0)