Skip to content

Commit d99ff6e

Browse files
committed
Controller: Add access check to Dispatcher
This commit adds a top level Controller to provide ability to check if the caller has access.
1 parent e148727 commit d99ff6e

5 files changed

+66
-3
lines changed

bootstrap.php

+1
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ static function connect() {
204204
static function loadCode() {
205205
#include required files
206206
require_once INCLUDE_DIR.'class.util.php';
207+
include_once INCLUDE_DIR.'class.controller.php';
207208
require_once INCLUDE_DIR.'class.translation.php';
208209
require_once(INCLUDE_DIR.'class.signal.php');
209210
require(INCLUDE_DIR.'class.model.php');

include/class.ajax.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ class.ajax.php
2424
* call controller should inherit from this class in order to maintain
2525
* consistency.
2626
*/
27-
class AjaxController extends ApiController {
27+
class AjaxController extends Controller {
28+
2829
function staffOnly() {
2930
global $thisstaff;
3031
if(!$thisstaff || !$thisstaff->isValid()) {

include/class.api.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ static function save($id, $vars, &$errors) {
165165
* API request.
166166
*/
167167

168-
class ApiController {
168+
class ApiController extends Controller {
169169

170170
var $apikey;
171171

include/class.controller.php

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<?php
2+
/*********************************************************************
3+
class.controller.php
4+
5+
Peter Rotich
6+
Copyright (c) osTicket
7+
http://www.osticket.com
8+
9+
Released under the GNU General Public License WITHOUT ANY WARRANTY.
10+
See LICENSE.TXT for details.
11+
12+
vim: expandtab sw=4 ts=4 sts=4:
13+
**********************************************************************/
14+
abstract class Controller {
15+
/*
16+
* access
17+
*
18+
* This routine can be defined downstream to check if user has
19+
* permission to call routines in the controller.
20+
*
21+
*/
22+
function access() {
23+
return true;
24+
}
25+
26+
/**
27+
* error & logging and response!
28+
*
29+
*/
30+
function exerr($code, $error='') {
31+
global $ost;
32+
33+
if ($error && is_array($error))
34+
$error = Format::array_implode(": ", "\n", $error);
35+
36+
//Log the error as a warning - include api key if available.
37+
$msg = $error;
38+
if ($_SERVER['HTTP_X_API_KEY'])
39+
$msg.="\n*[".$_SERVER['HTTP_X_API_KEY']."]*\n";
40+
$ost->logWarning(__('Error')." ($code)", $msg, false);
41+
42+
if (PHP_SAPI == 'cli') {
43+
fwrite(STDERR, "({$code}) $error\n");
44+
} else {
45+
$this->response($code, $error); //Responder should exit...
46+
}
47+
return false;
48+
}
49+
50+
//Default response method - can be overwritten in subclasses.
51+
function response($code, $resp) {
52+
Http::response($code, $resp);
53+
exit();
54+
}
55+
}

include/class.dispatcher.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,13 @@ function dispatch($url, $prev_args=null) {
136136
if ($class) {
137137
# Create instance of the class, which is the first item,
138138
# then call the method which is the second item
139-
$func = array(new $class, $func);
139+
$class = new $class;
140+
# Check access at the controller level
141+
if (!$class->access())
142+
Http::response(403, __('Access Denied!!!'));
143+
# Create callable function, class is the first item,
144+
# then call the method is the second item
145+
$func = array($class, $func);
140146
}
141147

142148
if (!is_callable($func))

0 commit comments

Comments
 (0)