現在、GCP Cloud Functions(nodejs)を使用してサーバーレスアプリケーションを開発しています。次のコードでは、リクエストのメソッドに応じて動作を分離できますが、パスパラメータのIDを取得する方法がわかりません。
たとえば、1人のユーザーを取得する場合、パスは/ users /:idになります。パス内のidを取得してDBから検索したいのですが、idを取得できないために行き詰まります。(PUTとDELETEも)これについて何か最適な方法を知っていますか?(AWS Lambdaではevent.pathParameters.idでidを取得できます)
また、別の問題もあります。
たとえば、現在のpathが「/users/1」の場合、usersHandlerは呼び出されません。なので、それも解決したいと思います。
また、将来的には「/users/1/items」....が存在する可能性があります。
これはswitch構文では難しいでしょうか?
または、ハンドラー関数は作成せずに、複数の関数をcloud functionsにデプロイすればいいのでしょうか?
たとえば、getUsersFunctionとdeleteUsersFunctionを別々にデプロイするイメージです。
一番簡単な方法はExpressのルーター機能を使えばいいのですが、その場合cloud functionsにデプロイされる際にExpressが一つの関数としてでデプロイされるのでそれはあまりいい方法ではないと思っています。
import
1import type {HttpFunction} from '@google-cloud/functions-framework/build/src/functions'; 2import {TYPES} from './constants/types'; 3import {container} from './config/inversify-config'; 4import IUserService from './application/service/users/IUserService'; 5 6export const restHandler: HttpFunction = (req, res) => { 7 const path = req.path; 8 switch (path) { 9 case '/users': 10 usershandler(req, res); 11 break; 12 default: 13 res.status(200).send('Server is working'); 14 } 15}; 16 17const usershandler: HttpFunction = (req, res) => { 18 if (req.method === 'GET') { 19 getUsersFunction(req, res); //If :id is present in the path parameters, we want to call getUserFunction. 20 } else if (req.method === 'POST') { 21 res.status(201).send('Creating User...'); 22 } else if (req.method === 'PUT') { 23 res.status(201).send('Updating User...'); 24 } else if (req.method === 'DELETE') { 25 res.status(201).send('Delating User...'); 26 } else { 27 res.status(404); 28 } 29}; 30 31export const getUsersFunction: HttpFunction = async (req, res) => { 32 const service = container.get<IUserService>(TYPES.UserService); 33 res.status(200).send(await service.getUsers()); 34}; 35 36export const getUserFunction: HttpFunction = async (req, res) => { 37 const service = container.get<IUserService>(TYPES.UserService); 38 res.status(200).send(await service.getUser(id)); 39}; 40コード
あなたの回答
tips
プレビュー