@@ -164,8 +164,8 @@ class SiteController extends Controller
}
}
}
}else{// user already logged in
if(!$auth){// add auth provider
}else{// ユーザは既にログインしている
if(!$auth){// 認証プロバイダを追加
$auth=newAuth([
'user_id'=>Yii::$app->user->id,
'source'=>$client->getId(),
...
...
@@ -182,44 +182,40 @@ class SiteController extends Controller
`$client` インスタンスを通じて、外部サービスから受け取った情報を取得することが出来ます。
私たちの例では、次のことをしようとしています。
- ユーザがゲストであり、Auth にレコードが見つかった場合は、そのユーザをログインさせる。
- ユーザがログインしており、Auth にレコードが見つかった場合は、If user is logged in and record found in auth then try connecting additional account (save its data into auth table).
-If user is guest and record not found in auth then create new user and make a record in auth table. Then log in.