aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_auth_link.php
blob: cf92b5d58de4d8ae911276b2dae53c370cb8c7cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/**
*
* @package notifications
* @copyright (c) 2013 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

class ucp_auth_link
{
	public $u_action;

	public function main($id, $mode)
	{
		global $config, $request, $template, $phpbb_container;

		$error = array();

		$auth_provider = $phpbb_container->get('auth.provider.' . $config['auth_method']);

		// confirm that the auth provider supports this page
		$provider_data = $auth_provider->get_auth_link_data();
		if ($provider_data === null)
		{
			$error[] = 'UCP_AUTH_LINK_NOT_SUPPORTED';
		}

		$s_hidden_fields = array();
		add_form_key('ucp_auth_link');

		$submit	= $request->variable('submit', false, false, phpbb_request_interface::POST);

		if (!sizeof($error) && $submit)
		{
			if (!check_form_key('ucp_reg_details'))
			{
				$error[] = 'FORM_INVALID';
			}

			if (!sizeof($error))
			{

			}
		}

		$s_hidden_fields = build_hidden_fields($s_hidden_fields);

		$template->assign_vars(array(
			'ERROR'	=> $this->build_error_text($error),

			'PROVIDER_TEMPLATE_FILE'	=> $provider_data['TEMPLATE_FILE'],

			'S_HIDDEN_FIELDS'	=> $s_hidden_fields,
			'S_UCP_ACTION'		=> $this->u_action,
		));

		$this->tpl_name = 'ucp_auth_link';
		$this->page_title = 'UCP_AUTH_LINK';
	}

	private function build_error_text(array $errors)
	{
		global $user;

		// Replace all errors that are language constants
		foreach ($errors as $key => $error)
		{
			if (isset($user->lang[$error]))
			{
				$errors[$key] = $user->lang($error);
			}
		}

		return implode('<br />', $errors);
	}
}