回答編集履歴
2
出典の追加
test
CHANGED
@@ -67,3 +67,13 @@
|
|
67
67
|
|
68
68
|
|
69
69
|
なので、「実際アカウントを作ってみて、帰ってきたエラーを画面に表示する」という今のやり方と、「自前でバリデーションする」やり方、どちらがが良いかを考えてみることをオススメします。
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
出典
|
74
|
+
|
75
|
+
[Firebase Authentication#Authのリファレンス](https://firebase.google.com/docs/reference/swift/firebaseauth/api/reference/Classes/Auth?hl=ja)
|
76
|
+
|
77
|
+
[Firebase Authentication#Constantsのリファレンス](https://firebase.google.com/docs/reference/swift/firebaseauth/api/reference/Constants?hl=ja)
|
78
|
+
|
79
|
+
[Firebase Authentication のパスワードの仕様](https://stackoverflow.com/questions/38064248/firebase-password-validation-allowed-regex/38082508)
|
1
回答内容を追加
test
CHANGED
@@ -1 +1,69 @@
|
|
1
1
|
このケースで複数のバリデーションエラーを表示したいときは自前でバリデーションを実装しなければ実現できないと思います。
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
【追記】
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
すみません。言葉足らずだったので追記しておきます。
|
10
|
+
|
11
|
+
どういうことかというと、SDKに事前にバリデーションするメソッドがない以上、「すべてのエラーが出る」という機能を満たすためには、Firebase側の、Emailでのユーザー作成に関する要件をすべて理解、実装していなければ実現できません。そこまでするほどの機能の重要性なのか、ということです。
|
12
|
+
|
13
|
+
[`createUser(withEmail:password:completion:)`](https://firebase.google.com/docs/reference/swift/firebaseauth/api/reference/Classes/Auth?hl=ja#createuserwithemail:password:completion:)
|
14
|
+
|
15
|
+
こちらのメソッドではコールバックの引数としてエラーが起きた場合は`Optional`の`Error`型一つを返すだけなので、複数のエラーを扱うことはできません。
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
そしてアカウントを作れない場合は以下のとおりです。
|
20
|
+
|
21
|
+
> + `FIRAuthErrorCodeInvalidEmail` - Indicates the email address is malformed.
|
22
|
+
|
23
|
+
+ `FIRAuthErrorCodeEmailAlreadyInUse` - Indicates the email used to attempt sign up
|
24
|
+
|
25
|
+
already exists. Call fetchProvidersForEmail to check which sign-in mechanisms the user
|
26
|
+
|
27
|
+
used, and prompt the user to sign in with one of those.
|
28
|
+
|
29
|
+
+ `FIRAuthErrorCodeOperationNotAllowed` - Indicates that email and password accounts
|
30
|
+
|
31
|
+
are not enabled. Enable them in the Auth section of the Firebase console.
|
32
|
+
|
33
|
+
+ `FIRAuthErrorCodeWeakPassword` - Indicates an attempt to set a password that is
|
34
|
+
|
35
|
+
considered too weak. The NSLocalizedFailureReasonErrorKey field in the NSError.userInfo
|
36
|
+
|
37
|
+
dictionary object will contain more detailed explanation that can be shown to the user.
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
上から順に
|
42
|
+
|
43
|
+
- 不正なアドレス形式
|
44
|
+
|
45
|
+
- すでにそのアドレスのユーザーが居る
|
46
|
+
|
47
|
+
- Emailでのユーザー作成がFirebase側で有効になっていない
|
48
|
+
|
49
|
+
- パスワードが弱い
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
です。これらすべてに対してエラーを出したい場合、自前ですべてバリデーションする実装が必要になります。
|
54
|
+
|
55
|
+
- 不正なアドレス形式 -> 正規表現で対応可能
|
56
|
+
|
57
|
+
- パスワードが弱い -> 複雑ながらも対応可能。パスワードの仕様は長さ、使用できる文字の種類が限られている(かななどは不可)の2つがある。この2項目をそれぞれバリデーションする必要がある。[参考](https://stackoverflow.com/questions/38064248/firebase-password-validation-allowed-regex/38082508)
|
58
|
+
|
59
|
+
- すでにそのアドレスのユーザーが居る -> [このメソッド](https://firebase.google.com/docs/reference/swift/firebaseauth/api/reference/Classes/Auth.html?hl=ja#fetchsigninmethodsforemail:completion:)で、[この定数文字列](https://firebase.google.com/docs/reference/swift/firebaseauth/api/reference/Constants?hl=ja#emailpasswordauthsigninmethod)がコールバックの引数に入ってないか調べる
|
60
|
+
|
61
|
+
- Emailでのユーザー作成がFirebase側で有効になっていない -> 設定するばいいので起こり得ない
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
以上の実装を行ってあげないといけません。なので、ユーザーにとっては初回にちょっとあるだけのアカウント登録に対して、ここまでやる必要があるかどうかを見極めなければなりません。もちろん、勉強のためなどであれば実装する理由としては十分だと私は思うので、「そんな面倒なことやるな」という意味でもありません。
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
なので、「実際アカウントを作ってみて、帰ってきたエラーを画面に表示する」という今のやり方と、「自前でバリデーションする」やり方、どちらがが良いかを考えてみることをオススメします。
|