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

docs/guide-ja updated #385

Merged
merged 1 commit into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guide-ja/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ OAuth では、使おうとしているサービスからクライアント ID
外部サービスによって認証されたユーザを認識するために、最初の認証のときに提供された ID を保存し、以後の認証のときにはそれをチェックする必要があります。
ログインのオプションを外部サービスに限定するのは良いアイデアではありません。
外部サービスによる認証が失敗して、ユーザがログインする方法がなくなるかもしれないからです。
そんなことはせずに、外部認証と昔ながらのパスワードによるログインの両方を提供する方が適切です
むしろ外部認証と昔ながらのパスワードによるログインの両方を提供する方が適切です

ユーザの情報をデータベースに保存しようとする場合、スキーマは次のようなものになります。

Expand Down
8 changes: 4 additions & 4 deletions docs/guide-ja/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## コントローラにアクションを追加する

次のステップは、ウェブのコントローラに [[yii\authclient\AuthAction]] を追加して、あなたの必要に応じた `successCallback` の実装を提供することです。
典型的な場合、コントローラのコードは、最終的には次のようなものになります
典型的な場合、最終的なコントローラのコードは次のようなものになります

```php
use app\components\AuthHandler;
Expand Down Expand Up @@ -66,8 +66,8 @@ class AuthHandler

/* @var $auth Auth */
$auth = Auth::find()->where([
'source' => $client->getId(),
'source_id' => $attributes['id'],
'source' => $this->client->getId(),
'source_id' => $id,
])->one();

if (Yii::$app->user->isGuest) {
Expand All @@ -79,7 +79,7 @@ class AuthHandler
} else { // ユーザ登録
if ($email !== null && User::find()->where(['email' => $email])->exists()) {
Yii::$app->getSession()->setFlash('error', [
Yii::t('app', "{client} のアカウントと同じメール・アドレスを持つユーザが既に存在しますが、まだそのアカウントとリンクされていません。リンクするために、まずメール・アドレスを使ってログインしてください。", ['client' => $this->client->getTitle()]),
Yii::t('app', "{client} のアカウントと同じメール・アドレスを持つユーザが既に存在しますが、まだリンクされていません。通常の方法でログインして、{client} のアカウントとリンクさせてて下さい。", ['client' => $this->client->getTitle()]),
]);
} else {
$password = Yii::$app->security->generateRandomString(6);
Expand Down
Loading