Similarimage.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\SimilarimageModel;
  4. use think\Db;
  5. use think\Controller;
  6. use app\admin\model\AipImageSearchModel;
  7. use AipImageSearch as ocrApi;
  8. require VENDOR_PATH . 'qiniu/autoload.php';
  9. use Qiniu\Auth;
  10. use Qiniu\Storage\UploadManager;
  11. class Similarimage extends Controller
  12. {
  13. //图片添加
  14. public function add()
  15. {
  16. if (request()->isPost()) {
  17. $data = input("post.");
  18. // 查询是否存在此用户名
  19. $isSetUser = Db::name('ocrimage')->where('pruduct_name',$data['pruduct_name'])->find();
  20. if (!$isSetUser) {
  21. $data['user_id'] = self::setUserId();
  22. } else {
  23. $data['user_id'] = $isSetUser['user_id'];
  24. }
  25. // halt($data);
  26. $AipImageSearchModel = new SimilarimageModel();
  27. $add = $AipImageSearchModel->add($data);
  28. return $add;
  29. }
  30. $type = Db::name('type')->select();
  31. return $this->fetch("add",['data' => $type]);
  32. }
  33. //图片显示
  34. public function index()
  35. {
  36. if (request()->isAjax()) {
  37. extract(input());
  38. $map = [];
  39. if (isset($key) && $key != "") {
  40. $map['o.product_name'] = ['like', "%" . $key . "%"];
  41. }
  42. if (isset($start) && $start != "" && isset($end) && $end == "") {
  43. $map['o.create_time'] = ['>= time', $start];
  44. }
  45. if (isset($end) && $end != "" && isset($start) && $start == "") {
  46. $map['o.create_time'] = ['<= time', $end];
  47. }
  48. if (isset($start) && $start != "" && isset($end) && $end != "") {
  49. $map['o.create_time'] = ['between time', [$start, $end]];
  50. }
  51. $field = input('field');//字段
  52. $order = input('order');//排序方式
  53. if ($field && $order) {
  54. $od = "o." . $field . " " . $order;
  55. } else {
  56. $od = "o.create_time desc";
  57. }
  58. //echo 111;die;
  59. $Nowpage = input('get.page') ? input('get.page') : 1;
  60. $limits = input("limit") ? input("limit") : 10;
  61. $count = Db::name('ocrimage')->alias('o')->where($map)->count();//计算总页面
  62. $AipImageSearchModel = new SimilarimageModel();
  63. $lists = $AipImageSearchModel->index($map, $Nowpage, $limits, $od);
  64. /*foreach($lists as $v){
  65. $v["product_image"]=config("site.webSiteUrl");
  66. $v["product_image"]=config("site.webSiteUrl");
  67. $v["product_image"]=config("site.webSiteUrl");
  68. $v["product_image"]=config("site.webSiteUrl");
  69. $v["product_image"]=config("site.webSiteUrl");
  70. }*/
  71. return json(['code' => 220, 'msg' => '', 'count' => $count, 'data' => $lists]);
  72. }
  73. return $this->fetch("index");
  74. }
  75. //图库修改
  76. public function edit()
  77. {
  78. if (request()->isPost()) {
  79. $data = input("post.");
  80. $AipImageSearchModel = new SimilarimageModel();
  81. $edit = $AipImageSearchModel->edit($data);
  82. return $edit;
  83. }
  84. $id = input("id");
  85. $data = Db::name("ocrimage")->where("oid", $id)->find();
  86. $type = Db::name('type')->select();
  87. //halt($data);
  88. return $this->fetch("edit", ["data" => $data,'type' => $type]);
  89. }
  90. //删除图库
  91. public function del()
  92. {
  93. $oid = input("id");
  94. $AipImageSearchModel = new SimilarimageModel();
  95. $del = $AipImageSearchModel->del($oid);
  96. return $del;
  97. }
  98. //富文本图片上传
  99. public function upload()
  100. {
  101. //$file = request()->file('file');
  102. $file = $_FILES['file'];
  103. $imageinfo = getimagesize($_FILES['file']['tmp_name']);
  104. /*if($imageinfo[0]>375){
  105. return json(["code"=>0,'msg'=>"文件图片宽高不合适","data"=>""]);
  106. }*/
  107. $imageName = $file['name'];
  108. $fileName = uniqid();
  109. $ext = strtolower(substr(strrchr($imageName, '.'), 1));
  110. $imageSavePath = ROOT_PATH . 'public' . DS . 'uploads/fuwenben/' . $fileName . '.' . $ext;
  111. $tmp = $file['tmp_name'];
  112. // $url = http_type ();
  113. $info = move_uploaded_file($tmp, $imageSavePath);
  114. if ($info) {
  115. //image_png_size_add(ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName,ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName);
  116. //$path="http://china.chenhao98.top/uploads/fuwenben/{$newName}";
  117. $path = "http://china.chenhao98.top/uploads/fuwenben/" . $fileName . '.' . $ext;
  118. /*$size=getimagesize($path);
  119. halt($size);*/
  120. $data = ["src" => $path];
  121. return json(["code" => 0, 'msg' => "上传成功", "data" => $data]);
  122. } else {
  123. echo $file->getError();
  124. }
  125. }
  126. // 随机生成userID
  127. public function setUserId()
  128. {
  129. $userId = rand(100,100000);
  130. // 查出是否存在此用户
  131. $isUserId = Db::name('ocrimage')->where('user_id',$userId)->find();
  132. if ($isUserId) {
  133. self::setUserId();
  134. } else {
  135. return $userId;
  136. }
  137. }
  138. }