2011-09-25 10:56:03 +02:00
< ? php
/**
* Name : Impressum
2018-01-20 14:57:41 +01:00
* Description : Addon to add contact information to the about page ( / friendica )
2013-06-24 12:42:41 +02:00
* Version : 1.3
2013-06-14 19:40:10 +02:00
* Author : Tobias Diekershoff < https :// f . diekershoff . de / profile / tobias >
2011-09-25 10:56:03 +02:00
* License : 3 - clause BSD license
*/
2018-02-15 03:43:40 +01:00
use Friendica\Content\Text\BBCode ;
2017-11-07 00:55:24 +01:00
use Friendica\Core\Config ;
2018-12-26 08:28:16 +01:00
use Friendica\Core\Hook ;
2018-01-22 20:03:11 +01:00
use Friendica\Core\L10n ;
2018-10-30 00:40:18 +01:00
use Friendica\Core\Logger ;
2018-10-31 15:55:15 +01:00
use Friendica\Core\Renderer ;
2019-03-24 12:54:26 +01:00
use Friendica\Util\Config\ConfigFileLoader ;
2018-07-31 03:20:29 +02:00
use Friendica\Util\Proxy as ProxyUtils ;
2018-11-08 17:45:19 +01:00
use Friendica\Util\Strings ;
2017-11-07 00:55:24 +01:00
2011-09-25 10:56:03 +02:00
function impressum_install () {
2018-12-26 08:28:16 +01:00
Hook :: register ( 'load_config' , 'addon/impressum/impressum.php' , 'impressum_load_config' );
Hook :: register ( 'about_hook' , 'addon/impressum/impressum.php' , 'impressum_show' );
Hook :: register ( 'page_end' , 'addon/impressum/impressum.php' , 'impressum_footer' );
2018-10-30 00:40:18 +01:00
Logger :: log ( " installed impressum Addon " );
2011-09-25 10:56:03 +02:00
}
function impressum_uninstall () {
2018-12-26 08:28:16 +01:00
Hook :: unregister ( 'load_config' , 'addon/impressum/impressum.php' , 'impressum_load_config' );
Hook :: unregister ( 'about_hook' , 'addon/impressum/impressum.php' , 'impressum_show' );
Hook :: unregister ( 'page_end' , 'addon/impressum/impressum.php' , 'impressum_footer' );
2018-10-30 00:40:18 +01:00
Logger :: log ( " uninstalled impressum Addon " );
2011-09-25 10:56:03 +02:00
}
2013-06-24 12:41:08 +02:00
function impressum_module () {
}
function impressum_content () {
2018-12-28 03:03:17 +01:00
$a = \get_app ();
2018-10-24 20:09:36 +02:00
$a -> internalRedirect ( 'friendica/' );
2013-06-24 12:41:08 +02:00
}
2011-09-25 10:56:03 +02:00
function obfuscate_email ( $s ) {
$s = str_replace ( '@' , '(at)' , $s );
$s = str_replace ( '.' , '(dot)' , $s );
return $s ;
}
2012-04-06 14:34:47 +02:00
function impressum_footer ( $a , & $b ) {
2018-07-28 20:24:16 +02:00
$text = ProxyUtils :: proxifyHtml ( BBCode :: convert ( Config :: get ( 'impressum' , 'footer_text' )));
2018-07-27 02:08:03 +02:00
2012-04-06 14:34:47 +02:00
if ( ! $text == '' ) {
2018-10-09 20:13:22 +02:00
$a -> page [ 'htmlhead' ] .= '<link rel="stylesheet" type="text/css" href="' . $a -> getBaseURL () . '/addon/impressum/impressum.css" media="all" />' ;
2012-08-27 17:39:52 +02:00
$b .= '<div class="clear"></div>' ;
2012-04-06 14:34:47 +02:00
$b .= '<div id="impressum_footer">' . $text . '</div>' ;
}
}
2018-06-28 05:13:20 +02:00
2019-03-24 12:54:26 +01:00
function impressum_load_config ( \Friendica\App $a , ConfigFileLoader $loader )
2018-06-28 05:13:20 +02:00
{
2019-02-10 20:10:59 +01:00
$a -> getConfigCache () -> load ( $loader -> loadAddonConfig ( 'impressum' ));
2018-06-28 05:13:20 +02:00
}
2011-09-25 10:56:03 +02:00
function impressum_show ( $a , & $b ) {
2018-01-22 20:03:11 +01:00
$b .= '<h3>' . L10n :: t ( 'Impressum' ) . '</h3>' ;
2017-11-07 00:55:24 +01:00
$owner = Config :: get ( 'impressum' , 'owner' );
$owner_profile = Config :: get ( 'impressum' , 'ownerprofile' );
2018-07-28 20:24:16 +02:00
$postal = ProxyUtils :: proxifyHtml ( BBCode :: convert ( Config :: get ( 'impressum' , 'postal' )));
$notes = ProxyUtils :: proxifyHtml ( BBCode :: convert ( Config :: get ( 'impressum' , 'notes' )));
2017-11-07 00:55:24 +01:00
$email = obfuscate_email ( Config :: get ( 'impressum' , 'email' ) );
2011-09-25 10:56:03 +02:00
if ( strlen ( $owner )) {
if ( strlen ( $owner_profile )) {
$tmp = '<a href="' . $owner_profile . '">' . $owner . '</a>' ;
} else {
$tmp = $owner ;
}
if ( strlen ( $email )) {
2018-01-22 20:03:11 +01:00
$b .= '<p><strong>' . L10n :: t ( 'Site Owner' ) . '</strong>: ' . $tmp . '<br /><strong>' . L10n :: t ( 'Email Address' ) . '</strong>: ' . $email . '</p>' ;
2011-09-25 10:56:03 +02:00
} else {
2018-01-22 20:03:11 +01:00
$b .= '<p><strong>' . L10n :: t ( 'Site Owner' ) . '</strong>: ' . $tmp . '</p>' ;
2011-09-25 10:56:03 +02:00
}
if ( strlen ( $postal )) {
2018-01-22 20:03:11 +01:00
$b .= '<p><strong>' . L10n :: t ( 'Postal Address' ) . '</strong><br />' . $postal . '</p>' ;
2011-09-25 10:56:03 +02:00
}
if ( strlen ( $notes )) {
$b .= '<p>' . $notes . '</p>' ;
}
} else {
2018-01-22 20:03:11 +01:00
$b .= '<p>' . L10n :: t ( 'The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon.' ) . '</p>' ;
2011-09-25 10:56:03 +02:00
}
}
2018-01-20 14:57:41 +01:00
function impressum_addon_admin_post ( & $a ) {
2018-11-30 15:11:56 +01:00
$owner = ( ! empty ( $_POST [ 'owner' ]) ? Strings :: escapeTags ( trim ( $_POST [ 'owner' ])) : '' );
$ownerprofile = ( ! empty ( $_POST [ 'ownerprofile' ]) ? Strings :: escapeTags ( trim ( $_POST [ 'ownerprofile' ])) : '' );
$postal = ( ! empty ( $_POST [ 'postal' ]) ? ( trim ( $_POST [ 'postal' ])) : '' );
$notes = ( ! empty ( $_POST [ 'notes' ]) ? ( trim ( $_POST [ 'notes' ])) : '' );
$email = ( ! empty ( $_POST [ 'email' ]) ? Strings :: escapeTags ( trim ( $_POST [ 'email' ])) : '' );
$footer_text = ( ! empty ( $_POST [ 'footer_text' ]) ? ( trim ( $_POST [ 'footer_text' ])) : '' );
2017-11-07 00:55:24 +01:00
Config :: set ( 'impressum' , 'owner' , strip_tags ( $owner ));
Config :: set ( 'impressum' , 'ownerprofile' , strip_tags ( $ownerprofile ));
Config :: set ( 'impressum' , 'postal' , strip_tags ( $postal ));
Config :: set ( 'impressum' , 'email' , strip_tags ( $email ));
Config :: set ( 'impressum' , 'notes' , strip_tags ( $notes ));
Config :: set ( 'impressum' , 'footer_text' , strip_tags ( $footer_text ));
2018-01-22 20:03:11 +01:00
info ( L10n :: t ( 'Settings updated.' ) . EOL );
2011-09-25 10:56:03 +02:00
}
2018-01-20 14:57:41 +01:00
function impressum_addon_admin ( & $a , & $o ) {
2018-10-31 15:55:15 +01:00
$t = Renderer :: getMarkupTemplate ( " admin.tpl " , " addon/impressum/ " );
$o = Renderer :: replaceMacros ( $t , [
2018-01-22 20:03:11 +01:00
'$submit' => L10n :: t ( 'Save Settings' ),
'$owner' => [ 'owner' , L10n :: t ( 'Site Owner' ), Config :: get ( 'impressum' , 'owner' ), L10n :: t ( 'The page operators name.' )],
'$ownerprofile' => [ 'ownerprofile' , L10n :: t ( 'Site Owners Profile' ), Config :: get ( 'impressum' , 'ownerprofile' ), L10n :: t ( 'Profile address of the operator.' )],
'$postal' => [ 'postal' , L10n :: t ( 'Postal Address' ), Config :: get ( 'impressum' , 'postal' ), L10n :: t ( 'How to contact the operator via snail mail. You can use BBCode here.' )],
'$notes' => [ 'notes' , L10n :: t ( 'Notes' ), Config :: get ( 'impressum' , 'notes' ), L10n :: t ( 'Additional notes that are displayed beneath the contact information. You can use BBCode here.' )],
'$email' => [ 'email' , L10n :: t ( 'Email Address' ), Config :: get ( 'impressum' , 'email' ), L10n :: t ( 'How to contact the operator via email. (will be displayed obfuscated)' )],
'$footer_text' => [ 'footer_text' , L10n :: t ( 'Footer note' ), Config :: get ( 'impressum' , 'footer_text' ), L10n :: t ( 'Text for the footer. You can use BBCode here.' )],
2018-01-15 14:15:33 +01:00
]);
2011-09-25 10:56:03 +02:00
}