You are here

advpoll_voteapi.inc in Advanced Poll 7

Same filename and directory in other branches
  1. 7.3 includes/advpoll_voteapi.inc
  2. 7.2 includes/advpoll_voteapi.inc

File

includes/advpoll_voteapi.inc
View source
<?php

/*
 * Handles function calls related to voting and selection of votes.
 */

/**
 * Get all votes related to a node by content type and node id.
 *
 * @param $nid
 * Node ID of an advanced poll.
 * @param $behavior
 * Behavior dictates how results are tabulated and displayed.
 * @return
 *   An array containing the key:
 *     'choices' which matches the index of each choice with its tallied votes.
 *     'total' which is the total of all votes
 */
function advpoll_get_votes($nid, $behavior = 'approval') {
  $criteria = array();
  $criteria['entity_id'] = $nid;
  $criteria['entity_type'] = 'advpoll';
  $results = votingapi_select_votes($criteria);
  if ($behavior === 'approval') {
    $tabulated = advpoll_approval_vote($results);
  }
  else {
    if ($behavior === 'pool') {
      $tabulated = advpoll_pooled_vote($results);
    }
    else {
      $tabulated = advpoll_default_vote($results);
    }
  }
  return $tabulated;
}

/**
 * Tally votes by approval method.  
 * 
 * For approval voting, multiple choices cast by a single user count as one 
 * vote.
 *
 * @param $results 
 * Results returned from voting api.
 * @return
 *   Keyed array containing vote choices in descending order and total votes.
 *   $choices contains:
 *      index = the index of the choice
 *      percentage = percentage of votes choice received.
 *      votes = the number of votes received.
 *
 */
function advpoll_approval_vote($results) {
  $tallied = array();
  $source = array();
  $total = 0;
  foreach ($results as $result) {
    if (isset($tallied[$result['tag']])) {
      $tallied[$result['tag']]++;
    }
    else {
      $tallied[$result['tag']] = 1;
    }
    if (!in_array($result['timestamp'], $source)) {
      $source[] = $result['timestamp'];
    }
  }
  $total = count($source);
  $tabulated = advpoll_calculate_percentage($tallied, $total);
  return array(
    'choices' => $tabulated,
    'total' => $total,
  );
}

/**
 * Tally votes by pooling them.  
 * All votes, whether cast by single or multichoice bear the same weight.
 *
 * @param $results
 * Results returned from voting api.
 * @return
 *   Keyed array containing vote choices in descending order and total votes.
 *   $choices contains:
 *      index = the index of the choice
 *      percentage = percentage of votes choice received.
 *      votes = the number of votes received.
 *
 */
function advpoll_pooled_vote($results) {
  $tallied = array();
  $total = 0;
  foreach ($results as $result) {
    if (isset($tallied[$result['tag']])) {
      $tallied[$result['tag']]++;
    }
    else {
      $tallied[$result['tag']] = 1;
    }
    $total++;
  }
  $tabulated = advpoll_calculate_percentage($tallied, $total);
  return array(
    'choices' => $tabulated,
    'total' => $total,
  );
}

/**
 * Default voting count 
 * 
 * Uses the 'value' field returned by the voting API to tally votes and arrive 
 * at percentages.
 *
 * @param $results
 * Results returned from voting api.
 * @return
 *   Keyed array containing vote choices in descending order and total votes.
 *   $choices contains:
 *      index = the index of the choice
 *      percentage = percentage of votes choice received.
 *      votes = the number of votes received.
 *
 */
function advpoll_default_vote($results) {
  $tallied = array();
  $total = 0;
  $points = 0;
  $totalpoints = 0;
  foreach ($results as $result) {
    $points = (int) $result['value'];
    if (isset($tallied[$result['tag']])) {
      $tallied[$result['tag']] += $points;
    }
    else {
      $tallied[$result['tag']] = $points;
    }
    $totalpoints += $points;
    $total++;
  }
  $tabulated = advpoll_calculate_percentage($tallied, $totalpoints);
  return array(
    'choices' => $tabulated,
    'total' => $total,
  );
}

/**
 * Return keyed array with percentages for each index.
 *
 * @param $tallied 
 * Array containing totals per choice index
 * @param $total
 * Total number of votes
 * @return
 *   A keyed array containing:
 *   index = the index of the choice
 *   percentage = the percentage of votes
 *   votes = the number of votes received
 */
function advpoll_calculate_percentage($tallied, $total) {
  $tabulated = array();
  foreach ($tallied as $key => $value) {
    $percentage = floor((int) $value / (int) $total * 100);
    $tabulated[] = array(
      'index' => $key,
      'percentage' => $percentage,
      'votes' => $value,
    );
  }
  usort($tabulated, "advpoll_compare");
  $tabulated = array_reverse($tabulated);
  return $tabulated;
}

/*
 * callback for usort to order items by percentage.
 */
function advpoll_compare($a, $b) {
  if ($a['percentage'] > $b['percentage']) {
    return 1;
  }
  else {
    if ($a['percentage'] < $b['percentage']) {
      return -1;
    }
    else {
      return 0;
    }
  }
}

/*
 * Check for user's eligibility to vote on a given poll.
 * 
 * Provides a series of fall-through tests to determine user's ability to vote.
 * 
 * @param $node
 * The poll node.
 * @return
 * Returns true or false.
 * 
 */
function advpoll_user_eligibility($node) {
  if (!user_access('vote on polls')) {
    return false;
  }
  global $user;
  $data = advpoll_get_data($node);
  if ($data->write_in && !user_access('add write-ins')) {
    return false;
  }
  if ($data->electoral) {
    if (!advpoll_check_electoral_list($user->uid, $node->nid)) {
      return false;
    }
  }
  if ($data->state !== 'open') {
    return false;
  }
  if ($data->start_date > time() || $data->end_date < time()) {
    return false;
  }
  if ($data->mode === 'cookie' && isset($_COOKIE[$node->type . $node->nid])) {
    return false;
  }
  if ($data->mode === 'normal') {
    $criteria = array();
    $criteria['entity_id'] = $node->nid;
    $criteria['entity_type'] = $node->type;
    $criteria['uid'] = $user->uid;
    $results = votingapi_select_votes($criteria);
    if ($results) {
      return false;
    }
  }
  return true;
}

/*
 * Check user against electoral list
 * 
 * @param $uid
 * User's ID
 * @param $nid
 * Node ID of the poll
 * @return
 * Returns true or false
 */
function advpoll_check_electoral_list($uid, $nid) {
  $result = db_query('SELECT uid
                      FROM {advpoll_electoral_list}
                      WHERE uid = :uid AND nid = :nid', array(
    ':uid' => $uid,
    ':nid' => $nid,
  ))
    ->fetchField();
  if ($result) {
    return true;
  }
  return false;
}

/**
 * Add votes for a given poll.
 *
 * @param $vote
 * A keyed array that is used to determine the method in which the vote will be
 * tracked and what values will be passed to votingapi
 *   $vote['type'] The content type - either advpoll or advpoll_ranking
 *   $vote['tag'] = Tag corresponds to the index of the selected choice
 *   $vote['nid'] = The node ID of poll being voted on
 *   $vote['mode'] = normal, cookie, or unlimited
 *   $vote['duration'] = duration is minutes that the cookie will last if one is 
 *                       set.
 */
function advpoll_add_votes($vote) {

  // normal voting uses the voteapi to record user id or ip based on authentication
  if ($vote['mode'] === 'normal') {
    $votes = array(
      'entity_type' => $vote['type'],
      'entity_id' => $vote['nid'],
      'value' => $vote['value'],
      'tag' => $vote['tag'],
    );
  }
  else {

    // unlimited and cookie voting simply add values to the votingapi and bypass
    // user id and ip as source. Ttime stamp instead of ip will prevent a unique
    // id from being tied to these voters.
    if ($vote['mode'] === 'cookie') {

      // necessary to pass Drupal's $cookie_domain to get this to stick.
      // Raw cookies are safe in this case as we're only passing a static value
      // to mark that this user voted on their machine.
      setrawcookie($vote['type'] . $vote['nid'], 'vote', time() + 60 * $vote['duration'], '/', $cookie_domain);
    }
    $votes = array(
      'entity_type' => $vote['type'],
      'entity_id' => $vote['nid'],
      'value' => $vote['value'],
      'tag' => $vote['tag'],
      'uid' => '',
      'vote_source' => time(),
    );
  }
  votingapi_set_votes($votes, $criteria = NULL);
}

/*
 * Process votes cast via checkboxes
 * 
 * Checkbox values returned by form_state have a different structure
 * than radio buttons.  We need an array of indexes representing
 * items selected from list of choices.
 * 
 * @param $choices
 * An array containing available choices in the poll
 * @param $votes
 * Text of choices selected from the form_state. Need to match them up with
 * choices saved in the node.
 * @return
 * Returns an array of the the unique IDs of the choices selected by the user.
 * 
 */
function advpoll_checkbox_selected($choices, $votes) {
  $selected = array();
  $count = count($choices);
  for ($i = 0; $i < $count; $i++) {
    $choice = strip_tags($choices[$i]['choice']);
    if (!is_numeric($votes[$choice]) && !empty($votes[$choice])) {
      $selected[] = $choices[$i]['choice_id'];
    }
  }
  return $selected;
}

/*
 * Process votes cast via radio buttons
 * 
 * Radio buttons returns a string rather than an array.  
 * 
 * @param $choices
 * An array containing available choices in the poll
 * @param $vote
 * Text of choice selected from the form_state. Need to match it up with
 * choices saved in the node.
 * @return
 * Returns the unique ID of the choice selected by the user.
 */
function advpoll_radio_selected($choices, $vote) {
  $selected = array();
  $count = count($choices);
  for ($i = 0; $i < $count; $i++) {
    $choice = strip_tags($choices[$i]['choice']);
    if ($choice == strip_tags($vote)) {
      $selected[] = $choices[$i]['choice_id'];
    }
  }
  return $selected;
}

/**
 * Return unique choice ids for a given node id and user id.
 *
 * @param $nid
 * The node ID of the poll to be examined for the current user.
 * @return
 * Returns an array of unique choice IDs selected by the user.
 */
function advpoll_get_user_votes($nid) {
  global $user;
  $votes = array();
  $criteria = array();
  $criteria['entity_id'] = $nid;
  $criteria['entity_type'] = 'advpoll';
  if ($user->uid) {
    $criteria['uid'] = $user->uid;
  }
  else {
    $criteria['vote_source'] = ip_address();
  }
  $results = votingapi_select_votes($criteria);
  if ($results) {
    foreach ($results as $result) {
      $votes[] = $result['tag'];
    }
  }
  return $votes;
}

Functions

Namesort descending Description
advpoll_add_votes Add votes for a given poll.
advpoll_approval_vote Tally votes by approval method.
advpoll_calculate_percentage Return keyed array with percentages for each index.
advpoll_checkbox_selected
advpoll_check_electoral_list
advpoll_compare
advpoll_default_vote Default voting count
advpoll_get_user_votes Return unique choice ids for a given node id and user id.
advpoll_get_votes Get all votes related to a node by content type and node id.
advpoll_pooled_vote Tally votes by pooling them. All votes, whether cast by single or multichoice bear the same weight.
advpoll_radio_selected
advpoll_user_eligibility