]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/EmailSummary/Email_summary_status.php
Updating all Memcached_DataObject extended classes to Managed_DataObject
[quix0rs-gnu-social.git] / plugins / EmailSummary / Email_summary_status.php
1 <?php
2 /**
3  * Data class for email summary status
4  *
5  * PHP version 5
6  *
7  * @category Data
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@status.net>
10  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
11  * @link     http://status.net/
12  *
13  * StatusNet - the distributed open-source microblogging tool
14  * Copyright (C) 2010, StatusNet, Inc.
15  *
16  * This program is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU Affero General Public License as published by
18  * the Free Software Foundation, either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
24  * GNU Affero General Public License for more details.
25  *
26  * You should have received a copy of the GNU Affero General Public License
27  * along with this program. If not, see <http://www.gnu.org/licenses/>.
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR . '/classes/Memcached_DataObject.php';
35
36 /**
37  * Data class for email summaries
38  *
39  * Email summary information for users
40  *
41  * @category Action
42  * @package  StatusNet
43  * @author   Evan Prodromou <evan@status.net>
44  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
45  * @link     http://status.net/
46  *
47  * @see      DB_DataObject
48  */
49 class Email_summary_status extends Managed_DataObject
50 {
51     public $__table = 'email_summary_status'; // table name
52     public $user_id;                         // int(4)  primary_key not_null
53     public $send_summary;                    // tinyint not_null
54     public $last_summary_id;                 // int(4)  null
55     public $created;                         // datetime not_null
56     public $modified;                        // datetime not_null
57
58     /**
59      * return table definition for DB_DataObject
60      *
61      * DB_DataObject needs to know something about the table to manipulate
62      * instances. This method provides all the DB_DataObject needs to know.
63      *
64      * @return array array of column definitions
65      */
66     function table()
67     {
68         return array('user_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
69                      'send_summary' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
70                      'last_summary_id' => DB_DATAOBJECT_INT,
71                      'created' => DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL,
72                      'modified' => DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL);
73     }
74
75     /**
76      * return key definitions for DB_DataObject
77      *
78      * @return array list of key field names
79      */
80     function keys()
81     {
82         return array_keys($this->keyTypes());
83     }
84
85     /**
86      * return key definitions for Memcached_DataObject
87      *
88      * Our caching system uses the same key definitions, but uses a different
89      * method to get them. This key information is used to store and clear
90      * cached data, so be sure to list any key that will be used for static
91      * lookups.
92      *
93      * @return array associative array of key definitions, field name to type:
94      *         'K' for primary key: for compound keys, add an entry for each component;
95      *         'U' for unique keys: compound keys are not well supported here.
96      */
97     function keyTypes()
98     {
99         return array('user_id' => 'K');
100     }
101
102     /**
103      * Magic formula for non-autoincrementing integer primary keys
104      *
105      * @return array magic three-false array that stops auto-incrementing.
106      */
107     function sequenceKey()
108     {
109         return array(false, false, false);
110     }
111
112     /**
113      * Helper function
114      *
115      * @param integer $user_id ID of the user to get a count for
116      *
117      * @return int flag for whether to send this user a summary email
118      */
119     static function getSendSummary($user_id)
120     {
121         $ess = Email_summary_status::staticGet('user_id', $user_id);
122
123         if (!empty($ess)) {
124             return $ess->send_summary;
125         } else {
126             return 1;
127         }
128     }
129
130     /**
131      * Get email summary status for a user
132      *
133      * @param integer $user_id ID of the user to get a count for
134      *
135      * @return Email_summary_status instance for this user, with count already incremented.
136      */
137     static function getLastSummaryID($user_id)
138     {
139         $ess = Email_summary_status::staticGet('user_id', $user_id);
140
141         if (!empty($ess)) {
142             return $ess->last_summary_id;
143         } else {
144             return null;
145         }
146     }
147 }