context_condition_keywords.inc in Context Keywords 6
File
context_condition_keywords.inc
View source
<?php
class context_condition_keywords extends context_condition {
function condition_values() {
return array();
}
function condition_form($context) {
$form = parent::condition_form($context);
unset($form['#options']);
$form['#type'] = 'textarea';
$form['#default_value'] = implode("\n", $this
->fetch_from_context($context, 'values'));
return $form;
}
function condition_form_submit($values) {
$parsed = array();
$items = explode("\n", $values);
if (!empty($items)) {
foreach ($items as $v) {
$v = trim($v);
if (!empty($v)) {
$parsed[$v] = $v;
}
}
}
return $parsed;
}
function execute() {
if ($this
->condition_used()) {
if (!isset($_SESSION['HTTP_REFERER'])) {
$_SESSION['HTTP_REFERER'] = $_SERVER['HTTP_REFERER'];
}
$url = $_SESSION['HTTP_REFERER'];
if ($_GET["keywords"] != '') {
if (strpos($_GET["keywords"], '/')) {
$current_keywords[] = context_keywords_provider_parse_url($_GET["keywords"]);
}
else {
$current_keywords[] = str_replace('+', ' ', $_GET["keywords"]);
}
}
else {
$current_keywords[] = context_keywords_provider_parse_url($url);
}
$default = TRUE;
foreach ($this
->get_contexts() as $context) {
$keywords = $this
->fetch_from_context($context, 'values');
if ($this
->match($current_keywords, $keywords, FALSE)) {
$default = FALSE;
$this
->condition_met($context);
}
}
if ($default) {
foreach ($this
->get_contexts() as $context) {
$keywords = $this
->fetch_from_context($context, 'values');
if ($this
->match($current_keywords, $keywords, TRUE)) {
$this
->condition_met($context);
}
}
}
}
}
protected function match($subject, $patterns, $keywords = FALSE) {
static $regexps;
$match = FALSE;
$positives = $negatives = 0;
$subject = !is_array($subject) ? array(
$subject,
) : $subject;
foreach ($patterns as $pattern) {
$pattern = strtolower($pattern);
if (strpos($pattern, '~') === 0) {
$negate = TRUE;
$negatives++;
}
else {
$negate = FALSE;
$positives++;
}
$pattern = ltrim($pattern, '~');
if (!isset($regexps[$pattern])) {
$regexps[$pattern] = '/^(' . preg_replace(array(
'/(\\r\\n?|\\n)/',
'/\\\\\\*/',
), array(
'|',
'.*',
), preg_quote($pattern, '/')) . ')$/';
}
foreach ($subject as $value) {
$value = strtolower($value);
if (preg_match($regexps[$pattern], $value)) {
if ($negate) {
return FALSE;
}
$match = TRUE;
}
}
if ($keywords && $pattern == '<default>') {
$match = TRUE;
}
}
if ($positives === 0 && $negatives) {
return TRUE;
}
return $match;
}
}