upload.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <?php
  2. //引入phpmail控件发送邮件
  3. class upload_lib
  4. {
  5. var $type_video;
  6. var $type_img;
  7. var $type_file;
  8. var $file_save_type;
  9. var $file_ext;//所有扩展
  10. var $app;
  11. var $ifset = false;
  12. function __construct()
  13. {
  14. //$this->app = sys_init();
  15. }
  16. function upload_lib()
  17. {
  18. $this->__construct();
  19. }
  20. //上传模式
  21. function upload_mode($type="swf")
  22. {
  23. $this->upload_mode = $type;
  24. }
  25. function auto_app()
  26. {
  27. $app = sys_init();
  28. $this->app = $app;
  29. }
  30. //开始上传文件
  31. function upload($inputname,$uid=0,$sid="")
  32. {
  33. $this->auto_app();
  34. if(!$inputname) return false;
  35. if(!$this->ifset) $this->setting();//设置常规配置
  36. $path = $this->path();//取得存储的路径
  37. if(!isset($_FILES[$inputname]))
  38. {
  39. return false;
  40. }
  41. //生成新的文件名称
  42. $file_name = substr(md5(time().rand(0,9999)),9,16);
  43. $zip_filename = $file_name;//如果是zip压缩包
  44. $path_info = pathinfo($_FILES[$inputname]['name']);
  45. $file_extension = strtolower($path_info["extension"]);
  46. $file_name .= ".".$file_extension;
  47. $tmp_title = $_FILES[$inputname]['name'];
  48. if(!@copy($_FILES[$inputname]["tmp_name"],$path.$file_name))
  49. {
  50. return false;
  51. }
  52. if(!in_array($file_extension,$this->file_ext))
  53. {
  54. if(function_exists("gzcompress"))
  55. {
  56. //生成zip压缩包
  57. $this->app->load_lib("zip");
  58. $tmp_contents = $this->app->file_lib->cat($path.$file_name);
  59. $this->app->zip_lib->addFile($tmp_contents,$tmp_title);
  60. unset($tmp_contents);
  61. //存储
  62. $this->app->zip_lib->output($path.$zip_filename.".zip");
  63. $this->app->file_lib->rm($path.$file_name);//删除上传的文件
  64. $file_name = $zip_filename.".zip";
  65. }
  66. else
  67. {
  68. //如果不支持在线压缩,则重命名上传的附件为zip
  69. $this->file_lib->mv($path.$file_name,$path.$file_name.".link.zip");
  70. $file_name = $zip_filename.".link.zip";
  71. }
  72. $file_extension = "zip";
  73. }
  74. $array = array();
  75. //存储数据
  76. $array["title"] = $tmp_title;
  77. $array["filename"] = str_replace(ROOT,"",$path.$file_name);
  78. $array["postdate"] = time();
  79. $array["ftype"] = $file_extension;
  80. $array["uid"] = $uid;
  81. $array["sessid"] = $sid;
  82. $insert_id = $this->app->upfile_m->save($array);
  83. if(!$insert_id)
  84. {
  85. $this->app->file_lib->rm($path.$file_name);
  86. return false;
  87. }
  88. //生成缩略图及各种规格图片
  89. if(in_array($file_extension,$this->type_img))
  90. {
  91. $this->go_picture($insert_id,$path.$file_name,$path);
  92. }
  93. return $insert_id;
  94. }
  95. function go_picture($id,$filename,$path)
  96. {
  97. $this->auto_app();
  98. $this->app->load_lib("gd");
  99. $thumbfile = $this->app->gd_lib->thumb($filename,$id);
  100. if($thumbfile)
  101. {
  102. $update_array = array();
  103. $update_array["thumb"] = str_replace(ROOT,"",$path.$thumbfile);
  104. $this->app->upfile_m->save($update_array,$id);
  105. }
  106. $this->_gd_create($id,false);
  107. }
  108. function _gd_create($picid,$if_create_thumb=true)
  109. {
  110. $this->auto_app();
  111. @set_time_limit(0);#[设置防止超时]
  112. $this->app->load_lib("gd");
  113. $this->app->load_model("gdtype_model",true);
  114. $this->app->load_model("upfile_model",true);
  115. $gdlist = $this->app->gdtype_model->get_all(1);
  116. if(!$gdlist)
  117. {
  118. return false;
  119. }
  120. $rs = $this->app->upfile_model->get_one($picid);
  121. if(!$rs || !in_array($rs["ftype"],$this->type_img))
  122. {
  123. return false;
  124. }
  125. if($if_create_thumb)
  126. {
  127. $this->app->gd_lib->thumb($rs["filename"],$picid);
  128. }
  129. $gd_rslist = $this->app->upfile_model->pic_gd_list($picid);
  130. if(!$gd_rslist) $gd_rslist = array();
  131. foreach($gd_rslist AS $key=>$value)
  132. {
  133. if(file_exists($value["filename"]) && is_file($value["filename"]))
  134. {
  135. $this->app->file_lib->rm($value["filename"]);
  136. }
  137. }
  138. unset($gd_rslist);
  139. foreach($gdlist AS $key=>$value)
  140. {
  141. $quality = $value["quality"] ? $value["quality"] : 80;
  142. $this->app->gd_lib->Set("quality",$quality);#[设置图片质量]
  143. //$cuttype = $value["cuttype"] ? true : false;
  144. $this->app->gd_lib->SetCut($value["cuttype"]);
  145. $this->app->gd_lib->Filler(intval($value["border"]),$value["bordercolor"],$value["bgcolor"],$value["bgimg"],intval($value["padding"]));
  146. $iscopyright = ($value["water"] && file_exists(ROOT.$value["water"])) ? true : false;
  147. $this->app->gd_lib->iscopyright($iscopyright);
  148. $this->app->gd_lib->CopyRight($value["water"],$value["picposition"],$value["trans"]);
  149. $newfile = $value["pictype"]."_".$picid;#[新图片名称]
  150. $width = intval($value["width"]);
  151. if(!$width)
  152. {
  153. $width = 100;
  154. }
  155. $height = intval($value["height"]);
  156. if(!$height)
  157. {
  158. $height = 100;
  159. }
  160. $newpic = $this->app->gd_lib->Create($rs["filename"],$newfile,$width,$height);
  161. $array = array();
  162. $array["gdtype"] = $value["pictype"];
  163. $array["pid"] = $picid;
  164. $array["filename"] = str_replace(basename($rs["filename"]),basename($newpic),$rs["filename"]);
  165. $_tmp_id = $rslist[$value["pictype"]];
  166. $this->app->upfile_model->save_gd($array);
  167. }
  168. return true;
  169. }
  170. function gd_create($picid,$if_create_thumb=true)
  171. {
  172. return $this->_gd_create($picid,$if_create_thumb);
  173. }
  174. //设置存储路径
  175. function setting()
  176. {
  177. $this->type_video = array("wma","mp3","wmv","asf","mpg","mpeg","avi","asx","rm","rmvb","ram","ra","swf","flv","dat");
  178. $this->type_img = array("jpg","gif","png","jpeg");
  179. $this->type_file = array("zip","rar","txt","tgz","tar","gz","pdf");
  180. $this->file_save_type = "Ym/d";
  181. if(file_exists(ROOT_DATA."attachment.php"))
  182. {
  183. include(ROOT_DATA."attachment.php");
  184. if($_sys["picture_type"])
  185. {
  186. $this->type_img = sys_id_list($_sys["picture_type"]);
  187. }
  188. if($_sys["video_type"])
  189. {
  190. $this->type_video = sys_id_list($_sys["video_type"]);
  191. }
  192. if($_sys["file_type"])
  193. {
  194. $this->type_file = sys_id_list($_sys["file_type"]);
  195. }
  196. $this->file_save_type = $_sys["file_save_type"];//重设存储目录
  197. $this->file_uptype = $_sys["file_uptype"];
  198. }
  199. $this->file_ext = array_merge($this->type_video,$this->type_img,$this->type_file);
  200. $this->ifset = true;
  201. }
  202. function path()
  203. {
  204. $this->auto_app();
  205. if(!defined("SYS_UP_PATH")) define("SYS_UP_PATH","upfiles");
  206. $save_path = ROOT.SYS_UP_PATH."/";
  207. if($this->file_save_type)
  208. {
  209. $save_path .= date($this->file_save_type,$this->app->system_time)."/";
  210. }
  211. $this->app->file_lib->make($save_path);//创建存储目录
  212. if(!file_exists($save_path))
  213. {
  214. $save_path = ROOT.SYS_UP_PATH."/";
  215. }
  216. return $save_path;
  217. }
  218. //设置上传参数
  219. function setting_button($upload_filetype="all",$note="All Files")
  220. {
  221. $this->setting();//获取设置
  222. if($upload_filetype == "video")
  223. {
  224. $uploadtype = $this->type_video;
  225. }
  226. elseif($upload_type == "img")
  227. {
  228. $uploadtype = $this->type_img;
  229. }
  230. else
  231. {
  232. $uploadtype = $this->file_ext;
  233. }
  234. $rslist = array();
  235. foreach($uploadtype AS $key=>$value)
  236. {
  237. $rslist[] = "*.".$value;
  238. }
  239. $swf["type"] = implode(";",$rslist);
  240. $swf["note"] = $note;
  241. $this->swf = $swf;
  242. return $swf;
  243. }
  244. }
  245. ?>