將 Cloud Functions 整合至專案時,程式碼可能會擴充,包含許多獨立函式。您可能有多個函式,無法合理地放在單一檔案中,或是不同團隊可能會部署不同的函式群組,導致一個團隊覆寫或意外刪除另一個團隊的函式。Cloud Functions 提供多種程式碼整理方式,方便您瀏覽及維護函式。
在程式碼集內整理函式
您可以在 firebase.json
中使用函式設定物件的 codebase
屬性,管理單一存放區單一存放區設定中多個存放區或子套件的大型函式集合:
# firebase.json
"functions": {
"codebase": "my-codebase"
# NOTE: Codebase must be less than 63 characters and can contain only
# lowercase letters, numeric characters, underscores, and dashes.
}
Firebase CLI 10.7.1 以上版本支援 codebase
屬性。
管理多個存放區
codebase
屬性可協助簡化多個存放區的管理作業。假設您有兩個不同的存放區,會將函式部署至同一個 Firebase 專案,情況如下:
$ tree .
├── repoA
│ ├── firebase.json
│ └── functions
│ ├── index.js
│ └── package.json
└── repoB
├── firebase.json
└── functions
├── index.js
└── package.json
如果沒有程式碼集註解,Firebase CLI 會在部署時提示您刪除其他存放區中定義的函式:
$ (cd repoA && firebase deploy --only functions)
...
i functions: preparing functions directory for uploading...
✔ functions: functions folder uploaded successfully
The following functions are found in your project but do not exist in your local source code:
fn1FromRepoB
fn2FromRepoB
...
? Would you like to proceed with deletion? Selecting no will continue the rest of the deployments. (y/N)
如要避免這個問題,請在每個專案存放區的 firebase.json
函式設定部分中,加入不重複的程式碼註解:
# repoA/firebase.json
"functions": {
"codebase": "repo-a"
}
# repoB/firebase.json
"functions": {
"codebase": "repo-b"
}
有了程式碼庫註解,Firebase CLI 不會再提示您刪除在直接存放區外部定義的函式:
$ (cd repoA && firebase deploy --only functions)
...
i functions: preparing functions directory for uploading...
✔ functions: functions folder uploaded successfully
# Gleefully ignores functions from repoB
i functions: creating Node.js 16 function fnFromRepoA (us-central1)...
✔ Deploy Complete!
管理多個來源套件 (單一存放區)
codebase
屬性有助於簡化單一存放區中多個來源套件的管理作業。假設您有一個 Firebase 專案目錄,其中函式定義分散在多個子套件中:
$ tree .
├── firebase.json
├── teamA
│ ├── index.js
│ └── package.json
└── teamB
├── index.js
└── package.json
這項設定適用於下列用途:
- 您已設定單一存放區,且不同團隊會在獨立套件中管理自己的函式定義。
- 您有一個函式具有大量外部依附元件和長時間執行的初始化作業,並想將該函式與其他對延遲時間敏感的函式隔離。
如要支援這類 monorepo 設定,請在 firebase.json
中定義多個函式設定:
"functions": [
{
"source": "teamA",
"codebase": "team-a"
},
{
"source": "teamB",
"codebase": "team-b"
},
]
完成這項設定後,Firebase CLI 就能透過單一部署指令,部署所有套件中的函式:
$ firebase deploy --only functions
i deploying functions
i functions: preparing codebase team-a for deployment
i functions: preparing codebase team-b for deployment
i functions: creating Node.js 16 function team-a:helloATeam(us-central1)...
i functions: creating Node.js 16 function team-b:helloBTeam(us-central1)...
...
您也可以部署特定程式碼集:
$ firebase deploy --only functions:team-b
i deploying functions
i functions: preparing codebase team-b for deployment
i functions: updating Node.js 16 function team-b:helloBTeam(us-central1)...
...
在多個檔案中編寫函式
開始使用 Cloud Functions 時,您可能會將前幾個函式放在單一檔案中:
index.js
const functions = require('firebase-functions/v1');
exports.foo = functions.https.onRequest((request, response) => {
// ...
});
exports.bar = functions.https.onRequest((request, response) => {
// ...
});
main.py
from firebase_functions import https_fn
@https_fn.on_request()
def foo(req: https_fn.Request) -> https_fn.Response:
return https_fn.Response("Hello foo!")
@https_fn.on_request()
def bar(req: https_fn.Request) -> https_fn.Response:
return https_fn.Response("Hello bar!")
如果函式超過幾個,管理起來就會很困難。您可以將每個函式的所有邏輯放在各自的檔案中,並將來源檔案做為匯出清單:
Node.js
foo.js
const functions = require('firebase-functions/v1'); exports.foo = functions.https.onRequest((request, response) => { // ... });
bar.js
const functions = require('firebase-functions/v1'); exports.bar = functions.https.onRequest((request, response) => { // ... });
index.js
const foo = require('./foo'); const bar = require('./bar'); exports.foo = foo.foo; exports.bar = bar.bar;
Python
foo.py
from firebase_functions import https_fn
@https_fn.on_request()
def foo(req: https_fn.Request) -> https_fn.Response:
return https_fn.Response("Hello foo!")
bar.py
from firebase_functions import https_fn
@https_fn.on_request()
def bar(req: https_fn.Request) -> https_fn.Response:
return https_fn.Response("Hello foo!")
main.py
from fn_impl.foo import *
from fn_impl.bar import *
這項設定假設專案目錄結構如下:
my-project
├── firebase.json
└── functions
├── fn_impl
│ ├── __init__.py
│ ├── foo.py
│ └── bar.py
├── main.py
└── requirements.txt
fn_impl
:可使用任何名稱
__init__.py
:必要,但可留空
群組函式
在許多專案中,函式可以分成邏輯群組,這些群組應一併部署及維護。舉例來說,您可能有一組用於回報指標的函式:
metrics.js
const functions = require('firebase-functions/v1'); exports.usageStats = functions.https.onRequest((request, response) => { // ... }); exports.nightlyReport = functions.https.onRequest((request, response) => { // ... });
在 index.js
檔案中匯出這些函式時,可以將它們歸入群組:
index.js
// Export both functions from metrics.js in the "metrics" group: // - metrics-usageStats // - metrics-nightlyReport exports.metrics = require('./metrics');
部署時,函式會加上群組名稱前置字元,因此在本例中,函式會命名為 metrics-usageStats
和 metrics-nightlyReport
。
部署函式時,您可以將動作限制為單一群組:
firebase deploy --only functions:metrics
後續步驟
如要進一步瞭解 Cloud Functions,請參閱: