Index.php 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\Config;
  4. use app\common\model\User;
  5. use app\common\controller\Api;
  6. use hg\apidoc\Parser;
  7. use PhpOffice\PhpWord\Template;
  8. use PhpOffice\PhpWord\TemplateProcessor;
  9. use setasign\Fpdi\PdfParser\PdfParser;
  10. use think\Db;
  11. use think\facade\Validate;
  12. use function Sodium\add;
  13. use Mpdf\Mpdf;
  14. /**
  15. * @title 首页
  16. * @controller Index
  17. */
  18. class Index extends Api
  19. {
  20. /**
  21. * @title 上传合同
  22. * @desc 上传合同
  23. * @url /api/Index/set_pdf
  24. * @method POST
  25. * @tag 基础
  26. * @header name:Authorization require:1 default: desc:验证token
  27. *
  28. * @param name:file type:file require:1 desc:上传图片(签名图)
  29. * @param name:file1 type:file require:1 desc:上传图片(整张图)
  30. * @param name:content type:json require:1 desc:内容
  31. */
  32. public function set_pdf(){
  33. $user_id = $this->check_login();
  34. $content = input('content');
  35. if (!$content) $this->error('参数错误');
  36. $file = request()->file('file');
  37. $file1 = request()->file('file1');
  38. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/upload';
  39. if(!file_exists($dir)){
  40. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  41. mkdir($dir, 0700,true);
  42. }
  43. $info = $file->move($dir);
  44. $newName = $info->getSaveName();
  45. $info2 = $file1->move($dir);
  46. $newName2 = $info2->getSaveName();
  47. $data['user_id'] = $user_id;
  48. $data['imgurl1'] = "/upload/{$newName2}";
  49. $data['imgurl'] = "/upload/{$newName}";
  50. $data['content'] = $content;
  51. $data['create_at'] = date('Y-m-d H:i:s');
  52. $id = Db::name('q_contract')->insertGetId($data);
  53. $str=file_get_contents('http://'.$_SERVER['SERVER_NAME'].'/store/contract/mb?id='.$id);
  54. $mpdf=new Mpdf(['mode'=>'utf-8','format' => 'A4']);
  55. $mpdf->SetDisplayMode('fullpage');
  56. //自动分析录入内容字体
  57. $mpdf->autoScriptToLang = true;
  58. $mpdf->autoLangToFont = true;
  59. $title = time().$user_id;
  60. $fileUrl = "upload/".$title.".pdf";
  61. $mpdf->WriteHTML($str);
  62. $mpdf->Output($fileUrl);
  63. if (Db::name('q_contract')->where('id',$id)->update(['pdfurl'=>'/'.$fileUrl])){
  64. $this->success('成功');
  65. }else{
  66. $this->error('失败');
  67. }
  68. }
  69. public function set_pdf2(){
  70. $user_id = $this->check_login();
  71. $content = input('content');
  72. print_r(json_decode($content,true));
  73. $file = request()->file('file');
  74. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/upload';
  75. if(!file_exists($dir)){
  76. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  77. mkdir($dir, 0700,true);
  78. }
  79. $info = $file->move($dir);
  80. $newName = $info->getSaveName();
  81. $imgurl = $_SERVER['DOCUMENT_ROOT']."/upload/{$newName}";
  82. $data['user_id'] = $user_id;
  83. $data['imgurl'] = "/upload/{$newName}";
  84. $title = time().$user_id;
  85. //生成world
  86. $phpWord=new \PhpOffice\PhpWord\PhpWord();
  87. $section = $phpWord->addSection([
  88. 'pageSizeH' => \PhpOffice\PhpWord\Shared\Converter::inchToTwip(500),
  89. 'pageSizeW' => \PhpOffice\PhpWord\Shared\Converter::inchToTwip(8.5),
  90. ]);
  91. $section->addImage($imgurl, array('width'=>100,'align'=>'center'));
  92. //$section->addImage($imgurl);
  93. $objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007');
  94. $objWriter->save($_SERVER['DOCUMENT_ROOT']."/upload/".$title.'.docx');
  95. $data['worldurl'] = "/upload/".$title.'.docx';
  96. //生成pdf
  97. $pdf = new \TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
  98. // 增加一个页面
  99. $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
  100. $pdf->setImageScale(1.25);
  101. $pdf->AddPage();
  102. $pdf->Image($imgurl, '', '', 0, 0, '', '', '', false, 300, '', false, false, 1, false, false, false); // reset pointer to the last page
  103. $pdf->lastPage(); // ---------------------------------------------------------
  104. // This method has several options, check the source code documentation for more information.
  105. $file_path = $_SERVER['DOCUMENT_ROOT']."/upload/".$title.'.pdf';
  106. $pdf->Output($file_path, 'F');
  107. $data['pdfurl'] = "/upload/".$title.'.pdf';
  108. $data['create_at'] = date('Y-m-d H:i:s');
  109. if (Db::name('q_contract')->insert($data)){
  110. $this->success('成功');
  111. }else{
  112. $this->error('失败');
  113. }
  114. }
  115. public function test(){
  116. // $path= 'mb.html';
  117. //
  118. // $isHave=file_exists($path);
  119. //
  120. // if(empty($isHave)){
  121. // $this->error("文件不存在!");
  122. // }
  123. //
  124. // $zhi=file_get_contents($path);
  125. //
  126. // $fileName = date('YmdHis').'ccccccccc.docx';
  127. // file_put_contents($fileName, $zhi);
  128. \PhpOffice\PhpWord\Settings::setZipClass(\PhpOffice\PhpWord\Settings::PCLZIP);
  129. $tmp=new \PhpOffice\PhpWord\TemplateProcessor('20210709174526ccccccccc.docx');//打开模板
  130. $tmp->setValue('username',utf8_decode('李四'));//替换变量
  131. $tmp->saveAs($_SERVER['DOCUMENT_ROOT']."/upload/123.docx");
  132. die;
  133. $path= 'mb.html';
  134. $isHave=file_exists($path);
  135. if(empty($isHave)){
  136. $this->error("文件不存在!");
  137. }
  138. $zhi=file_get_contents($path);
  139. $wordname='test2222.docx';
  140. ob_start();
  141. @header('Content-type:application/word');
  142. header('Content-Disposition: attachment; filename='.$wordname.'');
  143. @readfile($wordname);
  144. ob_flush();//每次执行前刷新缓存
  145. flush();
  146. die;
  147. $res=[
  148. 'username'=>'王新凯',
  149. 'id_card'=>'37131219995144046',
  150. 'address'=>'山东省临沂市河东区',
  151. 'phone'=>'15192908098',
  152. 'a1'=>'2021',
  153. 'a2'=>'05',
  154. 'a3'=>'05',
  155. 'a4'=>'2022',
  156. 'a5'=>'05',
  157. 'a6'=>'05',
  158. 'a77'=>'xkccc',
  159. 'a7'=>'10',
  160. 'a8'=>'王新凯',
  161. 'a9'=>'男',
  162. 'a10'=>'37131219995144046',
  163. 'a11'=>'山东省临沂市河东区',
  164. 'a12'=>'15192908098',
  165. 'a13'=>'2021',
  166. 'a14'=>'07',
  167. 'a15'=>'09'
  168. ];
  169. echo json_encode($res,true);
  170. die;
  171. }
  172. /**
  173. * @title 已签合同列表
  174. * @desc 已签合同列表
  175. * @url /api/Index/contract_list
  176. * @method POST
  177. * @tag 基础
  178. * @header name:Authorization require:1 default: desc:验证token
  179. */
  180. public function contract_list(){
  181. $user_id = $this->check_login();
  182. $list = Db::name('q_contract')
  183. ->where('user_id',$user_id)
  184. ->where('is_del',1)
  185. ->order('id desc')
  186. ->select();
  187. if ($list){
  188. foreach ($list as &$v){
  189. $v['imgurl'] = 'http://'.$_SERVER['SERVER_NAME'].$v['imgurl'];
  190. $v['worldurl'] = 'http://'.$_SERVER['SERVER_NAME'].$v['worldurl'];
  191. $v['pdfurl'] = 'http://'.$_SERVER['SERVER_NAME'].$v['pdfurl'];
  192. }
  193. }
  194. $this->success('成功',$list);
  195. }
  196. }