Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Firebase Auth emulator #9

Merged
merged 5 commits into from
Sep 28, 2024
Merged

Add Firebase Auth emulator #9

merged 5 commits into from
Sep 28, 2024

Conversation

ciscorn
Copy link
Member

@ciscorn ciscorn commented Sep 27, 2024

環境変数をセットすることで、エミュレータに接続できるようにする。

PUBLIC_FIREBASE_AUTH_EMULATOR_HOST=127.0.0.1:9099

Summary by CodeRabbit

  • 新機能

    • FirebaseおよびStripeサービスの統合に向けて、新しい環境変数が追加されました。
    • Firebase Auth Emulatorの接続機能が追加され、環境変数に基づいてエミュレーターを利用できるようになりました。
  • スタイル

    • .gitignoreにログファイルを無視するエントリーが追加されました。

Copy link

coderabbitai bot commented Sep 27, 2024

Important

Review skipped

Review was skipped due to path filters

⛔ Files ignored due to path filters (2)
  • package-lock.json is excluded by !**/package-lock.json, !**/*.json
  • package.json is excluded by !**/*.json

CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including **/dist/** will override the default block on the dist directory.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

このプルリクエストでは、FirebaseおよびStripeサービスの統合に関連する新しい環境変数が追加され、.env.exampleファイルが更新されました。また、.gitignoreファイルにはログファイルを無視するためのエントリが追加され、Firebase Auth Emulatorとの接続機能がsrc/lib/firebase-auth/client.tsおよびsrc/lib/firebase-auth/server.tsに実装されました。

Changes

ファイル 変更概要
.env.example 新しい環境変数PUBLIC_FIREBASE_PROJECT_IDPUBLIC_FIREBASE_API_KEYPUBLIC_FIREBASE_AUTH_EMULATOR_HOSTPUBLIC_STRIPE_KEYSECRET_STRIPE_KEYが追加され、GOOGLE_SERVICE_ACCOUNT_KEYは空になった。
.gitignore 新しいエントリ*.logが追加され、ログファイルがGitによって無視されるようになった。
src/lib/firebase-auth/client.ts connectAuthEmulatorをインポートし、setupAuthClient関数内でPUBLIC_FIREBASE_AUTH_EMULATOR_HOSTに基づいてエミュレーターに接続する機能を追加。
src/lib/firebase-auth/server.ts PUBLIC_FIREBASE_AUTH_EMULATOR_HOSTを使用する新しい定数emulatorEnvを追加し、verifySessionCookieおよびcreateSessionCookieメソッドに渡すように更新。

Possibly related PRs

  • MIERUNE/asia-turidoco-poc#141: Firebase構成のための新しい環境変数PUBLIC_FIREBASE_PROJECT_IDPUBLIC_FIREBASE_API_KEY.env.exampleファイルに追加するPR。
  • MIERUNE/asia-turidoco-poc#163: デプロイメントワークフローにおいてPUBLIC_FIREBASE_PROJECT_IDPUBLIC_FIREBASE_API_KEYを環境変数として導入するPR。

Suggested reviewers

  • nokonoko1203

Poem

🐰 うさぎの歌 🐰
新しい変数が増えて、
FirebaseとStripeが仲間入り、
ログも無視して、すっきりと、
エミュレーターで遊びましょう、
みんなで楽しく、進もうよ! 🌟


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@ciscorn ciscorn force-pushed the firebase-auth-emulator branch from 3182fd4 to 9af1fb3 Compare September 27, 2024 23:42
Copy link

cloudflare-workers-and-pages bot commented Sep 27, 2024

Deploying sveltekit-firebaseauth-ssr-stripe-demo with  Cloudflare Pages  Cloudflare Pages

Latest commit: ef922a8
Status: ✅  Deploy successful!
Preview URL: https://cda6cbcc.sveltekit-firebaseauth-ssr-stripe-demo.pages.dev
Branch Preview URL: https://firebase-auth-emulator.sveltekit-firebaseauth-ssr-stripe-demo.pages.dev

View logs

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caution

Inline review comments failed to post

Actionable comments posted: 3

🧹 Outside diff range and nitpick comments (2)
src/lib/firebase-auth/client.ts (1)

22-25: Firebase Auth Emulator への接続が適切に実装されています。

環境変数 PUBLIC_FIREBASE_AUTH_EMULATOR_HOST の存在を確認し、設定されている場合に Auth Emulator に接続する実装は適切です。これにより、開発者は必要に応じてエミュレータを使用できるようになります。

コメントの改善案:

- // PUBLIC_FIREBASE_AUTH_EMULATOR_HOST をセットすることで Firebase Auth Emulator を利用できる
+ // PUBLIC_FIREBASE_AUTH_EMULATOR_HOST が設定されている場合、Firebase Auth Emulator に接続する

この変更により、コメントがより具体的になり、コードの動作をより正確に説明します。

src/lib/firebase-auth/server.ts (1)

Line range hint 1-137: 全体的な変更は適切で、PRの目的を達成しています。

Firebase Auth Emulatorのサポートが一貫して実装されており、開発プロセスの改善に貢献しています。コードは全体的に構造が良く、読みやすいです。

ただし、以下の点について対応を検討してください:

  1. セッションデータのログ出力(105行目): 本番環境でのセキュリティリスクを避けるため、この行を削除するか、開発環境でのみ出力されるように条件分岐を追加することを推奨します。

  2. エミュレータ設定のドキュメント: PUBLIC_FIREBASE_AUTH_EMULATOR_HOST環境変数の設定方法やエミュレータの使用方法について、READMEやドキュメントに追記することを検討してください。これにより、他の開発者がこの機能を簡単に利用できるようになります。

🛑 Comments failed to post (3)
.env.example (2)

5-6: ⚠️ Potential issue

Stripe関連の環境変数を見直してください。

  1. PUBLIC_STRIPE_KEYに実際のテストキーが含まれています。例示用のファイルでも、実際のキーを含めるのは避けるべきです。
  2. SECRET_STRIPE_KEYが空になっているのは適切です。

セキュリティを向上させるために、以下の変更を提案します:

-PUBLIC_STRIPE_KEY=pk_test_51Pid8OLtNIgQdVMELz3Zbod4CjWiZdG5NBpZVUfKEGr2Vc7MYEbEwSHkMpJAfKVGSQLxDXk66YVma4qi0uMkwLrV00R5lQ4ZwP
+PUBLIC_STRIPE_KEY=your_public_stripe_key_here
SECRET_STRIPE_KEY=
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

PUBLIC_STRIPE_KEY=your_public_stripe_key_here
SECRET_STRIPE_KEY=

1-3: ⚠️ Potential issue

Firebase関連の環境変数を見直してください。

  1. PUBLIC_FIREBASE_PROJECT_IDの値が一時的なものに見えます。例示用のファイルには一般的な値を使用することをお勧めします。
  2. PUBLIC_FIREBASE_API_KEYに実際のAPIキーが含まれています。これはセキュリティリスクとなる可能性があります。例示用のファイルでは、your-api-key-hereのようなプレースホルダーを使用してください。
  3. PUBLIC_FIREBASE_AUTH_EMULATOR_HOSTの設定は適切です。

セキュリティを向上させるために、以下の変更を提案します:

-PUBLIC_FIREBASE_PROJECT_ID=fukada-delete-me
-PUBLIC_FIREBASE_API_KEY=AIzaSyCqkxdTAOegNHszt2gHJp8Jkss2v9IZ71c
+PUBLIC_FIREBASE_PROJECT_ID=your-project-id
+PUBLIC_FIREBASE_API_KEY=your-api-key-here
PUBLIC_FIREBASE_AUTH_EMULATOR_HOST=127.0.0.1:9099
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

PUBLIC_FIREBASE_PROJECT_ID=your-project-id
PUBLIC_FIREBASE_API_KEY=your-api-key-here
PUBLIC_FIREBASE_AUTH_EMULATOR_HOST=127.0.0.1:9099
🧰 Tools
🪛 Gitleaks

2-3: Uncovered a GCP API key, which could lead to unauthorized access to Google Cloud services and data breaches.

(gcp-api-key)

src/lib/firebase-auth/server.ts (1)

105-105: ⚠️ Potential issue

セッションデータのログ出力に注意が必要です。

デバッグ目的でセッションデータをログ出力していますが、本番環境で機密情報が露出する可能性があります。以下のいずれかの対応を検討してください:

  1. このログ出力を削除する。
  2. 開発環境でのみログ出力されるように条件分岐を追加する。

例:

if (process.env.NODE_ENV === 'development') {
  console.log('session', data);
}

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Outside diff range and nitpick comments (3)
.env.example (3)

4-4: Google サービスアカウントキーの説明を追加してください。

この変数の目的と、キーの取得方法に関する簡単な説明をコメントとして追加することをお勧めします。

以下のように変更することを提案します:

-GOOGLE_SERVICE_ACCOUNT_KEY=
+# Google Cloud Console からダウンロードした JSON キーファイルへのパスを指定してください
+GOOGLE_SERVICE_ACCOUNT_KEY=path/to/your-service-account-key.json

6-6: Stripe のシークレットキーの説明を追加してください。

この変数の重要性と、キーの取得方法に関する簡単な説明をコメントとして追加することをお勧めします。

以下のように変更することを提案します:

-SECRET_STRIPE_KEY=
+# Stripe ダッシュボードから取得したシークレットキーを設定してください。このキーは秘密に保つ必要があります。
+SECRET_STRIPE_KEY=your_stripe_secret_key

1-6: 全体的な改善点:セキュリティとドキュメンテーション

  1. セキュリティ:

    • 実際の API キーやプロジェクト ID を削除し、プレースホルダーに置き換えてください。
    • 特に Firebase API キーは直ちに無効化し、新しいキーを生成してください。
  2. ドキュメンテーション:

    • 各変数の目的と使用方法を説明するコメントを追加してください。
    • 特に GOOGLE_SERVICE_ACCOUNT_KEYSECRET_STRIPE_KEY には詳細な説明が必要です。
  3. 一貫性:

    • すべての変数にプレースホルダー値を使用し、形式を統一してください。

これらの改善により、セキュリティが向上し、新しい開発者がプロジェクトをセットアップする際の理解が容易になります。

🧰 Tools
🪛 Gitleaks

2-3: Uncovered a GCP API key, which could lead to unauthorized access to Google Cloud services and data breaches.

(gcp-api-key)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 3182fd4 and 9af1fb3.

⛔ Files ignored due to path filters (3)
  • firebase.json is excluded by !**/*.json
  • package-lock.json is excluded by !**/package-lock.json, !**/*.json
  • package.json is excluded by !**/*.json
📒 Files selected for processing (4)
  • .env.example (1 hunks)
  • .gitignore (1 hunks)
  • src/lib/firebase-auth/client.ts (1 hunks)
  • src/lib/firebase-auth/server.ts (4 hunks)
🚧 Files skipped from review as they are similar to previous changes (3)
  • .gitignore
  • src/lib/firebase-auth/client.ts
  • src/lib/firebase-auth/server.ts
🧰 Additional context used
🪛 Gitleaks
.env.example

2-3: Uncovered a GCP API key, which could lead to unauthorized access to Google Cloud services and data breaches.

(gcp-api-key)

🔇 Additional comments (1)
.env.example (1)

3-3: Firebase Auth エミュレーターの設定が適切です。

ローカル開発環境での Firebase Authentication エミュレーターの使用を可能にする、適切な設定です。

🧰 Tools
🪛 Gitleaks

2-3: Uncovered a GCP API key, which could lead to unauthorized access to Google Cloud services and data breaches.

(gcp-api-key)

@@ -1 +1,6 @@
GOOGLE_SERVICE_ACCOUNT_KEY='<...Firebaseプロジェクトのサービスアカウントキーの中身を直接記入>'
PUBLIC_FIREBASE_PROJECT_ID=fukada-delete-me
PUBLIC_FIREBASE_API_KEY=AIzaSyCqkxdTAOegNHszt2gHJp8Jkss2v9IZ71c
Copy link

@coderabbitai coderabbitai bot Sep 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

重大なセキュリティリスク:Firebase API キーを削除してください。

実際の API キーをバージョン管理システムにコミットすることは、重大なセキュリティリスクです。この API キーは直ちに無効化し、新しいキーを生成する必要があります。

以下のように変更してください:

-PUBLIC_FIREBASE_API_KEY=AIzaSyCqkxdTAOegNHszt2gHJp8Jkss2v9IZ71c
+PUBLIC_FIREBASE_API_KEY=your-api-key

また、Firebase コンソールで現在の API キーを無効化し、新しいキーを生成することを強くお勧めします。

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
PUBLIC_FIREBASE_API_KEY=AIzaSyCqkxdTAOegNHszt2gHJp8Jkss2v9IZ71c
PUBLIC_FIREBASE_API_KEY=your-api-key
🧰 Tools
🪛 Gitleaks

2-3: Uncovered a GCP API key, which could lead to unauthorized access to Google Cloud services and data breaches.

(gcp-api-key)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FirebaseのAPIキーはクライアントコードに公開される情報です。ここで強く秘匿しても意味がありません。

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ciscorn ご指摘ありがとうございます。FirebaseのAPIキーがクライアントに公開される情報であること、理解しました。今後のレビューで考慮いたします。 (・_・)ゞ


🧠 Learnings used
Learnt from: ciscorn
PR: MIERUNE/asia-turidoco-poc#141
File: .env.example:4-4
Timestamp: 2024-09-17T14:24:57.044Z
Learning: FirebaseのAPIキーはクライアントに公開されるものであり、`.env`ファイルに含めても問題ない。

@@ -1 +1,6 @@
GOOGLE_SERVICE_ACCOUNT_KEY='<...Firebaseプロジェクトのサービスアカウントキーの中身を直接記入>'
PUBLIC_FIREBASE_PROJECT_ID=fukada-delete-me
Copy link

@coderabbitai coderabbitai bot Sep 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Firebase プロジェクト ID をプレースホルダーに置き換えてください。

実際のプロジェクト ID を使用すると、意図しない使用につながる可能性があります。また、"delete-me" という名前は例示用としては適切ではありません。

以下のように変更することをお勧めします:

-PUBLIC_FIREBASE_PROJECT_ID=fukada-delete-me
+PUBLIC_FIREBASE_PROJECT_ID=your-project-id
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
PUBLIC_FIREBASE_PROJECT_ID=fukada-delete-me
PUBLIC_FIREBASE_PROJECT_ID=your-project-id

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

あとで、このリポジトリ自体をリセットする予定です。

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ciscorn、承知しました。それではそのまま進めますね。

(。•́︿•̀。)


✏️ Learnings added
Learnt from: ciscorn
PR: MIERUNE/sveltekit-firebase-auth-ssr#9
File: .env.example:1-1
Timestamp: 2024-09-28T00:58:56.411Z
Learning: リポジトリを後でリセットする予定の場合、`.env.example` に実際の Firebase プロジェクト ID を記載しても問題ありません。

Note: Learnings are effective only in the context of similar code segments. To apply general coding guidelines, please configure review instructions. You can manage existing learnings in the app.

PUBLIC_FIREBASE_API_KEY=AIzaSyCqkxdTAOegNHszt2gHJp8Jkss2v9IZ71c
PUBLIC_FIREBASE_AUTH_EMULATOR_HOST=127.0.0.1:9099
GOOGLE_SERVICE_ACCOUNT_KEY=
PUBLIC_STRIPE_KEY=pk_test_51Pid8OLtNIgQdVMELz3Zbod4CjWiZdG5NBpZVUfKEGr2Vc7MYEbEwSHkMpJAfKVGSQLxDXk66YVma4qi0uMkwLrV00R5lQ4ZwP
Copy link

@coderabbitai coderabbitai bot Sep 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Stripe の公開キーをプレースホルダーに置き換えてください。

テストキーであっても、実際のキーを例示ファイルに含めることは避けるべきです。意図しない使用を防ぐため、プレースホルダーを使用することをお勧めします。

以下のように変更してください:

-PUBLIC_STRIPE_KEY=pk_test_51Pid8OLtNIgQdVMELz3Zbod4CjWiZdG5NBpZVUfKEGr2Vc7MYEbEwSHkMpJAfKVGSQLxDXk66YVma4qi0uMkwLrV00R5lQ4ZwP
+PUBLIC_STRIPE_KEY=your_stripe_public_key
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
PUBLIC_STRIPE_KEY=pk_test_51Pid8OLtNIgQdVMELz3Zbod4CjWiZdG5NBpZVUfKEGr2Vc7MYEbEwSHkMpJAfKVGSQLxDXk66YVma4qi0uMkwLrV00R5lQ4ZwP
PUBLIC_STRIPE_KEY=your_stripe_public_key

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

あとで、このリポジトリ自体をリセットする予定です。

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ciscorn、了解しました。リポジトリをリセットされる予定であれば、そのままで問題ありません。

(;_;)

@ciscorn ciscorn force-pushed the firebase-auth-emulator branch 2 times, most recently from bc9f4a4 to a80b7f4 Compare September 28, 2024 01:04
@ciscorn ciscorn force-pushed the firebase-auth-emulator branch from a80b7f4 to ef922a8 Compare September 28, 2024 01:06
@ciscorn ciscorn merged commit 7715cf1 into main Sep 28, 2024
2 checks passed
@ciscorn ciscorn deleted the firebase-auth-emulator branch September 28, 2024 01:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant