View source
<?php
function _flag_is_views3() {
return views_api_version() >= '3';
}
class flag_plugin_argument_validate_flaggability extends views_plugin_argument_validate {
function construct() {
parent::construct();
$this->flag_type = $this->definition['flag type'];
}
function option_definition() {
$options = parent::option_definition();
$options['flag_name'] = array(
'default' => '*relationship*',
);
$options['flag_test'] = array(
'default' => 'flaggable',
);
$options['flag_id_type'] = array(
'default' => 'id',
);
return $options;
}
function options_form(&$form, &$form_state) {
$options = $this
->flags_options();
$form[$this
->_option_name('flag_name')] = array(
'#type' => 'radios',
'#title' => t('Flag'),
'#options' => $options,
'#default_value' => $this
->_get_option('flag_name', '*relationship*'),
'#description' => t('Select the flag to validate against.'),
);
if (!$options) {
$form[$this
->_option_name('flag_name')]['#description'] = '<p class="warning">' . t('No %type flags exist. You must first <a href="@create-url">create a %type flag</a> before being able to use one.', array(
'%type' => $this->flag_type,
'@create-url' => 'admin/build/flags',
)) . '</p>';
}
$form[$this
->_option_name('flag_test')] = array(
'#type' => 'select',
'#title' => t('Validate the @type only if', array(
'@type' => $this->flag_type,
)),
'#options' => $this
->tests_options(),
'#default_value' => $this
->_get_option('flag_test', 'flaggable'),
);
$form[$this
->_option_name('flag_id_type')] = array(
'#type' => 'select',
'#title' => t('Argument type'),
'#options' => array(
'id' => t('ID'),
'ids' => t('IDs separated by , or +'),
),
'#default_value' => $this
->_get_option('flag_id_type', 'id'),
);
}
function validate_form(&$form, &$form_state) {
$this
->options_form($form, $form_state);
$form[$this
->_option_name('flag_name')] += array(
'#prefix' => '<div><div id="edit-options-' . views_css_safe($this
->_option_name('flag_name')) . '">',
'#suffix' => '</div></div>',
'#process' => array(
'expand_radios',
'views_process_dependency',
),
);
foreach (array(
'flag_name',
'flag_test',
'flag_id_type',
) as $option) {
$form[$this
->_option_name($option)] += array(
'#dependency' => array(
'edit-options-validate-type' => array(
$this->id,
),
),
'#process' => array(
'views_process_dependency',
),
);
}
}
function flags_options() {
$flags = flag_get_flags($this->flag_type);
if (!$flags) {
return array();
}
else {
foreach ($flags as $flag) {
$options[$flag->name] = $flag
->get_title();
}
$options['*relationship*'] = t('<em>Pick the first flag mentioned in the relationships.</em>');
return $options;
}
}
function _get_option($option, $default) {
if (_flag_is_views3()) {
return $this->options[$option];
}
else {
$option = $this
->_option_name($option);
return isset($this->argument->options[$option]) ? $this->argument->options[$option] : $default;
}
}
function _option_name($option) {
if (_flag_is_views3()) {
return $option;
}
else {
return 'validate_argument_' . $this->flag_type . '_' . $option;
}
}
function convert_options(&$options) {
$prefix = 'validate_argument_' . $this->flag_type . '_';
if (!isset($options['flag_name']) && !empty($this->argument->options[$prefix . 'flag_name'])) {
$options['flag_name'] = $this->argument->options[$prefix . 'flag_name'];
$options['flag_test'] = $this->argument->options[$prefix . 'flag_test'];
$options['flag_id_type'] = $this->argument->options[$prefix . 'flag_id_type'];
}
}
function tests_info($which = NULL) {
return array(
'flaggable' => array(
'title' => t('It is flaggable'),
'callback' => 'test_flaggable',
),
'flagged' => array(
'title' => t('It is flagged at least once'),
'callback' => 'test_flagged',
),
'flagged_by_current_user' => array(
'title' => t('It is flagged by the current user'),
'callback' => 'test_flagged_by_current_user',
),
);
}
function tests_options() {
$options = array();
foreach ($this
->tests_info() as $id => $info) {
$options[$id] = $info['title'];
}
return $options;
}
function get_flag() {
$flag_name = $this
->_get_option('flag_name', '*relationship*');
if ($flag_name == '*relationship*') {
foreach ($this->view->relationship as $id => $handler) {
if (strpos($handler->options['field'], 'flag') !== FALSE && !empty($handler->options['flag'])) {
$flag = flag_get_flag($handler->options['flag']);
if ($flag && $flag->content_type == $this->flag_type) {
return $flag;
}
}
}
}
return flag_get_flag($flag_name);
}
function validate_argument($argument) {
$flag_test = $this
->_get_option('flag_test', 'flaggable');
$id_type = $this
->_get_option('flag_id_type', 'id');
$flag = $this
->get_flag();
if (!$flag) {
return TRUE;
}
if ($id_type == 'id') {
if (!is_numeric($argument)) {
return FALSE;
}
}
$ids = views_break_phrase($argument, $this);
if ($ids->value == array(
-1,
)) {
return FALSE;
}
$ids = $ids->value;
$tests_info = $this
->tests_info();
$method = $tests_info[$flag_test]['callback'];
if (method_exists($this, $method)) {
$passed = $this
->{$method}($ids, $flag);
}
else {
$passed = array();
}
$failed = array_diff($ids, $passed);
return empty($failed);
}
function test_flaggable($ids, $flag) {
return array_filter($ids, array(
$flag,
'applies_to_content_id',
));
}
function test_flagged($ids, $flag) {
$flattened_ids = implode(',', $ids);
return $this
->_test_by_sql("SELECT content_id FROM {flag_counts} WHERE fid = %d AND content_id IN ({$flattened_ids}) AND count > 0", array(
$flag->fid,
));
}
function test_flagged_by_current_user($ids, $flag) {
global $user;
if (!$user->uid) {
return array();
}
$flattened_ids = implode(',', $ids);
return $this
->_test_by_sql("SELECT content_id FROM {flag_content} WHERE fid = %d AND content_id IN ({$flattened_ids}) AND uid = %d", array(
$flag->fid,
$user->uid,
));
}
function _test_by_sql($sql, $args) {
$passed = array();
$result = db_query($sql, $args);
while ($row = db_fetch_object($result)) {
$passed[] = $row->content_id;
}
return $passed;
}
}