-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtiki-admin_integrator_rules.php
154 lines (151 loc) · 6.09 KB
/
tiki-admin_integrator_rules.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
// (c) Copyright 2002-2012 by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id: tiki-admin_integrator_rules.php 40234 2012-03-17 19:17:41Z changi67 $
require_once ('tiki-setup.php');
require_once ('lib/integrator/integrator.php');
// If Integrator is ON, check permissions...
$access->check_feature('feature_integrator');
$access->check_permission(array('tiki_p_admin_integrator'));
// Setup local variables from request or set default values
$repID = (isset($_REQUEST["repID"]) && strlen($_REQUEST["repID"]) > 0) ? $_REQUEST["repID"] : 0;
$ruleID = (isset($_REQUEST["ruleID"]) && strlen($_REQUEST["ruleID"]) > 0) ? $_REQUEST["ruleID"] : 0;
$ord = (isset($_REQUEST["ord"]) && strlen($_REQUEST["ord"]) > 0) ? $_REQUEST["ord"] : 0;
$srcrep = (isset($_REQUEST["srcrep"]) && strlen($_REQUEST["srcrep"]) > 0) ? $_REQUEST["srcrep"] : 0;
$srch = isset($_REQUEST["srch"]) ? $_REQUEST["srch"] : '';
$repl = isset($_REQUEST["repl"]) ? $_REQUEST["repl"] : '';
$description = isset($_REQUEST["description"]) ? $_REQUEST["description"] : '';
$rxmod = isset($_REQUEST["rxmod"]) ? $_REQUEST["rxmod"] : '';
$file = isset($_REQUEST["file"]) ? $_REQUEST["file"] : '';
$type = isset($_REQUEST["type"]) ? ($_REQUEST["type"] == 'on' ? 'y' : 'n') : 'n';
$casesense = isset($_REQUEST["casesense"]) ? ($_REQUEST["casesense"] == 'on' ? 'y' : 'n') : 'n';
$code = isset($_REQUEST["code"]) ? ($_REQUEST["code"] == 'on' ? 'y' : 'n') : 'n';
$html = isset($_REQUEST["html"]) ? ($_REQUEST["html"] == 'on' ? 'y' : 'n') : 'n';
$all = isset($_REQUEST["all"]) ? ($_REQUEST["all"] == 'on' ? 'y' : 'n') : 'n';
$enabled = isset($_REQUEST["enabled"]) ? ($_REQUEST["enabled"] == 'on' ? 'y' : 'n') : 'n';
if (!isset($_REQUEST["repID"]) || $repID <= 0) {
$smarty->assign('msg', tra("No repository"));
$smarty->display("error.tpl");
die;
}
// Create instance of integrator
$integrator = new TikiIntegrator($dbTiki);
// Check if copy button pressed
if (isset($_REQUEST["copy"]) && ($srcrep > 0)) $integrator->copy_rules($srcrep, $repID);
// Check if 'save' button pressed ...
if (isset($_REQUEST["save"])) {
// ... and all mandatory paramaters r OK
if (strlen($srch) > 0) $integrator->add_replace_rule($repID, $ruleID, $ord, $srch, $repl, $type, $casesense, $rxmod, $enabled, $description);
else {
$smarty->assign('msg', tra("Search is mandatory field"));
$smarty->display("error.tpl");
die;
}
}
// Check if 'preview' button pressed ...
if (isset($_REQUEST["preview"])) {
// Prepeare rule data
$rule = array();
$rule["repID"] = $repID;
$rule["ruleID"] = $ruleID;
$rule["ord"] = $ord;
$rule["srch"] = $srch;
$rule["repl"] = $repl;
$rule["type"] = $type;
$rule["casesense"] = $casesense;
$rule["rxmod"] = $rxmod;
$rule["enabled"] = $enabled;
$rule["description"] = $description;
// Reassign values in form
$smarty->assign('ruleID', $rule["ruleID"]);
$smarty->assign('ord', $rule["ord"]);
$smarty->assign('srch', $rule["srch"]);
$smarty->assign('repl', $rule["repl"]);
$smarty->assign('type', $rule["type"]);
$smarty->assign('casesense', $rule["casesense"]);
$smarty->assign('rxmod', $rule["rxmod"]);
$smarty->assign('enabled', $rule["enabled"]);
$smarty->assign('description', $rule["description"]);
// Have smth to show?
if (($html != 'y' || $code != 'y')) {
// Get repository configuration data
$rep = $integrator->get_repository($repID);
// Check if file given and present at configured location
$f = $integrator->get_rep_file($rep, $file);
if ((substr($rep["path"], 0, 7) != 'http://') && (substr($rep["path"], 0, 8) != 'https://') && !file_exists($f)) {
$smarty->assign('msg', tra("File not found ") . $f);
$smarty->display("error.tpl");
die;
}
// Get file content to string
$data = @file_get_contents($f);
if (isset($php_errormsg)) $data.= "ERROR: " . $php_errormsg;
else {
// Should we apply all configured rules or only current one?
if ($all == 'y') {
$rules = $integrator->list_rules($repID);
if (is_array($rules)) foreach ($rules as $r) if (($r["ruleID"] !== $ruleID) && $r["enabled"]) $data = $integrator->apply_rule($rep, $r, $data);
}
// Apply rule (make this rule 'enabled' :)
$se = $rule["enabled"];
$rule["enabled"] = 'y';
$data = $integrator->apply_rule($rep, $rule, $data);
$rule["enabled"] = $se;
}
$smarty->assign_by_ref('preview_data', $data);
}
}
// Whether some action requested?
if (isset($_REQUEST["action"])) {
switch ($_REQUEST["action"]) {
case 'edit':
if ($ruleID != 0) {
$rule = $integrator->get_rule($ruleID);
$smarty->assign('ruleID', $rule["ruleID"]);
$smarty->assign('ord', $rule["ord"]);
$smarty->assign('srch', $rule["srch"]);
$smarty->assign('repl', $rule["repl"]);
$smarty->assign('type', $rule["type"]);
$smarty->assign('casesense', $rule["casesense"]);
$smarty->assign('rxmod', $rule["rxmod"]);
$smarty->assign('enabled', $rule["enabled"]);
$smarty->assign('description', $rule["description"]);
}
break;
case 'rm':
if ($ruleID != 0) {
$access->check_authenticity();
$integrator->remove_rule($ruleID);
}
break;
default:
$smarty->assign('msg', tra("Requested action in not supported on repository"));
$smarty->display("error.tpl");
die;
break;
}
}
// Get repository name
$r = $integrator->get_repository($repID);
$smarty->assign('name', $r["name"]);
// Reassign checkboxes
$smarty->assign('file', $file);
$smarty->assign('code', $code);
$smarty->assign('html', $html);
$smarty->assign('all', $all);
// Fill list of rules
$rules = $integrator->list_rules($repID);
$smarty->assign_by_ref('rules', $rules);
$smarty->assign('repID', $repID);
// Fill list of possible source repositories
$allreps = $integrator->list_repositories(false);
$reps = array();
foreach ($allreps as $rep) $reps[$rep["repID"]] = $rep["name"];
$smarty->assign_by_ref('reps', $reps);
// disallow robots to index page:
$smarty->assign('metatag_robots', 'NOINDEX, NOFOLLOW');
// Display the template
$smarty->assign('mid', 'tiki-admin_integrator_rules.tpl');
$smarty->display("tiki.tpl");