-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathext.php
More file actions
131 lines (106 loc) · 2.48 KB
/
Copy pathext.php
File metadata and controls
131 lines (106 loc) · 2.48 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?php
/**
* Cloudflare extension for phpBB.
* @author Alfredo Ramos <alfredo.ramos@proton.me>
* @copyright 2026 Alfredo Ramos
* @license GPL-2.0-only
*/
namespace alfredoramos\cloudflare;
use phpbb\extension\base;
class ext extends base
{
/**
* {@inheritdoc}
*/
public function is_enableable()
{
return phpbb_version_compare(PHPBB_VERSION, '3.3.0', '>=');
}
/**
* {@inheritdoc}
*/
public function enable_step($old_state)
{
$parent_state = parent::enable_step($old_state);
if ($parent_state === false)
{
$this->handle_turnstile('enable');
}
return $parent_state;
}
/**
* {@inheritdoc}
*/
public function disable_step($old_state)
{
switch ($old_state)
{
case '':
$state = $this->handle_turnstile('disable');
break;
default:
$state = parent::disable_step($old_state);
break;
}
return $state;
}
/**
* {@inheritdoc}
*/
public function purge_step($old_state)
{
switch ($old_state)
{
case '':
$state = $this->handle_turnstile('purge');
break;
default:
$state = parent::purge_step($old_state);
break;
}
return $state;
}
/**
* Turnstile step configuration handler.
*
* @param string $step The name of the step.
*
* @return bool|string
*/
private function handle_turnstile($step = '')
{
if (empty($step))
{
return false;
}
$config = $this->container->get('config');
$fallback_service = 'core.captcha.plugins.nogd';
$turnstile_service = 'alfredoramos.cloudflare.captcha.turnstile';
switch ($step)
{
case 'enable':
$old_captcha = !empty($config->offsetGet('old_captcha_plugin')) ? $config->offsetGet('old_captcha_plugin') : $fallback_service;
$current_captcha = $config->offsetGet('captcha_plugin');
$config->set('old_captcha_plugin', $current_captcha);
if ($old_captcha === $turnstile_service)
{
$config->set('captcha_plugin', $turnstile_service);
}
break;
case 'disable':
$old_captcha = !empty($config->offsetGet('old_captcha_plugin')) ? $config->offsetGet('old_captcha_plugin') : $fallback_service;
$old_captcha = ($old_captcha !== $turnstile_service) ? $old_captcha : $fallback_service;
$current_captcha = $config->offsetGet('captcha_plugin');
$config->set('old_captcha_plugin', $current_captcha);
if ($current_captcha === $turnstile_service)
{
$config->set('captcha_plugin', $old_captcha);
}
break;
case 'purge':
$config->delete('old_captcha_plugin');
break;
}
return 'turnstile_handled';
}
}