]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/QnA/classes/QnA_Question.php
Merge branch '1.0.x' into qna
[quix0rs-gnu-social.git] / plugins / QnA / classes / QnA_Question.php
1 <?php
2 /**
3  * Data class to mark a notice as a question
4  *
5  * PHP version 5
6  *
7  * @category QnA
8  * @package  StatusNet
9  * @author   Zach Copley <zach@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) 2011, 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 /**
35  * For storing a question
36  *
37  * @category QnA
38  * @package  StatusNet
39  * @author   Zach Copley <zach@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41  * @link     http://status.net/
42  *
43  * @see      DB_DataObject
44  */
45
46 class QnA_Question extends Managed_DataObject
47 {
48     const OBJECT_TYPE = 'http://activityschema.org/object/question';
49
50     public $__table = 'qna_question'; // table name
51     public $id;          // char(36) primary key not null -> UUID
52     public $uri;
53     public $profile_id;  // int -> profile.id
54     public $title;       // text
55     public $description; // text
56     public $closed;      // int (boolean) whether a question is closed
57     public $created;     // datetime
58
59     /**
60      * Get an instance by key
61      *
62      * This is a utility method to get a single instance with a given key value.
63      *
64      * @param string $k Key to use to lookup
65      * @param mixed  $v Value to lookup
66      *
67      * @return QnA_Question object found, or null for no hits
68      *
69      */
70     function staticGet($k, $v=null)
71     {
72         return Memcached_DataObject::staticGet('QnA_Question', $k, $v);
73     }
74
75     /**
76      * Get an instance by compound key
77      *
78      * This is a utility method to get a single instance with a given set of
79      * key-value pairs. Usually used for the primary key for a compound key; thus
80      * the name.
81      *
82      * @param array $kv array of key-value mappings
83      *
84      * @return Bookmark object found, or null for no hits
85      *
86      */
87     function pkeyGet($kv)
88     {
89         return Memcached_DataObject::pkeyGet('QnA_Question', $kv);
90     }
91
92     /**
93      * The One True Thingy that must be defined and declared.
94      */
95     public static function schemaDef()
96     {
97         return array(
98             'description' => 'Per-notice question data for QNA plugin',
99             'fields' => array(
100                 'id' => array(
101                     'type'        => 'char',
102                     'length'      => 36,
103                     'not null'    => true,
104                     'description' => 'UUID'
105                 ),
106                 'uri' => array(
107                     'type'     => 'varchar',
108                     'length'   => 255,
109                     'not null' => true
110                 ),
111                 'profile_id'  => array('type' => 'int'),
112                 'title'       => array('type' => 'text'),
113                 'closed'      => array('type' => 'int', 'size' => 'tiny'),
114                 'description' => array('type' => 'text'),
115                 'created'     => array(
116                     'type'     => 'datetime',
117                     'not null' => true
118                 ),
119             ),
120             'primary key' => array('id'),
121             'unique keys' => array(
122                 'question_uri_key' => array('uri'),
123             ),
124         );
125     }
126
127     /**
128      * Get a question based on a notice
129      *
130      * @param Notice $notice Notice to check for
131      *
132      * @return Question found question or null
133      */
134     function getByNotice($notice)
135     {
136         return self::staticGet('uri', $notice->uri);
137     }
138
139     function getNotice()
140     {
141         return Notice::staticGet('uri', $this->uri);
142     }
143
144     function bestUrl()
145     {
146         return $this->getNotice()->bestUrl();
147     }
148
149     /**
150      * Get the answer from a particular user to this question, if any.
151      *
152      * @param Profile $profile
153      *
154      * @return Answer object or null
155      */
156     function getAnswer(Profile $profile)
157     {
158         $a = new QnA_Answer();
159         $a->question_id = $this->id;
160         $a->profile_id = $profile->id;
161         $a->find();
162         if ($a->fetch()) {
163             return $a;
164         } else {
165             return null;
166         }
167     }
168
169     function countAnswers()
170     {
171         $a              = new QnA_Answer();
172         $a->question_id = $this->id;
173         return $a-count();
174     }
175
176     static function fromNotice($notice)
177     {
178         return QnA_Question::staticGet('uri', $notice->uri);
179     }
180
181     /**
182      * Save a new question notice
183      *
184      * @param Profile $profile
185      * @param string  $question
186      * @param string  $title
187      * @param string  $description
188      * @param array   $option // and whatnot
189      *
190      * @return Notice saved notice
191      */
192     static function saveNew($profile, $title, $description, $options = array())
193     {
194         $q = new QnA_Question();
195
196         $q->id          = UUID::gen();
197         $q->profile_id  = $profile->id;
198         $q->title       = $title;
199         $q->description = $description;
200
201         if (array_key_exists('created', $options)) {
202             $q->created = $options['created'];
203         } else {
204             $q->created = common_sql_now();
205         }
206
207         if (array_key_exists('uri', $options)) {
208             $q->uri = $options['uri'];
209         } else {
210             $q->uri = common_local_url(
211                 'qnashowquestion',
212                 array('id' => $q->id)
213             );
214         }
215
216         common_log(LOG_DEBUG, "Saving question: $q->id $q->uri");
217         $q->insert();
218
219         // TRANS: Notice content creating a question.
220         // TRANS: %1$s is the title of the question, %2$s is a link to the question.
221         $content  = sprintf(
222             _m('question: %1$s %2$s'),
223             $title,
224             $q->uri
225         );
226
227         $link = '<a href="' . htmlspecialchars($q->uri) . '">' . htmlspecialchars($title) . '</a>';
228         // TRANS: Rendered version of the notice content creating a question.
229         // TRANS: %s a link to the question as link description.
230         $rendered = sprintf(_m('Question: %s'), $link);
231
232         $tags    = array('question');
233         $replies = array();
234
235         $options = array_merge(
236             array(
237                 'urls'        => array(),
238                 'rendered'    => $rendered,
239                 'tags'        => $tags,
240                 'replies'     => $replies,
241                 'object_type' => self::OBJECT_TYPE
242             ),
243             $options
244         );
245
246         if (!array_key_exists('uri', $options)) {
247             $options['uri'] = $q->uri;
248         }
249
250         $saved = Notice::saveNew(
251             $profile->id,
252             $content,
253             array_key_exists('source', $options) ?
254             $options['source'] : 'web',
255             $options
256         );
257
258         return $saved;
259     }
260 }