This plugin allows us to log in the control panel with our Google Account.
Note
This is meant to be internally used by Deux Huit Huit and might not do what you want. Pull Requests are welcome :)
- Create OAuth client ID here
- Application type to Web application
- Name the credentials with the client's project name
- Add the authorized redirect URIs according to your setup. e.g.
https://example.com/actions/agency-auth/callback
no language are required. - Save the credentials
- Fill the credentials in the
/config/agency-auth.php
file - Commit the changes
The possible settings are:
<?php
return [
'*' => [
'client_id' => '',
'client_secret' => '',
'domain' => '',
'default_password' => '',
'photo_volume_handle' => '', // optional
'photo_folder_name' => '', // optional
]
];
This file will prevent the manual login with a password into craft's CP. It will also add js and css into the login page for the oauth2 dialog button.
This will only redirect the user to the oauth2 dialog.
This will handle the oauth2 callback and login the user.
Rule id 930120 does not like the .profile
string in Google's response, so make sure
to tweak it for your needs.