]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialProfileExtensions/classes/GNUsocialProfileExtensionResponse.php
GNU Social extensions fixes (please read note)
[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     public $created;      // datetime()   not_null
43     public $modified;     // timestamp()   not_null default_CURRENT_TIMESTAMP
44
45     public static function schemaDef()
46     {
47         return array(
48             'fields' => array(
49                 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'Unique ID for extension response'),
50                 'extension_id' => array('type' => 'int', 'not null' => true, 'description' => 'The extension field ID'),
51                 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'Profile id that made the response'),
52                 'value' => array('type' => 'text', 'not null' => true, 'description' => 'response entry'),
53                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
54                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
55             ),
56             'primary key' => array('id'),
57             'foreign keys' => array(
58                 'gnusocialprofileextensionresponse_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
59                 'gnusocialprofileextensionresponse_extension_id_fkey' => array('gnusocialprofileextensionfield', array('extension_id' => 'id')),
60             ),
61             'indexes' => array(
62                 'gnusocialprofileextensionresponse_extension_id_idx' => array('extension_id'),
63             ),
64         );
65     }
66
67     static function newResponse($extension_id, $profile_id, $value)
68     {
69
70         $response = new GNUsocialProfileExtensionResponse();
71         $response->extension_id = $extension_id;
72         $response->profile_id = $profile_id;
73         $response->value = $value;
74        
75         $response->id = $response->insert();
76         if (!$response->id){
77             common_log_db_error($response, 'INSERT', __FILE__);
78             throw new ServerException(_m('Error creating new response.'));
79         }
80         return $response;
81     }
82
83     static function findResponsesByProfile($id)
84     {
85         $extf = 'gnusocialprofileextensionfield';
86         $extr = 'gnusocialprofileextensionresponse';
87         $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";
88         $response = new GNUsocialProfileExtensionResponse();
89         $response->query($sql);
90         $responses = array();
91
92         while ($response->fetch()) {
93             $responses[] = clone($response);
94         }
95
96         return $responses;
97     }
98
99 }