friendica-addons/gnot/gnot.php

100 lines
2.6 KiB
PHP
Raw Normal View History

2012-02-28 02:17:22 +01:00
<?php
/**
* Name: Gnot
* Description: Thread email comment notifications on Gmail and anonymise them
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*
*
*/
use Friendica\Core\Hook;
2018-01-22 20:03:11 +01:00
use Friendica\Core\L10n;
use Friendica\Core\Logger;
use Friendica\Core\PConfig;
2019-10-04 07:59:40 +02:00
use Friendica\Core\Renderer;
use Friendica\DI;
2012-02-28 02:17:22 +01:00
function gnot_install() {
Hook::register('addon_settings', 'addon/gnot/gnot.php', 'gnot_settings');
Hook::register('addon_settings_post', 'addon/gnot/gnot.php', 'gnot_settings_post');
Hook::register('enotify_mail', 'addon/gnot/gnot.php', 'gnot_enotify_mail');
2012-02-28 02:17:22 +01:00
Logger::log("installed gnot");
2012-02-28 02:17:22 +01:00
}
function gnot_uninstall() {
Hook::unregister('addon_settings', 'addon/gnot/gnot.php', 'gnot_settings');
Hook::unregister('addon_settings_post', 'addon/gnot/gnot.php', 'gnot_settings_post');
Hook::unregister('enotify_mail', 'addon/gnot/gnot.php', 'gnot_enotify_mail');
2012-02-28 02:17:22 +01:00
Logger::log("removed gnot");
2012-02-28 02:17:22 +01:00
}
/**
*
* Callback from the settings post function.
* $post contains the $_POST array.
* We will make sure we've got a valid user account
* and if so set our configuration setting for this person.
*
*/
function gnot_settings_post($a,$post) {
if(! local_user() || empty($_POST['gnot-submit']))
2012-02-28 02:17:22 +01:00
return;
PConfig::set(local_user(),'gnot','enable',intval($_POST['gnot']));
2018-01-22 20:03:11 +01:00
info(L10n::t('Gnot settings updated.') . EOL);
2012-02-28 02:17:22 +01:00
}
/**
*
* Called from the Addon Setting form.
2012-02-28 02:17:22 +01:00
* Add our own settings info to the page.
*
*/
function gnot_settings(&$a,&$s) {
if(! local_user())
return;
/* Add our stylesheet to the page so we can make our settings look nice */
DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . DI::baseUrl()->get() . '/addon/gnot/gnot.css' . '" media="all" />' . "\r\n";
2012-02-28 02:17:22 +01:00
/* Get the current state of our config variable */
$gnot = intval(PConfig::get(local_user(),'gnot','enable'));
2012-02-28 02:17:22 +01:00
$gnot_checked = (($gnot) ? ' checked="checked" ' : '' );
2019-10-04 07:59:40 +02:00
$t = Renderer::getMarkupTemplate('settings.tpl', 'addon/gnot/');
2012-02-28 02:17:22 +01:00
/* Add some HTML to the existing form */
2019-10-04 07:59:40 +02:00
$s .= Renderer::replaceMacros($t, [
'$title' => L10n::t('Gnot Settings') ,
'$submit' => L10n::t('Save Settings'),
'$enable' => L10n::t('Enable this addon?'),
'$enabled' => $gnot_checked,
'$text' => L10n::t("Allows threading of email comment notifications on Gmail and anonymising the subject line.")
]);
2012-02-28 02:17:22 +01:00
}
function gnot_enotify_mail(&$a,&$b) {
if((! $b['uid']) || (! intval(PConfig::get($b['uid'], 'gnot','enable'))))
2012-02-28 02:17:22 +01:00
return;
if($b['type'] == NOTIFY_COMMENT)
$b['subject'] = L10n::t('[Friendica:Notify] Comment to conversation #%d', $b['parent']);
2012-02-28 02:17:22 +01:00
}