MobileImport.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  1. <?php
  2. namespace app\common\service;
  3. use app\admin\model\Admin;
  4. use app\admin\model\MobileUpload;
  5. use app\common\model\Area;
  6. use app\common\model\Mobile;
  7. use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
  8. use PhpOffice\PhpSpreadsheet\IOFactory;
  9. use PhpOffice\PhpSpreadsheet\Reader\Csv;
  10. use PhpOffice\PhpSpreadsheet\Reader\Xls;
  11. use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
  12. use think\Db;
  13. use think\db\Query;
  14. use think\Exception;
  15. class MobileImport{
  16. public static function import($file,$admin_id,$type=1,$status=null,$mobileUpload=null){
  17. $time=time();
  18. if (!$file) {
  19. throw_user(__('Parameter %s can not be empty', 'file'));
  20. }
  21. if(!$mobileUpload) {
  22. $mobileUpload = new MobileUpload(['admin_id' => $admin_id]);
  23. }
  24. $file=parse_url($file,PHP_URL_PATH);
  25. $filePath = ROOT_PATH . DS . 'public' . DS . $file;
  26. $filenameArr=explode('.',$file);
  27. $filePathError=$filenameArr[0].'_err.'.$filenameArr[1];
  28. if (!is_file($filePath)) {
  29. throw_user(__('No results were found'));
  30. }
  31. //实例化reader
  32. $ext = pathinfo($filePath, PATHINFO_EXTENSION);
  33. if (!in_array($ext, ['csv', 'xls', 'xlsx'])) {
  34. throw_user(__('Unknown data format'));
  35. }
  36. $errLog=[];
  37. $succNum=0;
  38. $cities=[];
  39. if ($ext === 'csv') {
  40. $file = fopen($filePath, 'r');
  41. $filePath = tempnam(sys_get_temp_dir(), 'import_csv');
  42. $fp = fopen($filePath, "w");
  43. $n = 0;
  44. while ($line = fgets($file)) {
  45. $line = rtrim($line, "\n\r\0");
  46. $encoding = mb_detect_encoding($line, ['utf-8', 'gbk', 'latin1', 'big5']);
  47. if ($encoding != 'utf-8') {
  48. $line = mb_convert_encoding($line, 'utf-8', $encoding);
  49. }
  50. if ($n == 0 || preg_match('/^".*"$/', $line)) {
  51. fwrite($fp, $line . "\n");
  52. } else {
  53. fwrite($fp, '"' . str_replace(['"', ','], ['""', '","'], $line) . "\"\n");
  54. }
  55. $n++;
  56. }
  57. fclose($file) || fclose($fp);
  58. $reader = new Csv();
  59. } elseif ($ext === 'xls') {
  60. $reader = new Xls();
  61. } else {
  62. $reader = new Xlsx();
  63. }
  64. //$newErrorExcel=IOFactory::createReader(ucfirst($ext));
  65. if(!empty($mobileUpload['filename_error'])){
  66. //$filePathErrorPath=ROOT_PATH . DS . 'public' . DS . parse_url($mobileUpload['filename_error'],PHP_URL_PATH);
  67. }else{
  68. /*$filePathErrorPath=ROOT_PATH . DS . 'public' . DS .$filePathError;
  69. copy($filePath,$filePathErrorPath);*/
  70. $mobileUpload['filename_error']=sprintf("%s%s",request()->domain(),$filePath);
  71. }
  72. //$newErrorExcelLoaded=$newErrorExcel->load($filePathErrorPath);
  73. //导入文件首行类型,默认是注释,如果需要使用字段名称请使用name
  74. $importHeadType = 'comment';
  75. /*$table = (new Mobile)->getTable();
  76. $database = \think\Config::get('database.database');*/
  77. //$fieldArr = [];
  78. /* $list = db()->query("SELECT COLUMN_NAME,COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ? AND TABLE_SCHEMA = ?", [$table, $database]);
  79. foreach ($list as $k => $v) {
  80. if ($importHeadType == 'comment') {
  81. $fieldArr[$v['COLUMN_COMMENT']] = $v['COLUMN_NAME'];
  82. } else {
  83. $fieldArr[$v['COLUMN_NAME']] = $v['COLUMN_NAME'];
  84. }
  85. }*/
  86. $fieldArr=[
  87. "手机号"=>'no',
  88. "卡名称"=>'name',
  89. "省份"=>'province',
  90. "归属地"=>'city',
  91. "运营商"=>'network',
  92. "卡品牌"=>'brand',
  93. "原价"=>'amount_original',
  94. "底价"=>'amount_di',
  95. "售价"=>'amount_base',
  96. "预存话费"=>'amount_charge',
  97. "代理价"=>'amount_proxy',
  98. "备注(仅我可见)"=>'remark_me',
  99. "备注(全部可见)"=>'remark',
  100. "号码状态"=>'status',
  101. "供应商"=>'proxy_id',
  102. "批号"=>'batch_no',
  103. ];
  104. //dd($fieldArr);
  105. $infoArr=[
  106. '免流APP'=>'free_app',
  107. '资费套餐'=>'describe',
  108. '注意事项'=>'content',
  109. '每年流量(G'=>'flow_year',
  110. '费用'=>'fee',
  111. '首月免月租'=>'first_month_free',
  112. '前多少名免单'=>'flow_free_limit',
  113. '简介'=>'describe',
  114. ];
  115. $proxyInfo=[
  116. '供应商电话'=>'proxy_phone',
  117. ];
  118. //$admin=Admin::get($admin_id);
  119. //加载文件
  120. $insert = [];
  121. try {
  122. if (!$PHPExcel = $reader->load($filePath)) {
  123. throw_user(__('Unknown data format'));
  124. }
  125. $currentSheet = $PHPExcel->getSheet(0); //读取文件中的第一个工作表
  126. $allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列号
  127. $errorWriteColumn=++$allColumn;
  128. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.'1',"错误信息");
  129. $allRow = $currentSheet->getHighestRow(); //取得一共有多少行
  130. $maxColumnNumber = Coordinate::columnIndexFromString($allColumn);
  131. $fields = [];
  132. for ($currentRow = 1; $currentRow <= 1; $currentRow++) {
  133. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  134. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getCalculatedValue();
  135. $fields[] = preg_replace("/\s+/",'',$val);
  136. }
  137. }
  138. $dataRowNum=0;
  139. for ($currentRow = 2; $currentRow <= $allRow; $currentRow++) {
  140. $values = [];
  141. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  142. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getCalculatedValue();
  143. $values[] = is_null($val) ? '' : $val;
  144. }
  145. $row = [];
  146. $row_info = [];
  147. $proxy_info = [];
  148. $temp = array_combine($fields, $values);
  149. if(!array_filter(array_values($temp))){
  150. break;
  151. }
  152. foreach ($temp as $k => $v) {
  153. if (isset($fieldArr[$k]) && $k !== '') {
  154. $row[$fieldArr[$k]] = $v;
  155. }
  156. if(isset($infoArr[$k]) && $k!==''){
  157. $row_info[$infoArr[$k]]=$v;
  158. }
  159. if(isset($proxyInfo[$k]) && $k!==''){
  160. $proxy_info[$proxyInfo[$k]]=$v;
  161. }
  162. }
  163. if(!$row['no'] || strlen($row['no'])!=11 || !is_numeric($row['no'])){
  164. $errLog[]=[
  165. 'line' =>$currentRow,
  166. 'error'=>$errorMsg='手机号有误',
  167. ];
  168. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  169. goto NEXT;
  170. }
  171. #价格
  172. if(!self::checkAmount($row,'amount_original')){
  173. $errLog[]=[
  174. 'line' =>$currentRow,
  175. 'error'=>$errorMsg='原价有误',
  176. ];
  177. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  178. goto NEXT;
  179. }
  180. if(!self::checkAmount($row,'amount_di')){
  181. $errLog[]=[
  182. 'line' =>$currentRow,
  183. 'error'=>$errorMsg='底价有误',
  184. ];
  185. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  186. goto NEXT;
  187. }
  188. if(!self::checkAmount($row,'amount_base')){
  189. $errLog[]=[
  190. 'line' =>$currentRow,
  191. 'error'=>$errorMsg='售价有误',
  192. ];
  193. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  194. goto NEXT;
  195. }
  196. if(!self::checkAmount($row,'amount_charge')){
  197. $errLog[]=[
  198. 'line' =>$currentRow,
  199. 'error'=>$errorMsg='预充价格有误',
  200. ];
  201. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  202. goto NEXT;
  203. }
  204. if(!self::checkAmount($row,'amount_proxy')){
  205. $errLog[]=[
  206. 'line' =>$currentRow,
  207. 'error'=>$errorMsg='代理价格有误',
  208. ];
  209. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  210. goto NEXT;
  211. }
  212. if($row['amount_di']>$row['amount_base']){
  213. $errLog[]=[
  214. 'line' =>$currentRow,
  215. 'error'=>$errorMsg='底价不能大于售价',
  216. ];
  217. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  218. goto NEXT;
  219. }
  220. $city=null;
  221. if(isset($cities[$row['city']])){
  222. $city=$cities[$row['city']];
  223. }else{
  224. $city=Area::shi($row['city'])->find();
  225. }
  226. if(!$city){
  227. $errLog[]=[
  228. 'line' =>$currentRow,
  229. 'error'=>$errorMsg='城市有误',
  230. ];
  231. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  232. goto NEXT;
  233. }
  234. $cities[$row['city']]=$city;
  235. $row['city_id']=$city['id'];
  236. $row['province_id']=$city['pid'];
  237. Db::startTrans();
  238. if($admin_id) {
  239. if($type==1) {
  240. if(empty($row['proxy_id'])){
  241. $errLog[]=[
  242. 'line' =>$currentRow,
  243. 'error'=>$errorMsg='供应商不能为空',
  244. ];
  245. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  246. goto NEXT;
  247. }
  248. $proxyName=$row['proxy_id'];
  249. $row['proxy_id'] = Admin::where(function (Query $query)use ($proxyName,$proxy_info){
  250. $query->where('username', $proxyName)->whereOr('username',$proxy_info['proxy_phone'])->whereOr('com_mobile',$proxy_info['proxy_phone']);
  251. })->where('proxy',1)->value('id');
  252. if (!$row['proxy_id']) {
  253. $proxy=Admin::createProxy($proxyName,$proxy_info['proxy_phone']);
  254. $row['proxy_id']=$proxy['id'];
  255. }
  256. }
  257. }else{
  258. $row['proxy_id']=null;
  259. }
  260. $row['admin_id']=$admin_id;
  261. $row['type']=$type;
  262. if(!is_null($status)){
  263. $row['status']=$status;
  264. }else{
  265. $row['status']=Mobile::importStatus($row['status']);
  266. }
  267. $mobile=(new Mobile);
  268. $mobile->allowField(true)->save($row);
  269. if(!$mobile){
  270. $errLog[]=[
  271. 'line' =>$currentRow,
  272. 'error'=>$errorMsg='保存手机号失败',
  273. ];
  274. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  275. goto NEXT;
  276. }
  277. $info=$mobile->info()->save($row_info);
  278. if(!$info){
  279. $errLog[]=[
  280. 'line' =>$currentRow,
  281. 'error'=>$errorMsg='保存手机号套餐失败',
  282. ];
  283. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  284. goto NEXT;
  285. }
  286. $succNum++;
  287. $mobileUpload['rows_succ']=$succNum;
  288. $mobileUpload->save();
  289. Db::commit();
  290. NEXT:
  291. Db::rollback();
  292. $dataRowNum++;
  293. usleep(500000);
  294. }
  295. $mobileUpload['rows_total']=$dataRowNum;
  296. $mobileUpload['rows_fail']=count($errLog);
  297. $mobileUpload['run_time']=time()-$time;
  298. $mobileUpload['status']=2;
  299. $mobileUpload->save();
  300. if($errLog) {
  301. $mobileUpload->log()->saveAll($errLog);
  302. }
  303. $max=1;
  304. if($errLog) {
  305. while ($max < $allRow) {
  306. for ($currentRow = 2; $currentRow <= $allRow; $currentRow++) {
  307. if (!$PHPExcel->getSheet(0)->getCell($errorWriteColumn . $currentRow)->getValue()) {
  308. //$PHPExcel->setActiveSheetIndex(0)->removeRow($currentRow);
  309. break;
  310. }
  311. }
  312. $max++;
  313. }
  314. $errorWriter = IOFactory::createWriter($PHPExcel, ucfirst($ext));
  315. $errorWriter->save($filePath);
  316. }
  317. } catch (Exception $exception) {
  318. throw $exception;
  319. throw_user($exception->getMessage());
  320. }
  321. unset($PHPExcel,$errorWriter,$errLog);
  322. }
  323. public static function saveFile($file,$admin_id,$type=1,$status=null){
  324. $file=parse_url($file,PHP_URL_PATH);
  325. //$filenameArr=explode('.',$file);
  326. //$filePathError=$filenameArr[0].'_err.'.$filenameArr[1];
  327. $filePath = ROOT_PATH . DS . 'public' . DS . $file;
  328. //$filePathErrorPath=ROOT_PATH . DS . 'public' . DS .$filePathError;
  329. //copy($filePath,$filePathErrorPath);
  330. MobileUpload::create([
  331. 'admin_id'=>$admin_id,
  332. 'file'=>$filePAth=parse_url($file,PHP_URL_PATH),
  333. 'filename'=>basename($filePAth),
  334. 'filename_error'=>sprintf("%s%s",request()->domain(),$file),
  335. 'params'=>[
  336. 'type'=>$type,
  337. 'status'=>$status,
  338. ]
  339. ]);
  340. }
  341. public static function checkAmount($row,$field){
  342. if(!isset($row[$field])){
  343. return true;
  344. }
  345. if(!is_numeric($row[$field])){
  346. return false;
  347. }
  348. if($row[$field]<0){
  349. return false;
  350. }
  351. return true;
  352. }
  353. }