Firebase 和 Astro
Firebase 是一个应用开发平台,提供 NoSQL 数据库、身份验证、实时订阅、功能和存储。
¥Firebase is an app development platform that provides a NoSQL database, authentication, realtime subscriptions, functions, and storage.
请参阅我们单独的 部署到 Firebase 托管 指南。
¥See our separate guide for deploying to Firebase hosting.
在 Astro 中初始化 Firebase
Section titled 在 Astro 中初始化 Firebase¥Initializing Firebase in Astro
¥Prerequisites
-
启用了 服务器端渲染(SSR) 的 Astro 项目。
-
Firebase 凭据:你需要两组凭据才能将 Astro 连接到 Firebase:
-
Web 应用凭据:这些凭据将由你的应用的客户端使用。你可以在 Firebase 控制台的“项目设置”>“常规”下找到它们。向下滚动到你的应用部分并单击 Web 应用图标。
-
项目资质:这些凭据将由你的应用的服务器端使用。你可以在 Firebase 控制台中的“项目设置”>“服务账户”>“Firebase Admin SDK”>“生成新私钥”下生成它们。
-
添加 Firebase 凭据
Section titled 添加 Firebase 凭据¥Adding Firebase credentials
要将 Firebase 凭据添加到 Astro,请使用以下变量在项目的根目录中创建 .env
文件:
¥To add your Firebase credentials to Astro, create an .env
file in the root of your project with the following variables:
现在,这些环境变量可以在你的项目中使用。
¥Now, these environment variables are available for use in your project.
如果你希望 Firebase 环境变量具有 IntelliSense,请在 src/
目录中编辑或创建文件 env.d.ts
并配置你的类型:
¥If you would like to have IntelliSense for your Firebase environment variables, edit or create the file env.d.ts
in your src/
directory and configure your types:
你的项目现在应该包含这些新文件:
¥Your project should now include these new files:
Directorysrc/
- env.d.ts
- .env
- astro.config.mjs
- package.json
¥Installing dependencies
要将 Astro 与 Firebase 连接,请使用以下单个命令为你的首选软件包管理器安装以下软件包:
¥To connect Astro with Firebase, install the following packages using the single command below for your preferred package manager:
-
firebase
- 客户端的 Firebase SDK -
firebase-admin
- 服务器端的 Firebase Admin SDK
接下来,在 src/
目录中创建一个名为 firebase
的文件夹,并向该文件夹添加两个新文件:client.ts
和 server.ts
。
¥Next, create a folder named firebase
in the src/
directory and add two new files to this folder: client.ts
and server.ts
.
在 client.ts
中,添加以下代码以使用你的 Web 应用凭据和 firebase
包在客户端中初始化 Firebase:
¥In client.ts
, add the following code to initialize Firebase in the client using your web app credentials and the firebase
package:
在 server.ts
中,添加以下代码以使用你的项目凭据和 firebase-admin
包在服务器中初始化 Firebase:
¥In server.ts
, add the following code to initialize Firebase in the server using your project credentials and the firebase-admin
package:
最后,你的项目现在应该包含这些新文件:
¥Finally, your project should now include these new files:
Directorysrc
- env.d.ts
Directoryfirebase
- client.ts
- server.ts
- .env
- astro.config.mjs
- package.json
使用 Firebase 添加身份验证
Section titled 使用 Firebase 添加身份验证¥Adding authentication with Firebase
¥Prerequisites
-
Astro 项目 使用 Firebase 初始化。
-
在 Firebase 控制台的“身份验证”>“登录方法”下启用了电子邮件/密码身份验证的 Firebase 项目。
创建身份验证服务器端点
Section titled 创建身份验证服务器端点¥Creating auth server endpoints
Astro 中的 Firebase 身份验证需要以下三个 Astro 服务器端点:
¥Firebase authentication in Astro requires the following three Astro server endpoints:
-
GET /api/auth/signin
- 登录用户 -
GET /api/auth/signout
- 注销用户 -
POST /api/auth/register
- 注册用户
在新目录 src/pages/api/auth/
中创建与身份验证相关的三个端点:signin.ts
、signout.ts
和 register.ts
。
¥Create three endpoints related to authentication in a new directory src/pages/api/auth/
: signin.ts
, signout.ts
and register.ts
.
signin.ts
包含使用 Firebase 登录用户的代码:
¥signin.ts
contains the code to sign in a user using Firebase:
signout.ts
包含通过删除会话 cookie 来注销用户的代码:
¥signout.ts
contains the code to log out a user by deleting the session cookie:
register.ts
包含使用 Firebase 注册用户的代码:
¥register.ts
contains the code to register a user using Firebase:
创建用于身份验证的服务器端点后,你的项目目录现在应该包含以下新文件:
¥After creating server endpoints for authentication, your project directory should now include these new files:
Directorysrc
- env.d.ts
Directoryfirebase
- client.ts
- server.ts
Directorypages
Directoryapi
Directoryauth
- signin.ts
- signout.ts
- register.ts
- .env
- astro.config.mjs
- package.json
¥Creating pages
创建将使用 Firebase 端点的页面:
¥Create the pages that will use the Firebase endpoints:
-
src/pages/register
- 将包含一个用于注册用户的表格 -
src/pages/signin
- 将包含一个用于登录用户的表单 -
src/pages/dashboard
- 将包含一个只能由经过身份验证的用户访问的仪表板
下面的示例 src/pages/register.astro
包含一个将 POST
请求发送到 /api/auth/register
端点的表单。该端点将使用表单中的数据创建一个新用户,然后将用户重定向到 /signin
页面。
¥The example src/pages/register.astro
below includes a form that will send a POST
request to the /api/auth/register
endpoint. This endpoint will create a new user using the data from the form and then will redirect the user to the /signin
page.
src/pages/signin.astro
使用 Firebase 服务器应用来验证用户的会话 cookie。如果用户通过身份验证,页面会将用户重定向到 /dashboard
页面。
¥src/pages/signin.astro
uses the Firebase server app to verify the user’s session cookie. If the user is authenticated, the page will redirect the user to the /dashboard
page.
下面的示例页面包含一个表单,该表单将使用 Firebase 客户端应用生成的 ID 令牌向 /api/auth/signin
端点发送 POST
请求。
¥The example page below contains a form that will send a POST
request to the /api/auth/signin
endpoint with the ID token generated by the Firebase client app.
端点将验证 ID 令牌并为用户创建新的会话 cookie。然后,终端会将用户重定向到 /dashboard
页面。
¥The endpoint will verify the ID token and create a new session cookie for the user. Then, the endpoint will redirect the user to the /dashboard
page.
src/pages/dashboard.astro
将使用 Firebase 服务器应用验证用户的会话 cookie。如果用户未通过身份验证,页面会将用户重定向到 /signin
页面。
¥src/pages/dashboard.astro
will verify the user’s session cookie using the Firebase server app. If the user is not authenticated, the page will redirect the user to the /signin
page.
下面的示例页面显示用户的名称和注销按钮。单击该按钮将向 /api/auth/signout
端点发送 GET
请求。
¥The example page below display the user’s name and a button to sign out. Clicking the button will send a GET
request to the /api/auth/signout
endpoint.
终端将删除用户的会话 cookie 并将用户重定向到 /signin
页面。
¥The endpoint will delete the user’s session cookie and redirect the user to the /signin
page.
添加 OAuth 提供商
Section titled 添加 OAuth 提供商¥Adding OAuth providers
要将 OAuth 提供程序添加到你的应用中,你需要在 Firebase 控制台中启用它们。
¥To add OAuth providers to your app, you need to enable them in the Firebase console.
在 Firebase 控制台中,转到身份验证部分,然后单击登录方法选项卡。然后,单击“添加新提供程序”按钮并启用你要使用的提供程序。
¥In the Firebase console, go to the Authentication section and click on the Sign-in method tab. Then, click on the Add a new provider button and enable the providers you want to use.
以下示例使用 Google 提供程序。
¥The example below uses the Google provider.
编辑 signin.astro
页面添加:
¥Edit the signin.astro
page to add:
-
现有表单下方用于登录 Google 的按钮
-
按钮上的事件监听器,用于处理现有
<script>
中的登录过程。
单击后,Google 登录按钮将打开一个弹出窗口以使用 Google 登录。用户登录后,它将使用 OAuth 提供程序生成的 ID 令牌向 /api/auth/signin
端点发送 POST
请求。
¥When clicked, the Google sign in button will open a popup window to sign in with Google. Once the user signs in, it will send a POST
request to the /api/auth/signin
endpoint with the ID token generated by OAuth provider.
端点将验证 ID 令牌并为用户创建新的会话 cookie。然后,终端会将用户重定向到 /dashboard
页面。
¥The endpoint will verify the ID token and create a new session cookie for the user. Then, the endpoint will redirect the user to the /dashboard
page.
连接到 Firestore 数据库
Section titled 连接到 Firestore 数据库¥Connecting to Firestore database
¥Prerequisites
-
使用 Firebase 初始化的 Astro 项目,如 在 Astro 中初始化 Firebase 部分所述。
-
具有 Firestore 数据库的 Firebase 项目。你可以关注 用于创建新项目并设置 Firestore 数据库的 Firebase 文档。
在本秘诀中,Firestore 集合将被称为 friends,并将包含具有以下字段的文档:
¥In this recipe, the Firestore collection will be called friends and will contain documents with the following fields:
-
id
:由 Firestore 自动生成 -
name
:字符串字段 -
age
:数字字段 -
isBestFriend
:布尔字段
创建服务器端点
Section titled 创建服务器端点¥Creating the server endpoints
在新目录 src/pages/api/friends/
中创建两个新文件:index.ts
和 [id].ts
。这些将创建两个服务器端点以通过以下方式与 Firestore 数据库交互:
¥Create two new files in a new directory src/pages/api/friends/
: index.ts
and [id].ts
. These will create two server endpoints to interact with the Firestore database in the following ways:
-
POST /api/friends
:在朋友集合中创建一个新文档。 -
POST /api/friends/:id
:更新朋友集合中的文档。 -
DELETE /api/friends/:id
:删除朋友集合中的文档。
index.ts
将包含在朋友集合中创建新文档的代码:
¥index.ts
will contain the code to create a new document in the friends collection:
[id].ts
将包含更新和删除朋友集合中文档的代码:
¥[id].ts
will contain the code to update and delete a document in the friends collection:
为 Firestore 创建服务器端点后,你的项目目录现在应包含以下新文件:
¥After creating server endpoints for Firestore, your project directory should now include these new files:
Directorysrc
- env.d.ts
Directoryfirebase
- client.ts
- server.ts
Directorypages
Directoryapi
Directoryfriends
- index.ts
- [id].ts
- .env
- astro.config.mjs
- package.json
¥Creating pages
创建将使用 Firestore 端点的页面:
¥Create the pages that will use the Firestore endpoints:
-
src/pages/add.astro
- 将包含一个用于添加新朋友的表单。 -
src/pages/edit/[id].astro
- 将包含一个用于编辑朋友的表单和一个用于删除朋友的按钮。 -
src/pages/friend/[id].astro
- 将包含朋友的详细信息。 -
src/pages/dashboard.astro
- 将显示好友列表。
添加新记录
Section titled 添加新记录¥Add a new record
下面的示例 src/pages/add.astro
包含一个将 POST
请求发送到 /api/friends
端点的表单。该端点将使用表单中的数据创建一个新朋友,然后将用户重定向到 /dashboard
页面。
¥The example src/pages/add.astro
below includes a form that will send a POST
request to the /api/friends
endpoint. This endpoint will create a new friend using the data from the form and then will redirect the user to the /dashboard
page.
编辑或删除记录
Section titled 编辑或删除记录¥Edit or Delete a record
src/pages/edit/[id].astro
将包含一个用于编辑好友数据的表单和一个用于删除好友的按钮。提交后,此页面将向 /api/friends/:id
端点发送 POST
请求以更新好友数据。
¥src/pages/edit/[id].astro
will contain a form to edit a friend data and a button to delete a friend. On submit, this page will send a POST
request to the /api/friends/:id
endpoint to update a friend data.
如果用户点击删除按钮,该页面将向 /api/friends/:id
端点发送 DELETE
请求以删除好友。
¥If the user clicks the delete button, this page will send a DELETE
request to the /api/friends/:id
endpoint to delete a friend.
显示单个记录
Section titled 显示单个记录¥Display an individual record
src/pages/friend/[id].astro
将显示好友的详细信息。
¥src/pages/friend/[id].astro
will display the details of a friend.
显示带有编辑按钮的记录列表
Section titled 显示带有编辑按钮的记录列表¥Display a list of records with an edit button
最后,src/pages/dashboard.astro
会显示好友列表。每个朋友都会有一个指向其详细信息页面的链接和一个编辑按钮,该按钮会将用户重定向到编辑页面。
¥Finally, src/pages/dashboard.astro
will display a list of friends. Each friend will have a link to their details page and an edit button that will redirect the user to the edit page.
创建所有页面后,你应该具有以下文件结构:
¥After creating all the pages, you should have the following file structure:
Directorysrc
- env.d.ts
Directoryfirebase
- client.ts
- server.ts
Directorypages
- dashboard.astro
- add.astro
Directoryedit
- [id].astro
Directoryfriend
- [id].astro
Directoryapi
Directoryfriends
- index.ts
- [id].ts
- .env
- astro.config.mjs
- package.json
¥Community Resources