123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <?php
- namespace app\admin\controller;
- use app\admin\model\SimilarimageModel;
- use think\Db;
- use think\Controller;
- use app\admin\model\AipImageSearchModel;
- use AipImageSearch as ocrApi;
- require VENDOR_PATH . 'qiniu/autoload.php';
- use Qiniu\Auth;
- use Qiniu\Storage\UploadManager;
- class Similarimage extends Controller
- {
- //图片添加
- public function add()
- {
- if (request()->isPost()) {
- $data = input("post.");
- // 查询是否存在此用户名
- $isSetUser = Db::name('ocrimage')->where('pruduct_name',$data['pruduct_name'])->find();
- if (!$isSetUser) {
- $data['user_id'] = self::setUserId();
- } else {
- $data['user_id'] = $isSetUser['user_id'];
- }
- // halt($data);
- $AipImageSearchModel = new SimilarimageModel();
- $add = $AipImageSearchModel->add($data);
- return $add;
- }
- $type = Db::name('type')->select();
- return $this->fetch("add",['data' => $type]);
- }
- //图片显示
- public function index()
- {
- if (request()->isAjax()) {
- extract(input());
- $map = [];
- if (isset($key) && $key != "") {
- $map['o.product_name'] = ['like', "%" . $key . "%"];
- }
- if (isset($start) && $start != "" && isset($end) && $end == "") {
- $map['o.create_time'] = ['>= time', $start];
- }
- if (isset($end) && $end != "" && isset($start) && $start == "") {
- $map['o.create_time'] = ['<= time', $end];
- }
- if (isset($start) && $start != "" && isset($end) && $end != "") {
- $map['o.create_time'] = ['between time', [$start, $end]];
- }
- $field = input('field');//字段
- $order = input('order');//排序方式
- if ($field && $order) {
- $od = "o." . $field . " " . $order;
- } else {
- $od = "o.create_time desc";
- }
- //echo 111;die;
- $Nowpage = input('get.page') ? input('get.page') : 1;
- $limits = input("limit") ? input("limit") : 10;
- $count = Db::name('ocrimage')->alias('o')->where($map)->count();//计算总页面
- $AipImageSearchModel = new SimilarimageModel();
- $lists = $AipImageSearchModel->index($map, $Nowpage, $limits, $od);
- /*foreach($lists as $v){
- $v["product_image"]=config("site.webSiteUrl");
- $v["product_image"]=config("site.webSiteUrl");
- $v["product_image"]=config("site.webSiteUrl");
- $v["product_image"]=config("site.webSiteUrl");
- $v["product_image"]=config("site.webSiteUrl");
- }*/
- return json(['code' => 220, 'msg' => '', 'count' => $count, 'data' => $lists]);
- }
- return $this->fetch("index");
- }
- //图库修改
- public function edit()
- {
- if (request()->isPost()) {
- $data = input("post.");
- $AipImageSearchModel = new SimilarimageModel();
- $edit = $AipImageSearchModel->edit($data);
- return $edit;
- }
- $id = input("id");
- $data = Db::name("ocrimage")->where("oid", $id)->find();
- $type = Db::name('type')->select();
- //halt($data);
- return $this->fetch("edit", ["data" => $data,'type' => $type]);
- }
- //删除图库
- public function del()
- {
- $oid = input("id");
- $AipImageSearchModel = new SimilarimageModel();
- $del = $AipImageSearchModel->del($oid);
- return $del;
- }
- //富文本图片上传
- public function upload()
- {
- //$file = request()->file('file');
- $file = $_FILES['file'];
- $imageinfo = getimagesize($_FILES['file']['tmp_name']);
- /*if($imageinfo[0]>375){
- return json(["code"=>0,'msg'=>"文件图片宽高不合适","data"=>""]);
- }*/
- $imageName = $file['name'];
- $fileName = uniqid();
- $ext = strtolower(substr(strrchr($imageName, '.'), 1));
- $imageSavePath = ROOT_PATH . 'public' . DS . 'uploads/fuwenben/' . $fileName . '.' . $ext;
- $tmp = $file['tmp_name'];
- // $url = http_type ();
- $info = move_uploaded_file($tmp, $imageSavePath);
- if ($info) {
- //image_png_size_add(ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName,ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName);
- //$path="http://china.chenhao98.top/uploads/fuwenben/{$newName}";
- $path = "http://china.chenhao98.top/uploads/fuwenben/" . $fileName . '.' . $ext;
- /*$size=getimagesize($path);
- halt($size);*/
- $data = ["src" => $path];
- return json(["code" => 0, 'msg' => "上传成功", "data" => $data]);
- } else {
- echo $file->getError();
- }
- }
- // 随机生成userID
- public function setUserId()
- {
- $userId = rand(100,100000);
- // 查出是否存在此用户
- $isUserId = Db::name('ocrimage')->where('user_id',$userId)->find();
- if ($isUserId) {
- self::setUserId();
- } else {
- return $userId;
- }
- }
- }
|