Ejemplo n.º 1
1
 function _upload_file()
 {
     $ret_info = array();
     // 返回到客户端的信息
     $file = $_FILES['Filedata'];
     if ($file['error'] == UPLOAD_ERR_NO_FILE) {
         $this->json_error('no_upload_file');
         exit;
     }
     import('uploader.lib');
     // 导入上传类
     import('image.func');
     $uploader = new Uploader();
     $uploader->allowed_type(IMAGE_FILE_TYPE);
     // 限制文件类型
     $uploader->allowed_size(SIZE_GOODS_IMAGE);
     // 限制单个文件大小2M
     $uploader->addFile($file);
     if (!$uploader->file_info()) {
         $this->json_error($uploader->get_error());
         exit;
     }
     /* 取得剩余空间(单位:字节),false表示不限制 */
     $store_mod =& m('store');
     $settings = $store_mod->get_settings($this->store_id);
     $remain = $settings['space_limit'] > 0 ? $settings['space_limit'] * 1024 * 1024 - $this->mod_uploadedfile->get_file_size($this->store_id) : false;
     /* 判断能否上传 */
     if ($remain !== false) {
         if ($remain < $file['size']) {
             $this->json_error('space_limit_arrived');
             exit;
         }
     }
     /* 指定保存位置的根目录 */
     $uploader->root_dir(ROOT_PATH);
     $filename = $uploader->random_filename();
     /* 上传 */
     $file_path = $uploader->save($this->save_path, $filename);
     // 保存到指定目录
     if (!$file_path) {
         $this->json_error('file_save_error');
         exit;
     }
     $file_type = $this->_return_mimetype($file_path);
     /* 文件入库 */
     $data = array('store_id' => $this->store_id, 'file_type' => $file_type, 'file_size' => $file['size'], 'file_name' => $file['name'], 'file_path' => $file_path, 'belong' => $this->belong, 'item_id' => $this->item_id, 'add_time' => gmtime());
     $file_id = $this->mod_uploadedfile->add($data);
     if (!$file_id) {
         $this->json_error('file_add_error');
         exit;
     }
     if ($this->instance == 'goods_image') {
         /* 生成缩略图 */
         $thumbnail = dirname($file_path) . '/small_' . basename($file_path);
         $bignail = dirname($file_path) . '/big_' . basename($file_path);
         $middlenail = dirname($file_path) . '/middle_' . basename($file_path);
         $smallnail = dirname($file_path) . '/little_' . basename($file_path);
         make_thumb(ROOT_PATH . '/' . $file_path, ROOT_PATH . '/' . $bignail, 900, 900, THUMB_QUALITY);
         //生成900*900的缩略图
         make_thumb(ROOT_PATH . '/' . $file_path, ROOT_PATH . '/' . $middlenail, 420, 420, THUMB_QUALITY);
         //生成420*420的缩略图
         make_thumb(ROOT_PATH . '/' . $file_path, ROOT_PATH . '/' . $smallnail, 60, 60, THUMB_QUALITY);
         //生成60*60的缩略图
         make_thumb(ROOT_PATH . '/' . $file_path, ROOT_PATH . '/' . $thumbnail, THUMB_WIDTH, THUMB_HEIGHT, THUMB_QUALITY);
         //生成170*170的缩略图
         /* 更新商品相册 */
         $data = array('goods_id' => $this->item_id, 'image_url' => $file_path, 'thumbnail' => $thumbnail, 'bignail' => $bignail, 'middlenail' => $middlenail, 'smallnail' => $smallnail, 'sort_order' => 255, 'file_id' => $file_id);
         if (!$this->mod_goods_image->add($data)) {
             $this->json_error($this->mod_goods_imaged->get_error());
             return false;
         }
         $ret_info = array_merge($ret_info, array('thumbnail' => $thumbnail));
     }
     /* 返回客户端 */
     $ret_info = array_merge($ret_info, array('file_id' => $file_id, 'file_path' => $file_path, 'instance' => $this->instance));
     $this->json_result($ret_info);
 }
Ejemplo n.º 2
0
 function uploadfile($para)
 {
     import('image.func');
     import('uploader.lib');
     $uploader = new Uploader();
     $uploader->allowed_type(IMAGE_FILE_TYPE);
     $uploader->allowed_size(2097152);
     // 2M
     $files = $para;
     //$_FILES['activity_banner'];
     if ($files['error'] == UPLOAD_ERR_OK) {
         /* 处理文件上传 */
         $file = array('name' => $files['name'], 'type' => $files['type'], 'tmp_name' => $files['tmp_name'], 'size' => $files['size'], 'error' => $files['error']);
         $uploader->addFile($file);
         if (!$uploader->file_info()) {
             $data = current($uploader->get_error());
             $res = Lang::get($data['msg']);
             $this->view_iframe();
             echo "<script type='text/javascript'>alert('{$res}');</script>";
             return false;
         }
         $uploader->root_dir(ROOT_PATH);
         $dirname = 'data/files/mall/weixin';
         $filename = $uploader->random_filename();
         $file_path = $uploader->save($dirname, $filename);
     }
     return $file_path;
 }
Ejemplo n.º 3
0
 function _upload_file()
 {
     $ret_info = array();
     // 返回到客户端的信息
     $file = $_FILES['Filedata'];
     if ($file['error'] == UPLOAD_ERR_NO_FILE) {
         $this->json_error('no_upload_file');
         exit;
     }
     import('uploader.lib');
     // 导入上传类
     import('image.func');
     $uploader = new Uploader();
     $uploader->allowed_type(IMAGE_FILE_TYPE);
     // 限制文件类型
     $uploader->allowed_size(2048000);
     // 限制单个文件大小2M
     $uploader->addFile($_FILES['Filedata']);
     if (!$uploader->file_info()) {
         $this->json_error($uploader->get_error());
         exit;
     }
     /* 指定保存位置的根目录 */
     $uploader->root_dir(ROOT_PATH);
     $filename = $uploader->random_filename();
     /* 上传 */
     $file_path = $uploader->save($this->save_path, $filename);
     // 保存到指定目录
     if (!$file_path) {
         $this->json_error('file_save_error');
         exit;
     }
     $thumbnail = dirname($file_path) . '/small_' . basename($file_path);
     make_thumb(ROOT_PATH . '/' . $file_path, ROOT_PATH . '/' . $thumbnail, 810, "", 85);
     $file_type = $this->_return_mimetype($file_path);
     /* 文件入库 */
     $data = array('store_id' => 0, 'file_type' => $file_type, 'file_size' => $file['size'], 'file_name' => $file['name'], 'thumb_nail' => $thumbnail, 'file_path' => $file_path, 'belong' => $this->belong, 'item_id' => $this->item_id, 'add_time' => gmtime());
     $file_id = $this->mod_uploadedfile->add($data);
     if (!$file_id) {
         $this->json_error('file_add_error');
         return false;
     }
     /* 返回客户端 */
     if ($this->belong == BELONG_CHECK) {
         $ret_info = array('belong' => BELONG_CHECK, 'file_id' => $file_id, 'file_path' => $file_path);
     } else {
         $ret_info = array('file_id' => $file_id, 'file_path' => $file_path);
     }
     $this->json_result($ret_info);
 }
Ejemplo n.º 4
0
 public function upload($upload_file, $type, $size, $url)
 {
     $file = $_FILES[$upload_file];
     // 		if ($file['error']!=0){
     // 			return array('message'=>'请选择文件');
     // 		}
     $uploader = new Uploader();
     if ($type) {
         $uploader->allowed_type($type);
         // 限制文件类型
     }
     if ($size) {
         $uploader->allowed_size($size);
     }
     $uploader->addFile($file);
     if ($uploader->_file['error']) {
         return array('message' => $uploader->_file['error']);
     }
     $newName = $uploader->random_filename();
     //$uploader->root_dir(dirname(Yii::app()->BasePath));
     $uploader->root_dir(Yii::app()->params['uploadPath']);
     $uploader->save($url, $newName);
     return array('filePath' => dirname(Yii::app()->BasePath), 'file' => $url . $newName . '.' . $uploader->_file['extension']);
 }
Ejemplo n.º 5
0
 /**
  * 上传商品图片
  *
  * @param int $goods_id
  * @return bool
  */
 function _upload_image($goods_id)
 {
     import('image.func');
     import('uploader.lib');
     $uploader = new Uploader();
     $uploader->allowed_type(IMAGE_FILE_TYPE);
     $uploader->allowed_size(SIZE_GOODS_IMAGE);
     // 400KB
     /* 取得剩余空间(单位:字节),false表示不限制 */
     $store_mod =& m('store');
     $settings = $store_mod->get_settings($this->_store_id);
     $upload_mod =& m('uploadedfile');
     $remain = $settings['space_limit'] > 0 ? $settings['space_limit'] * 1024 * 1024 - $upload_mod->get_file_size($this->_store_id) : false;
     $files = $_FILES['new_file'];
     foreach ($files['error'] as $key => $error) {
         if ($error == UPLOAD_ERR_OK) {
             /* 处理文件上传 */
             $file = array('name' => $files['name'][$key], 'type' => $files['type'][$key], 'tmp_name' => $files['tmp_name'][$key], 'size' => $files['size'][$key], 'error' => $files['error'][$key]);
             $uploader->addFile($file);
             if (!$uploader->file_info()) {
                 $this->_error($uploader->get_error());
                 return false;
             }
             /* 判断能否上传 */
             if ($remain !== false) {
                 if ($remain < $file['size']) {
                     $this->_error('space_limit_arrived');
                     return false;
                 } else {
                     $remain -= $file['size'];
                 }
             }
             $uploader->root_dir(ROOT_PATH);
             $dirname = 'data/files/store_' . $this->_store_id . '/goods_' . time() % 200;
             $filename = $uploader->random_filename();
             $file_path = $uploader->save($dirname, $filename);
             $thumbnail = dirname($file_path) . '/small_' . basename($file_path);
             make_thumb(ROOT_PATH . '/' . $file_path, ROOT_PATH . '/' . $thumbnail, THUMB_WIDTH, THUMB_HEIGHT, THUMB_QUALITY);
             /* 处理文件入库 */
             $data = array('store_id' => $this->_store_id, 'file_type' => $file['type'], 'file_size' => $file['size'], 'file_name' => $file['name'], 'file_path' => $file_path, 'add_time' => gmtime());
             $uf_mod =& m('uploadedfile');
             $file_id = $uf_mod->add($data);
             if (!$file_id) {
                 $this->_error($uf_mod->get_error());
                 return false;
             }
             /* 处理商品图片入库 */
             $data = array('goods_id' => $goods_id, 'image_url' => $file_path, 'thumbnail' => $thumbnail, 'sort_order' => 255, 'file_id' => $file_id);
             if (!$this->_image_mod->add($data)) {
                 $this->_error($this->_image_mod->get_error());
                 return false;
             }
         }
     }
     return true;
 }
Ejemplo n.º 6
0
 function remote_image()
 {
     import('image.func');
     import('uploader.lib');
     $uploader = new Uploader();
     $uploader->allowed_type(IMAGE_FILE_TYPE);
     $uploader->allowed_size(SIZE_GOODS_IMAGE);
     // 2M
     $upload_mod =& m('uploadedfile');
     /* 取得剩余空间(单位:字节),false表示不限制 */
     $store_mod =& m('store');
     $settings = $store_mod->get_settings($this->store_id);
     $remain = $settings['space_limit'] > 0 ? $settings['space_limit'] * 1024 * 1024 - $upload_mod->get_file_size($this->store_id) : false;
     $uploader->root_dir(ROOT_PATH);
     $dirname = '';
     $remote_url = trim($_POST['remote_url']);
     if (!empty($remote_url)) {
         if (preg_match("/^(http:\\/\\/){1,1}.+(gif|png|jpeg|jpg){1,1}\$/i", $remote_url)) {
             $result = $this->url_exist($remote_url, 2097152, $remain);
             if ($result === 1) {
                 $this->view_remote();
                 $res = Lang::get("url_invalid");
                 echo "<script type='text/javascript'>alert('{$res}');</script>";
                 return false;
             } elseif ($result === 2) {
                 $this->view_remote();
                 $res = Lang::get("not_allowed_size");
                 echo "<script type='text/javascript'>alert('{$res}');</script>";
                 return false;
             } elseif ($result === 3) {
                 $this->view_remote();
                 $res = Lang::get("space_limit_arrived");
                 echo "<script type='text/javascript'>alert('{$res}');</script>";
                 return false;
             }
             $img_url = _at('file_get_contents', $remote_url);
             $dirname = '';
             if ($this->belong == BELONG_GOODS) {
                 $dirname = 'data/files/store_' . $this->visitor->get('manage_store') . '/goods_' . time() % 200;
             } elseif ($this->belong == BELONG_STORE) {
                 $dirname = 'data/files/store_' . $this->visitor->get('manage_store') . '/other';
             } elseif ($this->belong == BELONG_ARTICLE) {
                 $dirname = 'data/files/mall/store_' . $this->visitor->get('manage_store') . '/article';
             }
             $filename = $uploader->random_filename();
             $new_url = $dirname . '/' . $filename . '.' . substr($remote_url, strrpos($remote_url, '.') + 1);
             ecm_mkdir(ROOT_PATH . '/' . $dirname);
             $fp = _at('fopen', ROOT_PATH . '/' . $new_url, "w");
             _at('fwrite', $fp, $img_url);
             _at('fclose', $fp);
             if (!file_exists(ROOT_PATH . '/' . $new_url)) {
                 $this->view_remote();
                 $res = Lang::get("system_error");
                 echo "<script type='text/javascript'>alert('{$res}');</script>";
                 return false;
             }
             /* 处理文件入库 */
             $data = array('store_id' => $this->store_id, 'file_type' => $this->_return_mimetype(ROOT_PATH . '/' . $new_url), 'file_size' => filesize(ROOT_PATH . '/' . $new_url), 'file_name' => substr($remote_url, strrpos($remote_url, '/') + 1), 'file_path' => $new_url, 'belong' => $this->belong, 'item_id' => $this->id, 'add_time' => gmtime());
             $file_id = $upload_mod->add($data);
             if (!$file_id) {
                 $this->_error($uf_mod->get_error());
                 return false;
             }
             if ($this->instance == 'goods_image') {
                 /* 生成缩略图 */
                 $thumbnail = dirname($new_url) . '/small_' . basename($new_url);
                 make_thumb(ROOT_PATH . '/' . $new_url, ROOT_PATH . '/' . $thumbnail, THUMB_WIDTH, THUMB_HEIGHT, THUMB_QUALITY);
                 /* 更新商品相册 */
                 $mod_goods_image =& m('goodsimage');
                 $goods_image = array('goods_id' => $this->id, 'image_url' => $new_url, 'thumbnail' => $thumbnail, 'sort_order' => 255, 'file_id' => $file_id);
                 if (!$mod_goods_image->add($goods_image)) {
                     $this->_error($this->mod_goods_imaged->get_error());
                     return false;
                 }
                 $data['thumbnail'] = $thumbnail;
             }
             $data['instance'] = $this->instance;
             $data['file_id'] = $file_id;
             $res = "{";
             foreach ($data as $key => $val) {
                 $res .= "\"{$key}\":\"{$val}\",";
             }
             $res = substr($res, 0, strrpos($res, ','));
             $res .= '}';
             $this->view_remote();
             echo "<script type='text/javascript'>window.parent.add_uploadedfile({$res});</script>";
         } else {
             $res = Lang::get('url_invalid');
             $this->view_remote();
             echo "<script type='text/javascript'>alert('{$res}');</script>";
             return false;
         }
     } else {
         $res = Lang::get('remote_empty');
         $this->view_remote();
         echo "<script type='text/javascript'>alert('{$res}');</script>";
         return false;
     }
 }
Ejemplo n.º 7
0
 /**
  *    处理上传标志
  *
  *    @author    Garbin
  *    @param     int $partner_id
  *    @return    string
  */
 function _upload_logo($partner_id)
 {
     import('uploader.lib');
     //导入上传类
     $uploader = new Uploader();
     $uploader->allowed_type(IMAGE_FILE_TYPE);
     //限制文件类型
     $uploader->allowed_size(SIZE_STORE_PARTNER);
     // 100KB
     $uploader->addFile($_FILES['logo']);
     //上传logo
     /* 指定保存位置的根目录 */
     $uploader->root_dir(ROOT_PATH);
     /* 上传 */
     if ($file_path = $uploader->save('data/files/store_' . $this->_store_id . '/partner', $partner_id)) {
         return $file_path;
     } else {
         return false;
     }
 }
Ejemplo n.º 8
0
 /**
  * 上传文件
  *
  */
 function _upload_files()
 {
     import('uploader.lib');
     $data = array();
     /* store_logo */
     $file = $_FILES['store_logo'];
     if ($file['error'] == UPLOAD_ERR_OK && $file != '') {
         $uploader = new Uploader();
         $uploader->allowed_type(IMAGE_FILE_TYPE);
         //$uploader->allowed_size(SIZE_STORE_LOGO); // 20KB
         $uploader->addFile($file);
         if ($uploader->file_info() === false) {
             $this->show_warning($uploader->get_error());
             exit;
         }
         $uploader->root_dir(ROOT_PATH);
         $data['store_logo'] = $uploader->save('data/files/store_' . $this->_store_id . '/other', 'store_logo');
     }
     /* store_banner */
     $file = $_FILES['store_banner'];
     if ($file['error'] == UPLOAD_ERR_OK && $file != '') {
         $uploader = new Uploader();
         $uploader->allowed_type(IMAGE_FILE_TYPE);
         $uploader->allowed_size(SIZE_STORE_BANNER);
         // 200KB
         $uploader->addFile($file);
         if ($uploader->file_info() === false) {
             $this->show_warning($uploader->get_error());
             return false;
         }
         $uploader->root_dir(ROOT_PATH);
         $data['store_banner'] = $uploader->save('data/files/store_' . $this->_store_id . '/other', 'store_banner');
     }
     return $data;
 }
Ejemplo n.º 9
0
 function _upload_image($store_id)
 {
     import('uploader.lib');
     $uploader = new Uploader();
     $uploader->allowed_type(IMAGE_FILE_TYPE);
     $uploader->allowed_size(SIZE_STORE_CERT);
     // 400KB
     $data = array();
     for ($i = 1; $i <= 3; $i++) {
         $file = $_FILES['image_' . $i];
         if ($file['error'] == UPLOAD_ERR_OK) {
             if (empty($file)) {
                 continue;
             }
             $uploader->addFile($file);
             if (!$uploader->file_info()) {
                 $this->_error($uploader->get_error());
                 return false;
             }
             $uploader->root_dir(ROOT_PATH);
             $dirname = 'data/files/mall/application';
             $filename = 'store_' . $store_id . '_' . $i;
             $data['image_' . $i] = $uploader->save($dirname, $filename);
         }
     }
     return $data;
 }
Ejemplo n.º 10
0
 function _upload_goods($store_id, $goods_id, $id)
 {
     import('uploader.lib');
     $data = array();
     /* store_logo */
     $file = $_FILES[$id];
     if ($file['error'] == UPLOAD_ERR_OK && $file != '') {
         $uploader = new Uploader();
         $uploader->allowed_type(IMAGE_FILE_TYPE);
         $uploader->allowed_size(SIZE_STORE_LOGO);
         // 20KB
         $uploader->addFile($file);
         if ($uploader->file_info() === false) {
             $this->show_warning($uploader->get_error());
             return false;
         }
         $uploader->root_dir(ROOT_PATH);
         $data['index_goods'] = $uploader->save('data/files/store_' . $store_id . '/goods_' . $goods_id, 'index_goods');
         return $data['index_goods'];
     }
 }
Ejemplo n.º 11
0
 function edit()
 {
     $id = empty($_GET['id']) ? 0 : intval($_GET['id']);
     if (!IS_POST) {
         /* 是否存在 */
         $gcategory = $this->_gcategory_mod->get_info($id);
         if (!$gcategory) {
             $this->show_warning('gcategory_empty');
             return;
         }
         $this->assign('gcategory', $gcategory);
         /* 导入jQuery的表单验证插件 */
         $this->import_resource(array('script' => 'jquery.plugins/jquery.validate.js'));
         $this->assign('parents', $this->_get_options($id));
         $this->display('gcategory.form.html');
     } else {
         if ($_FILES['rec_img']['name']) {
             import('uploader.lib');
             $data = array();
             $file = $_FILES['rec_img'];
             if ($file['error'] == UPLOAD_ERR_OK && $file != '') {
                 $uploader = new Uploader();
                 $uploader->allowed_type(IMAGE_FILE_TYPE);
                 $uploader->allowed_size(SIZE_STORE_LOGO);
                 // 20KB
                 $uploader->addFile($file);
                 if ($uploader->file_info() === false) {
                     $this->show_warning($uploader->get_error());
                     return false;
                 }
                 $uploader->root_dir(ROOT_PATH);
                 $rec_img = $uploader->save('data/files/gcategory_' . $id, 'rec_img');
             }
         } else {
             $rec_img = $_POST['rec_imgs'];
         }
         $data = array('cate_name' => $_POST['cate_name'], 'parent_id' => $_POST['parent_id'], 'sort_order' => $_POST['sort_order'], 'if_show' => $_POST['if_show'], 'rec_img' => $rec_img);
         /* 检查名称是否已存在 */
         if (!$this->_gcategory_mod->unique(trim($data['cate_name']), $data['parent_id'], $id)) {
             $this->show_warning('name_exist');
             return;
         }
         /* 检查级数 */
         $depth = $this->_gcategory_mod->get_depth($id);
         $ancestor = $this->_gcategory_mod->get_ancestor($data['parent_id']);
         if ($depth + count($ancestor) > MAX_LAYER) {
             $this->show_warning('max_layer_error');
             return;
         }
         /* 保存 */
         $old_data = $this->_gcategory_mod->get_info($id);
         // 保存前的数据
         $rows = $this->_gcategory_mod->edit($id, $data);
         if ($this->_gcategory_mod->has_error()) {
             $this->show_warning($this->_gcategory_mod->get_error());
             return;
         }
         /* 如果改变了上级分类,更新商品表中相应记录的cate_id_1到cate_id_4 */
         if ($old_data['parent_id'] != $data['parent_id']) {
             // 执行时间可能比较长,所以不限制了
             _at(set_time_limit, 0);
             // 清除商城商品分类缓存
             $cache_server =& cache_server();
             $cache_server->delete('goods_category_0');
             // 取得当前分类的所有子孙分类(包括自身)
             $cids = $this->_gcategory_mod->get_descendant_ids($id, true);
             // 找出这些分类中有商品的分类
             $mod_goods =& m('goods');
             $mod_gcate =& $this->_gcategory_mod;
             $sql = "SELECT DISTINCT cate_id FROM {$mod_goods->table} WHERE cate_id " . db_create_in($cids);
             $cate_ids = $mod_goods->getCol($sql);
             // 循环更新每个分类的cate_id_1到cate_id_4
             foreach ($cate_ids as $cate_id) {
                 $cate_id_n = array(0, 0, 0, 0);
                 $ancestor = $mod_gcate->get_ancestor($cate_id, true);
                 for ($i = 0; $i < 4; $i++) {
                     isset($ancestor[$i]) && ($cate_id_n[$i] = $ancestor[$i]['cate_id']);
                 }
                 $sql = "UPDATE {$mod_goods->table} " . "SET cate_id_1 = '{$cate_id_n[0]}', cate_id_2 = '{$cate_id_n[1]}', cate_id_3 = '{$cate_id_n[2]}', cate_id_4 = '{$cate_id_n[3]}' " . "WHERE cate_id = '{$cate_id}'";
                 $mod_goods->db->query($sql);
             }
         }
         $this->show_message('edit_ok', 'back_list', 'index.php?app=gcategory', 'edit_again', 'index.php?app=gcategory&amp;act=edit&amp;id=' . $id);
     }
 }
Ejemplo n.º 12
0
 function remote_image()
 {
     import('image.func');
     import('uploader.lib');
     $uploader = new Uploader();
     $uploader->allowed_type(IMAGE_FILE_TYPE);
     $uploader->allowed_size(2097152);
     // 400KB
     $upload_mod =& m('uploadedfile');
     $uploader->root_dir(ROOT_PATH);
     $dirname = '';
     $remote_url = trim($_POST['remote_url']);
     if (!empty($remote_url)) {
         if (preg_match("/^(http:\\/\\/){1,1}.+(gif|png|jpeg|jpg){1,1}\$/i", $remote_url)) {
             $result = $this->url_exist($remote_url, 2097152, 0);
             if ($result === 1) {
                 $this->view_iframe();
                 $res = Lang::get("url_invalid");
                 echo "<script type='text/javascript'>alert('{$res}');</script>";
                 return false;
             } elseif ($result === 2) {
                 $this->view_iframe();
                 $res = Lang::get("not_allowed_size");
                 echo "<script type='text/javascript'>alert('{$res}');</script>";
                 return false;
             }
             $img_url = @file_get_contents($remote_url);
             $dirname = '';
             if ($this->belong == BELONG_GOODS) {
                 $dirname = 'data/files/store_' . $this->visitor->get('manage_store') . '/goods_' . time() % 200;
             } elseif ($this->belong == BELONG_STORE) {
                 $dirname = 'data/files/store_' . $this->visitor->get('manage_store') . '/other';
             } elseif ($this->belong == BELONG_ARTICLE) {
                 $dirname = 'data/files/mall/store_' . $this->visitor->get('manage_store') . '/article';
             }
             $filename = $uploader->random_filename();
             $new_url = $dirname . '/' . $filename . '.' . substr($remote_url, strrpos($remote_url, '.') + 1);
             ecm_mkdir(ROOT_PATH . '/' . $dirname);
             $fp = @fopen(ROOT_PATH . '/' . $new_url, "w");
             @fwrite($fp, $img_url);
             @fclose($fp);
             if (!file_exists(ROOT_PATH . '/' . $new_url)) {
                 $this->view_iframe();
                 $res = Lang::get("system_error");
                 echo "<script type='text/javascript'>alert({$res});</script>";
                 return false;
             }
             /* 处理文件入库 */
             $data = array('store_id' => $this->visitor->get('manage_store'), 'file_type' => filetype(ROOT_PATH . '/' . $new_url), 'file_size' => filesize(ROOT_PATH . '/' . $new_url), 'file_name' => substr($remote_url, strrpos($remote_url, '/') + 1), 'file_path' => $new_url, 'belong' => $this->belong, 'item_id' => $this->id, 'add_time' => gmtime());
             $file_id = $upload_mod->add($data);
             if (!$file_id) {
                 $this->_error($uf_mod->get_error());
                 return false;
             }
             $data['file_id'] = $file_id;
             $res = "{";
             foreach ($data as $key => $val) {
                 $res .= "\"{$key}\":\"{$val}\",";
             }
             $res = substr($res, 0, strrpos($res, ','));
             $res .= '}';
             $this->view_iframe();
             echo "<script type='text/javascript'>window.parent.add_uploadedfile({$res});</script>";
         } else {
             $res = Lang::get('url_invalid');
             $this->view_iframe();
             echo "<script type='text/javascript'>alert('{$res}');</script>";
             return false;
         }
     } else {
         $res = Lang::get('remote_empty');
         $this->view_iframe();
         echo "<script type='text/javascript'>alert('{$res}');</script>";
         return false;
     }
 }