Skip to content

Commit ebc4ddf

Browse files
authored
Merge pull request #365 from GM-Alex/next
Bump version 2.2.18
2 parents 7572698 + 9bb42df commit ebc4ddf

20 files changed

+148
-28
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "User Access Manager plugin for Wordpress",
44
"type": "wordpress-plugin",
55
"license": "GPL-2.0",
6-
"version": "2.2.17",
6+
"version": "2.2.18",
77
"authors": [
88
{
99
"name": "Alexander Schneider",

includes/language.php

+2
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,8 @@
172172
define('TXT_UAM_SHOW_ASSIGNED_GROUPS_DESC', __('Show assigned groups next to the edit link', 'user-access-manager'));
173173
define('TXT_UAM_HIDE_EDIT_LINK_ON_NO_ACCESS', __('Hide edit link on no access', 'user-access-manager'));
174174
define('TXT_UAM_HIDE_EDIT_LINK_ON_NO_ACCESS_DESC', __('Hides the edit link if the user has no write access.', 'user-access-manager'));
175+
define('TXT_UAM_EXTRA_IP_HEADER', __('Extra IP header', 'user-access-manager'));
176+
define('TXT_UAM_EXTRA_IP_HEADER_DESC', __('Use this header for the user IP address if you are using a proxy. A valid value is for example HTTP_X_REAL_IP.', 'user-access-manager'));
175177

176178
// --- Setting Page -> default values ---
177179
define('TXT_UAM_SETTING_DEFAULT_NO_RIGHTS', __('No rights!', 'user-access-manager'));

init.php

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ function initUserAccessManger()
8080
$userGroupHandler = new UserGroupHandler(
8181
$wordpress,
8282
$wordpressConfig,
83+
$mainConfig,
8384
$database,
8485
$objectHandler,
8586
$userHandler,

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "user-access-manager",
3-
"version": "2.2.17",
3+
"version": "2.2.18",
44
"description": "[![Build Status](https://travis-ci.org/GM-Alex/user-access-manager.svg)](https://travis-ci.org/GM-Alex/user-access-manager)",
55
"main": "index.js",
66
"directories": {

readme.txt

+10-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: GM_Alex
33
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=1947052
44
Tags: admin, access, member area, members, member, member access, page, pages, post, posts, private, privacy, restrict, user, user access manager, user management
55
Requires at least: 4.7
6-
Tested up to: 5.9
7-
Stable tag: 2.2.17
6+
Tested up to: 6.1
7+
Stable tag: 2.2.18
88

99
With the "User Access Manager"-plugin you can manage the access to your posts, pages and files.
1010

@@ -59,6 +59,13 @@ Here you found the changes in each version.
5959

6060
Version Date Changes
6161

62+
2.2.18 2022/11/14 Fix issue with label id. Thanks to elbakkali
63+
Add elementor support. Thanks to JboyJW
64+
Fix possible issue with PHP 8. Thanks to ollycross
65+
Fix attachment issue.
66+
Fix tags issue.
67+
Make extra IP header configurable.
68+
6269
2.2.17 2022/02/15 Fix issue with big picture handling. #350
6370

6471
2.2.16 2022/01/25 Check compatibility for Wordpress 5.9.
@@ -456,7 +463,7 @@ See: [https://github.com/GM-Alex/user-access-manager/wiki/FAQ](https://github.co
456463

457464
== Screenshots ==
458465

459-
1. The group manger.
466+
1. The group manager.
460467
2. The setting screen
461468
3. The setup screen.
462469
4. Integration into post overview.

src/Config/MainConfig.php

+11
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@ private function addDefaultGeneralConfigParameters(array &$configParameters)
109109
$id = 'hide_edit_link_on_no_access';
110110
$configParameters[$id] = $this->configParameterFactory->createBooleanConfigParameter($id, true);
111111

112+
$id = 'extra_ip_header';
113+
$configParameters[$id] = $this->configParameterFactory->createStringConfigParameter($id, 'HTTP_X_REAL_IP');
114+
112115
$id = 'protect_feed';
113116
$configParameters[$id] = $this->configParameterFactory->createBooleanConfigParameter($id, true);
114117

@@ -623,4 +626,12 @@ public function getActiveCacheProvider(): ?string
623626
{
624627
return $this->getParameterValue('active_cache_provider');
625628
}
629+
630+
/**
631+
* @return null|string
632+
*/
633+
public function getExtraIpHeader(): ?string
634+
{
635+
return $this->getParameterValue('extra_ip_header');
636+
}
626637
}

src/Controller/Backend/SettingsController.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,8 @@ private function getOtherSettingsForm(): Form
453453
'blog_admin_hint',
454454
'blog_admin_hint_text',
455455
'show_assigned_groups',
456-
'hide_edit_link_on_no_access'
456+
'hide_edit_link_on_no_access',
457+
'extra_ip_header'
457458
];
458459

459460
return $this->formHelper->getSettingsForm($parameters);

src/Controller/Frontend/FrontendController.php

+21
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,25 @@ public function getWpSeoUrl($url, string $type, object $object)
137137
{
138138
return ($this->accessHandler->checkObjectAccess($type, $object->ID) === true) ? $url : false;
139139
}
140+
141+
/*
142+
* Elementor
143+
*/
144+
145+
/**
146+
* @param $content
147+
* @return mixed
148+
* @throws UserGroupTypeException
149+
*/
150+
public function getElementorContent($content)
151+
{
152+
$this->wordpress->removeAction('elementor/frontend/the_content', [$this, 'getElementorContent']);
153+
$post = $this->wordpress->getCurrentPost();
154+
155+
if ($this->accessHandler->checkObjectAccess($post->post_type, $post->ID) === false) {
156+
$content = htmlspecialchars_decode($this->mainConfig->getPostTypeContent($post->post_type));
157+
}
158+
159+
return $content;
160+
}
140161
}

src/File/FileHandler.php

+1
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ private function deliverFileViaFopen(string $file)
168168
*/
169169
private function deliverFile(string $file, bool $isInline)
170170
{
171+
header("HTTP/1.1 200 OK");
171172
$downloadType = $this->mainConfig->getDownloadType();
172173

173174
if ($downloadType === 'xsendfile') {

src/UserAccessManager.php

+16-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
*/
5151
class UserAccessManager
5252
{
53-
const VERSION = '2.2.17';
53+
const VERSION = '2.2.18';
5454
const DB_VERSION = '1.6.1';
5555

5656
/**
@@ -692,6 +692,21 @@ public function addActionsAndFilters()
692692
$this->wordpress->addAction('wp_enqueue_scripts', [$frontendController, 'enqueueStylesAndScripts']);
693693
$this->wordpress->addFilter('get_ancestors', [$frontendController, 'showAncestors'], 20, 4);
694694
$this->wordpress->addFilter('wpseo_sitemap_entry', [$frontendController, 'getWpSeoUrl'], 1, 3);
695+
$this->wordpress->addFilter(
696+
'elementor/frontend/builder_content_data',
697+
function ($data, $postId) use ($frontendController) {
698+
if ($this->wordpress->getQueriedObjectId() === $postId) {
699+
$this->wordpress->addAction(
700+
'elementor/frontend/the_content',
701+
[$frontendController, 'getElementorContent']
702+
);
703+
}
704+
705+
return $data;
706+
},
707+
10,
708+
2
709+
);
695710

696711
// Post controller
697712
$frontendPostController = $this->controllerFactory->createFrontendPostController();

src/UserGroup/UserGroup.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function getIpRange()
9696
*/
9797
public function getIpRangeArray(): array
9898
{
99-
return explode(';', $this->ipRange);
99+
return explode(';', (string) $this->ipRange);
100100
}
101101

102102
/**

src/UserGroup/UserGroupHandler.php

+13-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
namespace UserAccessManager\UserGroup;
1919

2020
use Exception;
21+
use UserAccessManager\Config\MainConfig;
2122
use UserAccessManager\Config\WordpressConfig;
2223
use UserAccessManager\Database\Database;
2324
use UserAccessManager\Object\ObjectHandler;
@@ -42,6 +43,11 @@ class UserGroupHandler
4243
*/
4344
private $wordpressConfig;
4445

46+
/**
47+
* @var MainConfig
48+
*/
49+
private $mainConfig;
50+
4551
/**
4652
* @var Database
4753
*/
@@ -85,13 +91,15 @@ class UserGroupHandler
8591
public function __construct(
8692
Wordpress $wordpress,
8793
WordpressConfig $wordpressConfig,
94+
MainConfig $mainConfig,
8895
Database $database,
8996
ObjectHandler $objectHandler,
9097
UserHandler $userHandler,
9198
UserGroupFactory $userGroupFactory
9299
) {
93100
$this->wordpress = $wordpress;
94101
$this->wordpressConfig = $wordpressConfig;
102+
$this->mainConfig = $mainConfig;
95103
$this->database = $database;
96104
$this->objectHandler = $objectHandler;
97105
$this->userHandler = $userHandler;
@@ -261,7 +269,10 @@ public function unsetUserGroupsForObject()
261269
*/
262270
private function checkUserGroupAccess(UserGroup $userGroup): bool
263271
{
264-
$userIp = $_SERVER['HTTP_X_REAL_IP'] ?? $_SERVER['REMOTE_ADDR'] ?? '';
272+
$extraIpHeader = $this->mainConfig->getExtraIpHeader();
273+
$userIp = $extraIpHeader !== null ?
274+
$_SERVER[$extraIpHeader] ?? ($_SERVER['REMOTE_ADDR'] ?? '') :
275+
$_SERVER['REMOTE_ADDR'] ?? '';
265276

266277
return $this->userHandler->isIpInRange($userIp, $userGroup->getIpRangeArray())
267278
|| $this->wordpressConfig->atAdminPanel() === false && $userGroup->getReadAccess() === 'all'
@@ -295,7 +306,7 @@ private function assignDynamicUserGroupsForUser(WP_User $currentUser, array &$us
295306

296307
/**
297308
* Returns the user groups for the user.
298-
* @return AbstractUserGroup[]
309+
* @return AbstractUserGroup[]|null
299310
* @throws UserGroupTypeException
300311
*/
301312
public function getUserGroupsForUser(): ?array

src/View/MediaAjaxEditForm.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,12 @@
5454
?>
5555
<li>
5656
<input type="checkbox"
57-
id="<?php echo $groupsFormName; ?>-<?php echo $userGroup->getId(); ?>" <?php echo $attributes; ?>
57+
id="media-<?php echo $groupsFormName; ?>-<?php echo $userGroup->getId(); ?>"
58+
<?php echo $attributes; ?>
5859
value="<?php echo $userGroup->getId(); ?>"
5960
name="<?php echo "{$groupsFormName}[{$userGroup->getId()}][id]"; ?>"
6061
data-="uam_user_groups"/>
61-
<label for="<?php echo $groupsFormName; ?>-<?php echo $userGroup->getId(); ?>" class="selectit"
62+
<label for="media-<?php echo $groupsFormName; ?>-<?php echo $userGroup->getId(); ?>" class="selectit"
6263
style="display:inline;">
6364
<?php echo htmlentities($userGroup->getName()) . $addition; ?>
6465
</label>

src/Wrapper/Wordpress.php

+33-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
use function get_post;
5555
use function get_post_type_object;
5656
use function get_post_types;
57+
use function get_queried_object_id;
5758
use function get_sites;
5859
use function get_taxonomies;
5960
use function get_taxonomy;
@@ -75,6 +76,7 @@
7576
use function plugin_basename;
7677
use function plugins_url;
7778
use function register_widget;
79+
use function remove_action;
7880
use function remove_filter;
7981
use function site_url;
8082
use function switch_to_blog;
@@ -299,6 +301,18 @@ public function addAction(string $tag, callable $functionToAdd, $priority = 10,
299301
return add_action($tag, $functionToAdd, $priority, $acceptedArguments);
300302
}
301303

304+
/**
305+
* @param string $hookName
306+
* @param callable $callback
307+
* @param $priority
308+
* @return bool
309+
* @see \remove_action()
310+
*/
311+
public function removeAction(string $hookName, callable $callback, $priority = 10)
312+
{
313+
return remove_action($hookName, $callback, $priority);
314+
}
315+
302316
/**
303317
* @param string $tag
304318
* @param bool|callable $functionToCheck
@@ -552,7 +566,7 @@ public function getWpQuery(): WP_Query
552566
public function isAdmin(): bool
553567
{
554568
//Ajax request are always identified as administrative interface page
555-
if (wp_doing_ajax() === true) {
569+
if (wp_doing_ajax() === true || defined('REST_REQUEST') && REST_REQUEST) {
556570
//So let's check if we are calling the ajax data for the frontend or backend
557571
//If the referer is an admin url we are requesting the data for the backend
558572
$adminUrl = get_admin_url();
@@ -1029,4 +1043,22 @@ public function isUserMemberOfBlog(): bool
10291043
{
10301044
return (bool) is_user_member_of_blog();
10311045
}
1046+
1047+
/**
1048+
* @return int
1049+
* @see \get_queried_object_id()
1050+
*/
1051+
public function getQueriedObjectId(): int
1052+
{
1053+
return (int) get_queried_object_id();
1054+
}
1055+
1056+
/**
1057+
* @return WP_Post|array|null
1058+
*/
1059+
public function getCurrentPost()
1060+
{
1061+
global $post;
1062+
return $post;
1063+
}
10321064
}

tests/Unit/Config/MainConfigTest.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ protected function setUp(): void
103103
. 'administrator|editor|author|contributor|subscriber',
104104
'active_cache_provider' => 'selection|active_cache_provider|none|none|one',
105105
'show_assigned_groups' => 'bool|show_assigned_groups|true',
106-
'hide_edit_link_on_no_access' => 'bool|hide_edit_link_on_no_access|true'
106+
'hide_edit_link_on_no_access' => 'bool|hide_edit_link_on_no_access|true',
107+
'extra_ip_header' => 'string|extra_ip_header|HTTP_X_REAL_IP'
107108
];
108109
}
109110

@@ -247,7 +248,7 @@ function ($id, $value) {
247248
}
248249
));
249250

250-
$configParameterFactory->expects($this->exactly(17))
251+
$configParameterFactory->expects($this->exactly(18))
251252
->method('createStringConfigParameter')
252253
->will($this->returnCallback(
253254
function ($id, $value) {

tests/Unit/Controller/Backend/SettingsControllerTest.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,8 @@ public function testGetCurrentGroupForms()
709709
'blog_admin_hint',
710710
'blog_admin_hint_text',
711711
'show_assigned_groups',
712-
'hide_edit_link_on_no_access'
712+
'hide_edit_link_on_no_access',
713+
'extra_ip_header'
713714
]
714715
],
715716
[
@@ -720,7 +721,8 @@ public function testGetCurrentGroupForms()
720721
'blog_admin_hint',
721722
'blog_admin_hint_text',
722723
'show_assigned_groups',
723-
'hide_edit_link_on_no_access'
724+
'hide_edit_link_on_no_access',
725+
'extra_ip_header'
724726
]
725727
]
726728
)

0 commit comments

Comments
 (0)