]> git.mxchange.org Git - friendica-addons.git/blob - gnot/gnot.php
686b1f65d3c204aad38a5cf6079043eb5ab513b2
[friendica-addons.git] / gnot / gnot.php
1 <?php
2 /**
3  * Name: Gnot
4  * Description: Thread email comment notifications on Gmail and anonymise them
5  * Version: 1.0
6  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
7  * 
8  *
9  */
10 use Friendica\Core\Hook;
11 use Friendica\Core\Logger;
12 use Friendica\Core\Renderer;
13 use Friendica\DI;
14
15 function gnot_install() {
16
17         Hook::register('addon_settings', 'addon/gnot/gnot.php', 'gnot_settings');
18         Hook::register('addon_settings_post', 'addon/gnot/gnot.php', 'gnot_settings_post');
19         Hook::register('enotify_mail', 'addon/gnot/gnot.php', 'gnot_enotify_mail');
20
21         Logger::log("installed gnot");
22 }
23
24
25 function gnot_uninstall() {
26
27         Hook::unregister('addon_settings', 'addon/gnot/gnot.php', 'gnot_settings');
28         Hook::unregister('addon_settings_post', 'addon/gnot/gnot.php', 'gnot_settings_post');
29         Hook::unregister('enotify_mail', 'addon/gnot/gnot.php', 'gnot_enotify_mail');
30
31
32         Logger::log("removed gnot");
33 }
34
35
36
37 /**
38  *
39  * Callback from the settings post function.
40  * $post contains the $_POST array.
41  * We will make sure we've got a valid user account
42  * and if so set our configuration setting for this person.
43  *
44  */
45
46 function gnot_settings_post($a,$post) {
47         if(! local_user() || empty($_POST['gnot-submit']))
48                 return;
49
50         DI::pConfig()->set(local_user(),'gnot','enable',intval($_POST['gnot']));
51         info(DI::l10n()->t('Gnot settings updated.') . EOL);
52 }
53
54
55 /**
56  *
57  * Called from the Addon Setting form. 
58  * Add our own settings info to the page.
59  *
60  */
61
62
63
64 function gnot_settings(&$a,&$s) {
65
66         if(! local_user())
67                 return;
68
69         /* Add our stylesheet to the page so we can make our settings look nice */
70
71         DI::page()['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . DI::baseUrl()->get() . '/addon/gnot/gnot.css' . '" media="all" />' . "\r\n";
72
73         /* Get the current state of our config variable */
74
75         $gnot = intval(DI::pConfig()->get(local_user(),'gnot','enable'));
76
77         $gnot_checked = (($gnot) ? ' checked="checked" ' : '' );
78         
79         $t = Renderer::getMarkupTemplate('settings.tpl', 'addon/gnot/');
80         /* Add some HTML to the existing form */
81
82         $s .= Renderer::replaceMacros($t, [
83                 '$title' => DI::l10n()->t('Gnot Settings') ,
84                 '$submit' => DI::l10n()->t('Save Settings'),
85                 '$enable' => DI::l10n()->t('Enable this addon?'),
86                 '$enabled' => $gnot_checked,
87                 '$text' => DI::l10n()->t("Allows threading of email comment notifications on Gmail and anonymising the subject line.")
88         ]);
89 }
90
91
92 function gnot_enotify_mail(&$a,&$b) {
93         if((! $b['uid']) || (! intval(DI::pConfig()->get($b['uid'], 'gnot','enable'))))
94                 return;
95         if($b['type'] == NOTIFY_COMMENT)
96                 $b['subject'] = DI::l10n()->t('[Friendica:Notify] Comment to conversation #%d', $b['parent']);
97 }