blob: 626891f3191221011a2f0905aca7c24bf3d90bc4 (
plain) (
tree)
|
|
<?php
/**
* Name: UnshortURL
* Description: Expand shortened URLs into their proper URLs
* Version: 0.1.0
* Author: Harald Eilertsen <https://hub.volse.no/channel/harald>
* Maintainer: Harald Eilertsen <https://hub.volse.no/channel/harald>
*
* SPDX-FileCopyrightText: 2021 Harald Eilertsen <haraldei@anduin.net>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
use Zotlabs\Lib\Apps;
use Zotlabs\Extend\Hooks;
function unshorturl_install() {
Hook::register('perpare_body', 'addon/unshorturl/unshorturl.php', 'unshorturl_prepare_body', 1);
}
function unshorturl_uninstall() {
Hook::deregister('prepare_body', 'addon/unshorturl/unshorturl.php', 'unshorturl_prepare_body');
}
function unshorturl_prepare_body(&$body) {
if (!local_channel() || !Apps::addon_app_installed(local_channel(), 'unshorturl')) {
return;
}
preg_replace('/https?:\/\/bit.ly\/[^\s]+/g', '[hidden bitly link]');
}
|