chenhao 4 年之前
父節點
當前提交
33e6070c39

+ 18 - 8
.idea/workspace.xml

@@ -3,10 +3,11 @@
   <component name="ChangeListManager">
     <list default="true" id="edd42013-161f-42fa-b4f8-3a063da76ef5" name="Default Changelist" comment="">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/application/admin/view/users/add.html" beforeDir="false" afterPath="$PROJECT_DIR$/application/admin/view/users/add.html" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/application/admin/view/users/edit.html" beforeDir="false" afterPath="$PROJECT_DIR$/application/admin/view/users/edit.html" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/admin/controller/Users.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/admin/controller/Users.php" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/application/api/controller/Users.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/api/controller/Users.php" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/runtime/temp/e8f1972a1d27eb8a2ce954e68cc8df48.php" beforeDir="false" afterPath="$PROJECT_DIR$/runtime/temp/e8f1972a1d27eb8a2ce954e68cc8df48.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/extra/site.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/extra/site.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/public/assets/js/backend/users.js" beforeDir="false" afterPath="$PROJECT_DIR$/public/assets/js/backend/users.js" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/runtime/temp/dc4e0dd1ed9222504b35d11845e60522.php" beforeDir="false" afterPath="$PROJECT_DIR$/runtime/temp/dc4e0dd1ed9222504b35d11845e60522.php" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -107,7 +108,8 @@
       <workItem from="1588900665806" duration="19931000" />
       <workItem from="1588985973130" duration="18504000" />
       <workItem from="1589158601819" duration="2191000" />
-      <workItem from="1589163624239" duration="4643000" />
+      <workItem from="1589163624239" duration="9625000" />
+      <workItem from="1589245794336" duration="5363000" />
     </task>
     <servers />
   </component>
@@ -119,14 +121,22 @@
       <screen x="0" y="0" width="1536" height="864" />
     </state>
     <state x="523" y="0" key="#com.intellij.refactoring.rename.AutomaticRenamingDialog/0.0.1536.864@0.0.1536.864" timestamp="1588834790921" />
-    <state x="499" y="187" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog" timestamp="1588904735627">
+    <state x="499" y="187" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog" timestamp="1589183483797">
       <screen x="0" y="0" width="1536" height="864" />
     </state>
-    <state x="499" y="187" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog/0.0.1536.864@0.0.1536.864" timestamp="1588904735627" />
-    <state x="549" y="187" key="FileChooserDialogImpl" timestamp="1589160308044">
+    <state x="499" y="187" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog/0.0.1536.864@0.0.1536.864" timestamp="1589183483797" />
+    <state x="549" y="187" key="FileChooserDialogImpl" timestamp="1589251131315">
       <screen x="0" y="0" width="1536" height="864" />
     </state>
-    <state x="549" y="187" key="FileChooserDialogImpl/0.0.1536.864@0.0.1536.864" timestamp="1589160308044" />
+    <state x="549" y="187" key="FileChooserDialogImpl/0.0.1536.864@0.0.1536.864" timestamp="1589251131315" />
+    <state x="454" y="145" width="628" height="574" key="find.popup" timestamp="1589246913256">
+      <screen x="0" y="0" width="1536" height="864" />
+    </state>
+    <state x="454" y="145" width="628" height="574" key="find.popup/0.0.1536.864@0.0.1536.864" timestamp="1589246913256" />
+    <state x="425" y="197" key="run.anything.popup" timestamp="1589248042561">
+      <screen x="0" y="0" width="1536" height="864" />
+    </state>
+    <state x="425" y="197" key="run.anything.popup/0.0.1536.864@0.0.1536.864" timestamp="1589248042561" />
     <state x="431" y="181" width="672" height="678" key="search.everywhere.popup" timestamp="1588840323359">
       <screen x="0" y="0" width="1536" height="864" />
     </state>

+ 164 - 0
application/admin/controller/Users.php

@@ -2,7 +2,14 @@
 
 namespace app\admin\controller;
 
+use app\admin\library\Auth;
 use app\common\controller\Backend;
+use fast\Random;
+use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
+use PhpOffice\PhpSpreadsheet\Reader\Csv;
+use PhpOffice\PhpSpreadsheet\Reader\Xls;
+use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
+use think\Config;
 use think\Db;
 use think\exception\PDOException;
 use think\exception\ValidateException;
@@ -174,5 +181,162 @@ class Users extends Backend
         }
         return $this->fetch('resume',['data' => $data]);
     }
+    /**
+     * 表格导入
+     */
+    public function import()
+    {
+        $file = $this->request->request('file');
+        if (!$file) {
+            $this->error(__('Parameter %s can not be empty', 'file'));
+        }
+        $filePath = ROOT_PATH . DS . 'public' . DS . $file;
+        if (!is_file($filePath)) {
+            $this->error(__('No results were found'));
+        }
+        //实例化reader
+        $ext = pathinfo($filePath, PATHINFO_EXTENSION);
+        if (!in_array($ext, ['csv', 'xls', 'xlsx'])) {
+            $this->error(__('Unknown data format'));
+        }
+
+        if ($ext === 'csv') {
+            $file = fopen($filePath, 'r');
+            $filePath = tempnam(sys_get_temp_dir(), 'import_csv');
+            $fp = fopen($filePath, "w");
+            $n = 0;
+            while ($line = fgets($file)) {
+                $line = rtrim($line, "\n\r\0");
+                $encoding = mb_detect_encoding($line, ['utf-8', 'gbk', 'latin1', 'big5']);
+                if ($encoding != 'utf-8') {
+                    $line = mb_convert_encoding($line, 'utf-8', $encoding);
+                }
+                if ($n == 0 || preg_match('/^".*"$/', $line)) {
+                    fwrite($fp, $line . "\n");
+                } else {
+                    fwrite($fp, '"' . str_replace(['"', ','], ['""', '","'], $line) . "\"\n");
+                }
+                $n++;
+            }
+            fclose($file) || fclose($fp);
+
+            $reader = new Csv();
+        } elseif ($ext === 'xls') {
+            $reader = new Xls();
+        } else {
+            $reader = new Xlsx();
+        }
+        //导入文件首行类型,默认是注释,如果需要使用字段名称请使用name
+        $importHeadType = isset($this->importHeadType) ? $this->importHeadType : 'comment';
+
+        $table = $this->model->getQuery()->getTable();
+        $database = \think\Config::get('database.database');
+        $fieldArr = [];
+        $list = db()->query("SELECT COLUMN_NAME,COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ? AND TABLE_SCHEMA = ?", [$table, $database]);
+        foreach ($list as $k => $v) {
+            if ($importHeadType == 'comment') {
+                $fieldArr[$v['COLUMN_COMMENT']] = $v['COLUMN_NAME'];
+            } else {
+                $fieldArr[$v['COLUMN_NAME']] = $v['COLUMN_NAME'];
+            }
+        }
+
+        //加载文件
+        $insert = [];
+        try {
+            if (!$PHPExcel = $reader->load($filePath)) {
+                $this->error(__('Unknown data format'));
+            }
+            $currentSheet = $PHPExcel->getSheet(0);  //读取文件中的第一个工作表
+            $allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列号
+            $allRow = $currentSheet->getHighestRow(); //取得一共有多少行
+            $maxColumnNumber = Coordinate::columnIndexFromString($allColumn);
 
+            $data=$currentSheet->toArray();//该方法读取不到图片 图片需单独处理
+            halt($data);
+            /*************图片单独处理开始*****************/
+            $imageFilePath=ROOT_PATH.'/public/uploads/images/' ;//图片保存目录
+            if (!file_exists ( $imageFilePath )) {
+                mkdir("$imageFilePath", 0777, true);
+            }
+            //处理图片
+            foreach($currentSheet->getDrawingCollection() as $img) {
+                list($startColumn,$startRow)= Coordinate::coordinateFromString($img->getCoordinates());//获取图片所在行和列
+                $imageFileName = Random::uuid();
+                switch($img->getMimeType()) {
+                    case 'image/jpg':
+                    case 'image/jpeg':
+                        $imageFileName.='.jpg';
+                        imagejpeg($img->getImageResource(),$imageFilePath.$imageFileName);
+                        break;
+                    case 'image/gif':
+                        $imageFileName.='.gif';
+                        imagegif($img->getImageResource(),$imageFilePath.$imageFileName);
+                        break;
+                    case 'image/png':
+                        $imageFileName.='.png';
+                        imagepng($img->getImageResource(),$imageFilePath.$imageFileName);
+                        break;
+                }
+                $startColumn = ABC2decimal($startColumn);//由于图片所在位置的列号为字母,转化为数字
+                $data[$startRow-1][$startColumn]='/uploads/images/'.$imageFileName;//把图片插入到数组中
+            }
+
+            //前两行是备注,从A3第三行开始导入
+            for ($currentRow = 3; $currentRow <= $allRow; $currentRow++) {
+                $values = [];
+                for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
+                    $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
+                    $values[] = is_null($val) ? '' : $val;
+                }
+                halt($values);
+                $row = [];
+                if (!empty($values['0'])){
+                    $row['title']=$values['0'];
+                    $row['answer_right']=$values['8'];
+                    $row['answer_analysis']=$values['9'];
+                    $row['type']=1;//单选题
+                    $row['answer_list']=[];
+                }
+                if (!empty($row)){
+                    $insert[]=$row;
+                }
+            }
+        } catch (Exception $exception) {
+            $this->error($exception->getMessage());
+        }
+        if (!$insert) {
+            $this->error(__('No rows were updated'));
+        }
+
+        try {
+            //是否包含admin_id字段
+            $has_admin_id = false;
+            foreach ($fieldArr as $name => $key) {
+                if ($key == 'admin_id') {
+                    $has_admin_id = true;
+                    break;
+                }
+            }
+            if ($has_admin_id) {
+                $auth = Auth::instance();
+                foreach ($insert as &$val) {
+                    if (!isset($val['admin_id']) || empty($val['admin_id'])) {
+                        $val['admin_id'] = $auth->isLogin() ? $auth->id : 0;
+                    }
+                }
+            }
+            $this->model->saveAll($insert);
+        } catch (PDOException $exception) {
+            $msg = $exception->getMessage();
+            if (preg_match("/.+Integrity constraint violation: 1062 Duplicate entry '(.+)' for key '(.+)'/is", $msg, $matches)) {
+                $msg = "导入失败,包含【{$matches[1]}】的记录已存在";
+            };
+            $this->error($msg);
+        } catch (Exception $e) {
+            $this->error($e->getMessage());
+        }
+
+        $this->success();
+    }
 }

+ 1 - 0
application/api/controller/Users.php

@@ -148,6 +148,7 @@ class Users extends Api
         if ($data) {
             foreach($data as &$v) {
                 $v['user_image'] = config('site.url').$v['user_image'];
+                $v['user_year_time'] = date('Y/m/d',$v['user_year_time']);
             }
             return $this->result('',$data,200);
         } else {

+ 1 - 1
application/extra/site.php

@@ -35,5 +35,5 @@ return array (
   'mail_smtp_pass' => 'password',
   'mail_verify_type' => '2',
   'mail_from' => '10000@qq.com',
-  "url" => 'test.human.hdlkeji.com',
+  "url" => 'http://test.human.hdlkeji.com',
 );

+ 1 - 0
public/assets/js/backend/users.js

@@ -10,6 +10,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                     edit_url: 'users/edit',
                     del_url: 'users/del',
                     multi_url: 'users/multi',
+                    import_url: 'users/import',
                     table: 'users',
                 }
             });

二進制
public/uploads/20200511/64710785c6b476fe5e5dcfd8659d7884.xlsx


二進制
public/uploads/20200511/e7c7ab1c2724cec15b924f5ee5752c1c.xlsx


二進制
public/uploads/20200512/625b5dfd04fedf960be4ee07b2fbcb4a.xlsx


二進制
public/uploads/20200512/64710785c6b476fe5e5dcfd8659d7884.xlsx


+ 2 - 8
runtime/temp/dc4e0dd1ed9222504b35d11845e60522.php

@@ -1,4 +1,4 @@
-<?php if (!defined('THINK_PATH')) exit(); /*a:4:{s:81:"E:\PHPstudy\PHPTutorial\WWW\human\public/../application/admin\view\users\add.html";i:1589180527;s:76:"E:\PHPstudy\PHPTutorial\WWW\human\application\admin\view\layout\default.html";i:1583049507;s:73:"E:\PHPstudy\PHPTutorial\WWW\human\application\admin\view\common\meta.html";i:1583049507;s:75:"E:\PHPstudy\PHPTutorial\WWW\human\application\admin\view\common\script.html";i:1583049507;}*/ ?>
+<?php if (!defined('THINK_PATH')) exit(); /*a:4:{s:81:"E:\PHPstudy\PHPTutorial\WWW\human\public/../application/admin\view\users\add.html";i:1589181761;s:76:"E:\PHPstudy\PHPTutorial\WWW\human\application\admin\view\layout\default.html";i:1583049507;s:73:"E:\PHPstudy\PHPTutorial\WWW\human\application\admin\view\common\meta.html";i:1583049507;s:75:"E:\PHPstudy\PHPTutorial\WWW\human\application\admin\view\common\script.html";i:1583049507;}*/ ?>
 <!DOCTYPE html>
 <html lang="<?php echo $config['language']; ?>">
     <head>
@@ -94,16 +94,10 @@
             <input id="c-user_sex" class="form-control" name="row[user_sex]" type="text">
         </div>
     </div>
-<!--    <div class="form-group">-->
-<!--        <label class="control-label col-xs-12 col-sm-2"><?php echo __('User_year_time'); ?>:</label>-->
-<!--        <div class="col-xs-12 col-sm-8">-->
-<!--            <input id="c-user_year_time" class="form-control datetimepicker" data-date-format="YYYY-MM-DD HH:mm:ss" data-use-current="true" name="row[user_year_time]" type="text" value="<?php echo date('Y-m-d H:i:s'); ?>">-->
-<!--        </div>-->
-<!--    </div>-->
     <div class="form-group">
         <label class="control-label col-xs-12 col-sm-2"><?php echo __('User_year_time'); ?>:</label>
         <div class="col-xs-12 col-sm-8">
-            <input id="c-user_year_time" class="form-control"  name="row[user_year_time]" type="text" value="<?php echo date('Y-m-d H:i:s'); ?>">
+            <input id="c-user_year_time" class="form-control datetimepicker" data-date-format="YYYY-MM-DD HH:mm:ss" data-use-current="true" name="row[user_year_time]" type="text" value="<?php echo date('Y-m-d H:i:s'); ?>">
         </div>
     </div>
     <div class="form-group">