friendica-addons/gnot/gnot.php

75 lines
2.0 KiB
PHP
Raw Permalink 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>
*
*
*/
2021-01-23 21:36:36 +01:00
use Friendica\App;
use Friendica\Core\Hook;
use Friendica\Core\Logger;
2019-10-04 07:59:40 +02:00
use Friendica\Core\Renderer;
use Friendica\DI;
2021-01-23 21:36:36 +01:00
use Friendica\Model\Notification;
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::notice("installed 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($post) {
2022-10-20 23:51:49 +02:00
if(! DI::userSession()->getLocalUserId() || empty($_POST['gnot-submit']))
2012-02-28 02:17:22 +01:00
return;
2022-10-20 23:51:49 +02:00
DI::pConfig()->set(DI::userSession()->getLocalUserId(),'gnot','enable',intval($_POST['gnot']));
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(array &$data)
{
2022-10-20 23:51:49 +02:00
if (!DI::userSession()->getLocalUserId()) {
2012-02-28 02:17:22 +01:00
return;
}
2012-02-28 02:17:22 +01:00
2022-10-20 23:51:49 +02:00
$gnot = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'gnot', 'enable'));
2012-02-28 02:17:22 +01:00
$t = Renderer::getMarkupTemplate('settings.tpl', 'addon/gnot/');
$html = Renderer::replaceMacros($t, [
'$text' => DI::l10n()->t("Allows threading of email comment notifications on Gmail and anonymising the subject line."),
'$enabled' => ['gnot', DI::l10n()->t('Enable this addon?'), $gnot],
2019-10-04 07:59:40 +02:00
]);
$data = [
'addon' => 'gnot',
'title' => DI::l10n()->t('Gnot Settings'),
'html' => $html,
];
2012-02-28 02:17:22 +01:00
}
function gnot_enotify_mail(array &$b)
{
if ((!$b['uid']) || (! intval(DI::pConfig()->get($b['uid'], 'gnot','enable')))) {
2012-02-28 02:17:22 +01:00
return;
}
if ($b['type'] == Notification\Type::COMMENT) {
$b['subject'] = DI::l10n()->t('[Friendica:Notify] Comment to conversation #%d', $b['parent']);
}
2012-02-28 02:17:22 +01:00
}