-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathupload_control.php
268 lines (256 loc) · 7.07 KB
/
upload_control.php
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
<?php
/**
* 附件上传相关操作
* @作者 qinggan <[email protected]>
* @主页 https://www.phpok.com
* @版本 6.x
* @授权 MIT License <https://www.phpok.com/mit.html>
* @时间 2016年12月08日
**/
if(!defined("PHPOK_SET")){exit("<h1>Access Denied</h1>");}
class upload_control extends phpok_control
{
public function __construct()
{
parent::control();
}
/**
* 附件上传
* @参数 cateid 分类ID
* @参数 upfile 上传的附件
* @返回 JSON数据
**/
public function save_f()
{
$this->popedom();
$cateid = $this->get('cateid','int');
$rs = $this->upload_base('upfile',$cateid);
if(!$rs || $rs['status'] != 'ok'){
$this->json($rs['error']);
}
unset($rs['status']);
$rs['uploadtime'] = date("Y-m-d H:i:s",$rs['addtime']);
$this->json($rs,true);
}
/**
* 设置权限,防止非法人员上传
**/
private function popedom()
{
if(!$this->site['upload_guest'] && !$this->session->val('user_id')){
$this->json(P_Lang('系统已禁止游客上传,请联系管理员'));
}
if(!$this->site['upload_user'] && $this->session->val('user_id')){
$this->json(P_Lang('系统已禁止用户上传,请联系管理员'));
}
return true;
}
/**
* 基础上传
* @参数 $input_name 上传表单名
* @参数 $cateid 要存储的目录
* @返回 数组,含status状态,ok表示上传成功,其他为失败
**/
private function upload_base($input_name='upfile',$cateid=0)
{
$rs = $this->lib('upload')->getfile($input_name,$cateid);
if($rs["status"] != "ok"){
return $rs;
}
$array = array();
$array["cate_id"] = $rs['cate']['id'];
$array["folder"] = $rs['folder'];
$array["name"] = basename($rs['filename']);
$array["ext"] = $rs['ext'];
$array["filename"] = $rs['filename'];
$array["addtime"] = $this->time;
$array["title"] = $rs['title'];
$array['session_id'] = $this->session->sessid();
$array['user_id'] = $this->session->val('user_id');
$array["mime_type"] = $rs['mime_type'];
$arraylist = array("jpg","gif","png","jpeg");
if(in_array($rs["ext"],$arraylist)){
$img_ext = getimagesize($this->dir_root.$rs['filename']);
$my_ext = array("width"=>$img_ext[0],"height"=>$img_ext[1]);
$array["attr"] = serialize($my_ext);
}
$id = $this->model('res')->save($array);
if(!$id){
$this->lib('file')->rm($this->dir_root.$rs['filename']);
return array('status'=>'error','error'=>P_Lang('图片存储失败'));
}
$this->model('res')->gd_update($id);
$rs = $this->model('res')->get_one($id);
$rs["status"] = "ok";
return $rs;
}
/**
* 附件上传替换
* @参数 oldid 旧附件ID
* @参数
* @参数
* @参数
* @返回
* @更新时间
**/
public function replace_f()
{
$this->popedom();
$id = $this->get("oldid",'int');
if(!$id){
$this->json(P_Lang('没有指定要替换的附件'));
}
$old_rs = $this->model('res')->get_one($id);
if(!$old_rs){
$this->json(P_Lang('资源不存在'));
}
$rs = $this->lib('upload')->upload('upfile');
if($rs["status"] != "ok")
{
$this->json(P_Lang('附件上传失败'));
}
$arraylist = array("jpg","gif","png","jpeg");
$my_ext = array();
if(in_array($rs["ext"],$arraylist))
{
$img_ext = getimagesize($rs["filename"]);
$my_ext["width"] = $img_ext[0];
$my_ext["height"] = $img_ext[1];
}
//替换资源
$this->lib('file')->mv($rs["filename"],$old_rs["filename"]);
$tmp = array("addtime"=>$this->time);
$tmp["attr"] = serialize($my_ext);
$this->model('res')->save($tmp,$id);
//更新附件扩展信息
$this->model('res')->gd_update($id);
$rs = $this->model('res')->get_one($id);
$this->json($rs,true);
}
public function thumbshow_f()
{
$id = $this->get('id');
if(!$id){
$this->json(P_Lang('未指定ID'));
}
$list = explode(",",$id);
$newlist = array();
foreach($list AS $key=>$value){
$value = intval($value);
if($value){
$newlist[] = $value;
}
}
$id = implode(",",$newlist);
if(!$id){
$this->json(P_Lang('请传递正确的附件ID'));
}
$rslist = $this->model("res")->get_list_from_id($id);
if($rslist){
$reslist = array();
foreach($newlist as $key=>$value){
if($rslist[$value]){
$reslist[] = $rslist[$value];
}
}
$this->json($reslist,true);
}
$this->json(P_Lang('附件信息获取失败,可能已经删除'));
}
public function editopen_f()
{
$id = $this->get('id','int');
if(!$id){
error(P_Lang('未指定ID'));
}
$rs = $this->model('res')->get_one($id);
if(!$rs){
error(P_Lang('数据不存在'));
}
$this->popedom_action($rs['session_id'],$rs['user_id']);
$note = form_edit('note',$rs['note'],'editor','width=650&height=250&etype=simple');
$this->assign('rs',$rs);
$this->assign('note',$note);
$this->view($this->dir_phpok."open/res_editopen.html",'abs-file',false);
}
public function editopen_save_f()
{
$id = $this->get('id','int');
if(!$id){
$this->json(P_Lang('未指定ID'));
}
$rs = $this->model('res')->get_one($id);
if(!$rs){
$this->json(P_Lang('数据不存在'));
}
$this->popedom_action($rs['session_id'],$rs['user_id']);
$title = $this->get('title');
if(!$title){
$this->json(P_Lang('附件标题不能为空'));
}
$note = $this->get('note','html');
$this->model('res')->save(array('title'=>$title,'note'=>$note),$id);
$this->json(true);
}
public function preview_f()
{
$id = $this->get('id','int');
if(!$id){
error(P_Lang('未指定ID'));
}
$rs = $this->model('res')->get_one($id);
if(!$rs){
error(P_Lang('数据不存在'));
}
if($_SESSION['user_id']){
if($_SESSION['user_id'] != $rs['user_id'] && $rs['session_id'] != $this->session->sessid()){
error(P_Lang('您没有权限查看此附件信息'));
}
}else{
if(!$rs['session_id']){
error(P_Lang('您没有权限查看此附件信息'));
}
if($rs['session_id'] != $this->session->sessid()){
error(P_Lang('您没有权限查看此附件信息'));
}
}
$arraylist = array('jpg','png','gif','jpeg');
if($rs['ext'] && in_array($rs['ext'],$arraylist)){
$this->assign('ispic',true);
}
$this->assign('rs',$rs);
$this->view($this->dir_phpok."open/res_openview.html",'abs-file',false);
}
public function delete_f()
{
$id = $this->get('id','int');
if(!$id){
$this->json(P_Lang('未指定ID'));
}
$rs = $this->model('res')->get_one($id);
if(!$rs){
$this->json(P_Lang('附件信息不存在'));
}
$this->popedom_action($rs['session_id'],$rs['user_id']);
$this->model('res')->delete($id);
$this->json(true);
}
private function popedom_action($sessid='',$uid=0)
{
if($_SESSION['user_id']){
if($uid && $uid == $_SESSION['user_id']){
return true;
}
if($sessid && $sessid == $this->session->sessid()){
return true;
}
}else{
if($sessid && $sessid == $this->session->sessid()){
return true;
}
}
$info = P_Lang('没有权限操作');
$this->json($info);
}
}
?>