1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

[feature/oauth] Update auth provider oauth to take in service providers

PHPBB3-11673
This commit is contained in:
Joseph Warner 2013-07-14 17:40:09 -04:00
parent 80c5a42525
commit 0156bac3e2
2 changed files with 11 additions and 1 deletions

View File

@ -43,6 +43,7 @@ services:
- @request
- @user
- %tables.auth_provider_oauth%
- @auth.provider.oauth.service_collection
tags:
- { name: auth.provider }
auth.provider.oauth.service_collection:

View File

@ -67,6 +67,13 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base
*/
protected $services;
/**
* All OAuth service providers
*
* @var array Contains phpbb_auth_provider_oauth_service_interface
*/
protected $service_providers;
/**
* Cached current uri object
*
@ -82,14 +89,16 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base
* @param phpbb_request $request
* @param phpbb_user $user
* @param string $auth_provider_oauth_table
* @param phpbb_auth_provider_oauth_service_interface $service_providers
*/
public function __construct(phpbb_db_driver $db, phpbb_config $config, phpbb_request $request, phpbb_user $user, $auth_provider_oauth_table)
public function __construct(phpbb_db_driver $db, phpbb_config $config, phpbb_request $request, phpbb_user $user, $auth_provider_oauth_table, phpbb_auth_provider_oauth_service_interface $service_providers)
{
$this->db = $db;
$this->config = $config;
$this->request = $request;
$this->user = $user;
$this->auth_provider_oauth_table = $auth_provider_oauth_table;
$this->service_providers = $service_providers;
$this->services = array();
}