]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/EmailSummary/EmailSummaryPlugin.php
plugins onAutoload now only overloads if necessary (extlibs etc.)
[quix0rs-gnu-social.git] / plugins / EmailSummary / EmailSummaryPlugin.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010, StatusNet, Inc.
5  *
6  * Sends an email summary of the inbox to users in the network
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  Sample
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2010 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     exit(1);
33 }
34
35 /**
36  * Plugin for sending email summaries to users
37  *
38  * @category  Email
39  * @package   StatusNet
40  * @author    Brion Vibber <brionv@status.net>
41  * @author    Evan Prodromou <evan@status.net>
42  * @copyright 2010 StatusNet, Inc.
43  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
44  * @link      http://status.net/
45  */
46 class EmailSummaryPlugin extends Plugin
47 {
48     /**
49      * Database schema setup
50      *
51      * @return boolean hook value
52      */
53     function onCheckSchema()
54     {
55         $schema = Schema::get();
56
57         // For storing user-submitted flags on profiles
58         $schema->ensureTable('email_summary_status', Email_summary_status::schemaDef());
59         return true;
60     }
61
62     /**
63      * Version info for this plugin
64      *
65      * @param array &$versions array of version data
66      *
67      * @return boolean hook value; true means continue processing, false means stop.
68      */
69     function onPluginVersion(&$versions)
70     {
71         $versions[] = array('name' => 'EmailSummary',
72                             'version' => STATUSNET_VERSION,
73                             'author' => 'Evan Prodromou',
74                             'homepage' => 'http://status.net/wiki/Plugin:EmailSummary',
75                             'rawdescription' =>
76                             // TRANS: Plugin description.
77                             _m('Send an email summary of the inbox to users.'));
78         return true;
79     }
80
81     /**
82      * Register our queue handlers
83      *
84      * @param QueueManager $qm Current queue manager
85      *
86      * @return boolean hook value
87      */
88     function onEndInitializeQueueManager($qm)
89     {
90         $qm->connect('sitesum', 'SiteEmailSummaryHandler');
91         $qm->connect('usersum', 'UserEmailSummaryHandler');
92         return true;
93     }
94
95     /**
96      * Add a checkbox to turn off email summaries
97      *
98      * @param Action $action Action being executed (emailsettings)
99      *
100      * @return boolean hook value
101      */
102     function onEndEmailFormData($action)
103     {
104         $user = common_current_user();
105
106         $action->elementStart('li');
107         $action->checkbox('emailsummary',
108                           // TRANS: Checkbox label in e-mail preferences form.
109                           _m('Send me a periodic summary of updates from my network'),
110                           Email_summary_status::getSendSummary($user->id));
111         $action->elementEnd('li');
112         return true;
113     }
114
115     /**
116      * Add a checkbox to turn off email summaries
117      *
118      * @param Action $action Action being executed (emailsettings)
119      *
120      * @return boolean hook value
121      */
122     function onEndEmailSaveForm($action)
123     {
124         $sendSummary = $action->boolean('emailsummary');
125
126         $user = common_current_user();
127
128         if (!empty($user)) {
129
130             $ess = Email_summary_status::getKV('user_id', $user->id);
131
132             if (empty($ess)) {
133
134                 $ess = new Email_summary_status();
135
136                 $ess->user_id      = $user->id;
137                 $ess->send_summary = $sendSummary;
138                 $ess->created      = common_sql_now();
139                 $ess->modified     = common_sql_now();
140
141                 $ess->insert();
142
143             } else {
144
145                 $orig = clone($ess);
146
147                 $ess->send_summary = $sendSummary;
148                 $ess->modified     = common_sql_now();
149
150                 $ess->update($orig);
151             }
152         }
153
154         return true;
155     }
156 }