]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialProfileExtensions/classes/GNUsocialProfileExtensionResponse.php
Updating all Memcached_DataObject extended classes to Managed_DataObject
[quix0rs-gnu-social.git] / plugins / GNUsocialProfileExtensions / classes / GNUsocialProfileExtensionResponse.php
1 <?php
2 /**
3  * GNU Social
4  * Copyright (C) 2010, Free Software Foundation, Inc.
5  *
6  * PHP version 5
7  *
8  * LICENCE:
9  * 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  Widget
23  * @package   GNU Social
24  * @author    Max Shinn <trombonechamp@gmail.com>
25  * @copyright 2010 Free Software Foundation, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
27  */
28
29 if (!defined('STATUSNET')) {
30     exit(1);
31 }
32
33 require_once INSTALLDIR . '/classes/Memcached_DataObject.php';
34
35 class GNUsocialProfileExtensionResponse extends Managed_DataObject
36 {
37     public $__table = 'GNUsocialProfileExtensionResponse';
38     public $id;           // int(11)
39     public $extension_id; // int(11)
40     public $profile_id;   // int(11)
41     public $value;     // text
42
43     function table()
44     {
45         return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
46                      'extension_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
47                      'profile_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
48                      'value' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL);
49     }
50     
51     function keys()
52     {
53         return array_keys($this->keyTypes());
54     }
55
56     function keyTypes()
57     {
58         return array('id' => 'K');
59     }
60
61     function sequenceKey()
62     {
63         return array(false, false, false);
64     }
65
66     static function newResponse($extension_id, $profile_id, $value)
67     {
68
69         $response = new GNUsocialProfileExtensionResponse();
70         $response->extension_id = $extension_id;
71         $response->profile_id = $profile_id;
72         $response->value = $value;
73        
74         $response->id = $response->insert();
75         if (!$response->id){
76             common_log_db_error($response, 'INSERT', __FILE__);
77             throw new ServerException(_m('Error creating new response.'));
78         }
79         return $response;
80     }
81
82     static function findResponsesByProfile($id)
83     {
84         $extf = 'GNUsocialProfileExtensionField';
85         $extr = 'GNUsocialProfileExtensionResponse';
86         $sql = "SELECT $extr.*, $extf.title, $extf.description, $extf.type, $extf.systemname FROM $extr JOIN $extf ON $extr.extension_id=$extf.id WHERE $extr.profile_id = $id";
87         $response = new GNUsocialProfileExtensionResponse();
88         $response->query($sql);
89         $responses = array();
90
91         while ($response->fetch()) {
92             $responses[] = clone($response);
93         }
94
95         return $responses;
96     }
97
98 }