diaspora addon EN GB translation updated THX AndyH§
[friendica-addons.git/.git] / impressum / impressum.php
1 <?php
2 /**
3  * Name: Impressum
4  * Description: Addon to add contact information to the about page (/friendica)
5  * Version: 1.3
6  * Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
7  * License: 3-clause BSD license
8  */
9
10 use Friendica\Content\Text\BBCode;
11 use Friendica\Core\Hook;
12 use Friendica\Core\Logger;
13 use Friendica\Core\Renderer;
14 use Friendica\DI;
15 use Friendica\Util\ConfigFileLoader;
16 use Friendica\Util\Proxy as ProxyUtils;
17 use Friendica\Util\Strings;
18
19 function impressum_install() {
20         Hook::register('load_config', 'addon/impressum/impressum.php', 'impressum_load_config');
21     Hook::register('about_hook', 'addon/impressum/impressum.php', 'impressum_show');
22     Hook::register('page_end', 'addon/impressum/impressum.php', 'impressum_footer');
23     Logger::log("installed impressum Addon");
24 }
25
26 function impressum_uninstall() {
27         Hook::unregister('load_config', 'addon/impressum/impressum.php', 'impressum_load_config');
28     Hook::unregister('about_hook', 'addon/impressum/impressum.php', 'impressum_show');
29     Hook::unregister('page_end', 'addon/impressum/impressum.php', 'impressum_footer');
30     Logger::log("uninstalled impressum Addon");
31 }
32
33 function impressum_module() {
34 }
35 function impressum_content() {
36     DI::baseUrl()->redirect('friendica/');
37 }
38
39 function obfuscate_email ($s) {
40     $s = str_replace('@','(at)',$s);
41     $s = str_replace('.','(dot)',$s);
42     return $s;
43 }
44 function impressum_footer($a, &$b) {
45     $text = ProxyUtils::proxifyHtml(BBCode::convert(DI::config()->get('impressum','footer_text')));
46
47     if (! $text == '') {
48         DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.DI::baseUrl()->get().'/addon/impressum/impressum.css" media="all" />';
49         $b .= '<div class="clear"></div>';
50         $b .= '<div id="impressum_footer">'.$text.'</div>';
51     }
52 }
53
54 function impressum_load_config(\Friendica\App $a, ConfigFileLoader $loader)
55 {
56         $a->getConfigCache()->load($loader->loadAddonConfig('impressum'));
57 }
58
59 function impressum_show($a,&$b) {
60     $b .= '<h3>'.DI::l10n()->t('Impressum').'</h3>';
61     $owner = DI::config()->get('impressum', 'owner');
62     $owner_profile = DI::config()->get('impressum','ownerprofile');
63     $postal = ProxyUtils::proxifyHtml(BBCode::convert(DI::config()->get('impressum', 'postal')));
64     $notes = ProxyUtils::proxifyHtml(BBCode::convert(DI::config()->get('impressum', 'notes')));
65     $email = obfuscate_email( DI::config()->get('impressum','email') );
66     if (strlen($owner)) {
67         if (strlen($owner_profile)) {
68             $tmp = '<a href="'.$owner_profile.'">'.$owner.'</a>';
69         } else {
70             $tmp = $owner;
71         }
72         if (strlen($email)) {
73             $b .= '<p><strong>'.DI::l10n()->t('Site Owner').'</strong>: '. $tmp .'<br /><strong>'.DI::l10n()->t('Email Address').'</strong>: '.$email.'</p>';
74         } else {
75             $b .= '<p><strong>'.DI::l10n()->t('Site Owner').'</strong>: '. $tmp .'</p>';
76         }
77         if (strlen($postal)) {
78             $b .= '<p><strong>'.DI::l10n()->t('Postal Address').'</strong><br />'. $postal .'</p>';
79         }
80         if (strlen($notes)) {
81             $b .= '<p>'.$notes.'</p>';
82         }
83     } else {
84         $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>';
85     }
86 }
87
88 function impressum_addon_admin_post (&$a) {
89     $owner = (!empty($_POST['owner']) ? Strings::escapeTags(trim($_POST['owner'])) : '');
90     $ownerprofile = (!empty($_POST['ownerprofile']) ? Strings::escapeTags(trim($_POST['ownerprofile'])) : '');
91     $postal = (!empty($_POST['postal']) ? (trim($_POST['postal'])) : '');
92     $notes = (!empty($_POST['notes']) ? (trim($_POST['notes'])) : '');
93     $email = (!empty($_POST['email']) ? Strings::escapeTags(trim($_POST['email'])) : '');
94     $footer_text = (!empty($_POST['footer_text']) ? (trim($_POST['footer_text'])) : '');
95     DI::config()->set('impressum','owner',strip_tags($owner));
96     DI::config()->set('impressum','ownerprofile',strip_tags($ownerprofile));
97     DI::config()->set('impressum','postal',strip_tags($postal));
98     DI::config()->set('impressum','email',strip_tags($email));
99     DI::config()->set('impressum','notes',strip_tags($notes));
100     DI::config()->set('impressum','footer_text',strip_tags($footer_text));
101     info(DI::l10n()->t('Settings updated.'). EOL );
102 }
103 function impressum_addon_admin (&$a, &$o) {
104     $t = Renderer::getMarkupTemplate( "admin.tpl", "addon/impressum/" );
105     $o = Renderer::replaceMacros($t, [
106         '$submit' => DI::l10n()->t('Save Settings'),
107         '$owner' => ['owner', DI::l10n()->t('Site Owner'), DI::config()->get('impressum','owner'), DI::l10n()->t('The page operators name.')],
108         '$ownerprofile' => ['ownerprofile', DI::l10n()->t('Site Owners Profile'), DI::config()->get('impressum','ownerprofile'), DI::l10n()->t('Profile address of the operator.')],
109         '$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.')],
110         '$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.')],
111         '$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)')],
112         '$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.')],
113     ]);
114 }