123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- <?php
- namespace app\api\controller;
- use app\common\model\Config;
- use app\common\model\User;
- use app\common\controller\Api;
- use hg\apidoc\Parser;
- use PhpOffice\PhpWord\Template;
- use PhpOffice\PhpWord\TemplateProcessor;
- use setasign\Fpdi\PdfParser\PdfParser;
- use think\Db;
- use think\facade\Validate;
- use function Sodium\add;
- use Mpdf\Mpdf;
- /**
- * @title 首页
- * @controller Index
- */
- class Index extends Api
- {
- /**
- * @title 上传合同
- * @desc 上传合同
- * @url /api/Index/set_pdf
- * @method POST
- * @tag 基础
- * @header name:Authorization require:1 default: desc:验证token
- *
- * @param name:file type:file require:1 desc:上传图片(签名图)
- * @param name:file1 type:file require:1 desc:上传图片(整张图)
- * @param name:content type:json require:1 desc:内容
- */
- public function set_pdf(){
- $user_id = $this->check_login();
- $content = input('content');
- if (!$content) $this->error('参数错误');
- $file = request()->file('file');
- $file1 = request()->file('file1');
- $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/upload';
- if(!file_exists($dir)){
- //检查是否有该文件夹,如果没有就创建,并给予最高权限
- mkdir($dir, 0700,true);
- }
- $info = $file->move($dir);
- $newName = $info->getSaveName();
- $info2 = $file1->move($dir);
- $newName2 = $info2->getSaveName();
- $data['user_id'] = $user_id;
- $data['imgurl1'] = "/upload/{$newName2}";
- $data['imgurl'] = "/upload/{$newName}";
- $data['content'] = $content;
- $data['create_at'] = date('Y-m-d H:i:s');
- $id = Db::name('q_contract')->insertGetId($data);
- $str=file_get_contents('http://'.$_SERVER['SERVER_NAME'].'/store/contract/mb?id='.$id);
- $mpdf=new Mpdf(['mode'=>'utf-8','format' => 'A4']);
- $mpdf->SetDisplayMode('fullpage');
- //自动分析录入内容字体
- $mpdf->autoScriptToLang = true;
- $mpdf->autoLangToFont = true;
- $title = time().$user_id;
- $fileUrl = "upload/".$title.".pdf";
- $mpdf->WriteHTML($str);
- $mpdf->Output($fileUrl);
- if (Db::name('q_contract')->where('id',$id)->update(['pdfurl'=>'/'.$fileUrl])){
- $this->success('成功');
- }else{
- $this->error('失败');
- }
- }
- public function set_pdf2(){
- $user_id = $this->check_login();
- $content = input('content');
- print_r(json_decode($content,true));
- $file = request()->file('file');
- $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/upload';
- if(!file_exists($dir)){
- //检查是否有该文件夹,如果没有就创建,并给予最高权限
- mkdir($dir, 0700,true);
- }
- $info = $file->move($dir);
- $newName = $info->getSaveName();
- $imgurl = $_SERVER['DOCUMENT_ROOT']."/upload/{$newName}";
- $data['user_id'] = $user_id;
- $data['imgurl'] = "/upload/{$newName}";
- $title = time().$user_id;
- //生成world
- $phpWord=new \PhpOffice\PhpWord\PhpWord();
- $section = $phpWord->addSection([
- 'pageSizeH' => \PhpOffice\PhpWord\Shared\Converter::inchToTwip(500),
- 'pageSizeW' => \PhpOffice\PhpWord\Shared\Converter::inchToTwip(8.5),
- ]);
- $section->addImage($imgurl, array('width'=>100,'align'=>'center'));
- //$section->addImage($imgurl);
- $objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007');
- $objWriter->save($_SERVER['DOCUMENT_ROOT']."/upload/".$title.'.docx');
- $data['worldurl'] = "/upload/".$title.'.docx';
- //生成pdf
- $pdf = new \TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
- // 增加一个页面
- $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
- $pdf->setImageScale(1.25);
- $pdf->AddPage();
- $pdf->Image($imgurl, '', '', 0, 0, '', '', '', false, 300, '', false, false, 1, false, false, false); // reset pointer to the last page
- $pdf->lastPage(); // ---------------------------------------------------------
- // This method has several options, check the source code documentation for more information.
- $file_path = $_SERVER['DOCUMENT_ROOT']."/upload/".$title.'.pdf';
- $pdf->Output($file_path, 'F');
- $data['pdfurl'] = "/upload/".$title.'.pdf';
- $data['create_at'] = date('Y-m-d H:i:s');
- if (Db::name('q_contract')->insert($data)){
- $this->success('成功');
- }else{
- $this->error('失败');
- }
- }
- public function test(){
- // $path= 'mb.html';
- //
- // $isHave=file_exists($path);
- //
- // if(empty($isHave)){
- // $this->error("文件不存在!");
- // }
- //
- // $zhi=file_get_contents($path);
- //
- // $fileName = date('YmdHis').'ccccccccc.docx';
- // file_put_contents($fileName, $zhi);
- \PhpOffice\PhpWord\Settings::setZipClass(\PhpOffice\PhpWord\Settings::PCLZIP);
- $tmp=new \PhpOffice\PhpWord\TemplateProcessor('20210709174526ccccccccc.docx');//打开模板
- $tmp->setValue('username',utf8_decode('李四'));//替换变量
- $tmp->saveAs($_SERVER['DOCUMENT_ROOT']."/upload/123.docx");
- die;
- $path= 'mb.html';
- $isHave=file_exists($path);
- if(empty($isHave)){
- $this->error("文件不存在!");
- }
- $zhi=file_get_contents($path);
- $wordname='test2222.docx';
- ob_start();
- @header('Content-type:application/word');
- header('Content-Disposition: attachment; filename='.$wordname.'');
- @readfile($wordname);
- ob_flush();//每次执行前刷新缓存
- flush();
- die;
- $res=[
- 'username'=>'王新凯',
- 'id_card'=>'37131219995144046',
- 'address'=>'山东省临沂市河东区',
- 'phone'=>'15192908098',
- 'a1'=>'2021',
- 'a2'=>'05',
- 'a3'=>'05',
- 'a4'=>'2022',
- 'a5'=>'05',
- 'a6'=>'05',
- 'a77'=>'xkccc',
- 'a7'=>'10',
- 'a8'=>'王新凯',
- 'a9'=>'男',
- 'a10'=>'37131219995144046',
- 'a11'=>'山东省临沂市河东区',
- 'a12'=>'15192908098',
- 'a13'=>'2021',
- 'a14'=>'07',
- 'a15'=>'09'
- ];
- echo json_encode($res,true);
- die;
- }
- /**
- * @title 已签合同列表
- * @desc 已签合同列表
- * @url /api/Index/contract_list
- * @method POST
- * @tag 基础
- * @header name:Authorization require:1 default: desc:验证token
- */
- public function contract_list(){
- $user_id = $this->check_login();
- $list = Db::name('q_contract')
- ->where('user_id',$user_id)
- ->where('is_del',1)
- ->order('id desc')
- ->select();
- if ($list){
- foreach ($list as &$v){
- $v['imgurl'] = 'http://'.$_SERVER['SERVER_NAME'].$v['imgurl'];
- $v['worldurl'] = 'http://'.$_SERVER['SERVER_NAME'].$v['worldurl'];
- $v['pdfurl'] = 'http://'.$_SERVER['SERVER_NAME'].$v['pdfurl'];
- }
- }
- $this->success('成功',$list);
- }
- }
|