Compare commits

...

21 Commits

Author SHA1 Message Date
wss-git fb64cc31c9 build: 0.0.23 2022-01-04 13:52:48 +08:00
heimanba 16fef7da63
Merge pull request #21 from devsapp/fix#480
fix: fc 480
2022-01-04 11:29:07 +08:00
wss-git 53524ca5a0 build: 0.0.22 2021-12-31 09:59:32 +08:00
千风 545b575b2e fix: fix async invoke withour stateul invoke id error 2021-12-31 09:57:48 +08:00
wss-git 853611b69f fix: invoke function add timeout 2021-12-27 18:09:00 +08:00
heimanba 25e6625cb2
Merge pull request #20 from devsapp/wss/dev
Wss/dev
2021-12-23 14:28:12 +08:00
wss-git 645a184c06 version: 0.0.21 2021-12-23 14:24:49 +08:00
wss-git 7486b7ee59 build: dev 2021-12-23 14:11:01 +08:00
wss-git e930d19e57 Merge branch 'master' of https://github.com/devsapp/fc-remote-invoke into wss/dev 2021-12-23 14:10:20 +08:00
wss-git 0bc9d61b5f
Merge pull request #19 from devsapp/fix#fc-460
fix: invoke function carry X-Fc-Invocation-Code-Version:Latest
2021-12-23 14:09:43 +08:00
wss-git 0b9712838c build: ncc transfrom esbuild 2021-12-23 14:07:27 +08:00
wss-git 24e0676581 fix: invoke function carry X-Fc-Invocation-Code-Version:Latest 2021-12-20 14:52:19 +08:00
wss-git f0468eddf3
Merge pull request #18 from devsapp/support/event-stdin
support/event-stdin
2021-12-13 15:19:03 +08:00
wss-git 93d6d628c2 support/event-stdin 2021-12-13 15:14:44 +08:00
wss-git 978e57fef7
Merge pull request #16 from devsapp/support-stateful-async-invocation-id
feat: add --stateful-async-invocation-id args
2021-11-16 13:29:42 +08:00
wss-git bf6593e33c build 0.0.20 2021-11-16 11:33:38 +08:00
wss-git 2c0a0b628d
Merge pull request #17 from devsapp/fix#fc-419
fix: show resp code
2021-11-16 11:25:30 +08:00
wss-git c1a2067fb0 style: ignore src dir 2021-11-15 11:23:50 +08:00
wss-git f8c5754072 fix: show resp code 2021-11-15 11:01:30 +08:00
千风 9c10415e0f feat: add --stateful-async-invocation-id args 2021-10-19 21:14:49 +08:00
千风 9c111e5b06 version 0.0.19 2021-10-19 16:00:26 +08:00
18 changed files with 103 additions and 167 deletions

View File

@ -14,3 +14,4 @@ package-lock.json
README.md
./example
./.signore
./src

51
dist/index.js vendored Normal file

File diff suppressed because one or more lines are too long

44
lib/common/help.d.ts vendored
View File

@ -1,44 +0,0 @@
declare const _default: ({
header: string;
content: string;
optionList?: undefined;
} | {
header: string;
optionList: ({
name: string;
description: string;
type: StringConstructor;
alias?: undefined;
} | {
name: string;
description: string;
alias: string;
type: StringConstructor;
} | {
name: string;
description: string;
type: BooleanConstructor;
alias?: undefined;
})[];
content?: undefined;
} | {
header: string;
optionList: {
name: string;
description: string;
alias: string;
type: BooleanConstructor;
}[];
content?: undefined;
} | {
header: string;
content: string[];
optionList?: undefined;
} | {
header: string;
content: {
example: string;
}[];
optionList?: undefined;
})[];
export default _default;

View File

@ -1,10 +0,0 @@
export default class ComponentLogger {
static CONTENT: string;
static setContent(content: any): void;
static log(m: any, color?: 'black' | 'red' | 'green' | 'yellow' | 'blue' | 'magenta' | 'cyan' | 'white' | 'whiteBright' | 'gray'): void;
static info(m: any): void;
static debug(m: any): void;
static error(m: any): void;
static warning(m: any): void;
static success(m: any): void;
}

View File

@ -1,4 +0,0 @@
export default class StdoutFormatter {
static stdoutFormatter: any;
static initStdout(): Promise<void>;
}

11
lib/index.d.ts vendored
View File

@ -1,11 +0,0 @@
import { InputProps } from './interface/entity';
export default class FcRemoteInvoke {
/**
* event
* @param inputs
* @returns
*/
invoke(inputs: InputProps): Promise<any>;
private report;
private handlerInputs;
}

File diff suppressed because one or more lines are too long

View File

@ -1,34 +0,0 @@
export interface ICredentials {
AccountID?: string;
AccessKeyID?: string;
AccessKeySecret?: string;
SecurityToken?: string;
}
export interface InputProps {
props?: IProperties;
credentials: ICredentials;
appName: string;
project: {
component: string;
access: string;
projectName: string;
};
command: string;
args: string;
path: {
configPath: string;
};
}
export interface IProperties {
region: string;
serviceName: string;
functionName: string;
qualifier?: string;
domainName?: string;
}
export declare function isProperties(args: any): args is IProperties;
export interface IEventPayload {
event?: string;
eventFile?: string;
eventStdin?: boolean;
}

4
lib/lib/event.d.ts vendored
View File

@ -1,4 +0,0 @@
export default class File {
static getEvent(eventFile: any): Promise<unknown>;
static eventPriority(eventPriority: any): Promise<any>;
}

View File

@ -1 +0,0 @@
export default function handlerBody(contentType: string, body: any): any;

View File

@ -1,32 +0,0 @@
import { IProperties, IEventPayload } from '../interface/entity';
export default class RemoteInvoke {
fcClient: any;
accountId: string;
constructor(fcClient: any, accountId: string);
invoke(props: IProperties, eventPayload: IEventPayload, { invocationType }: {
invocationType: any;
}): Promise<void>;
requestDomain(url: string, event: string): Promise<void>;
getHttpTrigger(serviceName: any, functionName: any): Promise<any>;
eventInvoke({ serviceName, functionName, event, qualifier, invocationType }: {
serviceName: any;
functionName: any;
event: any;
qualifier?: string;
invocationType: any;
}): Promise<void>;
httpInvoke({ region, serviceName, functionName, event, qualifier }: {
region: any;
serviceName: any;
functionName: any;
event: any;
qualifier: any;
}): Promise<void>;
/**
* @param event: { body, headers, method, queries, path }
* path /proxy/serviceName/functionName/path ,
*/
request(event: any): Promise<void>;
private showLog;
private getJsonEvent;
}

5
lib/lib/stdin.d.ts vendored
View File

@ -1,5 +0,0 @@
/// <reference types="node" />
export declare function getStdin(): Promise<string>;
export declare namespace getStdin {
var buffer: () => Promise<Buffer>;
}

View File

@ -1,6 +1,6 @@
{
"name": "fc-remote-invoke",
"version": "0.0.18",
"version": "0.0.23",
"description": "This is a component demo for Serverless Devs Tool ",
"keywords": [
"Serverless",
@ -13,7 +13,7 @@
"author": "Serverless-Devs",
"contributors": [],
"license": "MIT",
"main": "./lib/index.js",
"main": "./dist/index.js",
"publishConfig": {
"access": "public"
},
@ -24,11 +24,12 @@
"scripts": {
"start": "npm run watch",
"watch": "tsc -w",
"prebuild": "rm -rf node_modules && rm -rf package-lock.json && npm i && rimraf lib",
"build": "ncc build src/index.ts -m -e @serverless-devs/core -o lib"
"prebuild": "rm -rf node_modules && rm -rf package-lock.json && npm i && rimraf dist",
"esbuild": "esbuild src/index.ts --bundle --log-level=error --minify --platform=node --format=cjs --target=node10.4 --external:@serverless-devs/core --outfile=dist/index.js",
"build": "npm run esbuild"
},
"dependencies": {
"@serverless-devs/core": "^0.0.*",
"@serverless-devs/core": "latest",
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"got": "^11.8.2",
@ -46,6 +47,6 @@
"ts-node": "^8.10.2",
"typedoc": "^0.20.35",
"typescript": "^3.9.7",
"@vercel/ncc": "^0.24.0"
"esbuild": "^0.14.0"
}
}

View File

@ -2,7 +2,7 @@ Type: Component
Name: fc-remote-invoke
Provider:
- 其它
Version: 0.0.18
Version: 0.0.23
Description: 初始化component模板
HomePage: https://www.serverless-devs.com
Tags: #标签详情

View File

@ -15,10 +15,12 @@ export default class FcRemoteInvoke {
async invoke(inputs: InputProps): Promise<any> {
const {
props,
timeout,
eventPayload,
credentials,
isHelp,
invocationType,
statefulAsyncInvocationId,
} = await this.handlerInputs(inputs);
await this.report('fc-remote-invoke', 'invoke', credentials?.AccountID);
@ -30,10 +32,10 @@ export default class FcRemoteInvoke {
let fcClient;
if (!props.domainName) {
const fcCommon = await core.loadComponent('devsapp/fc-common');
fcClient = await fcCommon.makeFcClient({ ...inputs, props: { region: props.region }});
fcClient = await fcCommon.makeFcClient({ ...inputs, props: { region: props.region, timeout }});
}
const remoteInvoke = new RemoteInvoke(fcClient, credentials.AccountID);
await remoteInvoke.invoke(props, eventPayload, { invocationType });
await remoteInvoke.invoke(props, eventPayload, { invocationType, statefulAsyncInvocationId });
}
private async report(componentName: string, command: string, accountID: string): Promise<void> {
@ -50,11 +52,13 @@ export default class FcRemoteInvoke {
const parsedArgs: {[key: string]: any} = core.commandParse({ ...inputs, args }, {
boolean: ['help', 'event-stdin'],
string: ['invocation-type', 'event', 'event-file', 'region', 'domain-name','service-name', 'function-name', 'qualifier'],
number: ['timeout'],
string: ['invocation-type', 'event', 'event-file', 'region', 'domain-name','service-name', 'function-name', 'qualifier', 'stateful-async-invocation-id'],
alias: {
'help': 'h',
'event': 'e',
'event-file': 'f',
'event-stdin': 's',
}
});
@ -73,6 +77,7 @@ export default class FcRemoteInvoke {
'event-stdin': eventStdin,
'invocation-type': invocationType = 'sync',
'domain-name': domainName,
'stateful-async-invocation-id': statefulAsyncInvocationId,
} = argsData;
const eventPayload = { event, eventFile, eventStdin };
// @ts-ignore: 判断三个值有几个真
@ -105,12 +110,25 @@ export default class FcRemoteInvoke {
throw new Error('region/serviceName(service-name)/functionName(function-name) can not be empty.');
}
// 超时时间获取的原理https://github.com/devsapp/fc/issues/480
const propsTimeout = argsData.timeout || inputs.props?.timeout;
let timeout = 600;
if (_.isNumber(propsTimeout)) {
if (_.isEmpty(inputs.props?.runtime) || inputs.props?.runtime === 'custom-container') {
timeout = propsTimeout + 7 * 60;
} else {
timeout = propsTimeout + 2 * 60;
}
}
return {
props,
timeout,
credentials: inputs.credentials,
eventPayload,
isHelp: false,
invocationType: _.upperFirst(invocationType),
statefulAsyncInvocationId,
};
}

View File

@ -25,8 +25,10 @@ export interface IProperties {
region: string;
serviceName: string;
functionName: string;
runtime?: string;
qualifier?: string;
domainName?: string;
timeout?: string;
}
export function isProperties(args: any): args is IProperties {
if (!args) {

View File

@ -13,7 +13,7 @@ export default class RemoteInvoke {
this.accountId = accountId;
}
async invoke (props: IProperties, eventPayload: IEventPayload, { invocationType }) {
async invoke (props: IProperties, eventPayload: IEventPayload, { invocationType, statefulAsyncInvocationId }) {
const event = await Event.eventPriority(eventPayload);
logger.debug(`event: ${event}`);
@ -32,12 +32,13 @@ export default class RemoteInvoke {
const payload: any = { event, serviceName, functionName, qualifier };
if (_.isEmpty(httpTriggers)) {
payload.invocationType = invocationType;
payload.statefulAsyncInvocationId = statefulAsyncInvocationId;
payload.event = event;
await this.eventInvoke(payload);
} else {
payload.region = region;
payload.event = this.getJsonEvent(event);
await this.httpInvoke(payload);
}
}
@ -48,9 +49,9 @@ export default class RemoteInvoke {
payload.headers = {};
}
payload.headers['X-Fc-Log-Type'] = 'Tail';
const { body, headers } = await got(url, payload);
this.showLog(headers['x-fc-log-result']);
logger.log('\nFC Invoke Result:', 'green');
console.log(body);
@ -74,13 +75,15 @@ export default class RemoteInvoke {
functionName,
event,
qualifier = 'LATEST',
invocationType
invocationType,
statefulAsyncInvocationId
}) {
if (invocationType === 'Sync') {
const rs = await this.fcClient.invokeFunction(serviceName, functionName, event, {
'X-Fc-Log-Type': 'Tail',
'X-Fc-Invocation-Type': invocationType
'X-Fc-Invocation-Code-Version': 'Latest',
'X-Fc-Invocation-Type': invocationType,
}, qualifier);
this.showLog(rs.headers['x-fc-log-result']);
@ -88,8 +91,11 @@ export default class RemoteInvoke {
console.log(rs.data);
console.log('\n');
} else {
logger.debug(`Stateful async invocation id: ${statefulAsyncInvocationId}`);
const { headers } = await this.fcClient.invokeFunction(serviceName, functionName, event, {
'X-Fc-Invocation-Type': invocationType
'X-Fc-Invocation-Code-Version': 'Latest',
'X-Fc-Invocation-Type': invocationType,
'X-Fc-Stateful-Async-Invocation-Id': statefulAsyncInvocationId || "",
}, qualifier);
const rId = headers['x-fc-request-id'];
@ -114,6 +120,9 @@ export default class RemoteInvoke {
if (!headers['X-Fc-Log-Type']) {
headers['X-Fc-Log-Type'] = 'Tail';
}
if (!headers['X-Fc-Invocation-Code-Version']) {
headers['X-Fc-Invocation-Code-Version'] = 'Latest';
}
let resp;
try {
@ -146,14 +155,14 @@ export default class RemoteInvoke {
if (resp?.err) {
this.showLog(resp.headers['x-fc-log-result']);
logger.log(`\nFC Invoke Result[code: ${resp.code}]:`, 'red');
logger.log(`\nFC Invoke Result[Code: ${resp.code}]:`, 'red');
console.log(resp.data);
console.log('\n');
} else {
if (resp) {
this.showLog(resp.headers['x-fc-log-result']);
logger.log('\nFC Invoke Result[code: ${resp.code}]:', 'green');
logger.log(`\nFC Invoke Result[Code: ${resp.code}]:`, 'green');
console.log(resp.data);
console.log('\n');
}
@ -177,4 +186,4 @@ export default class RemoteInvoke {
throw new Error('handler event error. Example: https://github.com/devsapp/fc-remote-invoke/blob/master/example/http.json');
}
}
}
}

View File

@ -24,7 +24,7 @@
"./node_modules/@types"
],
"rootDir": "src",
"outDir": "lib"
"outDir": "dist"
},
"exclude": [
"**/node_modules/**",