]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/QnA/classes/QnA_Question.php
Merge remote-tracking branch 'mainline/1.0.x' into people_tags_rebase
[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     function getProfile()
150     {
151         $profile = Profile::staticGet('id', $this->profile_id);
152         if (empty($profile)) {
153             throw new Exception("No profile with ID {$this->profile_id}");
154         }
155         return $profile;
156     }
157
158     /**
159      * Get the answer from a particular user to this question, if any.
160      *
161      * @param Profile $profile
162      *
163      * @return Answer object or null
164      */
165     function getAnswer(Profile $profile)
166     {
167         $a = new QnA_Answer();
168         $a->question_id = $this->id;
169         $a->profile_id = $profile->id;
170         $a->find();
171         if ($a->fetch()) {
172             return $a;
173         } else {
174             return null;
175         }
176     }
177
178     function getAnswers()
179     {
180         $a = new QnA_Answer();
181         $a->question_id = $this->id;
182         $cnt = $a->find();
183         if (!empty($cnt)) {
184             return $a;
185         } else {
186             return null;
187         }
188     }
189
190     function countAnswers()
191     {
192         $a              = new QnA_Answer();
193         $a->question_id = $this->id;
194         return $a-count();
195     }
196
197     static function fromNotice($notice)
198     {
199         return QnA_Question::staticGet('uri', $notice->uri);
200     }
201
202     function asHTML()
203     {
204         return self::toHTML(
205             $this->getProfile(),
206             $this,
207             $this->getAnswers()
208         );
209     }
210
211     function asString()
212     {
213         return self::toString(
214             $this->getProfile(),
215             $this,
216             $this->getAnswers()
217         );
218     }
219
220     static function toHTML($profile, $question, $answer)
221     {
222         $notice = $question->getNotice();
223
224         $fmt =  '<div class="qna_question">';
225         $fmt .= '<span class="question_title"><a href="%1$s">%2$s</a></span>';
226         $fmt .= '<span class="question_description">%3$s</span>';
227         $fmt .= '<span class="question_author">asked by <a href="%4$s">%5$s</a></span>';
228         $fmt .= '</div>';
229
230         $q = sprintf(
231             $fmt,
232             htmlspecialchars($notice->bestUrl()),
233             htmlspecialchars($question->title),
234             htmlspecialchars($question->description),
235             htmlspecialchars($profile->profileurl),
236             htmlspecialchars($profile->getBestName())
237         );
238
239         $ans = array();
240
241         $ans[] = '<div class="qna_answers">';
242
243         while($answer->fetch()) {
244             $ans[] = $answer->asHTML();
245         }
246
247         $ans[] .= '</div>';
248
249         return $q . implode($ans);
250     }
251
252     static function toString($profile, $question, $answers)
253     {
254         $fmt = _m(
255             '%1$s asked the question "%2$s": %3$s'
256         );
257
258         return sprintf(
259             $fmt,
260             htmlspecialchars($profile->getBestName()),
261             htmlspecialchars($question->title),
262             htmlspecialchars($question->description)
263         );
264     }
265
266     /**
267      * Save a new question notice
268      *
269      * @param Profile $profile
270      * @param string  $question
271      * @param string  $title
272      * @param string  $description
273      * @param array   $option // and whatnot
274      *
275      * @return Notice saved notice
276      */
277     static function saveNew($profile, $title, $description, $options = array())
278     {
279         $q = new QnA_Question();
280
281         $q->id          = UUID::gen();
282         $q->profile_id  = $profile->id;
283         $q->title       = $title;
284         $q->description = $description;
285
286         if (array_key_exists('created', $options)) {
287             $q->created = $options['created'];
288         } else {
289             $q->created = common_sql_now();
290         }
291
292         if (array_key_exists('uri', $options)) {
293             $q->uri = $options['uri'];
294         } else {
295             $q->uri = common_local_url(
296                 'qnashowquestion',
297                 array('id' => $q->id)
298             );
299         }
300
301         common_log(LOG_DEBUG, "Saving question: $q->id $q->uri");
302         $q->insert();
303
304         // TRANS: Notice content creating a question.
305         // TRANS: %1$s is the title of the question, %2$s is a link to the question.
306         $content  = sprintf(
307             _m('question: %1$s %2$s'),
308             $title,
309             $q->uri
310         );
311
312         $link = '<a href="' . htmlspecialchars($q->uri) . '">' . htmlspecialchars($title) . '</a>';
313         // TRANS: Rendered version of the notice content creating a question.
314         // TRANS: %s a link to the question as link description.
315         $rendered = sprintf(_m('Question: %s'), $link);
316
317         $tags    = array('question');
318         $replies = array();
319
320         $options = array_merge(
321             array(
322                 'urls'        => array(),
323                 'rendered'    => $rendered,
324                 'tags'        => $tags,
325                 'replies'     => $replies,
326                 'object_type' => self::OBJECT_TYPE
327             ),
328             $options
329         );
330
331         if (!array_key_exists('uri', $options)) {
332             $options['uri'] = $q->uri;
333         }
334
335         $saved = Notice::saveNew(
336             $profile->id,
337             $content,
338             array_key_exists('source', $options) ?
339             $options['source'] : 'web',
340             $options
341         );
342
343         return $saved;
344     }
345 }