2012-01-10 09:16:09 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: blockem
|
2018-02-09 10:14:20 +00:00
|
|
|
* Description: Allows users to hide content by collapsing posts and replies.
|
2012-01-10 09:16:09 +00:00
|
|
|
* Version: 1.0
|
|
|
|
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
2018-07-21 01:51:15 +00:00
|
|
|
* Author: Roland Haeder <https://f.haeder.net/roland>
|
2023-01-08 19:11:35 +00:00
|
|
|
* Status: unsupported
|
2012-01-10 09:16:09 +00:00
|
|
|
*/
|
2018-07-21 01:51:15 +00:00
|
|
|
|
|
|
|
use Friendica\App;
|
2018-12-26 07:28:16 +00:00
|
|
|
use Friendica\Core\Hook;
|
2021-11-20 09:56:55 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-16 00:05:14 +00:00
|
|
|
use Friendica\DI;
|
2018-11-08 16:45:19 +00:00
|
|
|
use Friendica\Util\Strings;
|
2017-11-06 23:55:24 +00:00
|
|
|
|
2021-07-25 17:28:07 +00:00
|
|
|
global $blockem_words;
|
|
|
|
|
2018-01-22 19:03:11 +00:00
|
|
|
function blockem_install()
|
|
|
|
{
|
2018-12-26 07:28:16 +00:00
|
|
|
Hook::register('prepare_body_content_filter', 'addon/blockem/blockem.php', 'blockem_prepare_body_content_filter');
|
|
|
|
Hook::register('display_item' , 'addon/blockem/blockem.php', 'blockem_display_item');
|
|
|
|
Hook::register('addon_settings' , 'addon/blockem/blockem.php', 'blockem_addon_settings');
|
|
|
|
Hook::register('addon_settings_post' , 'addon/blockem/blockem.php', 'blockem_addon_settings_post');
|
|
|
|
Hook::register('conversation_start' , 'addon/blockem/blockem.php', 'blockem_conversation_start');
|
|
|
|
Hook::register('item_photo_menu' , 'addon/blockem/blockem.php', 'blockem_item_photo_menu');
|
|
|
|
Hook::register('enotify_store' , 'addon/blockem/blockem.php', 'blockem_enotify_store');
|
2012-01-10 09:16:09 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function blockem_addon_settings(array &$data)
|
2018-01-20 13:57:41 +00:00
|
|
|
{
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2012-01-10 09:16:09 +00:00
|
|
|
return;
|
2018-07-21 01:51:15 +00:00
|
|
|
}
|
2012-01-10 09:16:09 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
$words = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'blockem', 'words', '');
|
2012-01-10 09:16:09 +00:00
|
|
|
|
2021-11-20 09:56:55 +00:00
|
|
|
$t = Renderer::getMarkupTemplate('settings.tpl', 'addon/blockem/');
|
|
|
|
$html = Renderer::replaceMacros($t, [
|
|
|
|
'$info' => DI::l10n()->t("Hides user's content by collapsing posts. Also replaces their avatar with generic image."),
|
|
|
|
'$words' => ['blockem-words', DI::l10n()->t('Comma separated profile URLS:'), $words],
|
|
|
|
]);
|
2012-01-10 09:16:09 +00:00
|
|
|
|
2021-11-20 09:56:55 +00:00
|
|
|
$data = [
|
|
|
|
'addon' => 'blockem',
|
|
|
|
'title' => DI::l10n()->t('Blockem'),
|
|
|
|
'html' => $html,
|
|
|
|
];
|
2012-01-10 09:16:09 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function blockem_addon_settings_post(array &$b)
|
2018-07-21 01:51:15 +00:00
|
|
|
{
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2012-01-10 09:16:09 +00:00
|
|
|
return;
|
2018-07-21 01:51:15 +00:00
|
|
|
}
|
2012-01-10 09:16:09 +00:00
|
|
|
|
2018-08-08 06:24:47 +00:00
|
|
|
if (!empty($_POST['blockem-submit'])) {
|
2022-10-20 21:51:49 +00:00
|
|
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'blockem', 'words', trim($_POST['blockem-words']));
|
2012-01-10 09:16:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function blockem_enotify_store(array &$b)
|
2018-07-21 01:51:15 +00:00
|
|
|
{
|
2020-01-18 15:50:56 +00:00
|
|
|
$words = DI::pConfig()->get($b['uid'], 'blockem', 'words');
|
2013-05-09 08:18:03 +00:00
|
|
|
|
2018-07-21 01:51:15 +00:00
|
|
|
if ($words) {
|
|
|
|
$arr = explode(',', $words);
|
|
|
|
} else {
|
2013-05-09 08:18:03 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$found = false;
|
2018-07-21 01:51:15 +00:00
|
|
|
|
|
|
|
if (count($arr)) {
|
|
|
|
foreach ($arr as $word) {
|
|
|
|
if (!strlen(trim($word))) {
|
2013-05-09 08:18:03 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-11-08 16:45:19 +00:00
|
|
|
if (Strings::compareLink($b['url'], $word)) {
|
2013-05-09 08:18:03 +00:00
|
|
|
$found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-21 01:51:15 +00:00
|
|
|
|
|
|
|
if ($found) {
|
2020-01-28 00:12:41 +00:00
|
|
|
// empty out the fields
|
|
|
|
$b = [];
|
2013-05-09 08:18:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function blockem_prepare_body_content_filter(array &$hook_data)
|
2018-04-01 06:31:15 +00:00
|
|
|
{
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2012-01-10 09:16:09 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-04-01 06:31:15 +00:00
|
|
|
|
|
|
|
$profiles_string = null;
|
2018-07-21 01:51:15 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
if (DI::userSession()->getLocalUserId()) {
|
|
|
|
$profiles_string = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'blockem', 'words');
|
2012-01-10 09:16:09 +00:00
|
|
|
}
|
2018-04-01 06:31:15 +00:00
|
|
|
|
|
|
|
if ($profiles_string) {
|
|
|
|
$profiles_array = explode(',', $profiles_string);
|
|
|
|
} else {
|
2012-01-10 09:16:09 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$found = false;
|
2018-07-21 01:51:15 +00:00
|
|
|
|
2018-04-01 06:31:15 +00:00
|
|
|
foreach ($profiles_array as $word) {
|
2018-11-08 16:45:19 +00:00
|
|
|
if (Strings::compareLink($hook_data['item']['author-link'], trim($word))) {
|
2018-04-01 06:31:15 +00:00
|
|
|
$found = true;
|
|
|
|
break;
|
2012-01-10 09:16:09 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-01 06:31:15 +00:00
|
|
|
|
|
|
|
if ($found) {
|
2020-01-18 19:52:33 +00:00
|
|
|
$hook_data['filter_reasons'][] = DI::l10n()->t('Filtered user: %s', $hook_data['item']['author-name']);
|
2012-01-10 09:16:09 +00:00
|
|
|
}
|
|
|
|
}
|
2012-01-11 00:54:47 +00:00
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function blockem_display_item(array &$b = null)
|
2018-07-21 01:51:15 +00:00
|
|
|
{
|
|
|
|
if (!empty($b['output']['body']) && strstr($b['output']['body'], 'id="blockem-wrap-')) {
|
2023-02-20 16:56:13 +00:00
|
|
|
$b['output']['thumb'] = DI::baseUrl() . "/images/person-80.jpg";
|
2018-07-21 01:51:15 +00:00
|
|
|
}
|
2012-01-11 00:54:47 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function blockem_conversation_start(array &$b)
|
2018-07-21 01:51:15 +00:00
|
|
|
{
|
2021-07-25 17:28:07 +00:00
|
|
|
global $blockem_words;
|
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2012-01-12 01:36:20 +00:00
|
|
|
return;
|
2018-07-21 01:51:15 +00:00
|
|
|
}
|
2012-01-12 01:36:20 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
$words = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'blockem', 'words');
|
2018-07-21 01:51:15 +00:00
|
|
|
|
|
|
|
if ($words) {
|
2021-07-25 17:28:07 +00:00
|
|
|
$blockem_words = explode(',', $words);
|
2012-01-12 01:36:20 +00:00
|
|
|
}
|
2018-07-21 01:51:15 +00:00
|
|
|
|
2019-12-30 19:02:08 +00:00
|
|
|
DI::page()['htmlhead'] .= <<< EOT
|
2012-01-12 01:36:20 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
function blockemBlock(author) {
|
|
|
|
$.get('blockem?block=' +author, function(data) {
|
|
|
|
location.reload(true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
function blockemUnblock(author) {
|
|
|
|
$.get('blockem?unblock=' +author, function(data) {
|
|
|
|
location.reload(true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
EOT;
|
|
|
|
}
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function blockem_item_photo_menu(array &$b)
|
2018-07-21 01:51:15 +00:00
|
|
|
{
|
2021-07-25 17:28:07 +00:00
|
|
|
global $blockem_words;
|
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId() || $b['item']['self']) {
|
2012-01-12 01:52:53 +00:00
|
|
|
return;
|
2018-07-21 01:51:15 +00:00
|
|
|
}
|
2012-01-12 01:52:53 +00:00
|
|
|
|
2012-01-12 01:36:20 +00:00
|
|
|
$blocked = false;
|
|
|
|
$author = $b['item']['author-link'];
|
2018-07-21 01:51:15 +00:00
|
|
|
|
2021-07-25 17:28:07 +00:00
|
|
|
if (!empty($blockem_words)) {
|
|
|
|
foreach($blockem_words as $bloke) {
|
2018-11-08 16:45:19 +00:00
|
|
|
if (Strings::compareLink($bloke,$author)) {
|
2012-01-12 01:36:20 +00:00
|
|
|
$blocked = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-21 01:51:15 +00:00
|
|
|
if ($blocked) {
|
2020-01-18 19:52:33 +00:00
|
|
|
$b['menu'][DI::l10n()->t('Unblock Author')] = 'javascript:blockemUnblock(\'' . $author . '\');';
|
2018-07-21 01:51:15 +00:00
|
|
|
} else {
|
2020-01-18 19:52:33 +00:00
|
|
|
$b['menu'][DI::l10n()->t('Block Author')] = 'javascript:blockemBlock(\'' . $author . '\');';
|
2018-07-21 01:51:15 +00:00
|
|
|
}
|
2012-01-12 01:36:20 +00:00
|
|
|
}
|
|
|
|
|
2022-06-24 21:27:58 +00:00
|
|
|
/**
|
|
|
|
* This is a statement rather than an actual function definition. The simple
|
|
|
|
* existence of this method is checked to figure out if the addon offers a
|
|
|
|
* module.
|
|
|
|
*/
|
|
|
|
function blockem_module() {}
|
2012-01-12 01:36:20 +00:00
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function blockem_init()
|
2018-07-21 01:51:15 +00:00
|
|
|
{
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2012-01-12 01:36:20 +00:00
|
|
|
return;
|
2018-07-21 01:51:15 +00:00
|
|
|
}
|
2012-01-12 01:36:20 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
$words = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'blockem', 'words');
|
2012-01-12 01:36:20 +00:00
|
|
|
|
2018-07-21 01:51:15 +00:00
|
|
|
if (array_key_exists('block', $_GET) && $_GET['block']) {
|
|
|
|
if (strlen($words)) {
|
2012-01-12 01:36:20 +00:00
|
|
|
$words .= ',';
|
2018-07-21 01:51:15 +00:00
|
|
|
}
|
|
|
|
|
2012-01-12 01:36:20 +00:00
|
|
|
$words .= trim($_GET['block']);
|
|
|
|
}
|
2018-07-21 01:51:15 +00:00
|
|
|
|
|
|
|
if (array_key_exists('unblock', $_GET) && $_GET['unblock']) {
|
2012-01-12 01:36:20 +00:00
|
|
|
$arr = explode(',',$words);
|
2018-01-15 13:15:33 +00:00
|
|
|
$newarr = [];
|
2012-01-12 01:36:20 +00:00
|
|
|
|
2018-07-21 01:51:15 +00:00
|
|
|
if (count($arr)) {
|
|
|
|
foreach ($arr as $x) {
|
2018-11-08 16:45:19 +00:00
|
|
|
if (!Strings::compareLink(trim($x), trim($_GET['unblock']))) {
|
2012-01-12 01:36:20 +00:00
|
|
|
$newarr[] = $x;
|
2018-07-21 01:51:15 +00:00
|
|
|
}
|
2012-01-12 01:36:20 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-21 01:51:15 +00:00
|
|
|
|
|
|
|
$words = implode(',', $newarr);
|
2012-01-12 01:36:20 +00:00
|
|
|
}
|
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'blockem', 'words', $words);
|
2018-12-26 05:39:53 +00:00
|
|
|
exit();
|
2012-03-02 10:33:07 +00:00
|
|
|
}
|