]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialProfileExtensions/classes/GNUsocialProfileExtensionResponse.php
fbf5af0dbb6ef2e53e71919f0295abab1d165327
[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 Memcached_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     /**
44      *
45      * k key
46      * v value
47      */
48     function staticGet($k,$v=NULL)
49     {
50         return Memcached_DataObject::staticGet('GNUsocialProfileExtensionResponse',$k,$v);
51     }
52
53
54     function table()
55     {
56         return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
57                      'extension_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
58                      'profile_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
59                      'value' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL);
60     }
61     
62     function keys()
63     {
64         return array_keys($this->keyTypes());
65     }
66
67     function keyTypes()
68     {
69         return array('id' => 'K');
70     }
71
72     function sequenceKey()
73     {
74         return array(false, false, false);
75     }
76
77     static function newResponse($extension_id, $profile_id, $value)
78     {
79
80         $response = new GNUsocialProfileExtensionResponse();
81         $response->extension_id = $extension_id;
82         $response->profile_id = $profile_id;
83         $response->value = $value;
84        
85         $response->id = $response->insert();
86         if (!$response->id){
87             common_log_db_error($response, 'INSERT', __FILE__);
88             throw new ServerException(_m('Error creating new response.'));
89         }
90         return $response;
91     }
92
93     static function findResponsesByProfile($id)
94     {
95         $extf = 'GNUsocialProfileExtensionField';
96         $extr = 'GNUsocialProfileExtensionResponse';
97         $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";
98         $response = new GNUsocialProfileExtensionResponse();
99         $response->query($sql);
100         $responses = array();
101
102         while ($response->fetch()) {
103             $responses[] = clone($response);
104         }
105
106         return $responses;
107     }
108
109 }