2012-02-27 20:17:22 -05: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-01-16 19:51:12 -05:00
|
|
|
use Friendica\Core\Addon;
|
2018-01-22 14:03:11 -05:00
|
|
|
use Friendica\Core\L10n;
|
2017-11-06 18:55:24 -05:00
|
|
|
use Friendica\Core\PConfig;
|
2012-02-27 20:17:22 -05:00
|
|
|
|
|
|
|
function gnot_install() {
|
|
|
|
|
2018-01-20 08:57:41 -05:00
|
|
|
Addon::registerHook('addon_settings', 'addon/gnot/gnot.php', 'gnot_settings');
|
|
|
|
Addon::registerHook('addon_settings_post', 'addon/gnot/gnot.php', 'gnot_settings_post');
|
2018-01-16 19:51:12 -05:00
|
|
|
Addon::registerHook('enotify_mail', 'addon/gnot/gnot.php', 'gnot_enotify_mail');
|
2012-02-27 20:17:22 -05:00
|
|
|
|
|
|
|
logger("installed gnot");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function gnot_uninstall() {
|
|
|
|
|
2018-01-20 08:57:41 -05:00
|
|
|
Addon::unregisterHook('addon_settings', 'addon/gnot/gnot.php', 'gnot_settings');
|
|
|
|
Addon::unregisterHook('addon_settings_post', 'addon/gnot/gnot.php', 'gnot_settings_post');
|
2018-01-16 19:51:12 -05:00
|
|
|
Addon::unregisterHook('enotify_mail', 'addon/gnot/gnot.php', 'gnot_enotify_mail');
|
2012-02-27 20:17:22 -05:00
|
|
|
|
|
|
|
|
|
|
|
logger("removed gnot");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* 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() || (! x($_POST,'gnot-submit')))
|
|
|
|
return;
|
|
|
|
|
2017-11-06 18:55:24 -05:00
|
|
|
PConfig::set(local_user(),'gnot','enable',intval($_POST['gnot']));
|
2018-01-22 14:03:11 -05:00
|
|
|
info(L10n::t('Gnot settings updated.') . EOL);
|
2012-02-27 20:17:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2018-01-20 08:57:41 -05:00
|
|
|
* Called from the Addon Setting form.
|
2012-02-27 20:17:22 -05: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 */
|
|
|
|
|
|
|
|
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/gnot/gnot.css' . '" media="all" />' . "\r\n";
|
|
|
|
|
|
|
|
/* Get the current state of our config variable */
|
|
|
|
|
2017-11-06 18:55:24 -05:00
|
|
|
$gnot = intval(PConfig::get(local_user(),'gnot','enable'));
|
2012-02-27 20:17:22 -05:00
|
|
|
|
|
|
|
$gnot_checked = (($gnot) ? ' checked="checked" ' : '' );
|
|
|
|
|
|
|
|
/* Add some HTML to the existing form */
|
|
|
|
|
|
|
|
$s .= '<div class="settings-block">';
|
2018-01-22 14:03:11 -05:00
|
|
|
$s .= '<h3>' . L10n::t('Gnot Settings') . '</h3>';
|
2012-02-27 20:17:22 -05:00
|
|
|
$s .= '<div id="gnot-wrapper">';
|
2018-01-22 14:03:11 -05:00
|
|
|
$s .= '<div id="gnot-desc">' . L10n::t("Allows threading of email comment notifications on Gmail and anonymising the subject line.") . '</div>';
|
|
|
|
$s .= '<label id="gnot-label" for="gnot">' . L10n::t('Enable this addon?') . '</label>';
|
2012-02-27 20:17:22 -05:00
|
|
|
$s .= '<input id="gnot-input" type="checkbox" name="gnot" value="1"'. $gnot_checked . '/>';
|
|
|
|
$s .= '</div><div class="clear"></div>';
|
|
|
|
|
|
|
|
/* provide a submit button */
|
|
|
|
|
2018-01-22 14:03:11 -05:00
|
|
|
$s .= '<div class="settings-submit-wrapper" ><input type="submit" name="gnot-submit" class="settings-submit" value="' . L10n::t('Save Settings') . '" /></div></div>';
|
2012-02-27 20:17:22 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function gnot_enotify_mail(&$a,&$b) {
|
2017-11-06 18:55:24 -05:00
|
|
|
if((! $b['uid']) || (! intval(PConfig::get($b['uid'], 'gnot','enable'))))
|
2012-02-27 20:17:22 -05:00
|
|
|
return;
|
|
|
|
if($b['type'] == NOTIFY_COMMENT)
|
2018-01-23 22:59:20 -05:00
|
|
|
$b['subject'] = L10n::t('[Friendica:Notify] Comment to conversation #%d', $b['parent']);
|
2012-02-27 20:17:22 -05:00
|
|
|
}
|