123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <?php
- if (!defined('STATUSNET')) {
- exit(1);
- }
- class Poll_response extends Managed_DataObject
- {
- public $__table = 'poll_response';
- public $id;
- public $uri;
- public $poll_id;
- public $profile_id;
- public $selection;
- public $created;
-
- public static function schemaDef()
- {
- return array(
- 'description' => 'Record of responses to polls',
- 'fields' => array(
- 'id' => array('type' => 'char', 'length' => 36, 'not null' => true, 'description' => 'UUID of the response'),
- 'uri' => array('type' => 'varchar', 'length' => 191, 'not null' => true, 'description' => 'UUID to the response notice'),
- 'poll_id' => array('type' => 'char', 'length' => 36, 'not null' => true, 'description' => 'UUID of poll being responded to'),
- 'profile_id' => array('type' => 'int'),
- 'selection' => array('type' => 'int'),
- 'created' => array('type' => 'datetime', 'not null' => true),
- ),
- 'primary key' => array('id'),
- 'unique keys' => array(
- 'poll_uri_key' => array('uri'),
- 'poll_response_poll_id_profile_id_key' => array('poll_id', 'profile_id'),
- ),
- 'indexes' => array(
- 'poll_response_profile_id_poll_id_index' => array('profile_id', 'poll_id'),
- )
- );
- }
-
- public static function getByNotice($notice)
- {
- return self::getKV('uri', $notice->uri);
- }
-
- public function getNotice()
- {
- return Notice::getKV('uri', $this->uri);
- }
- public function getUrl()
- {
- return $this->getNotice()->getUrl();
- }
-
- public function getPoll()
- {
- return Poll::getKV('id', $this->poll_id);
- }
-
- public static function saveNew($profile, $poll, $selection, $options = null)
- {
- if (empty($options)) {
- $options = [];
- }
- if (!$poll->isValidSelection($selection)) {
-
- throw new ClientException(_m('Invalid poll selection.'));
- }
- $opts = $poll->getOptions();
- $answer = $opts[$selection - 1];
- $pr = new Poll_response();
- $pr->id = UUID::gen();
- $pr->profile_id = $profile->id;
- $pr->poll_id = $poll->id;
- $pr->selection = $selection;
- if (array_key_exists('created', $options)) {
- $pr->created = $options['created'];
- } else {
- $pr->created = common_sql_now();
- }
- if (array_key_exists('uri', $options)) {
- $pr->uri = $options['uri'];
- } else {
- $pr->uri = common_local_url(
- 'showpollresponse',
- array('id' => $pr->id)
- );
- }
- common_log(LOG_DEBUG, "Saving poll response: $pr->id $pr->uri");
- $pr->insert();
-
-
- $content = sprintf(
- _m('voted for "%s"'),
- $answer
- );
- $link = '<a href="' . htmlspecialchars($poll->uri) . '">' . htmlspecialchars($answer) . '</a>';
-
-
- $rendered = sprintf(_m('voted for "%s"'), $link);
- $tags = array();
- $options = array_merge(
- array('urls' => array(),
- 'rendered' => $rendered,
- 'tags' => $tags,
- 'reply_to' => $poll->getNotice()->id,
- 'object_type' => PollPlugin::POLL_RESPONSE_OBJECT),
- $options
- );
- if (!array_key_exists('uri', $options)) {
- $options['uri'] = $pr->uri;
- }
- $saved = Notice::saveNew(
- $profile->id,
- $content,
- array_key_exists('source', $options) ?
- $options['source'] : 'web',
- $options
- );
- return $saved;
- }
- }
|