|
| 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 | +} |
0 commit comments