123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?php
- namespace app\admin\controller\general;
- use app\common\controller\Backend;
- /**
- * 附件管理
- *
- * @icon fa fa-circle-o
- * @remark 主要用于管理上传到又拍云的数据或上传至本服务的上传数据
- */
- class Attachment extends Backend
- {
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = model('Attachment');
- }
- /**
- * 查看
- */
- public function index()
- {
- //设置过滤方法
- $this->request->filter(['strip_tags']);
- if ($this->request->isAjax())
- {
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
- $total = $this->model
- ->where($where)
- ->order($sort, $order)
- ->count();
- $list = $this->model
- ->where($where)
- ->order($sort, $order)
- ->limit($offset, $limit)
- ->select();
- $cdnurl = preg_replace("/\/(\w+)\.php$/i", '', $this->request->root());
- foreach ($list as $k => &$v)
- {
- $v['fullurl'] = ($v['storage'] == 'local' ? $cdnurl : $this->view->config['upload']['cdnurl']) . $v['url'];
- }
- unset($v);
- $result = array("total" => $total, "rows" => $list);
- return json($result);
- }
- return $this->view->fetch();
- }
- /**
- * 选择附件
- */
- public function select()
- {
- if ($this->request->isAjax())
- {
- return $this->index();
- }
- return $this->view->fetch();
- }
- /**
- * 添加
- */
- public function add()
- {
- if ($this->request->isAjax())
- {
- $this->error();
- }
- return $this->view->fetch();
- }
- /**
- * 删除附件
- * @param array $ids
- */
- public function del($ids = "")
- {
- if ($ids)
- {
- \think\Hook::add('upload_delete', function($params) {
- $attachmentFile = ROOT_PATH . '/public' . $params['url'];
- if (is_file($attachmentFile))
- {
- @unlink($attachmentFile);
- }
- });
- $attachmentlist = $this->model->where('id', 'in', $ids)->select();
- foreach ($attachmentlist as $attachment)
- {
- \think\Hook::listen("upload_delete", $attachment);
- $attachment->delete();
- }
- $this->success();
- }
- $this->error(__('Parameter %s can not be empty', 'ids'));
- }
- }
|