mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 04:43:40 +00:00
[twitter] Add support for block and unblock hooks
This commit is contained in:
parent
dc04c0cfc4
commit
8de6454c8c
1 changed files with 12 additions and 0 deletions
|
@ -107,6 +107,8 @@ function twitter_install()
|
||||||
Hook::register('support_follow' , __FILE__, 'twitter_support_follow');
|
Hook::register('support_follow' , __FILE__, 'twitter_support_follow');
|
||||||
Hook::register('follow' , __FILE__, 'twitter_follow');
|
Hook::register('follow' , __FILE__, 'twitter_follow');
|
||||||
Hook::register('unfollow' , __FILE__, 'twitter_unfollow');
|
Hook::register('unfollow' , __FILE__, 'twitter_unfollow');
|
||||||
|
Hook::register('block' , __FILE__, 'twitter_block');
|
||||||
|
Hook::register('unblock' , __FILE__, 'twitter_unblock');
|
||||||
Hook::register('expire' , __FILE__, 'twitter_expire');
|
Hook::register('expire' , __FILE__, 'twitter_expire');
|
||||||
Hook::register('prepare_body' , __FILE__, 'twitter_prepare_body');
|
Hook::register('prepare_body' , __FILE__, 'twitter_prepare_body');
|
||||||
Hook::register('check_item_notification', __FILE__, 'twitter_check_item_notification');
|
Hook::register('check_item_notification', __FILE__, 'twitter_check_item_notification');
|
||||||
|
@ -175,6 +177,16 @@ function twitter_unfollow(App $a, array &$hook_data)
|
||||||
$hook_data['result'] = twitter_api_contact('friendship/destroy', $hook_data['contact'], $hook_data['uid']);
|
$hook_data['result'] = twitter_api_contact('friendship/destroy', $hook_data['contact'], $hook_data['uid']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function twitter_block(App $a, array &$hook_data)
|
||||||
|
{
|
||||||
|
$hook_data['result'] = twitter_api_contact('blocks/create', $hook_data['contact'], $hook_data['uid']);
|
||||||
|
}
|
||||||
|
|
||||||
|
function twitter_unblock(App $a, array &$hook_data)
|
||||||
|
{
|
||||||
|
$hook_data['result'] = twitter_api_contact('blocks/destroy', $hook_data['contact'], $hook_data['uid']);
|
||||||
|
}
|
||||||
|
|
||||||
function twitter_api_contact(string $apiPath, array $contact, int $uid): ?bool
|
function twitter_api_contact(string $apiPath, array $contact, int $uid): ?bool
|
||||||
{
|
{
|
||||||
if ($contact['network'] !== Protocol::TWITTER) {
|
if ($contact['network'] !== Protocol::TWITTER) {
|
||||||
|
|
Loading…
Reference in a new issue