| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- namespace addons\cms\controller;
- use addons\cms\model\SpiderLog;
- use think\Config;
- /**
- * 会员个人主页控制器
- * Class User
- * @package addons\cms\controller
- */
- class User extends Base
- {
- public function index()
- {
- $config = get_addon_config('cms');
- if (!$config['userpage']) {
- $this->error("会员主页功能已关闭");
- }
- $user_id = $this->request->param('id');
- $user = \app\common\model\User::get($user_id);
- if (!$user) {
- $this->error("未找到指定会员");
- }
- if ($user['status'] == 'hidden') {
- $this->error("暂时无法浏览");
- }
- $pathArr = explode('/', $this->request->pathinfo());
- $type = end($pathArr);
- $type = is_numeric($type) || !in_array($type, ['archives', 'comment']) ? 'archives' : $type;
- $pagesize = 10;
- $page = $this->request->get('page/d', 1);
- $page = max(1, $page);
- if ($type == 'archives') {
- $archivesList = \addons\cms\model\Archives::with(['user', 'channel'])
- ->where('user_id', $user['id'])
- ->where('status', 'normal')
- ->order('id', 'desc')
- ->paginate($pagesize, $config['pagemode'] == 'simple', ['var_page' => 'page', 'fragment' => '']);
- $this->view->assign('archivesList', $archivesList);
- $this->view->assign('__PAGELIST__', $archivesList);
- } else {
- $commentList = \addons\cms\model\Comment::with(['user'])
- ->where('user_id', $user['id'])
- ->where('status', 'normal')
- ->order('id', 'desc')
- ->paginate($pagesize, $config['pagemode'] == 'simple', ['var_page' => 'page', 'fragment' => '']);
- $collection = $commentList->getCollection();
- load_relation($collection, 'source');
- $this->view->assign('commentList', $commentList);
- $this->view->assign('__PAGELIST__', $commentList);
- }
- $title = $type == 'archives' ? '的文章' : '的评论';
- Config::set('cms.title', $user['nickname'] . $title);
- Config::set('cms.image', isset($user['avatar']) && $user['avatar'] ? cdnurl($user['avatar'], true) : '');
- SpiderLog::record('user', $user['id']);
- $statistics = [
- 'archives' => \addons\cms\model\Archives::where('user_id', $user['id'])->where('status', 'normal')->count(),
- 'comments' => \addons\cms\model\Comment::where('user_id', $user['id'])->where('status', 'normal')->count(),
- ];
- $this->view->assign('statistics', $statistics);
- $this->view->assign('title', ($this->auth->id == $user['id'] ? '我' : 'TA') . $title);
- $this->view->assign('page', $page);
- $this->view->assign('type', $type);
- $this->view->assign('__USER__', $user);
- if ($this->request->isAjax()) {
- $this->success("", "", $this->view->fetch('ajax/user'));
- }
- return $this->view->fetch("/user");
- }
- }
|