forked from OneSignal/OneSignal-WordPress-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
onesignal-utils.php
61 lines (52 loc) · 2.23 KB
/
onesignal-utils.php
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
<?php
defined( 'ABSPATH' ) or die('This page may not be accessed directly.');
class OneSignalUtils {
/* If >= PHP 5.4, ENT_HTML401 | ENT_QUOTES will correctly decode most entities including both double and single quotes.
In PHP 5.3, ENT_HTML401 does not exist, so we have to use `str_replace("'","'", $value)` before feeding it to html_entity_decode(). */
public static function decode_entities($string) {
$HTML_ENTITY_DECODE_FLAGS = ENT_QUOTES;
if (defined('ENT_HTML401')) {
$HTML_ENTITY_DECODE_FLAGS = ENT_HTML401 | $HTML_ENTITY_DECODE_FLAGS;
}
return html_entity_decode(str_replace("'", "'", $string), $HTML_ENTITY_DECODE_FLAGS, 'UTF-8');
}
public static function url_contains_parameter($text) {
if (array_key_exists('REQUEST_URI', $_SERVER)) {
return strpos(sanitize_text_field($_SERVER['REQUEST_URI']), $text);
}
}
public static function html_safe($string) {
$HTML_ENTITY_DECODE_FLAGS = ENT_QUOTES;
if (defined('ENT_HTML401')) {
$HTML_ENTITY_DECODE_FLAGS = ENT_HTML401 | $HTML_ENTITY_DECODE_FLAGS;
}
return htmlspecialchars($string, $HTML_ENTITY_DECODE_FLAGS, 'UTF-8');
}
public static function contains($string, $substring) {
return strpos($string, $substring) !== false;
}
/**
* Describes whether the user can view "OneSignal Push" on the left sidebar.
*/
public static function can_modify_plugin_settings() {
// Only administrators are allowed to do this, see:
// https://codex.wordpress.org/Roles_and_Capabilities#delete_users
return OneSignalUtils::is_admin_user();
}
/**
* Describes whether the user can send notifications for a post.
*/
public static function can_send_notifications() {
// Only administrators are allowed to do this, see:
// https://codex.wordpress.org/Roles_and_Capabilities#delete_users
return current_user_can('publish_posts') || current_user_can('edit_published_posts');
}
/**
* To keep the plugin working the same as it was before, only allow administrators to perform important actions.
*/
public static function is_admin_user() {
// Only administrators are allowed to do this, see:
// https://codex.wordpress.org/Roles_and_Capabilities#delete_users
return current_user_can('delete_users');
}
}