開始使用:編寫、測試及部署第一個函式


如要開始使用 Cloud Functions,請嘗試完成本教學課程,從必要的設定工作開始,然後建立、測試及部署兩個相關的函式:

  • 「add message」函式會公開可接受文字值的網址,並將該值寫入 Cloud Firestore
  • 這個「make uppercase」函式會在 Cloud Firestore 寫入時觸發,並將文字轉換為大寫。

我們選擇使用 Cloud Firestore 和 HTTP 觸發的 JavaScript 函式做為本範例的一部分,是因為這些背景觸發事件可透過 Firebase Local Emulator Suite 進行徹底測試。這個工具組也支援 Realtime Database、Pub/Sub、Auth 和 HTTP 可呼叫的觸發條件。你可以使用本頁未提及的工具集,以互動方式測試其他類型的背景觸發條件,例如 Remote Config、TestLab 和 Analytics 觸發條件。

本教學課程的後續章節將詳細說明建構、測試及部署範例所需的步驟。如果您只想執行程式碼並加以檢查,請跳至 查看完整程式碼範例

建立 Firebase 專案

  1. Firebase 控制台中,按一下「新增專案」

    • 如要將 Firebase 資源新增至現有 Google Cloud 專案,請輸入專案名稱,或從下拉式選單中選取。

    • 如要建立新專案,請輸入所需的專案名稱。您也可以選擇編輯專案名稱下方顯示的專案 ID。

  2. 系統提示時,請詳閱並接受 Firebase 條款

  3. 按一下「繼續」

  4. (選用) 為專案設定 Google Analytics,即可在使用下列任何 Firebase 產品時,獲得最佳體驗:

    選取現有的 Google Analytics 帳戶或建立新帳戶。

    如要建立新帳戶,請選取Analytics報表位置,然後接受專案的資料共用設定和 Google Analytics 條款。

  5. 按一下「建立專案」(如果您使用的是現有的 Google Cloud 專案,請按一下「新增 Firebase」)。

Firebase 會自動為您的 Firebase 專案佈建資源。程序完成後,您會前往 Firebase 主控台的 Firebase 專案總覽頁面。

設定 Node.js 和 Firebase CLI

您需要 Node.js 環境才能編寫函式,並需要 Firebase CLI 才能將函式部署至 Cloud Functions 執行階段。如要安裝 Node.js 和 npm,建議使用 Node Version Manager

安裝 Node.js 和 npm 後,請透過偏好的方法安裝 Firebase CLI。如要透過 npm 安裝 CLI,請使用以下指令:

npm install -g firebase-tools

這樣就會安裝全球適用的 firebase 指令。如果指令失敗,您可能需要變更 npm 權限。如要更新至最新版的 firebase-tools,請重新執行相同的指令。

初始化您的專案

Cloud Functions 初始化 Firebase SDK 時,您會建立空白專案,其中包含依附元件和一些最少的範例程式碼,並選擇 TypeScript 或 JavaScript 來組合函式。為了配合本教學課程,您還需要初始化 Cloud Firestore

如要初始化專案,請按照下列步驟操作:

  1. 執行 firebase login 即可透過瀏覽器登入,並驗證 Firebase CLI。
  2. 前往 Firebase 專案目錄。
  3. 執行 firebase init firestore。 在本教學課程中,當系統提示您設定 Firestore 規則和索引檔案時,您可以接受預設值。如果您尚未在這個專案中使用 Cloud Firestore,也需要選取 Firestore 的啟動模式和位置,如開始使用 Cloud Firestore 所述。
  4. 執行 firebase init functions。 CLI 會提示您選擇現有的程式碼集,或是初始化並命名新的程式碼集。剛開始時,只要在預設位置建立單一程式碼集即可;之後隨著實作內容擴大,您可能需要在程式碼集中整理函式
  5. CLI 提供兩種語言支援選項:

    在本教學課程中,請選取「JavaScript」

  6. CLI 提供使用 npm 安裝依附元件的選項。如果您想以其他方式管理依附元件,可以放心拒絕,不過如果拒絕,您必須先執行 npm install,才能模擬或部署函式。

這些指令順利完成後,專案結構會如下所示:

myproject
 +- .firebaserc    # Hidden file that helps you quickly switch between
 |                 # projects with `firebase use`
 |
 +- firebase.json  # Describes properties for your project
 |
 +- functions/     # Directory containing all your functions code
      |
      +- .eslintrc.json  # Optional file containing rules for JavaScript linting.
      |
      +- package.json  # npm package file describing your Cloud Functions code
      |
      +- index.js      # main source file for your Cloud Functions code
      |
      +- node_modules/ # directory where your dependencies (declared in
                       # package.json) are installed

初始化期間建立的 package.json 檔案包含一個重要鍵:"engines": {"node": "16"}。這會指定用於寫入及部署函式的 Node.js 版本。您可以選取其他支援的版本

匯入必要模組並初始化應用程式

完成設定工作後,您可以開啟來源目錄,並按照以下各節所述開始新增程式碼。對於這個範例,您的專案必須使用 Node require 陳述式匯入 Cloud Functions 和 Admin SDK 模組。在 index.js 檔案中新增以下行:

// The Cloud Functions for Firebase SDK to create Cloud Functions and set up triggers.
const functions = require('firebase-functions/v1');

// The Firebase Admin SDK to access Firestore.
const admin = require("firebase-admin");
admin.initializeApp();

這些行會載入 firebase-functionsfirebase-admin 模組,並初始化 admin 應用程式執行個體,以便進行 Cloud Firestore 變更。針對 FCMAuthenticationFirebase Realtime Database 提供 Admin SDK 支援服務,這項工具可讓您使用 Cloud Functions 整合 Firebase,

Firebase CLI 會在您初始化專案時,自動為 Cloud Functions Node 模組安裝 Firebase 和 Firebase SDK。如要將第三方程式庫新增至專案,您可以修改 package.json 並執行 npm install。詳情請參閱「處理依附元件」。

新增 addMessage() 函式

針對 addMessage() 函式,請在 index.js 中加入以下幾行程式碼:

// Take the text parameter passed to this HTTP endpoint and insert it into
// Firestore under the path /messages/:documentId/original
exports.addMessage = functions.https.onRequest(async (req, res) => {
  // Grab the text parameter.
  const original = req.query.text;
  // Push the new message into Firestore using the Firebase Admin SDK.
  const writeResult = await admin
    .firestore()
    .collection("messages")
    .add({ original: original });
  // Send back a message that we've successfully written the message
  res.json({ result: `Message with ID: ${writeResult.id} added.` });
});

addMessage() 函式是 HTTP 端點。任何傳送至端點的要求都會導致傳遞至 onRequest() 回呼的 ExpressJS 樣式 RequestResponse 物件。

HTTP 函式是同步的 (類似於可呼叫的函式),因此您應盡快傳送回應,並使用 Cloud Firestore 延後工作。addMessage() HTTP 函式會將文字值傳遞至 HTTP 端點,並將其插入路徑 /messages/:documentId/original 下的資料庫中。

新增 makeUppercase() 函式

針對 makeUppercase() 函式,請在 index.js 中加入以下幾行程式碼:

// Listens for new messages added to /messages/:documentId/original and creates an
// uppercase version of the message to /messages/:documentId/uppercase
exports.makeUppercase = functions.firestore
  .document("/messages/{documentId}")
  .onCreate((snap, context) => {
    // Grab the current value of what was written to Firestore.
    const original = snap.data().original;

    // Access the parameter `{documentId}` with `context.params`
    functions.logger.log("Uppercasing", context.params.documentId, original);

    const uppercase = original.toUpperCase();

    // You must return a Promise when performing asynchronous tasks inside a Functions such as
    // writing to Firestore.
    // Setting an 'uppercase' field in Firestore document returns a Promise.
    return snap.ref.set({ uppercase }, { merge: true });
  });

makeUppercase() 函式會在寫入 Cloud Firestore 時執行。ref.set 函式會定義要監聽的文件。基於效能考量,請盡可能具體說明。

括號 (例如 {documentId}) 是「參數」周圍的萬用字元,這些萬用字元會在回呼中公開相符的資料。

Cloud Firestore 會在新增新訊息時觸發 onCreate() 回呼。

事件導向函式 (例如 Cloud Firestore 事件) 是非同步的。回呼函式應傳回 null、物件或 Promise。如果您未傳回任何值,函式就會逾時並發出錯誤,然後重試。請參閱同步處理、非同步和 Promise

模擬函式的執行作業

Firebase Local Emulator Suite 可讓您在本機電腦上建構及測試應用程式,不必部署至 Firebase 專案。我們強烈建議您在開發期間進行本機測試,部分原因是因為這麼做可降低在實際運作環境中可能產生成本的程式碼錯誤風險 (例如無限迴圈)。

如要模擬函式,請按照下列步驟操作:

  1. 執行 firebase emulators:start,並檢查輸出內容中 Emulator Suite UI 的網址。預設為 localhost:4000,但可能會在電腦上的其他通訊埠上託管。在瀏覽器中輸入該網址,即可開啟 Emulator Suite UI

  2. 請檢查 firebase emulators:start 指令的輸出內容,找出 HTTP 函式 addMessage() 的網址。除了以下幾點之外,其餘都與 http://localhost:5001/MY_PROJECT/us-central1/addMessage 類似:

    1. MY_PROJECT 會替換為您的專案 ID。
    2. 本機電腦上的通訊埠可能不同。
  3. 將查詢字串 ?text=uppercaseme 新增至函式的網址結尾。應該會像這樣:http://localhost:5001/MY_PROJECT/us-central1/addMessage?text=uppercaseme。您可以視需要將訊息「uppercaseme」變更為自訂訊息。

  4. 在瀏覽器的新分頁中開啟網址,即可建立新訊息。

  5. 查看 Emulator Suite UI 中函式的效果:

    1. 在「Logs」分頁中,您應該會看到新的記錄,指出 addMessage()makeUppercase() 函式已執行:

      i functions: Beginning execution of "addMessage"

      i functions: Beginning execution of "makeUppercase"

    2. 在「Firestore」分頁中,您應該會看到一份包含原始訊息和大寫訊息的文件 (如果原始訊息是「uppercaseme」,您會看到「UPPERCASEME」)。

將函式部署至實際工作環境

函式在模擬器中正常運作後,您就可以在實際工作環境中部署、測試及執行函式。請注意,如要部署至建議的 Node.js 14 執行階段環境,您的專案必須採用 Blaze 定價方案。請參閱 Cloud Functions 定價

如要完成本教學課程,請部署函式,然後執行 addMessage() 來觸發 makeUppercase()

  1. 執行下列指令來部署函式:

     firebase deploy --only functions
     

    執行這個指令後,Firebase CLI 會輸出任何 HTTP 函式端點的網址。您應該會在終端機中看到類似以下的文字行:

    Function URL (addMessage): https://us-central1-MY_PROJECT.cloudfunctions.net/addMessage
    

    網址包含專案 ID 和 HTTP 函式的地區。雖然您現在不必擔心這點,但某些實際的 HTTP 函式應指定位置,以盡量減少網路延遲時間。

    如果您遇到「無法授權存取專案」等存取錯誤,請嘗試檢查專案別名

  2. 使用 CLI 的 addMessage() 網址輸出,新增文字查詢參數,並在瀏覽器中開啟:

    https://us-central1-MY_PROJECT.cloudfunctions.net/addMessage?text=uppercasemetoo
    

    這個函式會執行並將瀏覽器重新導向至 Firebase 主控台,並在該資料庫位置儲存文字字串。這個寫入事件會觸發 makeUppercase(),後者會寫入字串的大寫版本。

部署及執行函式後,您可以在 Google Cloud 控制台中查看記錄。如果您需要在開發或實際環境中刪除函式,請使用 Firebase CLI。

在實際環境中,您可能會想設定執行個體的最低和最高數量,以便最佳化函式效能並控管成本。如要進一步瞭解這些執行階段選項,請參閱「控制資源調度行為」。

查看完整程式碼範例

以下是包含 addMessage()makeUppercase() 函式的完整 functions/index.js。這些函式可讓您將參數傳遞至會將值寫入 Cloud Firestore 的 HTTP 端點,然後將字串中的所有字元轉換為大寫。

// The Cloud Functions for Firebase SDK to create Cloud Functions and set up triggers.
const functions = require('firebase-functions/v1');

// The Firebase Admin SDK to access Firestore.
const admin = require("firebase-admin");
admin.initializeApp();

// Take the text parameter passed to this HTTP endpoint and insert it into
// Firestore under the path /messages/:documentId/original
exports.addMessage = functions.https.onRequest(async (req, res) => {
  // Grab the text parameter.
  const original = req.query.text;
  // Push the new message into Firestore using the Firebase Admin SDK.
  const writeResult = await admin
    .firestore()
    .collection("messages")
    .add({ original: original });
  // Send back a message that we've successfully written the message
  res.json({ result: `Message with ID: ${writeResult.id} added.` });
});

// Listens for new messages added to /messages/:documentId/original and creates an
// uppercase version of the message to /messages/:documentId/uppercase
exports.makeUppercase = functions.firestore
  .document("/messages/{documentId}")
  .onCreate((snap, context) => {
    // Grab the current value of what was written to Firestore.
    const original = snap.data().original;

    // Access the parameter `{documentId}` with `context.params`
    functions.logger.log("Uppercasing", context.params.documentId, original);

    const uppercase = original.toUpperCase();

    // You must return a Promise when performing asynchronous tasks inside a Functions such as
    // writing to Firestore.
    // Setting an 'uppercase' field in Firestore document returns a Promise.
    return snap.ref.set({ uppercase }, { merge: true });
  });

後續步驟

您可以透過本說明文件進一步瞭解如何為 Cloud Functions管理函式,以及如何處理 Cloud Functions 支援的所有事件類型。

如要進一步瞭解 Cloud Functions,您也可以執行下列操作: