]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/QnA/classes/QnA_Answer.php
Merge branch '1.0.x' of git://gitorious.org/statusnet/mainline
[quix0rs-gnu-social.git] / plugins / QnA / classes / QnA_Answer.php
1 <?php
2 /**
3  * Data class to save answers to questions
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 answers
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 class QnA_Answer extends Managed_DataObject
46 {
47     const  OBJECT_TYPE = 'http://activityschema.org/object/answer';
48
49     public $__table = 'qna_answer'; // table name
50     public $id;          // char(36) primary key not null -> UUID
51     public $question_id; // char(36) -> question.id UUID
52     public $profile_id;  // int -> question.id
53     public $best;        // (boolean) int -> whether the question asker has marked this as the best answer
54     public $revisions;   // int -> count of revisions to this answer
55     public $content;     // text -> response text
56     public $created;     // datetime
57
58     /**
59      * Get an instance by key
60      *
61      * This is a utility method to get a single instance with a given key value.
62      *
63      * @param string $k Key to use to lookup
64      * @param mixed  $v Value to lookup
65      *
66      * @return QnA_Answer object found, or null for no hits
67      *
68      */
69     function staticGet($k, $v=null)
70     {
71         return Memcached_DataObject::staticGet('QnA_Answer', $k, $v);
72     }
73
74     /**
75      * Get an instance by compound key
76      *
77      * This is a utility method to get a single instance with a given set of
78      * key-value pairs. Usually used for the primary key for a compound key; thus
79      * the name.
80      *
81      * @param array $kv array of key-value mappings
82      *
83      * @return QA_Answer object found, or null for no hits
84      *
85      */
86     function pkeyGet($kv)
87     {
88         return Memcached_DataObject::pkeyGet('QnA_Answer', $kv);
89     }
90
91     /**
92      * The One True Thingy that must be defined and declared.
93      */
94     public static function schemaDef()
95     {
96         return array(
97             'description' => 'Record of answers to questions',
98             'fields' => array(
99                 'id' => array(
100                     'type'     => 'char',
101                     'length'   => 36,
102                     'not null' => true, 'description' => 'UUID of the response'),
103                     'uri'      => array(
104                         'type'        => 'varchar',
105                         'length'      => 255,
106                         'not null'    => true,
107                         'description' => 'UUID to the answer notice'
108                     ),
109                     'question_id' => array(
110                         'type'        => 'char',
111                         'length'      => 36,
112                         'not null'    => true,
113                         'description' => 'UUID of question being responded to'
114                     ),
115                     'content'    => array('type' => 'text'), // got a better name?
116                     'best'       => array('type' => 'int', 'size' => 'tiny'),
117                     'revisions'  => array('type' => 'int'),
118                     'profile_id' => array('type' => 'int'),
119                     'created'    => array('type' => 'datetime', 'not null' => true),
120             ),
121             'primary key' => array('id'),
122             'unique keys' => array(
123                 'question_uri_key' => array('uri'),
124                 'question_id_profile_id_key' => array('question_id', 'profile_id'),
125             ),
126             'indexes' => array(
127                 'profile_id_question_id_index' => array('profile_id', 'question_id'),
128             )
129         );
130     }
131
132     /**
133      * Get an answer based on a notice
134      *
135      * @param Notice $notice Notice to check for
136      *
137      * @return QnA_Answer found response or null
138      */
139     function getByNotice($notice)
140     {
141         $answer = self::staticGet('uri', $notice->uri);
142         if (empty($answer)) {
143             throw new Exception("No answer with URI {$notice->uri}");
144         }
145         return $answer;
146     }
147
148     /**
149      * Get the notice that belongs to this answer
150      *
151      * @return Notice
152      */
153     function getNotice()
154     {
155         return Notice::staticGet('uri', $this->uri);
156     }
157
158     static function fromNotice($notice)
159     {
160         return QnA_Answer::staticGet('uri', $notice->uri);
161     }
162
163     function bestUrl()
164     {
165         return $this->getNotice()->bestUrl();
166     }
167
168     /**
169      * Get the Question this is an answer to
170      *
171      * @return QnA_Question
172      */
173     function getQuestion()
174     {
175         $question = QnA_Question::staticGet('id', $this->question_id);
176         if (empty($question)) {
177             throw new Exception("No question with ID {$this->question_id}");
178         }
179         return $question;
180     }
181
182     function getProfile()
183     {
184         $profile = Profile::staticGet('id', $this->profile_id);
185         if (empty($profile)) {
186             throw new Exception("No profile with ID {$this->profile_id}");
187         }
188         return $profile;
189     }
190
191     function asHTML()
192     {
193         return self::toHTML(
194             $this->getProfile(),
195             $this->getQuestion(),
196             $this
197         );
198     }
199
200     function asString()
201     {
202         return self::toString(
203             $this->getProfile(),
204             $this->getQuestion(),
205             $this
206         );
207     }
208
209     static function toHTML($profile, $question, $answer)
210     {
211         $notice = $question->getNotice();
212
213         $out = new XMLStringer();
214
215         $cls = array('qna_answer');
216         if (!empty($answer->best)) {
217             $cls[] = 'best';
218         }
219
220         $out->elementStart('p', array('class' => implode(' ', $cls)));
221         $out->elementStart('span', 'answer-content');
222         $out->raw(common_render_text($answer->content));
223         $out->elementEnd('span');
224
225         if (!empty($answer->revisions)) {
226             $out->elementstart('span', 'answer-revisions');
227             $out->text(
228                 htmlspecialchars(
229                     sprintf(_m('%s revisions'), $answer->revisions)
230                 )
231             );
232             $out->elementEnd('span');
233         }
234
235         $out->elementEnd('p');
236
237         return $out->getString();
238     }
239
240     static function toString($profile, $question, $answer)
241     {
242         $notice = $question->getNotice();
243
244         $fmt = _m(
245             '%1$s answered the question "%2$s": %3$s'
246         );
247
248         return sprintf(
249             $fmt,
250             htmlspecialchars($profile->getBestName()),
251             htmlspecialchars($question->title),
252             htmlspecialchars($answer->content)
253         );
254     }
255
256     /**
257      * Save a new answer notice
258      *
259      * @param Profile  $profile
260      * @param Question $Question the question being answered
261      * @param array
262      *
263      * @return Notice saved notice
264      */
265     static function saveNew($profile, $question, $text, $options = null)
266     {
267         if (empty($options)) {
268             $options = array();
269         }
270
271         $answer              = new QnA_Answer();
272         $answer->id          = UUID::gen();
273         $answer->profile_id  = $profile->id;
274         $answer->question_id = $question->id;
275         $answer->revisions   = 0;
276         $answer->best        = 0;
277         $answer->content     = $text;
278         $answer->created     = common_sql_now();
279         $answer->uri         = common_local_url(
280             'qnashowanswer',
281             array('id' => $answer->id)
282         );
283
284         common_log(LOG_DEBUG, "Saving answer: $answer->id, $answer->uri");
285         $answer->insert();
286
287         $content  = sprintf(
288             _m('answered "%s"'),
289             $question->title
290         );
291
292         $link = '<a href="' . htmlspecialchars($answer->uri) . '">' . htmlspecialchars($question->title) . '</a>';
293         // TRANS: Rendered version of the notice content answering a question.
294         // TRANS: %s a link to the question with question title as the link content.
295         $rendered = sprintf(_m('answered "%s"'), $link);
296
297         $tags    = array();
298         $replies = array();
299
300         $options = array_merge(
301             array(
302                 'urls'        => array(),
303                 'content'     => $content,
304                 'rendered'    => $rendered,
305                 'tags'        => $tags,
306                 'replies'     => $replies,
307                 'reply_to'    => $question->getNotice()->id,
308                 'object_type' => self::OBJECT_TYPE
309             ),
310             $options
311         );
312
313         if (!array_key_exists('uri', $options)) {
314             $options['uri'] = $answer->uri;
315         }
316
317         $saved = Notice::saveNew(
318             $profile->id,
319             $content,
320             array_key_exists('source', $options) ?
321             $options['source'] : 'web',
322             $options
323         );
324
325         return $saved;
326     }
327 }