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>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2018-12-26 08:28:16 +01:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-30 00:40:18 +01:00
|
|
|
use Friendica\Core\Logger;
|
2019-10-04 07:59:40 +02:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-30 03:55:10 +01:00
|
|
|
use Friendica\DI;
|
2020-02-04 22:08:59 +01:00
|
|
|
use Friendica\Model\Notify\Type;
|
2012-02-28 02:17:22 +01:00
|
|
|
|
|
|
|
function gnot_install() {
|
|
|
|
|
2018-12-26 08:28:16 +01:00
|
|
|
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
|
|
|
|
2018-10-30 00:40:18 +01:00
|
|
|
Logger::log("installed gnot");
|
2012-02-28 02:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function gnot_uninstall() {
|
|
|
|
|
2018-12-26 08:28:16 +01:00
|
|
|
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
|
|
|
|
|
|
|
|
2018-10-30 00:40:18 +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) {
|
2018-11-30 15:11:56 +01:00
|
|
|
if(! local_user() || empty($_POST['gnot-submit']))
|
2012-02-28 02:17:22 +01:00
|
|
|
return;
|
|
|
|
|
2020-01-18 16:54:49 +01:00
|
|
|
DI::pConfig()->set(local_user(),'gnot','enable',intval($_POST['gnot']));
|
2020-01-18 20:52:33 +01:00
|
|
|
info(DI::l10n()->t('Gnot settings updated.') . EOL);
|
2012-02-28 02:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2018-01-20 14:57:41 +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 */
|
|
|
|
|
2019-12-30 21:53:43 +01:00
|
|
|
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 */
|
|
|
|
|
2020-01-18 16:50:56 +01:00
|
|
|
$gnot = intval(DI::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, [
|
2020-01-18 20:52:33 +01:00
|
|
|
'$title' => DI::l10n()->t('Gnot Settings') ,
|
|
|
|
'$submit' => DI::l10n()->t('Save Settings'),
|
|
|
|
'$enable' => DI::l10n()->t('Enable this addon?'),
|
2019-10-04 07:59:40 +02:00
|
|
|
'$enabled' => $gnot_checked,
|
2020-01-18 20:52:33 +01:00
|
|
|
'$text' => DI::l10n()->t("Allows threading of email comment notifications on Gmail and anonymising the subject line.")
|
2019-10-04 07:59:40 +02:00
|
|
|
]);
|
2012-02-28 02:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function gnot_enotify_mail(&$a,&$b) {
|
2020-01-18 16:50:56 +01:00
|
|
|
if((! $b['uid']) || (! intval(DI::pConfig()->get($b['uid'], 'gnot','enable'))))
|
2012-02-28 02:17:22 +01:00
|
|
|
return;
|
2020-02-04 22:08:59 +01:00
|
|
|
if($b['type'] == Type::COMMENT)
|
2020-01-18 20:52:33 +01:00
|
|
|
$b['subject'] = DI::l10n()->t('[Friendica:Notify] Comment to conversation #%d', $b['parent']);
|
2012-02-28 02:17:22 +01:00
|
|
|
}
|