Abstract.class.php 10.2 KB
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 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
<?php
/**
 * 自定义一个基类 -- 应用中的所有控制器应继承此类
 * (以备业务有所修改而不便故延伸此类)
 * 
 * @name Controller_abstract
 * @version 0.2 (2012-12-17 16:35:28) <fei.hong@yoho.cn>
 * @author xiaoma 
 * @since 0.1 (2012-6-26)
 */
class Controller_Abstract extends Framework_YController
{
	const SUCCESS_STATUS_CODE = '0';
	const FAIL_STATUS_CODE = '1';
	/**
	 * 存放网站SEO
	 * 
	 * @var array
	 * @since 0.2
	 */
	private $_seo = array();
	
	/**
	 * 存放插件参数
	 * 
	 * @var array
	 */
	private $_pluginParam = array();

	/**
	 * 当前登录用户ID
	 *
	 * @var int
	 */
	protected $_uid = 0 ;
	//平台
	protected $_platform = '';
	
	/**
	 * 初始化父类
	 */
	public function __construct()
	{
		parent::__construct();
		$this->_platform = Lib_Utils::agentToPlatform($_SERVER['HTTP_USER_AGENT']);
	}

	/**
	 * 将继承类中的execute方法覆盖
	 * 
	 * 方便以后对此应用单独进行配置或修改,避免直接操作基础类
	 * 
	 * @param string $action 操作名称
	 * @param array $args 预留参数
	 */
	public function execute($action, array $args = array())
	{
		// 执行Action之前的操作
		$this->beforeExecute();
		$callback = $this->_request->query('callback','');
		$cookieName = 'callbackUrl';
		if(empty($callback))
		{
			$cookieUrl = Util_Utils_SafeCookie::get($cookieName);
			if(empty($cookieUrl))
			{
				$callback = '/default/index';
			}
			else
			{
				$callback = $cookieUrl;
			}
		}
		//yohobuy.com连接,自动跳转到客户端
		if(strpos($callback, 'yohobuy.com') !== false)
		{
			$this->_platform = 'android';
		}
		Util_Utils_SafeCookie::set($cookieName, $callback);
		if(isset($_REQUEST['controller']))
		{
			if(strtolower($_REQUEST['controller']) == 'mobileapi') //mobileapi忽略
			{
				$this->_platform = 'web';
			}
		}
		//判断是不是客户端
		if($this->_platform == 'android' || $this->_platform == 'iphone')
		{
			$this->_view = array_merge(array('callback'=> $callback), $this->_view);
			$this->_viewname .= $action.'mobile';
			if($this->existsAction($action.'Mobile'))
			{
				$action .= 'Mobile';
			}
			else if(!$this->existsAction($action))
			{
				if(!file_exists($this->getViewBasePath().$this->getViewScriptPath().'/'.$_REQUEST['controller'].'/'.$this->_viewname.'.php'))
				{
					header("location:".SITE_MAIN);
				}
			}
		}
		// 初始化并执行Action操作
		$response = $this->init();
		if (null === $response)
		{
			$action = $this->formatAction($action);
			$response = call_user_func_array(array($this , $action), $args);
		}
   
		// 执行Action之后的操作
		$this->afterExecute($response);
	
		// 如果无返回值,则渲染视图页面.
        if (null === $response && is_array($this->_view))
        {
        	// 渲染视图之前的操作
            $this->beforeRender($response);

            // 渲染视图操作
            $response = $this->render($this->_viewname, $this->_view);
        }
        return $response;
	}
	
	
	/**
	 * 创建统一JSON格式
	 *
	 * @param boolean $boolean true|false, 状态,标志是否成功
	 * @param string $code 自定义Code码
	 * @param mixed $data  自定义返回数据
	 * @param string $message 提示
	 * @return json
	 */
	protected function returnJson($status = true, $code = 0, $data = '', $message = '')
	{
		if ($this->_request->isAjax())
		{
			header('Content-Type: application/json; charset=utf-8;');
		}
		
		return Util_Json::encode(array(
			'status' => $status, 
			'code' => $code, 
			'data' => $data, 
			'message' => $message
		));
	}
	
	/**
	 * 错误提示页
	 *
	 * @param string $caption	标题
	 * @param string $message	提示信息
	 * @param string $url		跳转链接
	 * @param integer $delay	停留时间时间
	 * @param string $script	JS脚本
	 * @param string $viewname	使用的视图
	 * @return string 错误提示页面HTML内容
	 * @since 0.2
	 */
	protected function _error($caption, $message, $url, $delay = 5, $script = '', $viewname = 'redirect_message')
	{
		return $this->render($viewname, array(
			'message_caption' => $caption,
			'message_body' => $message,
			'redirect_url' => $url,
			'redirect_delay' => $delay,
			'hidden_script' => $script
		));
	}

	/**
	 * 计算分页查询的LIMIT值
	 *
	 * @param integer $max (最大限制数)
	 * @param integer $limit (分页每页的限制数)
	 * @return array
	 */
	protected function getLimit($max = 100, $limit = 50)
	{
		$page = (int) $this->_request->query('page', 1);
		$limit = (int) $this->_request->query('limit', $limit);
	
		($page < 1) ? $page = 1 : true;
		($limit > $max) ? $limit = $max : true;
	
		$offset = ($page - 1) * $limit;
	
		return array($offset, $limit);
	}

	/**
	 * 计算手机端分页查询的LIMIT值
	 *
	 * @param integer $limitDefault LIMIT默认值
	 * @param integer $maxLimit  最大限制数
	 * @return array
	 */
	protected function getMobileLimit($limitDefault = 20, $maxLimit = 500)
	{
		$limit = $limitDefault;
		$start = $this->_request->query('start', 0);
		$end = $this->_request->query('end', $limitDefault);
	
		if (is_numeric($start) && is_numeric($end))
		{
			$start = intval($start, 10);
			$end = intval($end, 10);
	
			if ($start < $end)
			{
				$limit = $end - $start + 1;
	
				if ($limit > $maxLimit)
				{
					$limit = $maxLimit;
				}
				elseif ($limit <= 0)
				{
					$limit = $limitDefault;
				}
			}
		}
	
		return array($start, $limit);
	}
	
	/**
	 * 创建Session
	 *
	 * @param string $namespace (命名空间)
	 * @param string $key (键名)
	 * @param mixed $value (键值)
	 * @return void
	 */
	protected function setSession($namespace, $key, $value)
	{
		$session = new Util_Session_Namespace($namespace);
		$session->__set($key, $value);
	}
	
	/**
	 * 获取Session
	 *
	 * @param string $namespace (命名空间)
	 * @param string $key (键名: 默认为null, 表示所有)
	 * @return mixed
	 */
	protected function getSession($namespace, $key = null)
	{
		$session = new Util_Session_Namespace($namespace);
		if (null === $key)
		{
			return $session->getIterator();
		}
		return $session->__get($key);
	}

	/**
	 * 删除Session
	 *
	 * @param string $namespace (命名空间)
	 * @param string $key (键名: 默认为null, 表示所有)
	 * @return void
	 */
	protected function delSession($namespace, $key = null)
	{
		$session = new Util_Session_Namespace($namespace);
		
		if (null === $key)
		{
			$session->unsetAll();
		}
		else 
		{
			$session->__unset($key);
		}
	}

    /**
     * 设置cookie
     * 
	 * @param string $name (cookie名称)
	 * @param mixed $value (cookie值)
	 * @param integer $expire (cookie有效期)
	 * @param mixed $domain (cookie作用域)
	 * @param mixed $path (cookie有效路径)
	 * @return void
	 * @since 0.2
	 */
    protected function setCookie($name, $value, $expire = 0, $domain = SITE_DOMAIN, $path = '/')
    {
    	Util_Utils_SafeCookie::set($name, $value, $expire, $domain);
    }
    
    /**
     * 获取cookie
     * 
     * @param string $name (cookie名称)
     * @return mixed (null: 表示cookie不存在)
     * @since 0.2
     */
    protected function getCookie($name)
    {
    	return Util_Utils_SafeCookie::get($name);
    }
    
    /**
     * 删除cookie
     * 
     * @param string $name (cookie名称)
     * @return void
     * @since 0.2
     */
    protected function delCookie($name)
    {
    	Util_Utils_SafeCookie::clear($name);
    }
	
	/**
	 * 设置SEO标题
	 *
	 * @param string $title (SEO标题)
	 * @since 0.2
	 */
	protected function setTitle($title)
	{
		$this->_seo['title'] = $this->stripTags($title);
	}
	
	/**
	 * 设置SEO关键字
	 *
	 * @param string $keywords (SEO关键字)
	 * @since 0.2
	 */
	protected function setKeywords($keywords)
	{
		$this->_seo['keywords'] = $this->stripTags($keywords);
	}
	
	/**
	 * 设置SEO简单描述
	 *
	 * @param string $description (SEO简单描述)
	 * @since 0.2
	 */
	protected function setDescription($description)
	{
		$this->_seo['description'] = $this->stripTags($description);
	}

	/**
	 * 过滤字符内容
	 *
	 * @param string $html
	 * @return string
	 */
	protected function stripTags($html) 
	{
		$search = array(
			'&nbsp;', 
			"'<script[^>]*?>.*?</script>'si", 
			"'<[\/\!]*?[^<>]*?>'si", 
			"'([\r\n])[\s]+'", 
			"'&(quot|#34|#034|#x22);'i", 
			"'&(amp|#38|#038|#x26);'i", 
			"'&(lt|#60|#060|#x3c);'i", 
			"'&(gt|#62|#062|#x3e);'i", 
			"'&(nbsp|#160|#xa0);'i", 
			"'&(iexcl|#161);'i", 
			"'&(cent|#162);'i", 
			"'&(pound|#163);'i", 
			"'&(copy|#169);'i", 
			"'&(reg|#174);'i", 
			"'&(deg|#176);'i", 
			"'&(#39|#039|#x27);'", 
			"'&(euro|#8364);'i", 
			"'&a(uml|UML);'", 
			"'&o(uml|UML);'", 
			"'&u(uml|UML);'", 
			"'&A(uml|UML);'", 
			"'&O(uml|UML);'", 
			"'&U(uml|UML);'", 
			"'&szlig;'i", 
			"\n", 
			"\r", 
			"\t", 
			"\0", 
		);
		return trim(str_replace($search, '', strip_tags($html)));
	}
	
	/**
	 * 执行Action前的操作
	 */
	protected function beforeExecute()
	{
		
	}
	
	/**
	 * 执行Action后的操作
	 * 在此设置此方法为最终方法,不允许action中进行继承
	 * 例如: 此处可放置如日志系统之类的代码
	 */
	final protected function afterExecute(&$response)
	{
		Framework_YPlugin::execute('afterAction', array(
			'view' => $this->_view, // 视图参数
			'req' => $this->_request, // 请求对象
			'res' => $response // 响应结果
		));
	}
	
	/**
	 * 执行渲染视图前的操作
	 *
	 * 在此设置此方法为最终方法,不允许action中进行继承
	 * 例如: 此处可放置初始化设置网站SEO
	 *
	 * @see Framework_YController::beforeRender()
	 * @since 0.2
	 */
	final protected function beforeRender($response)
	{
		$view = array();
		$seo = C('APP.Seo');
	
		// 网站标题
		$view['_title'] = '';
		if (isset($this->_seo['title']))
		{
			$view['_title'] .= $this->_seo['title'] . '-';
		}
		if (isset($seo['title']))
		{
			$view['_title'] .= $seo['title'];
		}
	
		// 网站关键字
		$view['_keywords'] = '';
		if (isset($this->_seo['keywords']))
		{
			$view['_keywords'] .= $this->_seo['keywords'] . ',';
		}
		if (isset($seo['keywords']))
		{
			$view['_keywords'] .= $seo['keywords'];
		}
	
		// 网站简单描述
		$view['_description'] = '';
		if (isset($this->_seo['description']))
		{
			$view['_description'] .= $this->_seo['description'] . ',';
		}
		if (isset($seo['description']))
		{
			$view['_description'] .= $seo['description'];
		}
	
		$this->_view = array_merge($this->_view, $view);
	}
	
}
?>