ionic、firebase:firebase認証からすべてのユーザーのメールを取得する方法

Dec 28 2020

Firebase認証ストアにいるすべてのユーザーのユーザーメールを取得しようとしています。ユーザーがシステム内で相互にメッセージを送信できるようにするために、この情報が必要です。私はイオンの経験があまりないので、それが愚かな質問であるならば私を許してください。ログインしたユーザーの電子メールは必要ありません。すでにアクセスできますが、すべてのユーザーにアクセスできません。

ログインコード、正確に必要かどうかわからない。

// login.page.ts
import { Component, OnInit } from '@angular/core';
import { FormGroup, FormBuilder, Validators, FormControl } from '@angular/forms';
import { NavController } from '@ionic/angular';
import { AuthenticationService } from '../services/authentication.service';

@Component({
  selector: 'app-login',
  templateUrl: './login.page.html',
  styleUrls: ['./login.page.scss'],
})
export class LoginPage implements OnInit {

  validations_form: FormGroup;
  errorMessage: string = '';

  constructor(

    private navCtrl: NavController,
    private authService: AuthenticationService,
    private formBuilder: FormBuilder

  ) { }

  ngOnInit() {

    this.validations_form = this.formBuilder.group({
      email: new FormControl('', Validators.compose([
        Validators.required,
        Validators.pattern('^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+.[a-zA-Z0-9-.]+$')
      ])),
      password: new FormControl('', Validators.compose([
        Validators.minLength(5),
        Validators.required
      ])),
    });
  }


  validation_messages = {
    'email': [
      { type: 'required', message: 'Email is required.' },
      { type: 'pattern', message: 'Please enter a valid email.' }
    ],
    'password': [
      { type: 'required', message: 'Password is required.' },
      { type: 'minlength', message: 'Password must be at least 5 characters long.' }
    ]
  };


  loginUser(value) {
    this.authService.loginUser(value)
      .then(res => {
        console.log(res);
        this.errorMessage = "";
        this.navCtrl.navigateForward('/welcome');
      }, err => {
        this.errorMessage = err.message;
      })
  }

  goToRegisterPage() {
    this.navCtrl.navigateForward('/register');
  }

}

登録コード

// register.page.ts
import { Component, OnInit } from '@angular/core';
import { FormGroup, FormBuilder, Validators, FormControl } from '@angular/forms';
import { AuthenticationService } from '../services/authentication.service';
import { NavController } from '@ionic/angular';

@Component({
  selector: 'app-register',
  templateUrl: './register.page.html',
  styleUrls: ['./register.page.scss'],
})
export class RegisterPage implements OnInit {


  validations_form: FormGroup;
  errorMessage: string = '';
  successMessage: string = '';

  validation_messages = {
    'email': [
      { type: 'required', message: 'Email is required.' },
      { type: 'pattern', message: 'Enter a valid email.' }
    ],
    'password': [
      { type: 'required', message: 'Password is required.' },
      { type: 'minlength', message: 'Password must be at least 5 characters long.' }
    ]
  };

  constructor(
    private navCtrl: NavController,
    private authService: AuthenticationService,
    private formBuilder: FormBuilder
  ) { }

  ngOnInit() {
    this.validations_form = this.formBuilder.group({
      email: new FormControl('', Validators.compose([
        Validators.required,
        Validators.pattern('^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+.[a-zA-Z0-9-.]+$')
      ])),
      password: new FormControl('', Validators.compose([
        Validators.minLength(5),
        Validators.required
      ])),
    });
  }

  tryRegister(value) {
    this.authService.registerUser(value)
      .then(res => {
        console.log(res);
        this.errorMessage = "";
        this.successMessage = "Your account has been created. Please log in.";
      }, err => {
        console.log(err);
        this.errorMessage = err.message;
        this.successMessage = "";
      })
  }

  goLoginPage() {
    this.navCtrl.navigateForward('/login');
  }


}

私が取得しようとしているものは次のようなものになります

  1. ユーザーがリスト/オプションをクリックします
  2. ユーザーが1通のメールを選択
  3. 共有したいメッセージコンテンツを入力します。小さなスニペットを共有します
<ion-select>
    <ion-select-option value="email1">email1</ion-select-option>
    <ion-select-option value="email2">email2</ion-select-option>
    <ion-select-option value="email3">email3</ion-select-option>
    <ion-select-option value="email4">email4/ion-select-option>
  </ion-select> //probably will use *ngFor to do this.

認証サービスのスクリーンショット

回答

FrankvanPuffelen Dec 28 2020 at 00:42

クライアント側のFirebaseAuthentication SDKには、システム内のすべてのユーザーのメールアドレスを取得する方法がありません。これは潜在的なセキュリティリスクになるためです。

アプリでこの機能が必要な場合は、自分で作成する必要があります。最も一般的な2つのオプションは次のとおりです。

  1. このような機能を備えたFirebaseAdminSDKを使用するカスタムサーバー側APIを実装します。
  2. 必要なユーザーデータをFirebaseのRealtimeDatabaseやCloudFirestoreなどのデータベースに保存し、クライアントにアクセスしてもらいます。

どちらの場合も、アプリはユーザーに関して公開されるデータを制御し、セキュリティ上の懸念に対処します。

以下も参照してください。

  • FirebaseAuthを使用して登録したユーザーのリストを取得する
  • AngularFireでユーザーのメールアドレスのリストを取得する
  • Firebaseに登録されているすべての認証メールを取得する方法