forked from GoogleCloudPlatform/functions-framework-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfunction_registry.ts
114 lines (104 loc) · 3.41 KB
/
function_registry.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License 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.
import {
HttpFunction,
CloudEventFunction,
HandlerFunction,
OpenFunction,
} from './functions';
import {SignatureType} from './types';
interface RegisteredFunction<T> {
signatureType: SignatureType;
userFunction: HandlerFunction<T>;
}
/**
* Singleton map to hold the registered functions
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const registrationContainer = new Map<string, RegisteredFunction<any>>();
/**
* Helper method to store a registered function in the registration container
*/
const register = <T = unknown>(
functionName: string,
signatureType: SignatureType,
userFunction: HandlerFunction<T>
): void => {
if (!isValidFunctionName(functionName)) {
throw new Error(`Invalid function name: ${functionName}`);
}
registrationContainer.set(functionName, {
signatureType,
userFunction,
});
};
/**
* Returns true if the function name is valid
* - must contain only alphanumeric, numbers, or dash characters
* - must be <= 63 characters
* - must start with a letter
* - must end with a letter or number
* @param functionName the function name
* @returns true if the function name is valid
*/
export const isValidFunctionName = (functionName: string): boolean => {
// Validate function name with alpha characters, and dashes
const regex = /^[A-Za-z](?:[-_A-Za-z0-9]{0,61}[A-Za-z0-9])?$/;
return regex.test(functionName);
};
/**
* Get a declaratively registered function
* @param functionName the name with which the function was registered
* @returns the registered function and signature type or undefined no function matching
* the provided name has been registered.
*/
export const getRegisteredFunction = (
functionName: string
// eslint-disable-next-line @typescript-eslint/no-explicit-any
): RegisteredFunction<any> | undefined => {
return registrationContainer.get(functionName);
};
/**
* Register a function that responds to HTTP requests.
* @param functionName - the name of the function
* @param handler - the function to invoke when handling HTTP requests
* @public
*/
export const http = (functionName: string, handler: HttpFunction): void => {
register(functionName, 'http', handler);
};
/**
* Register a function that handles CloudEvents.
* @param functionName - the name of the function
* @param handler - the function to trigger when handling CloudEvents
* @public
*/
export const cloudEvent = <T = unknown>(
functionName: string,
handler: CloudEventFunction<T>
): void => {
register(functionName, 'cloudevent', handler);
};
/**
* Register a function that responds to OpenFunction.
* @param functionName - the name of the function
* @param handler - the function to invoke when handling OpenFunction
* @public
*/
export const openfunction = (
functionName: string,
handler: OpenFunction
): void => {
register(functionName, 'openfunction', handler);
};