00001 <?php
00002
00003
00004
00005
00006
00007 class AccessControlBase implements IAccessControl {
00008
00009
00010
00011
00012
00013 private $delegate = null;
00014
00015
00016
00017
00018
00019 private $types = null;
00020
00021
00022
00023
00024 const NOT_ALLOWED = 0;
00025
00026
00027
00028 const ALLOWED = 1;
00029
00030
00031
00032 const NOT_RESPONSIBLE = -1;
00033
00034
00035
00036
00037
00038
00039 public function __construct($item_types = false) {
00040 if (!empty($item_types)) {
00041 $this->types = Arr::force($item_types, false);
00042 }
00043 }
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053 public function is_allowed($action, $item, $user, $params = false) {
00054 $ret = false;
00055 $result = $this->do_is_allowed($action, $item, $user, $params);
00056 if ($result === true) {
00057 $result = self::ALLOWED;
00058 }
00059 switch ($result) {
00060 case self::NOT_RESPONSIBLE:
00061 if ($this->delegate) {
00062 $ret = $this->delegate->is_allowed($action, $item, $user, $params);
00063 }
00064 break;
00065 default:
00066 $ret = ($result) ? true : false;
00067 break;
00068 }
00069 return $ret;
00070 }
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080 protected function do_is_allowed($action, $item, $user, $params = false) {
00081
00082 if (!empty($this->types)) {
00083 $resposible = false;
00084 $item_type = $this->get_item_type($item);
00085 foreach($this->types as $type) {
00086 if ($type === $item_type) {
00087 $resposible = true;
00088 break;
00089 }
00090 }
00091 if (!$resposible) {
00092 return self::NOT_RESPONSIBLE;
00093 }
00094 }
00095
00096
00097 if (!empty($user)) {
00098 return $this->do_is_allowed_for_user($action, $item, $user, $params);
00099 }
00100 else {
00101 return $this->do_is_allowed_for_anonymous($action, $item, $params);
00102 }
00103 }
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115 protected function do_is_allowed_for_user($action, $item, $user, $params = false) {
00116 return self::NOT_RESPONSIBLE;
00117 }
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128 protected function do_is_allowed_for_anonymous($action, $item, $params = false) {
00129 return self::NOT_RESPONSIBLE;
00130 }
00131
00132
00133
00134
00135
00136
00137
00138 protected function to_result($bool) {
00139 return ($bool) ? self::ALLOWED : self::NOT_ALLOWED;
00140 }
00141
00142
00143
00144
00145
00146
00147
00148 protected function get_item_type($item) {
00149 $ret = $item;
00150 if ($item instanceof IDBTable) {
00151 $ret = $item->get_table_name();
00152 }
00153 else if (is_object($item)) {
00154 $ret = get_class($item);
00155 }
00156 else if (is_null($item)) {
00157 $ret = '';
00158 }
00159 return $ret;
00160 }
00161
00162
00163
00164
00165
00166
00167 public function set_old_implementation(IAccessControl $implementation) {
00168 $this->delegate = $implementation;
00169 }
00170 }