]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Profile_prefs.php
Added Profile_prefs class for profile preferences
[quix0rs-gnu-social.git] / classes / Profile_prefs.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Data class for Profile preferences
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Data
23  * @package   GNUSocial
24  * @author    Mikael Nordfeldth <mmn@hethane.se>
25  * @copyright 2013 Free Software Foundation, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://www.gnu.org/software/social/
28  */
29
30 class Profile_prefs extends Managed_DataObject
31 {
32     public $__table = 'profile_prefs';       // table name
33     public $profile_id;                      // int(4)  primary_key not_null
34     public $namespace;                       // varchar(255)  not_null
35     public $topic;                           // varchar(255)  not_null
36     public $data;                            // text
37     public $created;                         // datetime   not_null default_0000-00-00%2000%3A00%3A00
38     public $modified;                        // timestamp   not_null default_CURRENT_TIMESTAMP
39
40     public static function schemaDef()
41     {
42         return array(
43             'fields' => array(
44                 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'user'),
45                 'namespace' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'namespace, like pluginname or category'),
46                 'topic' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'preference key, i.e. description, age...'),
47                 'data' => array('type' => 'blob', 'description' => 'topic data, may be anything'),
48                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
49                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
50             ),
51             'primary key' => array('profile_id', 'namespace', 'topic'),
52             'foreign keys' => array(
53                 'profile_prefs_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
54             ),
55             'indexes' => array(
56                 'profile_prefs_profile_id_idx' => array('profile_id'),
57             ),
58         );
59     }
60
61     static function getNamespacePrefs(Profile $profile, $namespace, array $topic=array())
62     {
63         if (empty($topic)) {
64             $prefs = new Profile_prefs();
65             $prefs->profile_id = $profile->id;
66             $prefs->namespace  = $namespace;
67             $prefs->find();
68         } else {
69             $prefs = self::pivotGet('profile_id', $profile->id, array('namespace'=>$namespace, 'topic'=>$topic));
70         }
71
72         if (empty($prefs->N)) {
73             throw new NoResultException($prefs);
74         }
75
76         return $prefs;
77     }
78
79     static function getNamespace(Profile $profile, $namespace, array $topic=array())
80     {
81         $prefs = self::getNamespacePrefs($profile, $namespace, $topic);
82         return $prefs->fetchAll();
83     }
84
85     static function getAll(Profile $profile)
86     {
87         $prefs = self::listFind('profile_id', $profile->id);
88
89         $list = array();
90         while ($entry = $prefs->fetch()) {
91             if (!isset($list[$entry->namespace])) {
92                 $list[$entry->namespace] = array();
93             }
94             $list[$entry->namespace][$entry->topic] = $entry->data;
95         }
96         return $list;
97     }
98
99     static function getTopic(Profile $profile, $namespace, $topic) {
100         $pref = self::pkeyGet(array('profile_id'=>$profile->id, 'namespace'=>$namespace, 'topic'=>$topic));
101         if (is_null($pref)) {
102             throw new NoResultException($pref);
103         }
104         return $pref;
105     }
106
107     static function getData(Profile $profile, $namespace, $topic) {
108         $pref = self::getTopic($profile, $namespace, $topic);
109         return $pref->data;
110     }
111
112     static function getConfigData(Profile $profile, $namespace, $topic) {
113         try {
114             $data = self::getData($profile, $namespace, $topic);
115         } catch (Exception $e) {
116             $data = common_config($namespace, $topic);
117         }
118         return $data;
119     }
120
121     /*
122      * Sets a profile preference based on Profile, namespace and topic
123      *
124      * @param  Profile $profile   Which profile this is for
125      * @param  string  $namespace Under which namespace (pluginname etc.)
126      * @param  string  $topic     Preference name (think key in key-val store)
127      * @param  string  $data      Data to be put into preference storage, null means delete
128      *
129      * @return true if changes are made, false if no action taken
130      * @throws ServerException if preference could not be saved
131      */
132     static function setData(Profile $profile, $namespace, $topic, $data=null) {
133         try {
134             $pref = self::getTopic($profile, $namespace, $topic);
135             if (is_null($data)) {
136                 $pref->delete();
137             } else {
138                 $orig = clone($pref);
139                 $pref->data = $data;
140                 $pref->update($orig);
141             }
142             return true;
143         } catch (NoResultException $e) {
144             if (is_null($data)) {
145                 return false; // No action taken
146             }
147         }
148
149         $pref = new Profile_prefs();
150         $pref->profile_id = $profile->id;
151         $pref->namespace  = $namespace;
152         $pref->topic      = $topic;
153         $pref->data       = $data;
154         
155         if (!$pref->insert()) {
156             throw new ServerException('Could not save profile preference.');
157         }
158         return true;
159     }
160 }