]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/QnA/classes/QnA_Answer.php
Merge branch 'qna' into 1.0.x
[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     function bestUrl()
159     {
160         return $this->getNotice()->bestUrl();
161     }
162
163     /**
164      * Get the Question this is an answer to
165      *
166      * @return QnA_Question
167      */
168     function getQuestion()
169     {
170         $question = QnA_Question::staticGet('id', $this->question_id);
171         if (empty($question)) {
172             throw new Exception("No question with ID {$this->question_id}");
173         }
174         return $question;
175     }
176
177     function getProfile()
178     {
179         $profile = Profile::staticGet('id', $this->profile_id);
180         if (empty($profile)) {
181             throw new Exception("No profile with ID {$this->profile_id}");
182         }
183         return $profile;
184     }
185
186     function asHTML()
187     {
188         return self::toHTML(
189             $this->getProfile(),
190             $this->getQuestion(),
191             $this
192         );
193     }
194
195     function asString()
196     {
197         return self::toString(
198             $this->getProfile(),
199             $this->getQuestion(),
200             $this
201         );
202     }
203
204     static function toHTML($profile, $question, $answer)
205     {
206         $notice = $question->getNotice();
207
208         $fmt = '';
209
210         if (!empty($answer->best)) {
211             $fmt  = '<p class="qna_answer best">';
212         } else {
213             $fmt  = '<p class="qna_answer">';
214         }
215
216         $fmt .= '<span class="answer_author"><a href="%1$s">answer</a> by <a href="%2$s">%3$s</a></span>';
217         $fmt .= '<span class="answer_content">%4$s</span>';
218         if (!empty($answer->revisions)) {
219             $fmt .= '<span class="answer_revisions">'
220                  . $answer->revisions
221                  . _m('revisions')
222                  . '</span>';
223         }
224         $fmt .= '</p>';
225
226         return sprintf(
227             $fmt,
228             htmlspecialchars($notice->bestUrl()),
229             htmlspecialchars($profile->profileurl),
230             htmlspecialchars($profile->getBestName()),
231             htmlspecialchars($answer->content)
232         );
233     }
234
235     static function toString($profile, $question, $answer)
236     {
237         $notice = $question->getNotice();
238
239         $fmt = _m(
240             '%1$s answered the question "%2$s": %3$s'
241         );
242
243         return sprintf(
244             $fmt,
245             htmlspecialchars($profile->getBestName()),
246             htmlspecialchars($question->title),
247             htmlspecialchars($answer->content)
248         );
249     }
250
251     /**
252      * Save a new answer notice
253      *
254      * @param Profile  $profile
255      * @param Question $Question the question being answered
256      * @param array
257      *
258      * @return Notice saved notice
259      */
260     static function saveNew($profile, $question, $text, $options = null)
261     {
262         if (empty($options)) {
263             $options = array();
264         }
265
266         $answer              = new QnA_Answer();
267         $answer->id          = UUID::gen();
268         $answer->profile_id  = $profile->id;
269         $answer->question_id = $question->id;
270         $answer->revisions   = 0;
271         $answer->best        = 0;
272         $answer->content     = $text;
273         $answer->created     = common_sql_now();
274         $answer->uri         = common_local_url(
275             'qnashowanswer',
276             array('id' => $answer->id)
277         );
278
279         common_log(LOG_DEBUG, "Saving answer: $answer->id, $answer->uri");
280         $answer->insert();
281
282         $content  = sprintf(
283             _m('answered "%s"'),
284             $question->title
285         );
286
287         $link = '<a href="' . htmlspecialchars($answer->uri) . '">' . htmlspecialchars($question->title) . '</a>';
288         // TRANS: Rendered version of the notice content answering a question.
289         // TRANS: %s a link to the question with question title as the link content.
290         $rendered = sprintf(_m('answered "%s"'), $link);
291
292         $tags    = array();
293         $replies = array();
294
295         $options = array_merge(
296             array(
297                 'urls'        => array(),
298                 'content'     => $content,
299                 'rendered'    => $rendered,
300                 'tags'        => $tags,
301                 'replies'     => $replies,
302                 'reply_to'    => $question->getNotice()->id,
303                 'object_type' => self::OBJECT_TYPE
304             ),
305             $options
306         );
307
308         if (!array_key_exists('uri', $options)) {
309             $options['uri'] = $answer->uri;
310         }
311
312         $saved = Notice::saveNew(
313             $profile->id,
314             $content,
315             array_key_exists('source', $options) ?
316             $options['source'] : 'web',
317             $options
318         );
319
320         return $saved;
321     }
322 }