Aipimagesearch.php 4.5 KB

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