X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FEmailSummary%2FEmailSummaryPlugin.php;h=bc47fdece946c628b95963a6b4994bd9a2ee5c2d;hb=2addf8e456f96c60de4edabf2409c4ec49013aab;hp=dd72329f8887f48c0b61b7823bd1ae6fe98bbe49;hpb=35931e3a0e3b78f222e8aa6eb02e71ca7a3b8410;p=quix0rs-gnu-social.git diff --git a/plugins/EmailSummary/EmailSummaryPlugin.php b/plugins/EmailSummary/EmailSummaryPlugin.php index dd72329f88..bc47fdece9 100644 --- a/plugins/EmailSummary/EmailSummaryPlugin.php +++ b/plugins/EmailSummary/EmailSummaryPlugin.php @@ -43,7 +43,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class EmailSummaryPlugin extends Plugin { /** @@ -51,69 +50,102 @@ class EmailSummaryPlugin extends Plugin * * @return boolean hook value */ - function onCheckSchema() { $schema = Schema::get(); // For storing user-submitted flags on profiles - - $schema->ensureTable('email_summary_status', - array(new ColumnDef('user_id', 'integer', null, - false, 'PRI'), - new ColumnDef('send_summary', 'tinyint', null, - false, null, 1), - new ColumnDef('last_summary', 'datetime', null, - true), - new ColumnDef('created', 'datetime', null, - false), - new ColumnDef('modified', 'datetime', null, - false), - ) - ); + $schema->ensureTable('email_summary_status', Email_summary_status::schemaDef()); return true; } - /** - * Load related modules when needed - * - * @param string $cls Name of the class to be loaded - * - * @return boolean hook value; true means continue processing, false means stop. - * - */ - - function onAutoload($cls) - { - $dir = dirname(__FILE__); - - switch ($cls) - { - case 'Email_summary_status': - include_once $dir . '/'.$cls.'.php'; - return false; - default: - return true; - } - } - /** * Version info for this plugin * * @param array &$versions array of version data * * @return boolean hook value; true means continue processing, false means stop. - * */ - - function onPluginVersion(&$versions) + function onPluginVersion(array &$versions) { $versions[] = array('name' => 'EmailSummary', - 'version' => STATUSNET_VERSION, + 'version' => GNUSOCIAL_VERSION, 'author' => 'Evan Prodromou', 'homepage' => 'http://status.net/wiki/Plugin:EmailSummary', 'rawdescription' => + // TRANS: Plugin description. _m('Send an email summary of the inbox to users.')); return true; } + + /** + * Register our queue handlers + * + * @param QueueManager $qm Current queue manager + * + * @return boolean hook value + */ + function onEndInitializeQueueManager($qm) + { + $qm->connect('sitesum', 'SiteEmailSummaryHandler'); + $qm->connect('usersum', 'UserEmailSummaryHandler'); + return true; + } + + /** + * Add a checkbox to turn off email summaries + * + * @param Action $action Action being executed (emailsettings) + * @param Profile $scoped Profile for whom settings are configured (current user) + * + * @return boolean hook value + */ + public function onEndEmailFormData(Action $action, Profile $scoped) + { + $action->elementStart('li'); + $action->checkbox('emailsummary', + // TRANS: Checkbox label in e-mail preferences form. + _m('Send me a periodic summary of updates from my network'), + Email_summary_status::getSendSummary($scoped->id)); + $action->elementEnd('li'); + return true; + } + + /** + * Add a checkbox to turn off email summaries + * + * @param Action $action Action being executed (emailsettings) + * @param Profile $scoped Profile for whom settings are configured (current user) + * + * @return boolean hook value + */ + public function onEndEmailSaveForm(Action $action, Profile $scoped) + { + $sendSummary = $action->boolean('emailsummary'); + + $ess = Email_summary_status::getKV('user_id', $scoped->id); + + if (empty($ess)) { + + $ess = new Email_summary_status(); + + $ess->user_id = $scoped->id; + $ess->send_summary = $sendSummary; + $ess->created = common_sql_now(); + $ess->modified = common_sql_now(); + + $ess->insert(); + + } else { + + $orig = clone($ess); + + $ess->send_summary = $sendSummary; + $ess->modified = common_sql_now(); + + $ess->update($orig); + } + + return true; + } }