]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/FollowEveryone/classes/User_followeveryone_prefs.php
plugins onAutoload now only overloads if necessary (extlibs etc.)
[quix0rs-gnu-social.git] / plugins / FollowEveryone / classes / User_followeveryone_prefs.php
1 <?php
2 /**
3  * Data class for counting greetings
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) 2009, 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 counting greetings
38  *
39  * We use the DB_DataObject framework for data classes in StatusNet. Each
40  * table maps to a particular data class, making it easier to manipulate
41  * data.
42  *
43  * Data classes should extend Memcached_DataObject, the (slightly misnamed)
44  * extension of DB_DataObject that provides caching, internationalization,
45  * and other bits of good functionality to StatusNet-specific data classes.
46  *
47  * @category Action
48  * @package  StatusNet
49  * @author   Evan Prodromou <evan@status.net>
50  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
51  * @link     http://status.net/
52  *
53  * @see      DB_DataObject
54  */
55 class User_followeveryone_prefs extends Managed_DataObject
56 {
57     public $__table = 'user_followeveryone_prefs'; // table name
58     public $user_id;                               // int(4)  primary_key not_null
59     public $followeveryone;                        // tinyint(1)
60     public $created;                               // datetime()   not_null
61     public $modified;                              // timestamp()   not_null default_CURRENT_TIMESTAMP
62
63     public static function schemaDef()
64     {
65         return array(
66             'fields' => array(
67                 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user id'),
68                 'followeveryone' => array('type' => 'int', 'default' => 1, 'size' => 'tiny', 'description' => 'whether to follow everyone'),
69                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
70                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
71             ),
72             'primary key' => array('user_id'),
73             'foreign keys' => array(
74                 'user_followeveryone_prefs_user_id_fkey' => array('user', array('user_id' => 'id')),
75             ),
76         );
77     }
78
79     static function followEveryone($user_id)
80     {
81         $ufep = self::getKV('user_id', $user_id);
82
83         if (empty($ufep)) {
84             return true;
85         } else {
86             return (bool)$ufep->followeveryone;
87         }
88     }
89
90     static function savePref($user_id, $followEveryone)
91     {
92         $ufep = self::getKV('user_id', $user_id);
93
94         if (empty($ufep)) {
95             $ufep = new User_followeveryone_prefs();
96             $ufep->user_id = $user_id;
97             $ufep->followeveryone = $followEveryone;
98             $ufep->insert();
99         } else {
100             $orig = clone($ufep);
101             $ufep->followeveryone = $followEveryone;
102             $ufep->update();
103         }
104
105         return true;
106     }
107 }