123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- <?php
- namespace app\admin\controller;
- use app\common\controller\Backend;
- use fast\Http;
- use fast\Random;
- use fast\Tree;
- use think\Config;
- use think\Db;
- use think\Lang;
- use think\Cache;
- /**
- * Ajax异步请求接口
- * @internal
- */
- class Ajax extends Backend
- {
- protected $noNeedLogin = ['dailybg', 'lang'];
- protected $noNeedRight = ['*'];
- protected $layout = '';
- /**
- * 自动完成
- */
- public function typeahead()
- {
- $search = $this->_request->getRequest("search");
- $field = $this->_request->getRequest("field");
- $field = str_replace(['row[', ']'], '', $field);
- if (substr($field, -3) !== '_id' && substr($field, -4) !== '_ids')
- {
- $this->code = -1;
- return;
- }
- $searchfield = 'name';
- $field = substr($field, 0, -3);
- switch ($field)
- {
- case 'category':
- $field = 'category';
- $searchfield = 'name';
- break;
- case 'user':
- $searchfield = 'nickname';
- break;
- }
- $searchlist = Db::table($field)
- ->orWhere($searchfield, 'like', "%{$search}%")
- ->orWhere('id', 'like', "%{$search}%")
- ->limit(10)
- ->select("id,{$searchfield} AS name");
- foreach ($searchlist as $k => &$v)
- {
- $v['name'] = $v['name'] . "[id:{$v['id']}]";
- }
- unset($v);
- $this->code = 1;
- $this->data = ['searchlist' => $searchlist];
- }
- /**
- * 加载语言包
- */
- public function lang()
- {
- header('Content-Type: application/javascript');
- $modulename = $this->request->module();
- $callback = $this->request->get('callback');
- $controllername = input("controllername");
- Lang::load(APP_PATH . $modulename . '/lang/' . Lang::detect() . '/' . str_replace('.', '/', $controllername) . '.php');
- //强制输出JSON Object
- $result = 'define(' . json_encode(Lang::get(), JSON_FORCE_OBJECT | JSON_UNESCAPED_UNICODE) . ');';
- return $result;
- }
- /**
- * 每日一图
- */
- public function dailybg()
- {
- //采用Infinty的图片
- $this->code = 1;
- $this->data = [
- 'url' => 'http://img.infinitynewtab.com/wallpaper/' . (date("Ymd") % 4000) . '.jpg'
- ];
- return;
- //采用Bing每日一图
- $ret = Http::sendRequest("http://www.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1", [], 'GET');
- if ($ret['ret'])
- {
- $json = json_decode($ret['msg'], TRUE);
- if ($json && isset($json['images'][0]))
- {
- $url = $json['images'][0]['url'];
- $startdate = $json['images'][0]['startdate'];
- $enddate = $json['images'][0]['enddate'];
- $copyright = $json['images'][0]['copyright'];
- $url = substr($url, 0, 4) != 'http' ? 'http://cn.bing.com' . $url : $url;
- $title = '';
- $intro = '';
- $ret = Http::sendRequest("http://cn.bing.com/cnhp/coverstory/", [], 'GET');
- if ($ret['ret'])
- {
- $info = json_decode($ret['msg'], TRUE);
- if (isset($info['title']))
- {
- $title = $info['title'];
- $intro = $info['para1'];
- }
- }
- $this->code = 1;
- $this->data = [
- 'title' => $title,
- 'intro' => $intro,
- 'url' => $url,
- 'startdate' => $startdate,
- 'enddate' => $enddate,
- 'copyright' => $copyright,
- ];
- }
- }
- }
- /**
- * 读取角色权限树
- */
- public function roletree()
- {
- $model = model('AuthGroup');
- $id = $this->request->post("id");
- $pid = $this->request->post("pid");
- $parentgroupmodel = $model->get($pid);
- $currentgroupmodel = NULL;
- if ($id)
- {
- $currentgroupmodel = $model->get($id);
- }
- if (($pid || $parentgroupmodel) && (!$id || $currentgroupmodel))
- {
- $id = $id ? $id : NULL;
- //读取父类角色所有节点列表
- $parentrulelist = model('AuthRule')->all(in_array('*', explode(',', $parentgroupmodel->rules)) ? NULL : $parentgroupmodel->rules);
- //读取当前角色下规则ID集合
- $admin_rule_ids = $this->auth->getRuleIds();
- $superadmin = $this->auth->isSuperAdmin();
- $current_rule_ids = $id ? explode(',', $currentgroupmodel->rules) : [];
- if (!$id || !in_array($pid, Tree::instance()->init($model->all(['status' => 'normal']))->getChildrenIds($id, TRUE)))
- {
- //构造jstree所需的数据
- $nodelist = [];
- foreach ($parentrulelist as $k => $v)
- {
- if (!$superadmin && !in_array($v['id'], $admin_rule_ids))
- continue;
- $state = array('selected' => !$v['ismenu'] && in_array($v['id'], $current_rule_ids));
- $nodelist[] = array('id' => $v['id'], 'parent' => $v['pid'] ? $v['pid'] : '#', 'text' => $v['title'], 'type' => 'menu', 'state' => $state);
- }
- $this->code = 1;
- $this->data = $nodelist;
- }
- else
- {
- $this->code = -1;
- $this->data = __('Can not change the parent to child');
- }
- }
- else
- {
- $this->code = -1;
- $this->data = __('Group not found');
- }
- }
- /**
- * 上传文件
- */
- public function upload()
- {
- $this->code = -1;
- $file = $this->request->file('file');
- //判断是否已经存在附件
- $sha1 = $file->hash();
- $uploaded = model("attachment")->where('sha1', $sha1)->find();
- if ($uploaded)
- {
- $this->code = 1;
- $this->data = [
- 'url' => $uploaded['url']
- ];
- return;
- }
- $upload = Config::get('upload');
- preg_match('/(\d+)(\w+)/', $upload['maxsize'], $matches);
- $type = strtolower($matches[2]);
- $typeDict = ['b' => 0, 'k' => 1, 'kb' => 1, 'm' => 2, 'mb' => 2, 'gb' => 3, 'g' => 3];
- $size = (int) $upload['maxsize'] * pow(1024, isset($typeDict[$type]) ? $typeDict[$type] : 0);
- $fileInfo = $file->getInfo();
- $suffix = strtolower(pathinfo($fileInfo['name'], PATHINFO_EXTENSION));
- $suffix = $suffix ? $suffix : 'file';
- $replaceArr = [
- '{year}' => date("Y"),
- '{mon}' => date("m"),
- '{day}' => date("d"),
- '{hour}' => date("H"),
- '{min}' => date("i"),
- '{sec}' => date("s"),
- '{random}' => Random::alnum(16),
- '{random32}' => Random::alnum(32),
- '{filename}' => $suffix ? substr($fileInfo['name'], 0, strripos($fileInfo['name'], '.')) : $fileInfo['name'],
- '{suffix}' => $suffix,
- '{.suffix}' => $suffix ? '.' . $suffix : '',
- '{filemd5}' => md5_file($fileInfo['tmp_name']),
- ];
- $savekey = $upload['savekey'];
- $savekey = str_replace(array_keys($replaceArr), array_values($replaceArr), $savekey);
- $uploadDir = substr($savekey, 0, strripos($savekey, '/') + 1);
- $fileName = substr($savekey, strripos($savekey, '/') + 1);
- //
- $splInfo = $file->validate(['size' => $size])->move(ROOT_PATH . '/public' . $uploadDir, $fileName);
- if ($splInfo)
- {
- $imagewidth = $imageheight = 0;
- if (in_array($suffix, ['gif', 'jpg', 'jpeg', 'bmp', 'png', 'swf']))
- {
- $imgInfo = getimagesize($splInfo->getPathname());
- $imagewidth = isset($imgInfo[0]) ? $imgInfo[0] : $imagewidth;
- $imageheight = isset($imgInfo[1]) ? $imgInfo[1] : $imageheight;
- }
- $params = array(
- 'filesize' => $fileInfo['size'],
- 'imagewidth' => $imagewidth,
- 'imageheight' => $imageheight,
- 'imagetype' => $suffix,
- 'imageframes' => 0,
- 'mimetype' => $fileInfo['type'],
- 'url' => $uploadDir . $splInfo->getSaveName(),
- 'uploadtime' => time(),
- 'sha1' => $sha1,
- );
- model("attachment")->create(array_filter($params));
- $this->code = 1;
- $this->data = [
- 'url' => $uploadDir . $splInfo->getSaveName()
- ];
- }
- else
- {
- // 上传失败获取错误信息
- $this->data = $file->getError();
- }
- }
- /**
- * 通用排序
- */
- public function weigh()
- {
- //排序的数组
- $ids = $this->request->post("ids");
- //拖动的记录ID
- $changeid = $this->request->post("changeid");
- //操作字段
- $field = $this->request->post("field");
- //操作的数据表
- $table = $this->request->post("table");
- //排序的方式
- $orderway = $this->request->post("orderway", 'strtolower');
- $orderway = $orderway == 'asc' ? 'ASC' : 'DESC';
- $sour = $weighdata = [];
- $ids = explode(',', $ids);
- $prikey = 'id';
- $pid = $this->request->post("pid");
- // 如果设定了pid的值,此时只匹配满足条件的ID,其它忽略
- if ($pid !== '')
- {
- $hasids = [];
- $list = Db::name($table)->where($prikey, 'in', $ids)->where('pid', 'in', $pid)->field('id,pid')->select();
- foreach ($list as $k => $v)
- {
- $hasids[] = $v['id'];
- }
- $ids = array_values(array_intersect($ids, $hasids));
- }
- //直接修复排序
- $one = Db::name($table)->field("{$field},COUNT(*) AS nums")->group($field)->having('nums > 1')->find();
- if ($one)
- {
- $list = Db::name($table)->field("$prikey,$field")->order($field, $orderway)->select();
- foreach ($list as $k => $v)
- {
- Db::name($table)->where($prikey, $v[$prikey])->update([$field => $k + 1]);
- }
- $this->code = 1;
- }
- else
- {
- $list = Db::name($table)->field("$prikey,$field")->where($prikey, 'in', $ids)->order($field, $orderway)->select();
- foreach ($list as $k => $v)
- {
- $sour[] = $v[$prikey];
- $weighdata[$v[$prikey]] = $v[$field];
- }
- $position = array_search($changeid, $ids);
- $desc_id = $sour[$position]; //移动到目标的ID值,取出所处改变前位置的值
- $sour_id = $changeid;
- $desc_value = $weighdata[$desc_id];
- $sour_value = $weighdata[$sour_id];
- //echo "移动的ID:{$sour_id}\n";
- //echo "替换的ID:{$desc_id}\n";
- $weighids = array();
- $temp = array_values(array_diff_assoc($ids, $sour));
- foreach ($temp as $m => $n)
- {
- if ($n == $sour_id)
- {
- $offset = $desc_id;
- }
- else
- {
- if ($sour_id == $temp[0])
- {
- $offset = isset($temp[$m + 1]) ? $temp[$m + 1] : $sour_id;
- }
- else
- {
- $offset = isset($temp[$m - 1]) ? $temp[$m - 1] : $sour_id;
- }
- }
- $weighids[$n] = $weighdata[$offset];
- Db::name($table)->where($prikey, $n)->update([$field => $weighdata[$offset]]);
- }
- $this->code = 1;
- }
- }
- /**
- * 清空系统缓存
- */
- public function wipecache()
- {
- $wipe_cache_type = ['TEMP_PATH', 'LOG_PATH', 'CACHE_PATH'];
- foreach ($wipe_cache_type as $item)
- {
- if ($item == 'LOG_PATH')
- {
- $dirs = (array) glob(constant($item) . '*');
- foreach ($dirs as $dir)
- {
- array_map('unlink', (array) glob($dir . DIRECTORY_SEPARATOR . '*.*'));
- }
- array_map('rmdir', $dirs);
- }
- else
- {
- array_map('unlink', (array) glob(constant($item) . DIRECTORY_SEPARATOR . '*.*'));
- }
- }
- Cache::clear();
- $this->code = 1;
- }
- }
|