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 ;
2018-12-26 08:28:16 +01:00
use Friendica\Core\Hook ;
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-12-16 00:28:30 +01:00
use Friendica\DI ;
2019-06-23 19:56:21 +02:00
use Friendica\Util\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 () {
2019-12-16 00:28:30 +01:00
DI :: baseUrl () -> redirect ( '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 ) {
2020-01-19 21:21:12 +01:00
$text = ProxyUtils :: proxifyHtml ( BBCode :: convert ( DI :: config () -> get ( 'impressum' , 'footer_text' )));
2018-07-27 02:08:03 +02:00
2012-04-06 14:34:47 +02:00
if ( ! $text == '' ) {
2019-12-30 21:53:43 +01:00
DI :: page ()[ 'htmlhead' ] .= '<link rel="stylesheet" type="text/css" href="' . DI :: baseUrl () -> get () . '/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 ) {
2020-01-18 20:52:33 +01:00
$b .= '<h3>' . DI :: l10n () -> t ( 'Impressum' ) . '</h3>' ;
2020-01-19 21:21:12 +01:00
$owner = DI :: config () -> get ( 'impressum' , 'owner' );
$owner_profile = DI :: config () -> get ( 'impressum' , 'ownerprofile' );
$postal = ProxyUtils :: proxifyHtml ( BBCode :: convert ( DI :: config () -> get ( 'impressum' , 'postal' )));
$notes = ProxyUtils :: proxifyHtml ( BBCode :: convert ( DI :: config () -> get ( 'impressum' , 'notes' )));
$email = obfuscate_email ( DI :: 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 )) {
2020-01-18 20:52:33 +01:00
$b .= '<p><strong>' . DI :: l10n () -> t ( 'Site Owner' ) . '</strong>: ' . $tmp . '<br /><strong>' . DI :: l10n () -> t ( 'Email Address' ) . '</strong>: ' . $email . '</p>' ;
2011-09-25 10:56:03 +02:00
} else {
2020-01-18 20:52:33 +01:00
$b .= '<p><strong>' . DI :: l10n () -> t ( 'Site Owner' ) . '</strong>: ' . $tmp . '</p>' ;
2011-09-25 10:56:03 +02:00
}
if ( strlen ( $postal )) {
2020-01-18 20:52:33 +01:00
$b .= '<p><strong>' . DI :: l10n () -> t ( 'Postal Address' ) . '</strong><br />' . $postal . '</p>' ;
2011-09-25 10:56:03 +02:00
}
if ( strlen ( $notes )) {
$b .= '<p>' . $notes . '</p>' ;
}
} else {
2020-01-18 20:52:33 +01:00
$b .= '<p>' . DI :: 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' ])) : '' );
2020-01-19 21:21:52 +01:00
DI :: config () -> set ( 'impressum' , 'owner' , strip_tags ( $owner ));
DI :: config () -> set ( 'impressum' , 'ownerprofile' , strip_tags ( $ownerprofile ));
DI :: config () -> set ( 'impressum' , 'postal' , strip_tags ( $postal ));
DI :: config () -> set ( 'impressum' , 'email' , strip_tags ( $email ));
DI :: config () -> set ( 'impressum' , 'notes' , strip_tags ( $notes ));
DI :: config () -> set ( 'impressum' , 'footer_text' , strip_tags ( $footer_text ));
2020-01-18 20:52:33 +01:00
info ( DI :: 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 , [
2020-01-18 20:52:33 +01:00
'$submit' => DI :: l10n () -> t ( 'Save Settings' ),
2020-01-19 21:21:12 +01:00
'$owner' => [ 'owner' , DI :: l10n () -> t ( 'Site Owner' ), DI :: config () -> get ( 'impressum' , 'owner' ), DI :: l10n () -> t ( 'The page operators name.' )],
'$ownerprofile' => [ 'ownerprofile' , DI :: l10n () -> t ( 'Site Owners Profile' ), DI :: config () -> get ( 'impressum' , 'ownerprofile' ), DI :: l10n () -> t ( 'Profile address of the operator.' )],
'$postal' => [ 'postal' , DI :: l10n () -> t ( 'Postal Address' ), DI :: config () -> get ( 'impressum' , 'postal' ), DI :: l10n () -> t ( 'How to contact the operator via snail mail. You can use BBCode here.' )],
'$notes' => [ 'notes' , DI :: l10n () -> t ( 'Notes' ), DI :: config () -> get ( 'impressum' , 'notes' ), DI :: l10n () -> t ( 'Additional notes that are displayed beneath the contact information. You can use BBCode here.' )],
'$email' => [ 'email' , DI :: l10n () -> t ( 'Email Address' ), DI :: config () -> get ( 'impressum' , 'email' ), DI :: l10n () -> t ( 'How to contact the operator via email. (will be displayed obfuscated)' )],
'$footer_text' => [ 'footer_text' , DI :: l10n () -> t ( 'Footer note' ), DI :: config () -> get ( 'impressum' , 'footer_text' ), DI :: 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
}