<?php
namespace application\admin\controller;
use ticky\controller;
use ticky\request;
use ticky\response;
use ticky\model;
use application\common\models\membermodel;
class auth extends controller {
public $user_id = 1;
public $p;
public $db;
public function __construct() {
$this->p = request::get('p', 1);
$this->db = new model();
$this->check_admin();
$this->check_priv();
$this->set_site();
$this->assign('uid', $this->user_id);
$this->assign('username', membermodel::get_user_name($this->user_id));
}
final private function check_admin() {
if (MODULE_PATH == 'admin' && CONTROLLER_NAME == 'index' && ACTION_NAME == 'login') {
return true;
} else {
$this->user_id = membermodel::get_user_id();
if (!$this->user_id) {
showmsg(L('login_website'), url('admin/login/index'), 1);
}
self::check_referer();
}
}
final private function check_priv() {
}
final private function check_referer() {
if (strpos(MODULE_NAME, 'public_') === 0)
return true;
if (HTTP_REFERER) {
if (strpos(HTTP_REFERER, SERVER_PORT . HTTP_HOST) === false)
showmsg('非法来源,拒绝访问!', 'stop');
}
return true;
}
final private function set_site() {
if (!isset($_COOKIE['ticky_tickysite'])) {
$data = cache('site');
$siteid = $data[1]['siteid'];
if (!$siteid) {
$siteid = 1;
}
setcookie('ticky_tickysite', $siteid, time() + 1440, '/', '', '');
setcookie('ticky_tickyskin', 'blue', time() + 1440, '/', '', '');
}
}
public function breadcrumb() {
$m = $_GET['model'];
$c = $_GET['controller'];
$a = $_GET['action'];
$child = db('menu')->where(['m' => $m, 'c' => $c, 'a' => $a])->select();
$str = '<li><i class="fa fa-home fa-fw"></i>首页</li>';
$root_str = '';
$child_str = '';
$url = "/" . $m . "/" . $c;
if (is_array($child) && count($child) > 0) {
$icon = '';
if (!empty($child[0]['icon'])) {
$icon = '<i class="fa ' . $child[0]['icon'] . ' fa-fw"></i>';
}
$child_str .= '<li><a target="main" href="' . $url . '">' . $icon . $child[0]['name'] . '</a></li>';
$root = db('menu')->where(['id' => $child[0]['parentid']])->find();
if (is_array($root)) {
if (!empty($root['icon'])) {
$icon = '<i class="fa ' . $root['icon'] . ' fa-fw"></i>';
}
$root_str .= '<li>' . $icon . $root['name'] . '</li>';
}
$root = db('menu')->where(['id' => $root['parentid']])->find();
if (is_array($root)) {
if (!empty($root['icon'])) {
$icon = '<i class="fa ' . $root['icon'] . ' fa-fw"></i>';
}
$root_str .= '<li>' . $icon . $root['name'] . '</li>';
}
}
response::ajax($str . $root_str . $child_str);
}
}