Skip to content

Commit 9407eb0

Browse files
committed
[ticket/17414] Replace confirm types with enum
PHPBB-17414
1 parent 45d9109 commit 9407eb0

File tree

5 files changed

+30
-13
lines changed

5 files changed

+30
-13
lines changed

auth/provider/db.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ public function login($username, $password)
176176
// Every auth module is able to define what to do by itself...
177177
if ($show_captcha)
178178
{
179-
$captcha->init(\phpbb\captcha\plugins\plugin_interface::CONFIRM_LOGIN);
179+
$captcha->init(\phpbb\captcha\plugins\confirm_type::LOGIN);
180180
if ($captcha->validate() !== true)
181181
{
182182
return array(

captcha/plugins/confirm_type.php

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
/**
3+
*
4+
* This file is part of the phpBB Forum Software package.
5+
*
6+
* @copyright (c) phpBB Limited <https://www.phpbb.com>
7+
* @license GNU General Public License, version 2 (GPL-2.0)
8+
*
9+
* For full copyright and license information, please see
10+
* the docs/CREDITS.txt file.
11+
*
12+
*/
13+
14+
namespace phpbb\captcha\plugins;
15+
16+
/**
17+
* Confirmation types for CAPTCHA plugins
18+
*/
19+
enum confirm_type: int {
20+
case REGISTRATION = 1;
21+
case LOGIN = 2;
22+
case POST = 3;
23+
case REPORT = 4;
24+
}

captcha/plugins/plugin_interface.php

+2-10
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@
1515

1616
interface plugin_interface
1717
{
18-
const CONFIRM_REGISTRATION = 1;
19-
const CONFIRM_LOGIN = 2;
20-
21-
const CONFIRM_POST = 3;
22-
23-
const CONFIRM_REPORT = 4;
24-
25-
2618
/**
2719
* Check if the plugin is available
2820
*
@@ -54,10 +46,10 @@ public function set_name(string $name): void;
5446
/**
5547
* Display the captcha for the specified type
5648
*
57-
* @param int $type Type of captcha, should be one of the CONFIRMATION_* constants
49+
* @param confirm_type $type Type of captcha, should be one of the CONFIRMATION_* constants
5850
* @return void
5951
*/
60-
public function init(int $type): void;
52+
public function init(confirm_type $type): void;
6153

6254
/**
6355
* Get hidden form fields for this captcha plugin

captcha/plugins/turnstile.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public function set_name(string $name): void
121121
/**
122122
* {@inheritDoc}
123123
*/
124-
public function init(int $type): void
124+
public function init(confirm_type $type): void
125125
{
126126
$this->language->add_lang('captcha_turnstile');
127127
}

report/controller/report.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
namespace phpbb\report\controller;
1515

16+
use phpbb\captcha\plugins\confirm_type;
1617
use phpbb\captcha\plugins\plugin_interface;
1718
use phpbb\exception\http_exception;
1819
use phpbb\report\report_handler_interface;
@@ -132,7 +133,7 @@ public function handle($id, $mode)
132133
if ($this->config['enable_post_confirm'] && !$this->user->data['is_registered'])
133134
{
134135
$captcha = $this->captcha_factory->get_instance($this->config['captcha_plugin']);
135-
$captcha->init(plugin_interface::CONFIRM_REPORT);
136+
$captcha->init(confirm_type::REPORT);
136137
}
137138

138139
//Has the report been cancelled?

0 commit comments

Comments
 (0)