From 32c86b12ae7bbaf5b8b5178fc90f1a25f177565d Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 18 Mar 2018 23:39:26 -0400 Subject: [PATCH] Remove util/global_community_block --- util/global_community_block.php | 55 --------------------------------- 1 file changed, 55 deletions(-) delete mode 100755 util/global_community_block.php diff --git a/util/global_community_block.php b/util/global_community_block.php deleted file mode 100755 index 02f0c53ec0..0000000000 --- a/util/global_community_block.php +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/env php - util/global_community_block.php http://example.com/profile/bob - * - * will block bob@example.com. - * - * Author: Tobias Diekershoff - * - * License: AGPLv3 or later, same as Friendica - */ -if ($argc != 2 || $argv[1] == "-h" || $argv[1] == "--help" || $argv[1] == "-?") { - echo "Usage: " . $argv[0] . " [-h|profile_url]\r\n"; - echo " -h, -?, --help ... show this help\r\n"; - echo " profile_url ...... The URL of the profile you want to silence\r\n"; - echo "\r\n"; - echo "Example: block bob@example.com\r\n"; - echo "$> " . $argv[0] . " https://example.com/profiles/bob\r\n"; - echo "\r\n"; - exit(0); -} - -use Friendica\BaseObject; -use Friendica\Core\L10n; -use Friendica\Model\Contact; - -require_once 'boot.php'; -require_once 'include/dba.php'; -require_once 'include/text.php'; - -$a = get_app(); -BaseObject::setApp($a); - -require_once '.htconfig.php'; -dba::connect($db_host, $db_user, $db_pass, $db_data); -unset($db_host, $db_user, $db_pass, $db_data); - -$contact_id = Contact::getIdForURL($argv[1]); -if (!$contact_id) { - echo L10n::t('Could not find any contact entry for this URL (%s)', $nurl); - echo "\r\n"; - exit(1); -} -Contact::block($contact_id); -echo L10n::t('The contact has been blocked from the node'); -echo "\r\n"; -exit(0);