Current Path : /web/htdocs/www.entinoprofit.org/home/lists/admin/
Upload File :
Current File : /web/htdocs/www.entinoprofit.org/home/lists/admin/bouncerule.php

<?php

require_once dirname(__FILE__).'/accesscheck.php';

if (isset($_GET['id'])) {
    $hash = '#'.sprintf('%d', $_GET['id']);
    $id = sprintf('%d', $_GET['id']);
} else {
    $hash = '';
    $id = 0;
}

if (isset($_GET['action']) && $_GET['action'] == 'next') {
    if (isset($_GET['del'])) {
        Sql_Query(sprintf('delete from %s where id = %d', $GLOBALS['tables']['bounceregex'], $_GET['del']));
    } elseif (isset($_GET['activate'])) {
        Sql_Query(sprintf('update %s set status = "active" where id = %d', $GLOBALS['tables']['bounceregex'],
            $_GET['activate']));
    } else {
        Redirect('bouncerules');
    }
    $next = Sql_Fetch_Row_Query(sprintf('select id from %s where status = "candidate"',
        $GLOBALS['tables']['bounceregex']));
    if (!empty($next[0])) {
        Redirect('bouncerule&id='.$next[0]);
    } else {
        $_SESSION['action_result'] = s('No more candidate rules');
        Redirect('bouncerules');
    }
}

if (isset($_POST['save']) && $_POST['save']) {
    Sql_Query(sprintf('update %s set regex = "%s", regexhash = "%s", action="%s", comment="%s",status = "%s" where id= %d',
        $GLOBALS['tables']['bounceregex'], trim($_POST['regex']), md5(trim($_POST['regex'])), sql_escape($_POST['action']),
        sql_escape($_POST['comment']), sql_escape($_POST['status']), $_GET['id']), 1);
    $num = Sql_Affected_Rows();
    if ($num < 0) {
        echo $GLOBALS['I18N']->get('Updating the regular expression of this rule caused an Sql conflict<br/>This is probably because there is already a rule like that. Do you want to delete this rule instead?');
        echo '<p>'.PageLink2('bouncerules&del='.$id, $GLOBALS['I18N']->get('Yes')).'&nbsp;';
        echo PageLink2('bouncerules', $GLOBALS['I18N']->get('No')).'</p>';

        return;
    }
    Redirect('bouncerules'.$hash);
}

echo '<p>'.PageLinkButton('bouncerules'.$hash, $GLOBALS['I18N']->get('back to list of bounce rules')).'</p>';
$data = Sql_Fetch_Array_Query(sprintf('select * from %s where id = %d',
    $GLOBALS['tables']['bounceregex'], $id));

echo '<div class="actions">';
echo PageLinkButton('bouncerule', s('delete and next'), 'del='.$id.'&action=next', '',
    s('delete this rule and go to the next candidate'));
echo PageLinkButton('bouncerule', s('activate and next'), 'activate='.$id.'&action=next', '',
    s('activate this rule and go to the next candidate'));
echo '</div>';

echo formStart();
echo '<table>';
printf('<tr><td colspan="2">%s</td></tr><tr><td colspan="2"><input type=text name="regex" size=60 value="%s"></td></tr>',
    $GLOBALS['I18N']->get('Regular Expression'), htmlspecialchars($data['regex']));
printf('<tr><td>%s</td><td>%s</td></tr>',
    $GLOBALS['I18N']->get('Created By'), adminName($data['admin']));
printf('<tr><td>%s</td><td><select name="action">', $GLOBALS['I18N']->get('Action'));
foreach ($GLOBALS['bounceruleactions'] as $action => $desc) {
    printf('<option value="%s" %s>%s</option>', $action, $data['action'] == $action ? 'selected' : '', $desc);
}
echo '</select></td></tr>';
printf('<tr><td>%s</td><td><select name="status">', $GLOBALS['I18N']->get('Status'));
printf('<option value="none">[%s]</option>', $GLOBALS['I18N']->get('Select Status'));
foreach (array('active', 'candidate') as $type) {
    printf('<option value="%s" %s>%s</option>', $type, $data['status'] == $type ? 'selected' : '',
        $GLOBALS['I18N']->get($type));
}
echo '</select></td></tr>';
printf('<tr><td colspan=2>%s</td></tr><tr><td colspan=2>
  <textarea name="comment" rows=10 cols=65>%s</textarea></td></tr>',
    $GLOBALS['I18N']->get('Memo for this rule'), htmlspecialchars($data['comment']));
echo '<tr><td colspan=2><input type=submit name="save" value="'.$GLOBALS['I18N']->get('Save Changes').'"></td></tr>';
echo '</table></form>';

$req = Sql_Query(sprintf('select * from %s where regex = %d', $GLOBALS['tables']['bounceregex_bounce'], $_GET['id']));
$num = Sql_affected_Rows();
if ($num) {
    echo '<p>'.$GLOBALS['I18N']->get('related bounces').'</p><p>';
} else {
    echo '<p>'.$GLOBALS['I18N']->get('no related bounces found').'</p>';
}
$c = 0;
while ($row = Sql_Fetch_Array($req)) {
    echo PageLink2('bounce&id='.$row['bounce'], $row['bounce']).' ';
    ++$c;
    if ($c > 100) {
        break;
    }
}
if ($c < $num) {
    printf(' '.$GLOBALS['I18N']->get('and more, %d in total'), $num);
}